From 79e6c6f7e78e2857d478ebda5fe82cccdac455f2 Mon Sep 17 00:00:00 2001 From: Davane Davis Date: Thu, 9 Mar 2023 20:40:23 -0500 Subject: [PATCH 1/4] docs: added mobile docs to frontier general documentation --- .../5.mobile/1.getting-started/1.overview.md | 84 ++++++ .../1.getting-started/2.introduction.md | 2 - .../5.mobile/2.cli-commands/1.usage.md | 66 +++++ docs/content/5.mobile/2.cli-commands/_dir.yml | 1 + .../content/5.mobile/3.features/1.features.md | 244 ++++++++++++++++++ docs/content/5.mobile/3.features/_dir.yml | 1 + docs/content/5.mobile/4.testing/1.testing.md | 1 + docs/content/5.mobile/4.testing/_dir.yml | 1 + .../5.mobile/5.deployment/1.deployment.md | 1 + docs/content/5.mobile/5.deployment/_dir.yml | 1 + 10 files changed, 400 insertions(+), 2 deletions(-) create mode 100644 docs/content/5.mobile/1.getting-started/1.overview.md delete mode 100644 docs/content/5.mobile/1.getting-started/2.introduction.md create mode 100644 docs/content/5.mobile/2.cli-commands/1.usage.md create mode 100644 docs/content/5.mobile/2.cli-commands/_dir.yml create mode 100644 docs/content/5.mobile/3.features/1.features.md create mode 100644 docs/content/5.mobile/3.features/_dir.yml create mode 100644 docs/content/5.mobile/4.testing/1.testing.md create mode 100644 docs/content/5.mobile/4.testing/_dir.yml create mode 100644 docs/content/5.mobile/5.deployment/1.deployment.md create mode 100644 docs/content/5.mobile/5.deployment/_dir.yml diff --git a/docs/content/5.mobile/1.getting-started/1.overview.md b/docs/content/5.mobile/1.getting-started/1.overview.md new file mode 100644 index 00000000..daf48505 --- /dev/null +++ b/docs/content/5.mobile/1.getting-started/1.overview.md @@ -0,0 +1,84 @@ +# Getting Started + +[Mobile](https://github.com/realdecoy/rdmobile) is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models, +and a data-layer design promoting unified consumption through React Contexts and Services. +Follow the [installation guide](#installation) below to set up the Stripe CLI. + + +## System Requirements + +1. You will need [React Native Expo CLI](https://docs.expo.dev/get-started/installation/#expo-cli) and it dependencies in order to run the project. +2. Git +3. For macOS or Linux users: Watchman +4. MacOs to run on iOS simular. + +Recommended tools + +1. Visual Studio Code Editor [VS Code](https://code.visualstudio.com/download). + +--- + + +## Installation +Installing the mobile plugin can be done with the following command: +```bash +$ frontier plugins:install @rdfrontier/plugin-mobile +``` + +### Validate installation + +To check if the everything went will you can check the current version of mobile: + +```bash +frontier mobile -v | --version +``` + +--- + +## Usage +Now we can start using the CLI if the installation was successful. +### Step 1: Create a project + +```bash +frontier mobile create-project +``` +Replace with the actual name of your project. Preferrably written in snake case (eg. `my-awesome-project`). + +**Example** +```bash +frontier mobile create-project my-awesome-project +``` + + +### Step 2: Run project + +```bash +cd my-awesome-project + +# If you have a Mac +npm run ios + +# If you have a Mac or Windows +npm run android +``` + +--- + + +## Next Steps + +From here you can perform multiple other actions but a good next step is to [learn to add features](#cli-commands.md#add). See examples below: + +### Generating a Screen + +``` +frontier mobile:add:screen +``` + +Each generated Screen gets its own dedicated folder. The folder will be given the name of the page. This folder is located at `/src/screens/`. + +### Generating a Component + +``` +frontier mobile:add:component +``` \ No newline at end of file diff --git a/docs/content/5.mobile/1.getting-started/2.introduction.md b/docs/content/5.mobile/1.getting-started/2.introduction.md deleted file mode 100644 index 7461deda..00000000 --- a/docs/content/5.mobile/1.getting-started/2.introduction.md +++ /dev/null @@ -1,2 +0,0 @@ -# Coming Soon - diff --git a/docs/content/5.mobile/2.cli-commands/1.usage.md b/docs/content/5.mobile/2.cli-commands/1.usage.md new file mode 100644 index 00000000..7e49b0ff --- /dev/null +++ b/docs/content/5.mobile/2.cli-commands/1.usage.md @@ -0,0 +1,66 @@ + + +# CLI Commands +-------------- +This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal. + +## CLI Options + +Run the CLI option below for a list of commands and options + +**Usage** +```bash +$ npx mobile: --help +``` + +| **Option** | **Description** | +| ------------ | :---------------------- | +| \--h, --help | Displays the help menu. | + +___ + +## CLI Command + +RDVue includes the following sub-commands: + +| **Command** | **Description** | +| --------------------------------- | :----------------------------------------------- | +| [create-project](#create-project) | Scaffold a new rdvue project | +| [add](#add) | Add a feature to a project | + +* * * + +### _create-project_ + +_create-project_ will scaffold a new project for you, using one of the presets selected from its interactive shell. + +**Usage** +```bash +$ npx mobile:create-project +``` + + +| **Option** | **Description** | +| :--------------------------- | :----------------------- | +| --bundleIdenifier | The name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app). | +| --verbose | Show debug logs when creating the project. | + +* * * + +### _add_ +Adds a feature to the project. + +Usage +```bash +$ npx mobile:add: +``` +**Features** + +Learn more below about each feature the CLI provides: + +* [Component](features.md#components) +* [Page](features.md#pages) +* [Screen](features.md#screens) +* [Layout](features.md#layouts) +* [Service](features.md#services) +* [Store](features.md#stores) diff --git a/docs/content/5.mobile/2.cli-commands/_dir.yml b/docs/content/5.mobile/2.cli-commands/_dir.yml new file mode 100644 index 00000000..3eeb2d1a --- /dev/null +++ b/docs/content/5.mobile/2.cli-commands/_dir.yml @@ -0,0 +1 @@ +icon: heroicons-outline:document-text diff --git a/docs/content/5.mobile/3.features/1.features.md b/docs/content/5.mobile/3.features/1.features.md new file mode 100644 index 00000000..bd1cda80 --- /dev/null +++ b/docs/content/5.mobile/3.features/1.features.md @@ -0,0 +1,244 @@ +# Features + +This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation. + +Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in [CLI Commands](cli-reference.md#add). + +
+> It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document. + + +* * * + + +## Components + +Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by [Screens](#screens) and [Layout](#layouts). Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide. + +### Usage + +```bash +$ frontier mobile:add:component + +# Example +$ frontier mobile:add:component fancy-text +``` + +### Technical + +A Component folder consists of for two files. These file include: + +* \[component\]**.tsx**: This file holds actual functional logic and view hierarchy for the component you are trying to create.. + + +* \[component\]**.styles.tsx**: This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all. + +See below for example of folder structure after creating a component called `fancy-text`: + + + + +**Example** + +Below is an example of a component called `fancy-text.tsx` + +```tsx +// @/component/fancy-text/fancy-text.tsx + +import { Component } from "react"; +import styles from "./fancy-text.styles"; + +class FancyText extends Component { + render() { + return Some Fancy Text + } +} + +``` + +This is an example of the stylesheet `fancy-text.styles.tsx`. + +```tsx +// @/component/fancy-text/fancy-text.style.tsx + +import { StyleSheet } from "react-native"; + +export StyleSheet.create({ + text: { + color: "red", + fontSize: 18, + } + }); +}; +``` + +### Choosing between Class and Function components + +There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier. + +**When to choose Class-Based components:** + +1. If you want to work with components lifecycle functions - Even though react provides hooks like `useEffect()`, this can get quite cumbersome when the components grows. + +2. If you are creating a [Screen](#screens). + +3. If you are creating a [Context Provider](#stores--context). + +4. If your component has a lot a **state** variables - A general rule of thump is to keep state variable count at a max of 5. + +5. If your component has a lot a **props** variables - A general rule of thump is to keep props variable count at a max of 5. + +6. If you intend on making API calls from within the component. + +**When to choose Function-Based components:** + +1. If the component is mostly visual with little to no functional logic. + + +Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers. + + +* * * + + +## Screens + +A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are **not** to be imported by other Screen, Components or Layouts. + +A Screen needs to be added to the [Navigator](#nagivation) before it can be used within a mobile application. +### Usage + +```bash +$ frontier mobile:add:screen + +# Example +$ frontier mobile:add:screen login +``` +### Technical + +Each generated Screen is contained within it's own sub-folder within the **src/screens** directory. The directory contains the following files which each carry out a specific role in developing a Screen: + +* \[screen\].**tsx**: This is similar to a [Component](#component) but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation. + + +* \[screen\].**styles.tsx**: All Stylesheet file are the same as the stylesheet used shown in [Component](#component). + + +*** + + +## Services + +Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should: + +* Only interact with a single domain + +* Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation. + +```bash +$ frontier mobile:add:service + +# Example +$ frontier mobile:add:service auth + +# Output File +> src/services/auth.service.tsx +``` + +### Technical + +Each generated serive is contained within the sub-folder `src/services` directory. The directory contains a file for each service that has been created: + +* \[service-name\].**serivce.tsx**: The file will contain a related grouping of http functions. + +* While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality. + +* Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage). + + + +*** + +## Nagivation + +A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The [Layouts](#layouts) section goes into more detail on this approach. + +?> A Page needs to be added to the [Router](#routing) before it can be previewed within a web browser. + +### Technical + +Each generated context is contained within the sub-folder `src/contexts` directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components. + +* \[page\].**vue**: This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation. + +* \[page\].**ts**: This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements. + +* \[page\].**scss**: This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the \[page\].vue template file. + + +?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory. + +* \[page\].**spec.ts**: This contains the unit-level tests for the page. Read the [testing section](Testing.md#unit-tests-with-jest) for more details about writing tests. + +## Routing + +In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings. + +Below is an example of a Route definition for a sample Login page: + +```jsx + + + +``` + + +The **name** field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency. + +The **component** property specifies the Screen component to load for the given name. + +Navigation should be centralized within the **src/core/navigation** directory. This is where the [React Navigation](https://reactnavigation.org/) library is configured and where the `Stack`. + +For more details on the available options for configuring a Stack, please refer to the [React Navigation](https://reactnavigation.org/docs/stack-navigator/) documentation, and more specifically, the [API Definition](https://reactnavigation.org/docs/stack-navigator/#api-definition). + + +* * * + + +## Stores / Context + +A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for \[re\]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways: + +* Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them. + + +An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them. + +### Usage + +```bash +$ frontier mobile:add:store + +# Example +$ frontier mobile:add:store auth + +# Output File +> src/contexts/auth.context.tsx +``` + +### Technical + +Each generated serive is contained within the sub-folder `src/contexts` directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components. + +| **Member** | **Type** | **Description** | +| ---------------------------------------------- | ----------------| ------------------------------------------------------------------------------------------------------------------------------------ | +| `ContextName`ContextProvider | React Component | Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes. | +| `ContextName`Consumer | React Component | Allows components to subscribe to changes in the global state endpoint. | +| with`ContextName` | HOC[^1] | Used when Class-based components would like to consume data from the a context | +| use`ContextName` | HOC[^1] | Used when function-based components would like to consume data from the a contextresponse. | + +
+ +- `ContextName` - This is the provided name for the context when created using the CLI's `add` command above. + +- [^1]_HOC (High-Order Component)_ - a higher-order component is a function that takes a component and returns a new enhanced component. diff --git a/docs/content/5.mobile/3.features/_dir.yml b/docs/content/5.mobile/3.features/_dir.yml new file mode 100644 index 00000000..c3adfc69 --- /dev/null +++ b/docs/content/5.mobile/3.features/_dir.yml @@ -0,0 +1 @@ +icon: heroicons-outline:code diff --git a/docs/content/5.mobile/4.testing/1.testing.md b/docs/content/5.mobile/4.testing/1.testing.md new file mode 100644 index 00000000..af18a6f0 --- /dev/null +++ b/docs/content/5.mobile/4.testing/1.testing.md @@ -0,0 +1 @@ +# Testing (WIP) \ No newline at end of file diff --git a/docs/content/5.mobile/4.testing/_dir.yml b/docs/content/5.mobile/4.testing/_dir.yml new file mode 100644 index 00000000..c3adfc69 --- /dev/null +++ b/docs/content/5.mobile/4.testing/_dir.yml @@ -0,0 +1 @@ +icon: heroicons-outline:code diff --git a/docs/content/5.mobile/5.deployment/1.deployment.md b/docs/content/5.mobile/5.deployment/1.deployment.md new file mode 100644 index 00000000..85d926fa --- /dev/null +++ b/docs/content/5.mobile/5.deployment/1.deployment.md @@ -0,0 +1 @@ +# Deployment (WIP) \ No newline at end of file diff --git a/docs/content/5.mobile/5.deployment/_dir.yml b/docs/content/5.mobile/5.deployment/_dir.yml new file mode 100644 index 00000000..c3adfc69 --- /dev/null +++ b/docs/content/5.mobile/5.deployment/_dir.yml @@ -0,0 +1 @@ +icon: heroicons-outline:code From eda3708616206c915a0a68764b3504a5e3c07a89 Mon Sep 17 00:00:00 2001 From: Davane Davis Date: Thu, 9 Mar 2023 20:53:35 -0500 Subject: [PATCH 2/4] docs: clean up gettings started docs for mobile docs in frontier --- .../5.mobile/1.getting-started/1.overview.md | 22 ++++++++++--------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/docs/content/5.mobile/1.getting-started/1.overview.md b/docs/content/5.mobile/1.getting-started/1.overview.md index daf48505..e88a6a06 100644 --- a/docs/content/5.mobile/1.getting-started/1.overview.md +++ b/docs/content/5.mobile/1.getting-started/1.overview.md @@ -22,7 +22,7 @@ Recommended tools ## Installation Installing the mobile plugin can be done with the following command: ```bash -$ frontier plugins:install @rdfrontier/plugin-mobile +frontier plugins:install @rdfrontier/plugin-mobile ``` ### Validate installation @@ -52,13 +52,15 @@ frontier mobile create-project my-awesome-project ### Step 2: Run project -```bash +```shell cd my-awesome-project - -# If you have a Mac -npm run ios - -# If you have a Mac or Windows +``` +If you have a Mac. +```bash +npm run ios +``` +If you have a Mac or Windows. +```bash npm run android ``` @@ -67,11 +69,11 @@ npm run android ## Next Steps -From here you can perform multiple other actions but a good next step is to [learn to add features](#cli-commands.md#add). See examples below: +From here you can perform multiple other actions but a good next step is to [learn to add features](usage.md#add). See examples below: ### Generating a Screen -``` +```bash frontier mobile:add:screen ``` @@ -79,6 +81,6 @@ Each generated Screen gets its own dedicated folder. The folder will be given th ### Generating a Component -``` +```bash frontier mobile:add:component ``` \ No newline at end of file From c0a781c361f76852428ace53c7507c3a71f04a40 Mon Sep 17 00:00:00 2001 From: Davane Davis Date: Thu, 9 Mar 2023 21:09:11 -0500 Subject: [PATCH 3/4] docs: added the mobile build docs to frontier --- docs/.output/nitro.json | 6 +- docs/.output/public/200.html | 8 - docs/.output/public/404.html | 8 - .../public/__app_config.json/_payload.js | 1 - .../public/__app_config.json/index.html | 74 - docs/.output/public/__studio.json | 2 +- .../{Alert.443f6167.js => Alert.41cb256b.js} | 2 +- .../public/_nuxt/AppLayout.7354fe11.js | 1 + .../public/_nuxt/AppLayout.bec693ec.js | 1 - .../{Badge.a4f5598b.js => Badge.af643d4e.js} | 2 +- ...Hero.81a09280.js => BlockHero.495ede00.js} | 2 +- ...ink.2789431f.js => ButtonLink.91883881.js} | 2 +- ...allout.e09a04aa.js => Callout.12d57ced.js} | 2 +- .../{Card.24a8ff8f.js => Card.178cbb97.js} | 2 +- ...dGrid.362959de.js => CardGrid.e3a9f75d.js} | 2 +- .../_nuxt/ComponentPlayground.00658939.js | 1 - .../_nuxt/ComponentPlayground.3c424a18.js | 1 + ...js => ComponentPlayground.vue.1e5cc557.js} | 2 +- ...js => ComponentPlaygroundData.8cb96cd4.js} | 2 +- ...s => ComponentPlaygroundProps.583c9bda.js} | 2 +- ...Doc.08489604.js => ContentDoc.cbc50263.js} | 2 +- ...st.394febbe.js => ContentList.e8a9fb87.js} | 2 +- ...2cbe0.js => ContentNavigation.cefda237.js} | 2 +- ...e9d3.js => ContentPreviewMode.ea418cb0.js} | 2 +- ...y.7a036327.js => ContentQuery.9f33890e.js} | 2 +- ...1874b59.js => ContentRenderer.b7732722.js} | 2 +- ...js => ContentRendererMarkdown.e52b62de.js} | 2 +- ...ot.7e1a494f.js => ContentSlot.c5067a4f.js} | 2 +- ...ton.c9acc792.js => CopyButton.f7858c79.js} | 2 +- ...side.44ffd29b.js => DocsAside.08a0955d.js} | 2 +- ....08d70919.js => DocsAsideTree.b95e55e0.js} | 2 +- ...a96d3867.js => DocsPageBottom.b38ecc43.js} | 2 +- ...8e541ec6.js => DocsPageLayout.d352cf62.js} | 2 +- ...t.adb795e8.js => DocsPrevNext.2b9ea48f.js} | 2 +- ...ocsToc.03cf2013.js => DocsToc.55846f28.js} | 2 +- ...s.c11364e4.js => DocsTocLinks.644c91ee.js} | 2 +- ....js => DocumentDrivenNotFound.66d77c6e.js} | 2 +- .../public/_nuxt/EditOnLink.77af6984.js | 1 + .../public/_nuxt/EditOnLink.f0fb05c8.js | 1 - ...21b8aa9d.js => EditOnLink.vue.1d2292f2.js} | 2 +- .../public/_nuxt/ExampleTheTitle.e4b43830.js | 1 - .../public/_nuxt/ExampleTheTitle.f00d8fad.js | 1 + ....e43b30d0.js => GithubCommits.35c65eac.js} | 2 +- ...b9ac.js => GithubContributors.9ddddad6.js} | 2 +- ....js => GithubFileContributors.1ad6f7bf.js} | 2 +- ...c61aa.js => GithubLastRelease.a4aeb30e.js} | 2 +- ...ink.6e1f1ea3.js => GithubLink.6cd695ea.js} | 2 +- ...e.3309f143.js => GithubReadme.5eafd6e1.js} | 2 +- ....fea5f747.js => GithubRelease.d892113d.js} | 2 +- ...54c416e9.js => GithubReleases.05c52708.js} | 2 +- ...d436c6.js => GithubRepository.345038c7.js} | 2 +- ...859cbb.js => HeroAnnouncement.15bcf84c.js} | 2 +- docs/.output/public/_nuxt/List.0c42b342.js | 1 - docs/.output/public/_nuxt/List.63030545.js | 1 + ...t.vue.d5bae865.js => List.vue.98cb48bf.js} | 2 +- ...kdown.eb6ef861.js => Markdown.7f24e431.js} | 2 +- ...utton.d8f00b03.js => MyButton.67bdaa98.js} | 2 +- docs/.output/public/_nuxt/NuxtImg.3bab810e.js | 1 - docs/.output/public/_nuxt/NuxtImg.66944f8e.js | 1 + ...ue.594abc77.js => NuxtImg.vue.a13022c3.js} | 2 +- .../{Props.80a76d3d.js => Props.876d937c.js} | 2 +- ...{ProseA.c8de8b63.js => ProseA.a4d07cc8.js} | 2 +- ...Code.2adf04d1.js => ProseCode.0e5c7be6.js} | 2 +- ...dbb.js => ProseCodeCopyButton.29965c5a.js} | 2 +- ...roseH1.ee507e45.js => ProseH1.c24b90eb.js} | 2 +- ...roseH2.36291d6d.js => ProseH2.957cbe8e.js} | 2 +- ...roseH3.0209a6ec.js => ProseH3.cb2444de.js} | 2 +- ...roseH4.4ddfc0da.js => ProseH4.77a5278f.js} | 2 +- ...roseH5.fd3b0c88.js => ProseH5.8dc93198.js} | 2 +- ...roseH6.c2012c78.js => ProseH6.bdc78e01.js} | 2 +- .../.output/public/_nuxt/ProseImg.16c4c81d.js | 1 + .../.output/public/_nuxt/ProseImg.ff3b8d7e.js | 1 - ...dMore.bd9c6b06.js => ReadMore.4d40ce3f.js} | 2 +- ...andbox.21a025fb.js => Sandbox.b8bdb0c7.js} | 2 +- ...er.4efd76f7.js => VideoPlayer.065c6aeb.js} | 2 +- ...fig.4114fca6.js => app.config.f41ab05d.js} | 2 +- ...Data.2775b491.js => asyncData.7c06b2d5.js} | 2 +- ...t-db.a6af4843.js => client-db.514bef37.js} | 2 +- ...{cookie.5bbb58d5.js => cookie.b9cff64d.js} | 2 +- docs/.output/public/_nuxt/default.440db00d.js | 1 - docs/.output/public/_nuxt/default.aab8fc36.js | 1 + ...7c16582.js => document-driven.2bce7a6e.js} | 2 +- docs/.output/public/_nuxt/entry.2d43dc03.js | 10 - docs/.output/public/_nuxt/entry.f3791b9c.js | 10 + ...-404.e92ccfb2.js => error-404.1576ed15.js} | 2 +- ...-500.e0cdca3b.js => error-500.421dc5a9.js} | 2 +- ...846670f.js => error-component.9c8606a2.js} | 2 +- ...{layout.732d57d1.js => layout.0a22fa4a.js} | 2 +- .../{page.57ff23a3.js => page.f33b5a13.js} | 2 +- ...Docus.edcbeab5.js => useDocus.41ab1ca5.js} | 2 +- ...thub.916c5979.js => useGithub.1972ce55.js} | 2 +- ...udio.a9d51910.js => useStudio.ef34e52b.js} | 2 +- ...elcome.0953e899.js => welcome.4086e1c1.js} | 2 +- docs/.output/public/_payload.js | 1 - .../api/_content/cache.1677768033312.json | 1 - .../api/_content/cache.1678414054441.json | 1 + ...312.json => u7BbTyuhiE.1678414054441.json} | 2 +- .../query/19ZwhtnBsu.1677768033312.json | 1 - .../query/429l0g1JsL.1677768033312.json | 1 - .../query/47rOsvYKsq.1677768033312.json | 1 - .../query/4yp2Okse4m.1677768033312.json | 1 - .../query/5CKmdxNney.1677768033312.json | 1 - .../query/6p0u3YetMp.1677768033312.json | 1 - .../query/6pNGztrIpy.1677768033312.json | 1 - .../query/7Rwiic1Mfu.1677768033312.json | 1 - .../query/89g0dcy129.1677768033312.json | 1 - .../query/ALdmBT6ADc.1677768033312.json | 1 - .../query/BLviYQQPJ7.1677768033312.json | 1 - .../query/BoNR1lKKhq.1677768033312.json | 1 - .../query/BrSZyfjf5T.1677768033312.json | 1 - .../query/Bwmd3WsD1s.1677768033312.json | 1 - .../query/CmzcyosjoR.1677768033312.json | 1 - .../query/ESBtShW9sz.1677768033312.json | 1 - .../query/GkDGmUyz0M.1677768033312.json | 1 - .../query/HlvQ2CNI92.1677768033312.json | 1 - .../query/J1BQKIMJrl.1677768033312.json | 1 - .../query/JlWpJOmqbt.1677768033312.json | 1 - .../query/KGVfeDohnm.1677768033312.json | 1 - .../query/Lt6BIToPNN.1677768033312.json | 1 - .../query/MMGz34b8PH.1677768033312.json | 1 - .../query/O32KeiYrUa.1677768033312.json | 1 - .../query/P314osc27P.1677768033312.json | 1 - .../query/RoutJwnTpy.1677768033312.json | 1 - .../query/Smd1FvtVfQ.1677768033312.json | 1 - .../query/Su48x97rZI.1677768033312.json | 1 - .../query/WXBaqghg8k.1677768033312.json | 1 - .../query/WoZUvC9rqb.1677768033312.json | 1 - .../query/XTOw4mgR3f.1677768033312.json | 1 - .../query/XVPoId9nap.1677768033312.json | 1 - .../query/YKOPtCYulT.1677768033312.json | 1 - .../query/a1Dgl9wshN.1677768033312.json | 1 - .../query/bjzyL7C69z.1677768033312.json | 1 - ...312.json => brX4CwCJoQ.1678414054441.json} | 0 .../query/cItbEHp6hX.1677768033312.json | 1 - .../query/eO9hzu7vu1.1677768033312.json | 1 - .../query/eytgjSbEVl.1677768033312.json | 1 - .../query/fis0WzoDt0.1677768033312.json | 1 - .../query/i1ZxWCIkJR.1677768033312.json | 1 - .../query/jWALMeA07z.1677768033312.json | 1 - .../query/kBgJSZjudv.1677768033312.json | 1 - .../query/kP0lcPGw3r.1677768033312.json | 1 - .../query/khs8gA1FwT.1677768033312.json | 1 - .../query/ozdJ1wICj3.1677768033312.json | 1 - .../query/qGEjvCtHGf.1677768033312.json | 1 - .../query/s6oaJBqQEn.1677768033312.json | 1 - .../query/tEt344hQrs.1677768033312.json | 1 - .../query/tuGsv8hqtc.1677768033312.json | 1 - .../query/urUfuwuVJk.1677768033312.json | 1 - .../query/v3ScIppUqo.1677768033312.json | 1 - .../query/wMeaP8hHUN.1677768033312.json | 1 - .../query/wQeP3PjQcK.1677768033312.json | 1 - .../query/wscAfndYyi.1677768033312.json | 1 - .../query/xWeY3NfYtX.1677768033312.json | 1 - ...312.json => xWeY3NfYtX.1678414054441.json} | 0 .../query/xYb2WcNJtQ.1677768033312.json | 1 - .../query/xhTH8MZ8W5.1677768033312.json | 1 - docs/.output/public/api/_github/contributors | 2 +- .../getting-started/introduction/_payload.js | 1 - .../getting-started/introduction/index.html | 15 - .../frontier/cli/development/_payload.js | 1 - .../frontier/cli/development/index.html | 15 - .../public/frontier/cli/usage/_payload.js | 1 - .../public/frontier/cli/usage/index.html | 15 - .../installation/development/_payload.js | 1 - .../installation/development/index.html | 15 - .../frontier/installation/general/_payload.js | 1 - .../frontier/installation/general/index.html | 15 - .../installation/navigation/_payload.js | 1 - .../installation/navigation/index.html | 15 - .../public/frontier/introduction/_payload.js | 1 - .../content-directory/_payload.js | 1 - .../introduction/content-directory/index.html | 15 - .../public/frontier/introduction/index.html | 15 - .../introduction/philosophy/_payload.js | 1 - .../introduction/philosophy/index.html | 15 - .../introduction/whats-frontier/_payload.js | 1 - .../introduction/whats-frontier/index.html | 15 - .../libraries/standard-library/_payload.js | 1 - .../libraries/standard-library/index.html | 15 - .../frontier/libraries/typekit/_payload.js | 1 - .../frontier/libraries/typekit/index.html | 15 - .../frontier/plugins/frontend/_payload.js | 1 - .../frontier/plugins/frontend/index.html | 15 - .../frontier/plugins/mobile/_payload.js | 1 - .../public/frontier/plugins/mobile/index.html | 15 - .../frontier/plugins/quality/_payload.js | 1 - .../frontier/plugins/quality/index.html | 15 - .../frontier/templates/dotnet/_payload.js | 1 - .../frontier/templates/dotnet/index.html | 15 - .../frontier/templates/nuxt/_payload.js | 1 - .../public/frontier/templates/nuxt/index.html | 15 - .../frontier/templates/typescript/_payload.js | 1 - .../frontier/templates/typescript/index.html | 15 - .../getting-started/introduction/_payload.js | 1 - .../getting-started/introduction/index.html | 15 - docs/.output/public/index.html | 12 +- .../getting-started/introduction/_payload.js | 1 - .../getting-started/introduction/index.html | 15 - .../rdvue/cli-commands/usage/_payload.js | 1 - .../rdvue/cli-commands/usage/index.html | 15 - .../rdvue/features/features/_payload.js | 1 - .../public/rdvue/features/features/index.html | 35 - .../getting-started/overview/_payload.js | 1 - .../rdvue/getting-started/overview/index.html | 38 - .../rdvue/scaffilding/sitemap/_payload.js | 1 - .../rdvue/scaffilding/sitemap/index.html | 28 - .../rdvue/template-schema/schema/_payload.js | 1 - .../rdvue/template-schema/schema/index.html | 54 - .../public/rdvue/testing/testing/_payload.js | 1 - .../public/rdvue/testing/testing/index.html | 77 - .../public/rdvue/themeing/theming/_payload.js | 1 - .../public/rdvue/themeing/theming/index.html | 15 - .../getting-started/introduction/_payload.js | 1 - .../getting-started/introduction/index.html | 15 - .../chunks/app/_nuxt/Alert-2b29f746.mjs | 56 + .../chunks/app/_nuxt/Alert-2b29f746.mjs.map | 1 + .../app/_nuxt/Alert-styles.484d4e78.mjs | 6 + .../app/_nuxt/Alert-styles.484d4e78.mjs.map | 1 + .../app/_nuxt/AppFooter-styles.775a1c05.mjs | 6 + .../_nuxt/AppFooter-styles.775a1c05.mjs.map | 1 + .../app/_nuxt/AppHeader-styles.5fd39c5b.mjs | 6 + .../_nuxt/AppHeader-styles.5fd39c5b.mjs.map | 1 + .../_nuxt/AppHeaderDialog-styles.9903b5a9.mjs | 6 + .../AppHeaderDialog-styles.9903b5a9.mjs.map | 1 + .../_nuxt/AppHeaderLogo-styles.795405cc.mjs | 6 + .../AppHeaderLogo-styles.795405cc.mjs.map | 1 + .../AppHeaderNavigation-styles.80a8cd0f.mjs | 6 + ...ppHeaderNavigation-styles.80a8cd0f.mjs.map | 1 + .../_nuxt/AppLoadingBar-styles.b242e2e9.mjs | 6 + .../AppLoadingBar-styles.b242e2e9.mjs.map | 1 + .../app/_nuxt/AppSearch-styles.36eea8dd.mjs | 6 + .../_nuxt/AppSearch-styles.36eea8dd.mjs.map | 1 + .../_nuxt/AppSocialIcons-styles.994e800b.mjs | 6 + .../AppSocialIcons-styles.994e800b.mjs.map | 1 + .../chunks/app/_nuxt/Badge-5f9ab214.mjs | 56 + .../chunks/app/_nuxt/Badge-5f9ab214.mjs.map | 1 + .../app/_nuxt/Badge-styles.8af74ce4.mjs | 6 + .../app/_nuxt/Badge-styles.8af74ce4.mjs.map | 1 + .../chunks/app/_nuxt/BlockHero-f586796f.mjs | 145 + .../app/_nuxt/BlockHero-f586796f.mjs.map | 1 + .../app/_nuxt/BlockHero-styles.df4a0a32.mjs | 6 + .../_nuxt/BlockHero-styles.df4a0a32.mjs.map | 1 + .../chunks/app/_nuxt/ButtonLink-df4791d5.mjs | 92 + .../app/_nuxt/ButtonLink-df4791d5.mjs.map | 1 + .../app/_nuxt/ButtonLink-styles.2eab8dff.mjs | 6 + .../_nuxt/ButtonLink-styles.2eab8dff.mjs.map | 1 + .../chunks/app/_nuxt/Callout-fc92c8b7.mjs | 72 + .../chunks/app/_nuxt/Callout-fc92c8b7.mjs.map | 1 + .../app/_nuxt/Callout-styles.966d42ad.mjs | 6 + .../app/_nuxt/Callout-styles.966d42ad.mjs.map | 1 + .../server/chunks/app/_nuxt/Card-2052047f.mjs | 94 + .../chunks/app/_nuxt/Card-2052047f.mjs.map | 1 + .../chunks/app/_nuxt/Card-styles.29530cd8.mjs | 6 + .../app/_nuxt/Card-styles.29530cd8.mjs.map | 1 + .../chunks/app/_nuxt/CardGrid-160bcd85.mjs | 54 + .../app/_nuxt/CardGrid-160bcd85.mjs.map | 1 + .../app/_nuxt/CardGrid-styles.65f28427.mjs | 6 + .../_nuxt/CardGrid-styles.65f28427.mjs.map | 1 + .../chunks/app/_nuxt/CodeBlock-f6f4711b.mjs | 56 + .../app/_nuxt/CodeBlock-f6f4711b.mjs.map | 1 + .../app/_nuxt/CodeBlock-styles.cac949de.mjs | 6 + .../_nuxt/CodeBlock-styles.cac949de.mjs.map | 1 + .../chunks/app/_nuxt/CodeGroup-67aa2302.mjs | 98 + .../app/_nuxt/CodeGroup-67aa2302.mjs.map | 1 + .../app/_nuxt/CodeGroup-styles.0da0e60b.mjs | 6 + .../_nuxt/CodeGroup-styles.0da0e60b.mjs.map | 1 + .../_nuxt/ComponentPlayground-c7ca07d7.mjs | 143 + .../ComponentPlayground-c7ca07d7.mjs.map | 1 + .../ComponentPlayground-styles.249b42e4.mjs | 6 + ...omponentPlayground-styles.249b42e4.mjs.map | 1 + .../ComponentPlaygroundData-d25a0f8e.mjs | 102 + .../ComponentPlaygroundData-d25a0f8e.mjs.map | 1 + ...omponentPlaygroundData-styles.9bdce5c2.mjs | 6 + ...nentPlaygroundData-styles.9bdce5c2.mjs.map | 1 + .../ComponentPlaygroundProps-8f45f1a7.mjs | 127 + .../ComponentPlaygroundProps-8f45f1a7.mjs.map | 1 + ...mponentPlaygroundProps-styles.82745445.mjs | 6 + ...entPlaygroundProps-styles.82745445.mjs.map | 1 + .../ComponentPlaygroundSlots-0dbd767a.mjs | 27 + .../ComponentPlaygroundSlots-0dbd767a.mjs.map | 1 + .../ComponentPlaygroundTokens-548a0a2d.mjs | 27 + ...ComponentPlaygroundTokens-548a0a2d.mjs.map | 1 + .../chunks/app/_nuxt/Container-1291608c.mjs | 990 + .../app/_nuxt/Container-1291608c.mjs.map | 1 + .../chunks/app/_nuxt/ContentDoc-608dc79a.mjs | 146 + .../app/_nuxt/ContentDoc-608dc79a.mjs.map | 1 + .../chunks/app/_nuxt/ContentList-b4b0de0d.mjs | 95 + .../app/_nuxt/ContentList-b4b0de0d.mjs.map | 1 + .../app/_nuxt/ContentNavigation-8bed293a.mjs | 1056 + .../_nuxt/ContentNavigation-8bed293a.mjs.map | 1 + .../app/_nuxt/ContentPreviewMode-97e009a4.mjs | 80 + .../_nuxt/ContentPreviewMode-97e009a4.mjs.map | 1 + .../ContentPreviewMode-styles.4b29600c.mjs | 8 + ...ContentPreviewMode-styles.4b29600c.mjs.map | 1 + .../app/_nuxt/ContentQuery-8668b0af.mjs | 233 + .../app/_nuxt/ContentQuery-8668b0af.mjs.map | 1 + .../app/_nuxt/ContentRenderer-06a7c657.mjs | 95 + .../_nuxt/ContentRenderer-06a7c657.mjs.map | 1 + .../ContentRendererMarkdown-bebf42c8.mjs | 422 + .../ContentRendererMarkdown-bebf42c8.mjs.map | 1 + .../chunks/app/_nuxt/ContentSlot-deb25102.mjs | 100 + .../app/_nuxt/ContentSlot-deb25102.mjs.map | 1 + .../chunks/app/_nuxt/CopyButton-155eba98.mjs | 56 + .../app/_nuxt/CopyButton-155eba98.mjs.map | 1 + .../chunks/app/_nuxt/DocsAside-a41d5eb9.mjs | 68 + .../app/_nuxt/DocsAside-a41d5eb9.mjs.map | 1 + .../app/_nuxt/DocsAside-styles.764ece99.mjs | 6 + .../_nuxt/DocsAside-styles.764ece99.mjs.map | 1 + .../app/_nuxt/DocsAsideTree-136bd08b.mjs | 350 + .../app/_nuxt/DocsAsideTree-136bd08b.mjs.map | 1 + .../app/_nuxt/DocsPageBottom-270eacfc.mjs | 88 + .../app/_nuxt/DocsPageBottom-270eacfc.mjs.map | 1 + .../_nuxt/DocsPageBottom-styles.e97de530.mjs | 6 + .../DocsPageBottom-styles.e97de530.mjs.map | 1 + .../app/_nuxt/DocsPageLayout-4c2ead4a.mjs | 228 + .../app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map | 1 + .../_nuxt/DocsPageLayout-styles.1c5b6bba.mjs | 6 + .../DocsPageLayout-styles.1c5b6bba.mjs.map | 1 + .../app/_nuxt/DocsPrevNext-7858c09b.mjs | 114 + .../app/_nuxt/DocsPrevNext-7858c09b.mjs.map | 1 + .../_nuxt/DocsPrevNext-styles.23bc8fd8.mjs | 6 + .../DocsPrevNext-styles.23bc8fd8.mjs.map | 1 + .../chunks/app/_nuxt/DocsToc-e4f6bd56.mjs | 48 + .../chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map | 1 + .../app/_nuxt/DocsToc-styles.dfd8d9f4.mjs | 6 + .../app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map | 1 + .../app/_nuxt/DocsTocLinks-95d48629.mjs | 73 + .../app/_nuxt/DocsTocLinks-95d48629.mjs.map | 1 + .../_nuxt/DocsTocLinks-styles.79413e66.mjs | 6 + .../DocsTocLinks-styles.79413e66.mjs.map | 1 + .../_nuxt/DocumentDrivenEmpty-8338ce9f.mjs | 26 + .../DocumentDrivenEmpty-8338ce9f.mjs.map | 1 + .../_nuxt/DocumentDrivenNotFound-4b73ea08.mjs | 50 + .../DocumentDrivenNotFound-4b73ea08.mjs.map | 1 + ...DocumentDrivenNotFound-styles.a8b03708.mjs | 6 + ...mentDrivenNotFound-styles.a8b03708.mjs.map | 1 + .../chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs | 174 + .../app/_nuxt/EditOnLink-e55cd3a0.mjs.map | 1 + .../chunks/app/_nuxt/Ellipsis-b69b027e.mjs | 75 + .../app/_nuxt/Ellipsis-b69b027e.mjs.map | 1 + .../app/_nuxt/Ellipsis-styles.3bef1bdd.mjs | 6 + .../_nuxt/Ellipsis-styles.3bef1bdd.mjs.map | 1 + .../chunks/app/_nuxt/ExampleCard-95e9f743.mjs | 23 + .../app/_nuxt/ExampleCard-95e9f743.mjs.map | 1 + .../chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs | 25 + .../app/_nuxt/ExampleHero-8fe98ee8.mjs.map | 1 + .../app/_nuxt/ExampleIconCard-a87d1258.mjs | 37 + .../_nuxt/ExampleIconCard-a87d1258.mjs.map | 1 + .../app/_nuxt/ExampleMultiselect-915c74fe.mjs | 33 + .../_nuxt/ExampleMultiselect-915c74fe.mjs.map | 1 + .../app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs | 37 + .../_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map | 1 + .../app/_nuxt/GithubCommits-b7b81c66.mjs | 55 + .../app/_nuxt/GithubCommits-b7b81c66.mjs.map | 1 + .../app/_nuxt/GithubContributors-1aa0f22f.mjs | 55 + .../_nuxt/GithubContributors-1aa0f22f.mjs.map | 1 + .../_nuxt/GithubFileContributors-285e4522.mjs | 61 + .../GithubFileContributors-285e4522.mjs.map | 1 + .../app/_nuxt/GithubLastRelease-b4d6e912.mjs | 59 + .../_nuxt/GithubLastRelease-b4d6e912.mjs.map | 1 + .../chunks/app/_nuxt/GithubLink-f632fd3b.mjs | 132 + .../app/_nuxt/GithubLink-f632fd3b.mjs.map | 1 + .../app/_nuxt/GithubReadme-9e48e600.mjs | 55 + .../app/_nuxt/GithubReadme-9e48e600.mjs.map | 1 + .../app/_nuxt/GithubRelease-140d3d2e.mjs | 62 + .../app/_nuxt/GithubRelease-140d3d2e.mjs.map | 1 + .../app/_nuxt/GithubReleases-2ab96fb8.mjs | 55 + .../app/_nuxt/GithubReleases-2ab96fb8.mjs.map | 1 + .../app/_nuxt/GithubRepository-8db11ede.mjs | 55 + .../_nuxt/GithubRepository-8db11ede.mjs.map | 1 + .../app/_nuxt/HeroAnnouncement-a479df93.mjs | 69 + .../_nuxt/HeroAnnouncement-a479df93.mjs.map | 1 + .../HeroAnnouncement-styles.a73a7723.mjs | 6 + .../HeroAnnouncement-styles.a73a7723.mjs.map | 1 + .../app/_nuxt/IconCodeSandBox-289e2c7f.mjs | 25 + .../_nuxt/IconCodeSandBox-289e2c7f.mjs.map | 1 + .../chunks/app/_nuxt/IconDocus-12d300be.mjs | 25 + .../app/_nuxt/IconDocus-12d300be.mjs.map | 1 + .../app/_nuxt/IconMarkdown-092c828f.mjs | 26 + .../app/_nuxt/IconMarkdown-092c828f.mjs.map | 1 + .../chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs | 24 + .../app/_nuxt/IconNuxt-c11c3c9c.mjs.map | 1 + .../app/_nuxt/IconNuxtContent-f8fb6ffc.mjs | 24 + .../_nuxt/IconNuxtContent-f8fb6ffc.mjs.map | 1 + .../app/_nuxt/IconNuxtLabs-1b2b0005.mjs | 24 + .../app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map | 1 + .../app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs | 24 + .../app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map | 1 + .../_nuxt/IconNuxtStudio-styles.d164db17.mjs | 6 + .../IconNuxtStudio-styles.d164db17.mjs.map | 1 + .../app/_nuxt/IconStackBlitz-def46545.mjs | 25 + .../app/_nuxt/IconStackBlitz-def46545.mjs.map | 1 + .../app/_nuxt/IconVueTelescope-96109b9a.mjs | 25 + .../_nuxt/IconVueTelescope-96109b9a.mjs.map | 1 + .../server/chunks/app/_nuxt/List-12ebf73c.mjs | 72 + .../chunks/app/_nuxt/List-12ebf73c.mjs.map | 1 + .../chunks/app/_nuxt/List-styles.ff61b956.mjs | 6 + .../app/_nuxt/List-styles.ff61b956.mjs.map | 1 + .../chunks/app/_nuxt/Markdown-1885a814.mjs | 46 + .../app/_nuxt/Markdown-1885a814.mjs.map | 1 + .../chunks/app/_nuxt/MyButton-a7c11108.mjs | 48 + .../app/_nuxt/MyButton-a7c11108.mjs.map | 1 + .../app/_nuxt/MyButton-styles.0da530f8.mjs | 6 + .../_nuxt/MyButton-styles.0da530f8.mjs.map | 1 + .../chunks/app/_nuxt/NuxtImg-89991070.mjs | 63 + .../chunks/app/_nuxt/NuxtImg-89991070.mjs.map | 1 + .../app/_nuxt/PropInspector-d4a70134.mjs | 32 + .../app/_nuxt/PropInspector-d4a70134.mjs.map | 1 + .../_nuxt/PropInspector-styles.ad1f0c4f.mjs | 6 + .../PropInspector-styles.ad1f0c4f.mjs.map | 1 + .../chunks/app/_nuxt/Props-c617d5b2.mjs | 850 + .../chunks/app/_nuxt/Props-c617d5b2.mjs.map | 1 + .../chunks/app/_nuxt/ProseA-86ef3985.mjs | 64 + .../chunks/app/_nuxt/ProseA-86ef3985.mjs.map | 1 + .../app/_nuxt/ProseA-styles.ac6b0f84.mjs | 6 + .../app/_nuxt/ProseA-styles.ac6b0f84.mjs.map | 1 + .../app/_nuxt/ProseBlockquote-faf6e310.mjs | 23 + .../_nuxt/ProseBlockquote-faf6e310.mjs.map | 1 + .../_nuxt/ProseBlockquote-styles.c0f9c45a.mjs | 6 + .../ProseBlockquote-styles.c0f9c45a.mjs.map | 1 + .../chunks/app/_nuxt/ProseCode-94b7281d.mjs | 124 + .../app/_nuxt/ProseCode-94b7281d.mjs.map | 1 + .../app/_nuxt/ProseCodeInline-960b9a43.mjs | 23 + .../_nuxt/ProseCodeInline-960b9a43.mjs.map | 1 + .../_nuxt/ProseCodeInline-styles.4873b751.mjs | 6 + .../ProseCodeInline-styles.4873b751.mjs.map | 1 + .../chunks/app/_nuxt/ProseEm-f52fc33d.mjs | 23 + .../chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map | 1 + .../app/_nuxt/ProseEm-styles.0ce5f2c8.mjs | 6 + .../app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map | 1 + .../chunks/app/_nuxt/ProseH1-81b8c44a.mjs | 73 + .../chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map | 1 + .../app/_nuxt/ProseH1-styles.086fd4ea.mjs | 6 + .../app/_nuxt/ProseH1-styles.086fd4ea.mjs.map | 1 + .../chunks/app/_nuxt/ProseH2-abc0d7da.mjs | 73 + .../chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map | 1 + .../app/_nuxt/ProseH2-styles.8ba56a52.mjs | 6 + .../app/_nuxt/ProseH2-styles.8ba56a52.mjs.map | 1 + .../chunks/app/_nuxt/ProseH3-6c54494a.mjs | 73 + .../chunks/app/_nuxt/ProseH3-6c54494a.mjs.map | 1 + .../app/_nuxt/ProseH3-styles.492ea689.mjs | 6 + .../app/_nuxt/ProseH3-styles.492ea689.mjs.map | 1 + .../chunks/app/_nuxt/ProseH4-4f0da863.mjs | 73 + .../chunks/app/_nuxt/ProseH4-4f0da863.mjs.map | 1 + .../app/_nuxt/ProseH4-styles.68f135ad.mjs | 6 + .../app/_nuxt/ProseH4-styles.68f135ad.mjs.map | 1 + .../chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs | 73 + .../chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map | 1 + .../app/_nuxt/ProseH5-styles.c63d0e8d.mjs | 6 + .../app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map | 1 + .../chunks/app/_nuxt/ProseH6-cffb1b40.mjs | 73 + .../chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map | 1 + .../app/_nuxt/ProseH6-styles.92c4d496.mjs | 6 + .../app/_nuxt/ProseH6-styles.92c4d496.mjs.map | 1 + .../chunks/app/_nuxt/ProseHr-fa0af264.mjs | 21 + .../chunks/app/_nuxt/ProseHr-fa0af264.mjs.map | 1 + .../app/_nuxt/ProseHr-styles.22aa3717.mjs | 6 + .../app/_nuxt/ProseHr-styles.22aa3717.mjs.map | 1 + .../chunks/app/_nuxt/ProseImg-f3012414.mjs | 62 + .../app/_nuxt/ProseImg-f3012414.mjs.map | 1 + .../app/_nuxt/ProseImg-styles.cfb4616f.mjs | 6 + .../_nuxt/ProseImg-styles.cfb4616f.mjs.map | 1 + .../chunks/app/_nuxt/ProseLi-948accef.mjs | 23 + .../chunks/app/_nuxt/ProseLi-948accef.mjs.map | 1 + .../app/_nuxt/ProseLi-styles.29062533.mjs | 6 + .../app/_nuxt/ProseLi-styles.29062533.mjs.map | 1 + .../chunks/app/_nuxt/ProseOl-b8e80875.mjs | 23 + .../chunks/app/_nuxt/ProseOl-b8e80875.mjs.map | 1 + .../app/_nuxt/ProseOl-styles.c085ed74.mjs | 6 + .../app/_nuxt/ProseOl-styles.c085ed74.mjs.map | 1 + .../chunks/app/_nuxt/ProseP-a91aeff7.mjs | 23 + .../chunks/app/_nuxt/ProseP-a91aeff7.mjs.map | 1 + .../app/_nuxt/ProseP-styles.b304bfc7.mjs | 6 + .../app/_nuxt/ProseP-styles.b304bfc7.mjs.map | 1 + .../chunks/app/_nuxt/ProseStrong-246281a0.mjs | 23 + .../app/_nuxt/ProseStrong-246281a0.mjs.map | 1 + .../app/_nuxt/ProseStrong-styles.ec17e85f.mjs | 6 + .../_nuxt/ProseStrong-styles.ec17e85f.mjs.map | 1 + .../chunks/app/_nuxt/ProseTable-425d227b.mjs | 23 + .../app/_nuxt/ProseTable-425d227b.mjs.map | 1 + .../app/_nuxt/ProseTable-styles.b377f50f.mjs | 6 + .../_nuxt/ProseTable-styles.b377f50f.mjs.map | 1 + .../chunks/app/_nuxt/ProseTbody-f622755a.mjs | 23 + .../app/_nuxt/ProseTbody-f622755a.mjs.map | 1 + .../chunks/app/_nuxt/ProseTd-ce60dd42.mjs | 23 + .../chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map | 1 + .../app/_nuxt/ProseTd-styles.2b89033a.mjs | 6 + .../app/_nuxt/ProseTd-styles.2b89033a.mjs.map | 1 + .../chunks/app/_nuxt/ProseTh-8250ce9f.mjs | 23 + .../chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map | 1 + .../app/_nuxt/ProseTh-styles.9ccb956b.mjs | 6 + .../app/_nuxt/ProseTh-styles.9ccb956b.mjs.map | 1 + .../chunks/app/_nuxt/ProseThead-7ba76e48.mjs | 23 + .../app/_nuxt/ProseThead-7ba76e48.mjs.map | 1 + .../app/_nuxt/ProseThead-styles.319de3db.mjs | 6 + .../_nuxt/ProseThead-styles.319de3db.mjs.map | 1 + .../chunks/app/_nuxt/ProseTr-6559f7d8.mjs | 23 + .../chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map | 1 + .../app/_nuxt/ProseTr-styles.755e9793.mjs | 6 + .../app/_nuxt/ProseTr-styles.755e9793.mjs.map | 1 + .../chunks/app/_nuxt/ProseUl-79ecc4c5.mjs | 23 + .../chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map | 1 + .../app/_nuxt/ProseUl-styles.2d31952c.mjs | 6 + .../app/_nuxt/ProseUl-styles.2d31952c.mjs.map | 1 + .../chunks/app/_nuxt/ReadMore-4e2f1622.mjs | 86 + .../app/_nuxt/ReadMore-4e2f1622.mjs.map | 1 + .../chunks/app/_nuxt/Sandbox-3e5bdd00.mjs | 111 + .../chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map | 1 + .../app/_nuxt/Sandbox-styles.b322716f.mjs | 6 + .../app/_nuxt/Sandbox-styles.b322716f.mjs.map | 1 + .../chunks/app/_nuxt/SourceLink-c27fde85.mjs | 33 + .../app/_nuxt/SourceLink-c27fde85.mjs.map | 1 + .../chunks/app/_nuxt/TabsHeader-c9b56dab.mjs | 72 + .../app/_nuxt/TabsHeader-c9b56dab.mjs.map | 1 + .../app/_nuxt/TabsHeader-styles.06000801.mjs | 6 + .../_nuxt/TabsHeader-styles.06000801.mjs.map | 1 + .../chunks/app/_nuxt/Terminal-35e8f795.mjs | 47 + .../app/_nuxt/Terminal-35e8f795.mjs.map | 1 + .../app/_nuxt/Terminal-styles.a4b76b2e.mjs | 6 + .../_nuxt/Terminal-styles.a4b76b2e.mjs.map | 1 + .../app/_nuxt/ThemeSelect-styles.d47092b1.mjs | 6 + .../_nuxt/ThemeSelect-styles.d47092b1.mjs.map | 1 + .../app/_nuxt/TokensPlayground-84b52014.mjs | 26 + .../_nuxt/TokensPlayground-84b52014.mjs.map | 1 + .../chunks/app/_nuxt/VideoPlayer-2b282302.mjs | 108 + .../app/_nuxt/VideoPlayer-2b282302.mjs.map | 1 + .../app/_nuxt/VideoPlayer-styles.956d04fb.mjs | 6 + .../_nuxt/VideoPlayer-styles.956d04fb.mjs.map | 1 + .../chunks/app/_nuxt/VoltaBoard-98820156.mjs | 32 + .../app/_nuxt/VoltaBoard-98820156.mjs.map | 1 + .../app/_nuxt/VoltaBoard-styles.0de509eb.mjs | 6 + .../_nuxt/VoltaBoard-styles.0de509eb.mjs.map | 1 + .../chunks/app/_nuxt/app.config-832f5f68.mjs | 530 + .../app/_nuxt/app.config-832f5f68.mjs.map | 1 + .../chunks/app/_nuxt/asyncData-c43d4319.mjs | 116 + .../app/_nuxt/asyncData-c43d4319.mjs.map | 1 + .../chunks/app/_nuxt/client-db-fd379c8e.mjs | 355 + .../app/_nuxt/client-db-fd379c8e.mjs.map | 1 + .../chunks/app/_nuxt/debug-43adc91a.mjs | 44 + .../chunks/app/_nuxt/debug-43adc91a.mjs.map | 1 + .../chunks/app/_nuxt/default-cafbf0bc.mjs | 53 + .../chunks/app/_nuxt/default-cafbf0bc.mjs.map | 1 + .../chunks/app/_nuxt/docs-page-75eace63.mjs | 35 + .../app/_nuxt/docs-page-75eace63.mjs.map | 1 + .../app/_nuxt/docs-page-styles.bb658b38.mjs | 6 + .../_nuxt/docs-page-styles.bb658b38.mjs.map | 1 + .../app/_nuxt/document-driven-27005915.mjs | 104 + .../_nuxt/document-driven-27005915.mjs.map | 1 + .../chunks/app/_nuxt/empty-446a838e.mjs | 21 + .../chunks/app/_nuxt/empty-446a838e.mjs.map | 1 + .../chunks/app/_nuxt/error-404-6d0186e4.mjs | 99 + .../app/_nuxt/error-404-6d0186e4.mjs.map | 1 + .../app/_nuxt/error-404-styles.1b6f35f0.mjs | 6 + .../_nuxt/error-404-styles.1b6f35f0.mjs.map | 1 + .../chunks/app/_nuxt/error-500-6ca426c2.mjs | 78 + .../app/_nuxt/error-500-6ca426c2.mjs.map | 1 + .../app/_nuxt/error-500-styles.17df0758.mjs | 6 + .../_nuxt/error-500-styles.17df0758.mjs.map | 1 + .../app/_nuxt/error-component-969bdc5d.mjs | 42 + .../_nuxt/error-component-969bdc5d.mjs.map | 1 + .../chunks/app/_nuxt/index-1624a23e.mjs | 281 + .../chunks/app/_nuxt/index-1624a23e.mjs.map | 1 + .../app/_nuxt/island-renderer-862b92a0.mjs | 59 + .../_nuxt/island-renderer-862b92a0.mjs.map | 1 + .../chunks/app/_nuxt/layout-88ff67c1.mjs | 75 + .../chunks/app/_nuxt/layout-88ff67c1.mjs.map | 1 + .../server/chunks/app/_nuxt/page-26ac7e13.mjs | 55 + .../chunks/app/_nuxt/page-26ac7e13.mjs.map | 1 + .../chunks/app/_nuxt/page-styles.df5d38b1.mjs | 6 + .../app/_nuxt/page-styles.df5d38b1.mjs.map | 1 + ...eau-nuxt-plugin.server-styles.1bf5bf59.mjs | 6 + ...nuxt-plugin.server-styles.1bf5bf59.mjs.map | 1 + .../chunks/app/_nuxt/query-dd064fd9.mjs | 154 + .../chunks/app/_nuxt/query-dd064fd9.mjs.map | 1 + .../chunks/app/_nuxt/useDocus-928368c4.mjs | 235 + .../app/_nuxt/useDocus-928368c4.mjs.map | 1 + .../chunks/app/_nuxt/useGithub-94614457.mjs | 70 + .../app/_nuxt/useGithub-94614457.mjs.map | 1 + .../chunks/app/_nuxt/useStudio-7ec450fb.mjs | 228 + .../app/_nuxt/useStudio-7ec450fb.mjs.map | 1 + .../app/_nuxt/welcome-styles.85286bcd.mjs | 6 + .../app/_nuxt/welcome-styles.85286bcd.mjs.map | 1 + .../server/chunks/app/client.manifest.mjs | 2847 ++ .../server/chunks/app/client.manifest.mjs.map | 1 + docs/.output/server/chunks/app/server.mjs | 24669 ++++++++++++++++ docs/.output/server/chunks/app/server.mjs.map | 1 + docs/.output/server/chunks/app/styles.mjs | 74 + docs/.output/server/chunks/app/styles.mjs.map | 1 + docs/.output/server/chunks/error-500.mjs | 21 + docs/.output/server/chunks/error-500.mjs.map | 1 + .../server/chunks/handlers/renderer.mjs | 528 + .../server/chunks/handlers/renderer.mjs.map | 1 + docs/.output/server/chunks/nitro/config.mjs | 45 + .../server/chunks/nitro/config.mjs.map | 1 + .../server/chunks/nitro/node-server.mjs | 16313 ++++++++++ .../server/chunks/nitro/node-server.mjs.map | 1 + .../server/chunks/raw/1.deployment.mjs | 5 + .../server/chunks/raw/1.deployment.mjs.map | 1 + docs/.output/server/chunks/raw/1.dotNet.mjs | 5 + .../server/chunks/raw/1.dotNet.mjs.map | 1 + docs/.output/server/chunks/raw/1.features.mjs | 5 + .../server/chunks/raw/1.features.mjs.map | 1 + .../.output/server/chunks/raw/1.features2.mjs | 5 + .../server/chunks/raw/1.features2.mjs.map | 1 + docs/.output/server/chunks/raw/1.frontend.mjs | 5 + .../server/chunks/raw/1.frontend.mjs.map | 1 + docs/.output/server/chunks/raw/1.general.mjs | 5 + .../server/chunks/raw/1.general.mjs.map | 1 + docs/.output/server/chunks/raw/1.index.mjs | 5 + .../.output/server/chunks/raw/1.index.mjs.map | 1 + .../server/chunks/raw/1.introduction.mjs | 5 + .../server/chunks/raw/1.introduction.mjs.map | 1 + docs/.output/server/chunks/raw/1.overview.mjs | 5 + .../server/chunks/raw/1.overview.mjs.map | 1 + .../.output/server/chunks/raw/1.overview2.mjs | 5 + .../server/chunks/raw/1.overview2.mjs.map | 1 + docs/.output/server/chunks/raw/1.schema.mjs | 5 + .../server/chunks/raw/1.schema.mjs.map | 1 + docs/.output/server/chunks/raw/1.sitemap.mjs | 5 + .../server/chunks/raw/1.sitemap.mjs.map | 1 + docs/.output/server/chunks/raw/1.testing.mjs | 5 + .../server/chunks/raw/1.testing.mjs.map | 1 + docs/.output/server/chunks/raw/1.testing2.mjs | 5 + .../server/chunks/raw/1.testing2.mjs.map | 1 + docs/.output/server/chunks/raw/1.theming.mjs | 5 + .../server/chunks/raw/1.theming.mjs.map | 1 + docs/.output/server/chunks/raw/1.typekit.mjs | 5 + .../server/chunks/raw/1.typekit.mjs.map | 1 + docs/.output/server/chunks/raw/1.usage.mjs | 5 + .../.output/server/chunks/raw/1.usage.mjs.map | 1 + docs/.output/server/chunks/raw/1.usage2.mjs | 5 + .../server/chunks/raw/1.usage2.mjs.map | 1 + docs/.output/server/chunks/raw/1.usage3.mjs | 5 + .../server/chunks/raw/1.usage3.mjs.map | 1 + .../server/chunks/raw/1.whats-frontier.mjs | 5 + .../chunks/raw/1.whats-frontier.mjs.map | 1 + .../server/chunks/raw/2.content-directory.mjs | 5 + .../chunks/raw/2.content-directory.mjs.map | 1 + .../server/chunks/raw/2.development.mjs | 5 + .../server/chunks/raw/2.development.mjs.map | 1 + .../server/chunks/raw/2.development2.mjs | 5 + .../server/chunks/raw/2.development2.mjs.map | 1 + .../server/chunks/raw/2.introduction.mjs | 5 + .../server/chunks/raw/2.introduction.mjs.map | 1 + .../server/chunks/raw/2.introduction2.mjs | 5 + .../server/chunks/raw/2.introduction2.mjs.map | 1 + docs/.output/server/chunks/raw/2.mobile.mjs | 5 + .../server/chunks/raw/2.mobile.mjs.map | 1 + docs/.output/server/chunks/raw/2.quality.mjs | 5 + .../server/chunks/raw/2.quality.mjs.map | 1 + .../server/chunks/raw/2.standard-library.mjs | 5 + .../chunks/raw/2.standard-library.mjs.map | 1 + .../server/chunks/raw/2.typescript.mjs | 5 + .../server/chunks/raw/2.typescript.mjs.map | 1 + .../server/chunks/raw/3.navigation.mjs | 5 + .../server/chunks/raw/3.navigation.mjs.map | 1 + docs/.output/server/chunks/raw/3.nuxt.mjs | 5 + docs/.output/server/chunks/raw/3.nuxt.mjs.map | 1 + .../server/chunks/raw/3.philosophy.mjs | 5 + .../server/chunks/raw/3.philosophy.mjs.map | 1 + docs/.output/server/chunks/raw/_dir.mjs | 5 + docs/.output/server/chunks/raw/_dir.mjs.map | 1 + docs/.output/server/chunks/raw/_dir10.mjs | 5 + docs/.output/server/chunks/raw/_dir10.mjs.map | 1 + docs/.output/server/chunks/raw/_dir11.mjs | 5 + docs/.output/server/chunks/raw/_dir11.mjs.map | 1 + docs/.output/server/chunks/raw/_dir12.mjs | 5 + docs/.output/server/chunks/raw/_dir12.mjs.map | 1 + docs/.output/server/chunks/raw/_dir13.mjs | 5 + docs/.output/server/chunks/raw/_dir13.mjs.map | 1 + docs/.output/server/chunks/raw/_dir14.mjs | 5 + docs/.output/server/chunks/raw/_dir14.mjs.map | 1 + docs/.output/server/chunks/raw/_dir15.mjs | 5 + docs/.output/server/chunks/raw/_dir15.mjs.map | 1 + docs/.output/server/chunks/raw/_dir16.mjs | 5 + docs/.output/server/chunks/raw/_dir16.mjs.map | 1 + docs/.output/server/chunks/raw/_dir17.mjs | 5 + docs/.output/server/chunks/raw/_dir17.mjs.map | 1 + docs/.output/server/chunks/raw/_dir18.mjs | 5 + docs/.output/server/chunks/raw/_dir18.mjs.map | 1 + docs/.output/server/chunks/raw/_dir19.mjs | 5 + docs/.output/server/chunks/raw/_dir19.mjs.map | 1 + docs/.output/server/chunks/raw/_dir2.mjs | 5 + docs/.output/server/chunks/raw/_dir2.mjs.map | 1 + docs/.output/server/chunks/raw/_dir20.mjs | 5 + docs/.output/server/chunks/raw/_dir20.mjs.map | 1 + docs/.output/server/chunks/raw/_dir21.mjs | 5 + docs/.output/server/chunks/raw/_dir21.mjs.map | 1 + docs/.output/server/chunks/raw/_dir22.mjs | 5 + docs/.output/server/chunks/raw/_dir22.mjs.map | 1 + docs/.output/server/chunks/raw/_dir23.mjs | 5 + docs/.output/server/chunks/raw/_dir23.mjs.map | 1 + docs/.output/server/chunks/raw/_dir24.mjs | 5 + docs/.output/server/chunks/raw/_dir24.mjs.map | 1 + docs/.output/server/chunks/raw/_dir25.mjs | 5 + docs/.output/server/chunks/raw/_dir25.mjs.map | 1 + docs/.output/server/chunks/raw/_dir26.mjs | 5 + docs/.output/server/chunks/raw/_dir26.mjs.map | 1 + docs/.output/server/chunks/raw/_dir27.mjs | 5 + docs/.output/server/chunks/raw/_dir27.mjs.map | 1 + docs/.output/server/chunks/raw/_dir3.mjs | 5 + docs/.output/server/chunks/raw/_dir3.mjs.map | 1 + docs/.output/server/chunks/raw/_dir4.mjs | 5 + docs/.output/server/chunks/raw/_dir4.mjs.map | 1 + docs/.output/server/chunks/raw/_dir5.mjs | 5 + docs/.output/server/chunks/raw/_dir5.mjs.map | 1 + docs/.output/server/chunks/raw/_dir6.mjs | 5 + docs/.output/server/chunks/raw/_dir6.mjs.map | 1 + docs/.output/server/chunks/raw/_dir7.mjs | 5 + docs/.output/server/chunks/raw/_dir7.mjs.map | 1 + docs/.output/server/chunks/raw/_dir8.mjs | 5 + docs/.output/server/chunks/raw/_dir8.mjs.map | 1 + docs/.output/server/chunks/raw/_dir9.mjs | 5 + docs/.output/server/chunks/raw/_dir9.mjs.map | 1 + .../server/chunks/raw/content-index.mjs | 5 + .../server/chunks/raw/content-index.mjs.map | 1 + .../server/chunks/raw/content-navigation.mjs | 5 + .../chunks/raw/content-navigation.mjs.map | 1 + .../.output/server/chunks/raw/hello-world.mjs | 5 + .../server/chunks/raw/hello-world.mjs.map | 1 + docs/.output/server/chunks/raw/index.mjs | 5 + docs/.output/server/chunks/raw/index.mjs.map | 1 + .../chunks/rollup/_virtual_head-static.mjs | 4 + .../rollup/_virtual_head-static.mjs.map | 1 + docs/.output/server/index.mjs | 52 + docs/.output/server/index.mjs.map | 1 + docs/.output/server/package.json | 174 + 727 files changed, 57850 insertions(+), 854 deletions(-) delete mode 100644 docs/.output/public/200.html delete mode 100644 docs/.output/public/404.html delete mode 100644 docs/.output/public/__app_config.json/_payload.js delete mode 100644 docs/.output/public/__app_config.json/index.html rename docs/.output/public/_nuxt/{Alert.443f6167.js => Alert.41cb256b.js} (66%) create mode 100644 docs/.output/public/_nuxt/AppLayout.7354fe11.js delete mode 100644 docs/.output/public/_nuxt/AppLayout.bec693ec.js rename docs/.output/public/_nuxt/{Badge.a4f5598b.js => Badge.af643d4e.js} (63%) rename docs/.output/public/_nuxt/{BlockHero.81a09280.js => BlockHero.495ede00.js} (84%) rename docs/.output/public/_nuxt/{ButtonLink.2789431f.js => ButtonLink.91883881.js} (82%) rename docs/.output/public/_nuxt/{Callout.e09a04aa.js => Callout.12d57ced.js} (72%) rename docs/.output/public/_nuxt/{Card.24a8ff8f.js => Card.178cbb97.js} (70%) rename docs/.output/public/_nuxt/{CardGrid.362959de.js => CardGrid.e3a9f75d.js} (67%) delete mode 100644 docs/.output/public/_nuxt/ComponentPlayground.00658939.js create mode 100644 docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js rename docs/.output/public/_nuxt/{ComponentPlayground.vue.db6a2f57.js => ComponentPlayground.vue.1e5cc557.js} (83%) rename docs/.output/public/_nuxt/{ComponentPlaygroundData.c394e239.js => ComponentPlaygroundData.8cb96cd4.js} (81%) rename docs/.output/public/_nuxt/{ComponentPlaygroundProps.59058ddd.js => ComponentPlaygroundProps.583c9bda.js} (80%) rename docs/.output/public/_nuxt/{ContentDoc.08489604.js => ContentDoc.cbc50263.js} (77%) rename docs/.output/public/_nuxt/{ContentList.394febbe.js => ContentList.e8a9fb87.js} (72%) rename docs/.output/public/_nuxt/{ContentNavigation.d592cbe0.js => ContentNavigation.cefda237.js} (56%) rename docs/.output/public/_nuxt/{ContentPreviewMode.0a29e9d3.js => ContentPreviewMode.ea418cb0.js} (92%) rename docs/.output/public/_nuxt/{ContentQuery.7a036327.js => ContentQuery.9f33890e.js} (89%) rename docs/.output/public/_nuxt/{ContentRenderer.51874b59.js => ContentRenderer.b7732722.js} (90%) rename docs/.output/public/_nuxt/{ContentRendererMarkdown.1da6a628.js => ContentRendererMarkdown.e52b62de.js} (99%) rename docs/.output/public/_nuxt/{ContentSlot.7e1a494f.js => ContentSlot.c5067a4f.js} (83%) rename docs/.output/public/_nuxt/{CopyButton.c9acc792.js => CopyButton.f7858c79.js} (79%) rename docs/.output/public/_nuxt/{DocsAside.44ffd29b.js => DocsAside.08a0955d.js} (71%) rename docs/.output/public/_nuxt/{DocsAsideTree.08d70919.js => DocsAsideTree.b95e55e0.js} (99%) rename docs/.output/public/_nuxt/{DocsPageBottom.a96d3867.js => DocsPageBottom.b38ecc43.js} (75%) rename docs/.output/public/_nuxt/{DocsPageLayout.8e541ec6.js => DocsPageLayout.d352cf62.js} (79%) rename docs/.output/public/_nuxt/{DocsPrevNext.adb795e8.js => DocsPrevNext.2b9ea48f.js} (82%) rename docs/.output/public/_nuxt/{DocsToc.03cf2013.js => DocsToc.55846f28.js} (73%) rename docs/.output/public/_nuxt/{DocsTocLinks.c11364e4.js => DocsTocLinks.644c91ee.js} (85%) rename docs/.output/public/_nuxt/{DocumentDrivenNotFound.25e8b3dc.js => DocumentDrivenNotFound.66d77c6e.js} (75%) create mode 100644 docs/.output/public/_nuxt/EditOnLink.77af6984.js delete mode 100644 docs/.output/public/_nuxt/EditOnLink.f0fb05c8.js rename docs/.output/public/_nuxt/{EditOnLink.vue.21b8aa9d.js => EditOnLink.vue.1d2292f2.js} (94%) delete mode 100644 docs/.output/public/_nuxt/ExampleTheTitle.e4b43830.js create mode 100644 docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js rename docs/.output/public/_nuxt/{GithubCommits.e43b30d0.js => GithubCommits.35c65eac.js} (60%) rename docs/.output/public/_nuxt/{GithubContributors.35cdb9ac.js => GithubContributors.9ddddad6.js} (61%) rename docs/.output/public/_nuxt/{GithubFileContributors.2287b161.js => GithubFileContributors.1ad6f7bf.js} (64%) rename docs/.output/public/_nuxt/{GithubLastRelease.7ffc61aa.js => GithubLastRelease.a4aeb30e.js} (61%) rename docs/.output/public/_nuxt/{GithubLink.6e1f1ea3.js => GithubLink.6cd695ea.js} (96%) rename docs/.output/public/_nuxt/{GithubReadme.3309f143.js => GithubReadme.5eafd6e1.js} (60%) rename docs/.output/public/_nuxt/{GithubRelease.fea5f747.js => GithubRelease.d892113d.js} (62%) rename docs/.output/public/_nuxt/{GithubReleases.54c416e9.js => GithubReleases.05c52708.js} (60%) rename docs/.output/public/_nuxt/{GithubRepository.bbd436c6.js => GithubRepository.345038c7.js} (61%) rename docs/.output/public/_nuxt/{HeroAnnouncement.32859cbb.js => HeroAnnouncement.15bcf84c.js} (64%) delete mode 100644 docs/.output/public/_nuxt/List.0c42b342.js create mode 100644 docs/.output/public/_nuxt/List.63030545.js rename docs/.output/public/_nuxt/{List.vue.d5bae865.js => List.vue.98cb48bf.js} (85%) rename docs/.output/public/_nuxt/{Markdown.eb6ef861.js => Markdown.7f24e431.js} (52%) rename docs/.output/public/_nuxt/{MyButton.d8f00b03.js => MyButton.67bdaa98.js} (58%) delete mode 100644 docs/.output/public/_nuxt/NuxtImg.3bab810e.js create mode 100644 docs/.output/public/_nuxt/NuxtImg.66944f8e.js rename docs/.output/public/_nuxt/{NuxtImg.vue.594abc77.js => NuxtImg.vue.a13022c3.js} (90%) rename docs/.output/public/_nuxt/{Props.80a76d3d.js => Props.876d937c.js} (92%) rename docs/.output/public/_nuxt/{ProseA.c8de8b63.js => ProseA.a4d07cc8.js} (89%) rename docs/.output/public/_nuxt/{ProseCode.2adf04d1.js => ProseCode.0e5c7be6.js} (76%) rename docs/.output/public/_nuxt/{ProseCodeCopyButton.1eec7dbb.js => ProseCodeCopyButton.29965c5a.js} (85%) rename docs/.output/public/_nuxt/{ProseH1.ee507e45.js => ProseH1.c24b90eb.js} (74%) rename docs/.output/public/_nuxt/{ProseH2.36291d6d.js => ProseH2.957cbe8e.js} (74%) rename docs/.output/public/_nuxt/{ProseH3.0209a6ec.js => ProseH3.cb2444de.js} (74%) rename docs/.output/public/_nuxt/{ProseH4.4ddfc0da.js => ProseH4.77a5278f.js} (67%) rename docs/.output/public/_nuxt/{ProseH5.fd3b0c88.js => ProseH5.8dc93198.js} (74%) rename docs/.output/public/_nuxt/{ProseH6.c2012c78.js => ProseH6.bdc78e01.js} (74%) create mode 100644 docs/.output/public/_nuxt/ProseImg.16c4c81d.js delete mode 100644 docs/.output/public/_nuxt/ProseImg.ff3b8d7e.js rename docs/.output/public/_nuxt/{ReadMore.bd9c6b06.js => ReadMore.4d40ce3f.js} (66%) rename docs/.output/public/_nuxt/{Sandbox.21a025fb.js => Sandbox.b8bdb0c7.js} (89%) rename docs/.output/public/_nuxt/{VideoPlayer.4efd76f7.js => VideoPlayer.065c6aeb.js} (93%) rename docs/.output/public/_nuxt/{app.config.4114fca6.js => app.config.f41ab05d.js} (98%) rename docs/.output/public/_nuxt/{asyncData.2775b491.js => asyncData.7c06b2d5.js} (94%) rename docs/.output/public/_nuxt/{client-db.a6af4843.js => client-db.514bef37.js} (98%) rename docs/.output/public/_nuxt/{cookie.5bbb58d5.js => cookie.b9cff64d.js} (97%) delete mode 100644 docs/.output/public/_nuxt/default.440db00d.js create mode 100644 docs/.output/public/_nuxt/default.aab8fc36.js rename docs/.output/public/_nuxt/{document-driven.07c16582.js => document-driven.2bce7a6e.js} (50%) delete mode 100644 docs/.output/public/_nuxt/entry.2d43dc03.js create mode 100644 docs/.output/public/_nuxt/entry.f3791b9c.js rename docs/.output/public/_nuxt/{error-404.e92ccfb2.js => error-404.1576ed15.js} (89%) rename docs/.output/public/_nuxt/{error-500.e0cdca3b.js => error-500.421dc5a9.js} (88%) rename docs/.output/public/_nuxt/{error-component.a846670f.js => error-component.9c8606a2.js} (74%) rename docs/.output/public/_nuxt/{layout.732d57d1.js => layout.0a22fa4a.js} (72%) rename docs/.output/public/_nuxt/{page.57ff23a3.js => page.f33b5a13.js} (72%) rename docs/.output/public/_nuxt/{useDocus.edcbeab5.js => useDocus.41ab1ca5.js} (98%) rename docs/.output/public/_nuxt/{useGithub.916c5979.js => useGithub.1972ce55.js} (93%) rename docs/.output/public/_nuxt/{useStudio.a9d51910.js => useStudio.ef34e52b.js} (89%) rename docs/.output/public/_nuxt/{welcome.0953e899.js => welcome.4086e1c1.js} (98%) delete mode 100644 docs/.output/public/_payload.js delete mode 100644 docs/.output/public/api/_content/cache.1677768033312.json create mode 100644 docs/.output/public/api/_content/cache.1678414054441.json rename docs/.output/public/api/_content/navigation/{u7BbTyuhiE.1677768033312.json => u7BbTyuhiE.1678414054441.json} (71%) delete mode 100644 docs/.output/public/api/_content/query/19ZwhtnBsu.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/429l0g1JsL.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/47rOsvYKsq.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/4yp2Okse4m.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/5CKmdxNney.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/6p0u3YetMp.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/6pNGztrIpy.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/7Rwiic1Mfu.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/89g0dcy129.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/ALdmBT6ADc.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/BLviYQQPJ7.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/BoNR1lKKhq.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/BrSZyfjf5T.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/Bwmd3WsD1s.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/CmzcyosjoR.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/ESBtShW9sz.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/GkDGmUyz0M.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/HlvQ2CNI92.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/J1BQKIMJrl.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/JlWpJOmqbt.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/KGVfeDohnm.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/Lt6BIToPNN.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/MMGz34b8PH.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/O32KeiYrUa.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/P314osc27P.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/RoutJwnTpy.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/Smd1FvtVfQ.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/Su48x97rZI.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/WXBaqghg8k.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/WoZUvC9rqb.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/XTOw4mgR3f.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/XVPoId9nap.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/YKOPtCYulT.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/a1Dgl9wshN.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/bjzyL7C69z.1677768033312.json rename docs/.output/public/api/_content/query/{brX4CwCJoQ.1677768033312.json => brX4CwCJoQ.1678414054441.json} (100%) delete mode 100644 docs/.output/public/api/_content/query/cItbEHp6hX.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/eO9hzu7vu1.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/eytgjSbEVl.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/fis0WzoDt0.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/i1ZxWCIkJR.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/jWALMeA07z.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/kBgJSZjudv.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/kP0lcPGw3r.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/khs8gA1FwT.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/ozdJ1wICj3.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/qGEjvCtHGf.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/s6oaJBqQEn.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/tEt344hQrs.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/tuGsv8hqtc.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/urUfuwuVJk.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/v3ScIppUqo.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/wMeaP8hHUN.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/wQeP3PjQcK.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/wscAfndYyi.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/xWeY3NfYtX.1677768033312.json rename docs/.output/public/api/_content/query/{RMnrvBawPn.1677768033312.json => xWeY3NfYtX.1678414054441.json} (100%) delete mode 100644 docs/.output/public/api/_content/query/xYb2WcNJtQ.1677768033312.json delete mode 100644 docs/.output/public/api/_content/query/xhTH8MZ8W5.1677768033312.json delete mode 100644 docs/.output/public/design/getting-started/introduction/_payload.js delete mode 100644 docs/.output/public/design/getting-started/introduction/index.html delete mode 100644 docs/.output/public/frontier/cli/development/_payload.js delete mode 100644 docs/.output/public/frontier/cli/development/index.html delete mode 100644 docs/.output/public/frontier/cli/usage/_payload.js delete mode 100644 docs/.output/public/frontier/cli/usage/index.html delete mode 100644 docs/.output/public/frontier/installation/development/_payload.js delete mode 100644 docs/.output/public/frontier/installation/development/index.html delete mode 100644 docs/.output/public/frontier/installation/general/_payload.js delete mode 100644 docs/.output/public/frontier/installation/general/index.html delete mode 100644 docs/.output/public/frontier/installation/navigation/_payload.js delete mode 100644 docs/.output/public/frontier/installation/navigation/index.html delete mode 100644 docs/.output/public/frontier/introduction/_payload.js delete mode 100644 docs/.output/public/frontier/introduction/content-directory/_payload.js delete mode 100644 docs/.output/public/frontier/introduction/content-directory/index.html delete mode 100644 docs/.output/public/frontier/introduction/index.html delete mode 100644 docs/.output/public/frontier/introduction/philosophy/_payload.js delete mode 100644 docs/.output/public/frontier/introduction/philosophy/index.html delete mode 100644 docs/.output/public/frontier/introduction/whats-frontier/_payload.js delete mode 100644 docs/.output/public/frontier/introduction/whats-frontier/index.html delete mode 100644 docs/.output/public/frontier/libraries/standard-library/_payload.js delete mode 100644 docs/.output/public/frontier/libraries/standard-library/index.html delete mode 100644 docs/.output/public/frontier/libraries/typekit/_payload.js delete mode 100644 docs/.output/public/frontier/libraries/typekit/index.html delete mode 100644 docs/.output/public/frontier/plugins/frontend/_payload.js delete mode 100644 docs/.output/public/frontier/plugins/frontend/index.html delete mode 100644 docs/.output/public/frontier/plugins/mobile/_payload.js delete mode 100644 docs/.output/public/frontier/plugins/mobile/index.html delete mode 100644 docs/.output/public/frontier/plugins/quality/_payload.js delete mode 100644 docs/.output/public/frontier/plugins/quality/index.html delete mode 100644 docs/.output/public/frontier/templates/dotnet/_payload.js delete mode 100644 docs/.output/public/frontier/templates/dotnet/index.html delete mode 100644 docs/.output/public/frontier/templates/nuxt/_payload.js delete mode 100644 docs/.output/public/frontier/templates/nuxt/index.html delete mode 100644 docs/.output/public/frontier/templates/typescript/_payload.js delete mode 100644 docs/.output/public/frontier/templates/typescript/index.html delete mode 100644 docs/.output/public/iac/getting-started/introduction/_payload.js delete mode 100644 docs/.output/public/iac/getting-started/introduction/index.html delete mode 100644 docs/.output/public/mobile/getting-started/introduction/_payload.js delete mode 100644 docs/.output/public/mobile/getting-started/introduction/index.html delete mode 100644 docs/.output/public/rdvue/cli-commands/usage/_payload.js delete mode 100644 docs/.output/public/rdvue/cli-commands/usage/index.html delete mode 100644 docs/.output/public/rdvue/features/features/_payload.js delete mode 100644 docs/.output/public/rdvue/features/features/index.html delete mode 100644 docs/.output/public/rdvue/getting-started/overview/_payload.js delete mode 100644 docs/.output/public/rdvue/getting-started/overview/index.html delete mode 100644 docs/.output/public/rdvue/scaffilding/sitemap/_payload.js delete mode 100644 docs/.output/public/rdvue/scaffilding/sitemap/index.html delete mode 100644 docs/.output/public/rdvue/template-schema/schema/_payload.js delete mode 100644 docs/.output/public/rdvue/template-schema/schema/index.html delete mode 100644 docs/.output/public/rdvue/testing/testing/_payload.js delete mode 100644 docs/.output/public/rdvue/testing/testing/index.html delete mode 100644 docs/.output/public/rdvue/themeing/theming/_payload.js delete mode 100644 docs/.output/public/rdvue/themeing/theming/index.html delete mode 100644 docs/.output/public/spectre/getting-started/introduction/_payload.js delete mode 100644 docs/.output/public/spectre/getting-started/introduction/index.html create mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map create mode 100644 docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs create mode 100644 docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map create mode 100644 docs/.output/server/chunks/app/client.manifest.mjs create mode 100644 docs/.output/server/chunks/app/client.manifest.mjs.map create mode 100644 docs/.output/server/chunks/app/server.mjs create mode 100644 docs/.output/server/chunks/app/server.mjs.map create mode 100644 docs/.output/server/chunks/app/styles.mjs create mode 100644 docs/.output/server/chunks/app/styles.mjs.map create mode 100644 docs/.output/server/chunks/error-500.mjs create mode 100644 docs/.output/server/chunks/error-500.mjs.map create mode 100644 docs/.output/server/chunks/handlers/renderer.mjs create mode 100644 docs/.output/server/chunks/handlers/renderer.mjs.map create mode 100644 docs/.output/server/chunks/nitro/config.mjs create mode 100644 docs/.output/server/chunks/nitro/config.mjs.map create mode 100644 docs/.output/server/chunks/nitro/node-server.mjs create mode 100644 docs/.output/server/chunks/nitro/node-server.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.deployment.mjs create mode 100644 docs/.output/server/chunks/raw/1.deployment.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.dotNet.mjs create mode 100644 docs/.output/server/chunks/raw/1.dotNet.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.features.mjs create mode 100644 docs/.output/server/chunks/raw/1.features.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.features2.mjs create mode 100644 docs/.output/server/chunks/raw/1.features2.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.frontend.mjs create mode 100644 docs/.output/server/chunks/raw/1.frontend.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.general.mjs create mode 100644 docs/.output/server/chunks/raw/1.general.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.index.mjs create mode 100644 docs/.output/server/chunks/raw/1.index.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.introduction.mjs create mode 100644 docs/.output/server/chunks/raw/1.introduction.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.overview.mjs create mode 100644 docs/.output/server/chunks/raw/1.overview.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.overview2.mjs create mode 100644 docs/.output/server/chunks/raw/1.overview2.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.schema.mjs create mode 100644 docs/.output/server/chunks/raw/1.schema.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.sitemap.mjs create mode 100644 docs/.output/server/chunks/raw/1.sitemap.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.testing.mjs create mode 100644 docs/.output/server/chunks/raw/1.testing.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.testing2.mjs create mode 100644 docs/.output/server/chunks/raw/1.testing2.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.theming.mjs create mode 100644 docs/.output/server/chunks/raw/1.theming.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.typekit.mjs create mode 100644 docs/.output/server/chunks/raw/1.typekit.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.usage.mjs create mode 100644 docs/.output/server/chunks/raw/1.usage.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.usage2.mjs create mode 100644 docs/.output/server/chunks/raw/1.usage2.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.usage3.mjs create mode 100644 docs/.output/server/chunks/raw/1.usage3.mjs.map create mode 100644 docs/.output/server/chunks/raw/1.whats-frontier.mjs create mode 100644 docs/.output/server/chunks/raw/1.whats-frontier.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.content-directory.mjs create mode 100644 docs/.output/server/chunks/raw/2.content-directory.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.development.mjs create mode 100644 docs/.output/server/chunks/raw/2.development.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.development2.mjs create mode 100644 docs/.output/server/chunks/raw/2.development2.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.introduction.mjs create mode 100644 docs/.output/server/chunks/raw/2.introduction.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.introduction2.mjs create mode 100644 docs/.output/server/chunks/raw/2.introduction2.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.mobile.mjs create mode 100644 docs/.output/server/chunks/raw/2.mobile.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.quality.mjs create mode 100644 docs/.output/server/chunks/raw/2.quality.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.standard-library.mjs create mode 100644 docs/.output/server/chunks/raw/2.standard-library.mjs.map create mode 100644 docs/.output/server/chunks/raw/2.typescript.mjs create mode 100644 docs/.output/server/chunks/raw/2.typescript.mjs.map create mode 100644 docs/.output/server/chunks/raw/3.navigation.mjs create mode 100644 docs/.output/server/chunks/raw/3.navigation.mjs.map create mode 100644 docs/.output/server/chunks/raw/3.nuxt.mjs create mode 100644 docs/.output/server/chunks/raw/3.nuxt.mjs.map create mode 100644 docs/.output/server/chunks/raw/3.philosophy.mjs create mode 100644 docs/.output/server/chunks/raw/3.philosophy.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir.mjs create mode 100644 docs/.output/server/chunks/raw/_dir.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir10.mjs create mode 100644 docs/.output/server/chunks/raw/_dir10.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir11.mjs create mode 100644 docs/.output/server/chunks/raw/_dir11.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir12.mjs create mode 100644 docs/.output/server/chunks/raw/_dir12.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir13.mjs create mode 100644 docs/.output/server/chunks/raw/_dir13.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir14.mjs create mode 100644 docs/.output/server/chunks/raw/_dir14.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir15.mjs create mode 100644 docs/.output/server/chunks/raw/_dir15.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir16.mjs create mode 100644 docs/.output/server/chunks/raw/_dir16.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir17.mjs create mode 100644 docs/.output/server/chunks/raw/_dir17.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir18.mjs create mode 100644 docs/.output/server/chunks/raw/_dir18.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir19.mjs create mode 100644 docs/.output/server/chunks/raw/_dir19.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir2.mjs create mode 100644 docs/.output/server/chunks/raw/_dir2.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir20.mjs create mode 100644 docs/.output/server/chunks/raw/_dir20.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir21.mjs create mode 100644 docs/.output/server/chunks/raw/_dir21.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir22.mjs create mode 100644 docs/.output/server/chunks/raw/_dir22.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir23.mjs create mode 100644 docs/.output/server/chunks/raw/_dir23.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir24.mjs create mode 100644 docs/.output/server/chunks/raw/_dir24.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir25.mjs create mode 100644 docs/.output/server/chunks/raw/_dir25.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir26.mjs create mode 100644 docs/.output/server/chunks/raw/_dir26.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir27.mjs create mode 100644 docs/.output/server/chunks/raw/_dir27.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir3.mjs create mode 100644 docs/.output/server/chunks/raw/_dir3.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir4.mjs create mode 100644 docs/.output/server/chunks/raw/_dir4.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir5.mjs create mode 100644 docs/.output/server/chunks/raw/_dir5.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir6.mjs create mode 100644 docs/.output/server/chunks/raw/_dir6.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir7.mjs create mode 100644 docs/.output/server/chunks/raw/_dir7.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir8.mjs create mode 100644 docs/.output/server/chunks/raw/_dir8.mjs.map create mode 100644 docs/.output/server/chunks/raw/_dir9.mjs create mode 100644 docs/.output/server/chunks/raw/_dir9.mjs.map create mode 100644 docs/.output/server/chunks/raw/content-index.mjs create mode 100644 docs/.output/server/chunks/raw/content-index.mjs.map create mode 100644 docs/.output/server/chunks/raw/content-navigation.mjs create mode 100644 docs/.output/server/chunks/raw/content-navigation.mjs.map create mode 100644 docs/.output/server/chunks/raw/hello-world.mjs create mode 100644 docs/.output/server/chunks/raw/hello-world.mjs.map create mode 100644 docs/.output/server/chunks/raw/index.mjs create mode 100644 docs/.output/server/chunks/raw/index.mjs.map create mode 100644 docs/.output/server/chunks/rollup/_virtual_head-static.mjs create mode 100644 docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map create mode 100644 docs/.output/server/index.mjs create mode 100644 docs/.output/server/index.mjs.map create mode 100644 docs/.output/server/package.json diff --git a/docs/.output/nitro.json b/docs/.output/nitro.json index 2d82f260..d9b1f3d8 100644 --- a/docs/.output/nitro.json +++ b/docs/.output/nitro.json @@ -1,7 +1,7 @@ { - "date": "2023-03-02T14:41:12.433Z", - "preset": "nitro-prerender", + "date": "2023-03-10T02:08:03.304Z", + "preset": "node-server", "commands": { - "preview": "npx serve ./public" + "preview": "node ./server/index.mjs" } } \ No newline at end of file diff --git a/docs/.output/public/200.html b/docs/.output/public/200.html deleted file mode 100644 index ecc80aa8..00000000 --- a/docs/.output/public/200.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - -
- \ No newline at end of file diff --git a/docs/.output/public/404.html b/docs/.output/public/404.html deleted file mode 100644 index ecc80aa8..00000000 --- a/docs/.output/public/404.html +++ /dev/null @@ -1,8 +0,0 @@ - - - - - -
- \ No newline at end of file diff --git a/docs/.output/public/__app_config.json/_payload.js b/docs/.output/public/__app_config.json/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/__app_config.json/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/__app_config.json/index.html b/docs/.output/public/__app_config.json/index.html deleted file mode 100644 index f11b570e..00000000 --- a/docs/.output/public/__app_config.json/index.html +++ /dev/null @@ -1,74 +0,0 @@ -{ - "prose": { - "copyButton": { - "iconCopy": "ph:copy", - "iconCopied": "ph:check" - }, - "headings": { - "icon": "ph:link" - } - }, - "docus": { - "title": "Frontier", - "description": "Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.", - "image": "https://content.nuxtjs.org/preview.png", - "socials": { - "twitter": "", - "github": "realdecoy/frontier", - "facebook": "", - "instagram": "", - "youtube": "", - "medium": "" - }, - "layout": { - "fluid": true - }, - "header": { - "title": "", - "logo": "Logo", - "showLinkIcon": false, - "fluid": false, - "exclude": [] - }, - "aside": { - "level": 1, - "collapsed": false, - "exclude": [] - }, - "footer": { - "credits": { - "icon": "IconDocus", - "text": "Powered by Docus", - "href": "https://docus.dev" - }, - "textLinks": [], - "iconLinks": [ - { - "label": "Realdecoy", - "href": "https://realdecoy.com", - "icon": "IconNuxt" - } - ], - "fluid": false - }, - "github": { - "dir": "", - "branch": "main", - "repo": "frontier", - "owner": "realdecoy", - "edit": true, - "root": "", - "releases": true - }, - "url": "https://realdecoy.com", - "cover": { - "src": "/cover.jpg", - "alt": "Tooling maded easy for developers" - } - }, - "github": { - "owner": "realdecoy", - "repo": "frontier", - "branch": "main" - } -} \ No newline at end of file diff --git a/docs/.output/public/__studio.json b/docs/.output/public/__studio.json index 290b13e3..ca06f258 100644 --- a/docs/.output/public/__studio.json +++ b/docs/.output/public/__studio.json @@ -1 +1 @@ -{"version":"0.7.2","appConfigSchema":{"properties":{"id":"#appConfig","properties":{"nuxtIcon":{"title":"Nuxt Icon","description":"Configure the defaults of Nuxt Icon","id":"#appConfig/nuxtIcon","properties":{"size":{"title":"Icon Size","description":"Set the default icon size","tags":["@studioIcon material-symbols:format-size-rounded"],"id":"#appConfig/nuxtIcon/size","default":"","type":"string"},"class":{"title":"CSS Class","description":"Set the default CSS class","tags":["@studioIcon material-symbols:css"],"id":"#appConfig/nuxtIcon/class","default":"","type":"string"},"aliases":{"title":"Icon aliases","description":"Define Icon aliases to update them easily without code changes.","tags":["@studioIcon material-symbols:star-rounded","@studioInputObjectValueType icon"],"tsType":"{ [alias: string]: string }","id":"#appConfig/nuxtIcon/aliases","default":{},"type":"object"}},"type":"object","default":{"size":"","class":"","aliases":{}}},"prose":{"title":"Prose configuration from Nuxt Typography","description":"","tags":["@studioIcon material-symbols:short-text-rounded","@studioInput icon"],"id":"#appConfig/prose","properties":{"copyButton":{"title":"Copy button (used in code blocks)","description":"","tags":["@studioIcon material-symbols:content-copy"],"id":"#appConfig/prose/copyButton","properties":{"iconCopy":{"title":"Icon displayed to copy","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopy","default":"ph:copy","type":"string"},"iconCopied":{"title":"Icon displayed when copied","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopied","default":"ph:check","type":"string"}},"type":"object","default":{"iconCopy":"ph:copy","iconCopied":"ph:check"}},"headings":{"title":"Default configuration for all headings (h1, h2, h3, h4, h5 and h6)","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/prose/headings","properties":{"icon":{"title":"Default icon for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/headings/icon","default":"ph:link","type":"string"}},"type":"object","default":{"icon":"ph:link"}},"h1":{"title":"First heading configuration","description":"","tags":["@studioIcon material-symbols:format-h1"],"id":"#appConfig/prose/h1","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h1/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h2":{"title":"Second heading configuration","description":"","tags":["@studioIcon material-symbols:format-h2"],"id":"#appConfig/prose/h2","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h2/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h3":{"title":"Third heading configuration","description":"","tags":["@studioIcon material-symbols:format-h3"],"id":"#appConfig/prose/h3","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h3/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h4":{"title":"Fourth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h4"],"id":"#appConfig/prose/h4","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h4/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h5":{"title":"Fifth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h5"],"id":"#appConfig/prose/h5","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h5/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h6":{"title":"Sixth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h6"],"id":"#appConfig/prose/h6","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h6/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}}},"type":"object","default":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}}},"docus":{"title":"Docus theme configuration.","description":"","tags":["@studioIcon material-symbols:docs"],"id":"#appConfig/docus","properties":{"title":{"title":"Website title, used as header default title and meta title.","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/title","default":"Docus","type":"string"},"titleTemplate":{"title":"The website title template, to overwrite the default one.","description":"","tags":[],"id":"#appConfig/docus/titleTemplate","default":"%s · Docus","type":"string"},"description":{"title":"Website description, used for meta description.","description":"","tags":["@studioIcon material-symbols:description"],"id":"#appConfig/docus/description","default":"The best place to start your documentation.","type":"string"},"image":{"title":"Cover image.","description":"","tags":["@example '/cover.jpg'","@studioIcon dashicons:cover-image","@studioInput file"],"id":"#appConfig/docus/image","default":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","type":"string"},"socials":{"title":"Social links","description":"Will be used in AppSocialIcons component.","tags":["@studioIcon material-symbols:share-outline"],"id":"#appConfig/docus/socials","properties":{"twitter":{"title":"Twitter social handle","description":"","tags":["@example 'nuxt_js'","@studioIcon simple-icons:twitter"],"id":"#appConfig/docus/socials/twitter","default":"","type":"string"},"github":{"title":"GitHub org or repository","description":"","tags":["@example 'nuxt/framework'","@studioIcon simple-icons:github"],"id":"#appConfig/docus/socials/github","default":"","type":"string"},"facebook":{"title":"Facebook page url","description":"","tags":["@example https://www.facebook.com/groups/nuxtjs","@studioIcon simple-icons:facebook"],"id":"#appConfig/docus/socials/facebook","default":"","type":"string"},"instagram":{"title":"Instagram page url","description":"","tags":["@example https://www.instagram.com/wearenuxt","@studioIcon simple-icons:instagram"],"id":"#appConfig/docus/socials/instagram","default":"","type":"string"},"youtube":{"title":"Instagram page url","description":"","tags":["@example https://www.youtube.com/@NuxtLabs","@studioIcon simple-icons:youtube"],"id":"#appConfig/docus/socials/youtube","default":"","type":"string"},"medium":{"title":"Medium page url","description":"","tags":["@example https://medium.com/nuxt","@studioIcon simple-icons:medium"],"id":"#appConfig/docus/socials/medium","default":"","type":"string"}},"type":"object","default":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""}},"layout":{"title":"Theme layout configuration.","description":"","tags":["@studioIcon tabler:arrow-autofit-width"],"tsType":"'default'|'page'","id":"#appConfig/docus/layout","default":"default","type":"string"},"aside":{"title":"Aside navigation configuration.","description":"","tags":["@studioIcon fluent:document-page-24-regular"],"id":"#appConfig/docus/aside","properties":{"level":{"title":"Aside navigation level","description":"Use 0 to disable all nesting. Use 1 and more to display nested navigation in header and aside navigation.","tags":[],"id":"#appConfig/docus/aside/level","default":0,"type":"number"},"collapsed":{"title":"Specify if default collapsibles state globally for aside navigation.","description":"","tags":[],"id":"#appConfig/docus/aside/collapsed","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from aside navigation.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/aside/exclude","default":[],"type":"array","items":{"type":"any"}}},"type":"object","default":{"level":0,"collapsed":false,"exclude":[]}},"header":{"title":"Header configuration.","description":"","tags":["@studioIcon fluent:document-header-24-regular"],"id":"#appConfig/docus/header","properties":{"title":{"title":"Website title","description":"Title to be displayed in header or as aria-label if logo is defined.\nDefault to docus.title","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/header/title","default":"","type":"string"},"logo":{"title":"Logo configuration","description":"Boolean to disable or use the `Logo.vue` component.\nString to be used as a name of a component.","tags":["@example 'MyLogo'","@studioInput boolean"],"id":"#appConfig/docus/header/logo","default":false,"type":"boolean"},"showLinkIcon":{"title":"Header links","description":"Toggle links icons in the header.","tags":[],"id":"#appConfig/docus/header/showLinkIcon","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from header links.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/header/exclude","default":[],"type":"array","items":{"type":"any"}},"fluid":{"title":"Makes the content of the header fluid.","description":"","tags":[],"id":"#appConfig/docus/header/fluid","default":false,"type":"boolean"}},"type":"object","default":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false}},"main":{"title":"Main content configuration.","description":"","tags":["@studioIcon fluent:document-header-footer-24-filled"],"id":"#appConfig/docus/main","properties":{"fluid":{"title":"Makes the content of the main container fluid.","description":"","tags":[],"id":"#appConfig/docus/main/fluid","default":false,"type":"boolean"},"padded":{"title":"Makes the content of the main container padded.","description":"","tags":[],"id":"#appConfig/docus/main/padded","default":true,"type":"boolean"}},"type":"object","default":{"fluid":false,"padded":true}},"footer":{"title":"Footer configuration","description":"","tags":["@studioIcon fluent:document-footer-24-regular"],"id":"#appConfig/docus/footer","properties":{"credits":{"title":"Website credits configuration.","description":"","tags":["@studioIcon material-symbols:copyright"],"tsType":"false|{icon: string, text: string, href: string}","id":"#appConfig/docus/footer/credits","properties":{"icon":{"title":"Icon to show on credits","description":"","tags":["@formtype Icon"],"id":"#appConfig/docus/footer/credits/icon","default":"IconDocus","type":"string"},"text":{"type":"string","id":"#appConfig/docus/footer/credits/text","default":"Powered by Docus"},"href":{"type":"string","id":"#appConfig/docus/footer/credits/href","default":"https://docus.dev"}},"type":"object","default":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"}},"textLinks":{"type":"array","items":{"type":"object","required":["text","href"],"properties":{"href":{"type":"string","description":"URL when clicking the link"},"text":{"type":"string","description":"Text of the link"},"target":{"type":"string","description":"Target attribute of the link"}}},"title":"Text links","description":"Will be added into center section of the footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/textLinks"},"iconLinks":{"type":"array","items":{"type":"object","required":["icon","href"],"properties":{"icon":{"type":"string","description":"Icon name"},"href":{"type":"string","description":"Link when clicking on the icon"},"label":{"type":"string","description":"Label of the icon"}}},"title":"Icon links","description":"Icons to be added to Social Icons in footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/iconLinks"},"fluid":{"title":"Makes the content of the footer fluid.","description":"","tags":[],"id":"#appConfig/docus/footer/fluid","default":true,"type":"boolean"}},"type":"object","default":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true}},"github":{"title":"GitHub integration","description":"Configure the Edit on Github integration.","tags":["@studioIcon simple-icons:github"],"id":"#appConfig/docus/github","properties":{"dir":{"title":"Directory","description":"Your GitHub repository root directory.","tags":[],"id":"#appConfig/docus/github/dir","default":"","type":"string"},"branch":{"title":"Branch","description":"Your GitHub repository branch.","tags":[],"id":"#appConfig/docus/github/branch","default":"","type":"string"},"repo":{"title":"Repository","description":"Your GitHub repository name.","tags":[],"id":"#appConfig/docus/github/repo","default":"","type":"string"},"owner":{"title":"Owner","description":"Your GitHub repository owner.","tags":[],"id":"#appConfig/docus/github/owner","default":"","type":"string"},"edit":{"title":"EditOnGithub","description":"Display EditOnGithub button.","tags":[],"id":"#appConfig/docus/github/edit","default":false,"type":"boolean"}},"type":"object","default":{"dir":"","branch":"","repo":"","owner":"","edit":false}}},"type":"object","default":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"type":"object","default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"appConfig":{"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"}},"docus":{"title":"Frontier","description":"Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.","image":"https://content.nuxtjs.org/preview.png","socials":{"twitter":"","github":"realdecoy/frontier","facebook":"","instagram":"","youtube":"","medium":""},"layout":{"fluid":true},"header":{"title":"","logo":"Logo","showLinkIcon":false,"fluid":false,"exclude":[]},"aside":{"level":1,"collapsed":false,"exclude":[]},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"textLinks":[],"iconLinks":[{"label":"Realdecoy","href":"https://realdecoy.com","icon":"IconNuxt"}],"fluid":false},"github":{"dir":"","branch":"main","repo":"frontier","owner":"realdecoy","edit":true,"root":"","releases":true},"url":"https://realdecoy.com","cover":{"src":"/cover.jpg","alt":"Tooling maded easy for developers"}},"github":{"owner":"realdecoy","repo":"frontier","branch":"main"}},"tokensConfigSchema":{"properties":{"id":"#tokensConfig","properties":{"color":{"title":"Your website color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/color","properties":{"primary":{"id":"#tokensConfig/color/primary","properties":{"50":{"id":"#tokensConfig/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/50/value","default":"#fff2cc"}},"type":"object","default":{"value":"#fff2cc"}},"100":{"id":"#tokensConfig/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/100/value","default":"#ffe599"}},"type":"object","default":{"value":"#ffe599"}},"200":{"id":"#tokensConfig/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/200/value","default":"#ffd966"}},"type":"object","default":{"value":"#ffd966"}},"300":{"id":"#tokensConfig/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/300/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"400":{"id":"#tokensConfig/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/400/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"500":{"id":"#tokensConfig/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/500/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"600":{"id":"#tokensConfig/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/600/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"700":{"id":"#tokensConfig/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/700/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"800":{"id":"#tokensConfig/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/800/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"900":{"id":"#tokensConfig/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/900/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}}},"type":"object","default":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}}},"white":{"id":"#tokensConfig/color/white","properties":{"value":{"type":"string","id":"#tokensConfig/color/white/value","default":"#ffffff"}},"type":"object","default":{"value":"#ffffff"}},"black":{"id":"#tokensConfig/color/black","properties":{"value":{"type":"string","id":"#tokensConfig/color/black/value","default":"#0c0c0d"}},"type":"object","default":{"value":"#0c0c0d"}},"secondary":{"id":"#tokensConfig/color/secondary","properties":{"50":{"id":"#tokensConfig/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}},"gray":{"id":"#tokensConfig/color/gray","properties":{"50":{"id":"#tokensConfig/color/gray/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/50/value","default":"#fafafa"}},"type":"object","default":{"value":"#fafafa"}},"100":{"id":"#tokensConfig/color/gray/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/100/value","default":"#f4f4f5"}},"type":"object","default":{"value":"#f4f4f5"}},"200":{"id":"#tokensConfig/color/gray/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/200/value","default":"#e4e4e7"}},"type":"object","default":{"value":"#e4e4e7"}},"300":{"id":"#tokensConfig/color/gray/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/300/value","default":"#D4d4d8"}},"type":"object","default":{"value":"#D4d4d8"}},"400":{"id":"#tokensConfig/color/gray/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/400/value","default":"#a1a1aa"}},"type":"object","default":{"value":"#a1a1aa"}},"500":{"id":"#tokensConfig/color/gray/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/500/value","default":"#71717A"}},"type":"object","default":{"value":"#71717A"}},"600":{"id":"#tokensConfig/color/gray/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/600/value","default":"#52525B"}},"type":"object","default":{"value":"#52525B"}},"700":{"id":"#tokensConfig/color/gray/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/700/value","default":"#3f3f46"}},"type":"object","default":{"value":"#3f3f46"}},"800":{"id":"#tokensConfig/color/gray/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/800/value","default":"#27272A"}},"type":"object","default":{"value":"#27272A"}},"900":{"id":"#tokensConfig/color/gray/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/900/value","default":"#18181B"}},"type":"object","default":{"value":"#18181B"}}},"type":"object","default":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}}},"green":{"id":"#tokensConfig/color/green","properties":{"50":{"id":"#tokensConfig/color/green/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/50/value","default":"#d6ffee"}},"type":"object","default":{"value":"#d6ffee"}},"100":{"id":"#tokensConfig/color/green/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/100/value","default":"#acffdd"}},"type":"object","default":{"value":"#acffdd"}},"200":{"id":"#tokensConfig/color/green/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/200/value","default":"#83ffcc"}},"type":"object","default":{"value":"#83ffcc"}},"300":{"id":"#tokensConfig/color/green/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/300/value","default":"#30ffaa"}},"type":"object","default":{"value":"#30ffaa"}},"400":{"id":"#tokensConfig/color/green/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/400/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"500":{"id":"#tokensConfig/color/green/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/500/value","default":"#00bd6f"}},"type":"object","default":{"value":"#00bd6f"}},"600":{"id":"#tokensConfig/color/green/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/600/value","default":"#009d5d"}},"type":"object","default":{"value":"#009d5d"}},"700":{"id":"#tokensConfig/color/green/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/700/value","default":"#007e4a"}},"type":"object","default":{"value":"#007e4a"}},"800":{"id":"#tokensConfig/color/green/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/800/value","default":"#005e38"}},"type":"object","default":{"value":"#005e38"}},"900":{"id":"#tokensConfig/color/green/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/900/value","default":"#003f25"}},"type":"object","default":{"value":"#003f25"}}},"type":"object","default":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}}},"yellow":{"id":"#tokensConfig/color/yellow","properties":{"50":{"id":"#tokensConfig/color/yellow/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/50/value","default":"#fdf6db"}},"type":"object","default":{"value":"#fdf6db"}},"100":{"id":"#tokensConfig/color/yellow/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/100/value","default":"#fcedb7"}},"type":"object","default":{"value":"#fcedb7"}},"200":{"id":"#tokensConfig/color/yellow/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/200/value","default":"#fae393"}},"type":"object","default":{"value":"#fae393"}},"300":{"id":"#tokensConfig/color/yellow/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/300/value","default":"#f8da70"}},"type":"object","default":{"value":"#f8da70"}},"400":{"id":"#tokensConfig/color/yellow/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/400/value","default":"#f7d14c"}},"type":"object","default":{"value":"#f7d14c"}},"500":{"id":"#tokensConfig/color/yellow/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/500/value","default":"#f5c828"}},"type":"object","default":{"value":"#f5c828"}},"600":{"id":"#tokensConfig/color/yellow/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/600/value","default":"#daac0a"}},"type":"object","default":{"value":"#daac0a"}},"700":{"id":"#tokensConfig/color/yellow/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/700/value","default":"#a38108"}},"type":"object","default":{"value":"#a38108"}},"800":{"id":"#tokensConfig/color/yellow/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/800/value","default":"#6d5605"}},"type":"object","default":{"value":"#6d5605"}},"900":{"id":"#tokensConfig/color/yellow/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/900/value","default":"#362b03"}},"type":"object","default":{"value":"#362b03"}}},"type":"object","default":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}}},"orange":{"id":"#tokensConfig/color/orange","properties":{"50":{"id":"#tokensConfig/color/orange/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/50/value","default":"#ffe9d9"}},"type":"object","default":{"value":"#ffe9d9"}},"100":{"id":"#tokensConfig/color/orange/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/100/value","default":"#ffd3b3"}},"type":"object","default":{"value":"#ffd3b3"}},"200":{"id":"#tokensConfig/color/orange/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/200/value","default":"#ffbd8d"}},"type":"object","default":{"value":"#ffbd8d"}},"300":{"id":"#tokensConfig/color/orange/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/300/value","default":"#ffa666"}},"type":"object","default":{"value":"#ffa666"}},"400":{"id":"#tokensConfig/color/orange/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/400/value","default":"#ff9040"}},"type":"object","default":{"value":"#ff9040"}},"500":{"id":"#tokensConfig/color/orange/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/500/value","default":"#ff7a1a"}},"type":"object","default":{"value":"#ff7a1a"}},"600":{"id":"#tokensConfig/color/orange/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/600/value","default":"#e15e00"}},"type":"object","default":{"value":"#e15e00"}},"700":{"id":"#tokensConfig/color/orange/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/700/value","default":"#a94700"}},"type":"object","default":{"value":"#a94700"}},"800":{"id":"#tokensConfig/color/orange/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/800/value","default":"#702f00"}},"type":"object","default":{"value":"#702f00"}},"900":{"id":"#tokensConfig/color/orange/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/900/value","default":"#381800"}},"type":"object","default":{"value":"#381800"}}},"type":"object","default":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}}},"red":{"id":"#tokensConfig/color/red","properties":{"50":{"id":"#tokensConfig/color/red/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/50/value","default":"#ffdbd9"}},"type":"object","default":{"value":"#ffdbd9"}},"100":{"id":"#tokensConfig/color/red/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/100/value","default":"#ffb7b3"}},"type":"object","default":{"value":"#ffb7b3"}},"200":{"id":"#tokensConfig/color/red/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/200/value","default":"#ff948d"}},"type":"object","default":{"value":"#ff948d"}},"300":{"id":"#tokensConfig/color/red/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/300/value","default":"#ff7066"}},"type":"object","default":{"value":"#ff7066"}},"400":{"id":"#tokensConfig/color/red/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/400/value","default":"#ff4c40"}},"type":"object","default":{"value":"#ff4c40"}},"500":{"id":"#tokensConfig/color/red/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/500/value","default":"#ff281a"}},"type":"object","default":{"value":"#ff281a"}},"600":{"id":"#tokensConfig/color/red/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/600/value","default":"#e10e00"}},"type":"object","default":{"value":"#e10e00"}},"700":{"id":"#tokensConfig/color/red/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/700/value","default":"#a90a00"}},"type":"object","default":{"value":"#a90a00"}},"800":{"id":"#tokensConfig/color/red/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/800/value","default":"#700700"}},"type":"object","default":{"value":"#700700"}},"900":{"id":"#tokensConfig/color/red/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/900/value","default":"#380300"}},"type":"object","default":{"value":"#380300"}}},"type":"object","default":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}}},"pear":{"id":"#tokensConfig/color/pear","properties":{"50":{"id":"#tokensConfig/color/pear/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/50/value","default":"#f7f8dc"}},"type":"object","default":{"value":"#f7f8dc"}},"100":{"id":"#tokensConfig/color/pear/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/100/value","default":"#eff0ba"}},"type":"object","default":{"value":"#eff0ba"}},"200":{"id":"#tokensConfig/color/pear/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/200/value","default":"#e8e997"}},"type":"object","default":{"value":"#e8e997"}},"300":{"id":"#tokensConfig/color/pear/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/300/value","default":"#e0e274"}},"type":"object","default":{"value":"#e0e274"}},"400":{"id":"#tokensConfig/color/pear/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/400/value","default":"#d8da52"}},"type":"object","default":{"value":"#d8da52"}},"500":{"id":"#tokensConfig/color/pear/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/500/value","default":"#d0d32f"}},"type":"object","default":{"value":"#d0d32f"}},"600":{"id":"#tokensConfig/color/pear/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/600/value","default":"#a8aa24"}},"type":"object","default":{"value":"#a8aa24"}},"700":{"id":"#tokensConfig/color/pear/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/700/value","default":"#7e801b"}},"type":"object","default":{"value":"#7e801b"}},"800":{"id":"#tokensConfig/color/pear/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/800/value","default":"#545512"}},"type":"object","default":{"value":"#545512"}},"900":{"id":"#tokensConfig/color/pear/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/900/value","default":"#2a2b09"}},"type":"object","default":{"value":"#2a2b09"}}},"type":"object","default":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}}},"teal":{"id":"#tokensConfig/color/teal","properties":{"50":{"id":"#tokensConfig/color/teal/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/50/value","default":"#d7faf8"}},"type":"object","default":{"value":"#d7faf8"}},"100":{"id":"#tokensConfig/color/teal/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/100/value","default":"#aff4f0"}},"type":"object","default":{"value":"#aff4f0"}},"200":{"id":"#tokensConfig/color/teal/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/200/value","default":"#87efe9"}},"type":"object","default":{"value":"#87efe9"}},"300":{"id":"#tokensConfig/color/teal/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/300/value","default":"#5fe9e1"}},"type":"object","default":{"value":"#5fe9e1"}},"400":{"id":"#tokensConfig/color/teal/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/400/value","default":"#36e4da"}},"type":"object","default":{"value":"#36e4da"}},"500":{"id":"#tokensConfig/color/teal/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/500/value","default":"#1cd1c6"}},"type":"object","default":{"value":"#1cd1c6"}},"600":{"id":"#tokensConfig/color/teal/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/600/value","default":"#16a79e"}},"type":"object","default":{"value":"#16a79e"}},"700":{"id":"#tokensConfig/color/teal/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/700/value","default":"#117d77"}},"type":"object","default":{"value":"#117d77"}},"800":{"id":"#tokensConfig/color/teal/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/800/value","default":"#0b544f"}},"type":"object","default":{"value":"#0b544f"}},"900":{"id":"#tokensConfig/color/teal/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/900/value","default":"#062a28"}},"type":"object","default":{"value":"#062a28"}}},"type":"object","default":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}}},"lightblue":{"id":"#tokensConfig/color/lightblue","properties":{"50":{"id":"#tokensConfig/color/lightblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/50/value","default":"#d9f8ff"}},"type":"object","default":{"value":"#d9f8ff"}},"100":{"id":"#tokensConfig/color/lightblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/100/value","default":"#b3f1ff"}},"type":"object","default":{"value":"#b3f1ff"}},"200":{"id":"#tokensConfig/color/lightblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/200/value","default":"#8deaff"}},"type":"object","default":{"value":"#8deaff"}},"300":{"id":"#tokensConfig/color/lightblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/300/value","default":"#66e4ff"}},"type":"object","default":{"value":"#66e4ff"}},"400":{"id":"#tokensConfig/color/lightblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/400/value","default":"#40ddff"}},"type":"object","default":{"value":"#40ddff"}},"500":{"id":"#tokensConfig/color/lightblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/500/value","default":"#1ad6ff"}},"type":"object","default":{"value":"#1ad6ff"}},"600":{"id":"#tokensConfig/color/lightblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/600/value","default":"#00b9e1"}},"type":"object","default":{"value":"#00b9e1"}},"700":{"id":"#tokensConfig/color/lightblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/700/value","default":"#008aa9"}},"type":"object","default":{"value":"#008aa9"}},"800":{"id":"#tokensConfig/color/lightblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/800/value","default":"#005c70"}},"type":"object","default":{"value":"#005c70"}},"900":{"id":"#tokensConfig/color/lightblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/900/value","default":"#002e38"}},"type":"object","default":{"value":"#002e38"}}},"type":"object","default":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}}},"blue":{"id":"#tokensConfig/color/blue","properties":{"50":{"id":"#tokensConfig/color/blue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/50/value","default":"#d9f1ff"}},"type":"object","default":{"value":"#d9f1ff"}},"100":{"id":"#tokensConfig/color/blue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/100/value","default":"#b3e4ff"}},"type":"object","default":{"value":"#b3e4ff"}},"200":{"id":"#tokensConfig/color/blue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/200/value","default":"#8dd6ff"}},"type":"object","default":{"value":"#8dd6ff"}},"300":{"id":"#tokensConfig/color/blue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/300/value","default":"#66c8ff"}},"type":"object","default":{"value":"#66c8ff"}},"400":{"id":"#tokensConfig/color/blue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/400/value","default":"#40bbff"}},"type":"object","default":{"value":"#40bbff"}},"500":{"id":"#tokensConfig/color/blue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/500/value","default":"#1aadff"}},"type":"object","default":{"value":"#1aadff"}},"600":{"id":"#tokensConfig/color/blue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/600/value","default":"#0090e1"}},"type":"object","default":{"value":"#0090e1"}},"700":{"id":"#tokensConfig/color/blue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/700/value","default":"#006ca9"}},"type":"object","default":{"value":"#006ca9"}},"800":{"id":"#tokensConfig/color/blue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/800/value","default":"#004870"}},"type":"object","default":{"value":"#004870"}},"900":{"id":"#tokensConfig/color/blue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/900/value","default":"#002438"}},"type":"object","default":{"value":"#002438"}}},"type":"object","default":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}}},"indigoblue":{"id":"#tokensConfig/color/indigoblue","properties":{"50":{"id":"#tokensConfig/color/indigoblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/50/value","default":"#d9e5ff"}},"type":"object","default":{"value":"#d9e5ff"}},"100":{"id":"#tokensConfig/color/indigoblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/100/value","default":"#b3cbff"}},"type":"object","default":{"value":"#b3cbff"}},"200":{"id":"#tokensConfig/color/indigoblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/200/value","default":"#8db0ff"}},"type":"object","default":{"value":"#8db0ff"}},"300":{"id":"#tokensConfig/color/indigoblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/300/value","default":"#6696ff"}},"type":"object","default":{"value":"#6696ff"}},"400":{"id":"#tokensConfig/color/indigoblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/400/value","default":"#407cff"}},"type":"object","default":{"value":"#407cff"}},"500":{"id":"#tokensConfig/color/indigoblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/500/value","default":"#1a62ff"}},"type":"object","default":{"value":"#1a62ff"}},"600":{"id":"#tokensConfig/color/indigoblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/600/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}},"700":{"id":"#tokensConfig/color/indigoblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/700/value","default":"#0035a9"}},"type":"object","default":{"value":"#0035a9"}},"800":{"id":"#tokensConfig/color/indigoblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/800/value","default":"#002370"}},"type":"object","default":{"value":"#002370"}},"900":{"id":"#tokensConfig/color/indigoblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/900/value","default":"#001238"}},"type":"object","default":{"value":"#001238"}}},"type":"object","default":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}}},"royalblue":{"id":"#tokensConfig/color/royalblue","properties":{"50":{"id":"#tokensConfig/color/royalblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/50/value","default":"#dfdbfb"}},"type":"object","default":{"value":"#dfdbfb"}},"100":{"id":"#tokensConfig/color/royalblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/100/value","default":"#c0b7f7"}},"type":"object","default":{"value":"#c0b7f7"}},"200":{"id":"#tokensConfig/color/royalblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/200/value","default":"#a093f3"}},"type":"object","default":{"value":"#a093f3"}},"300":{"id":"#tokensConfig/color/royalblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/300/value","default":"#806ff0"}},"type":"object","default":{"value":"#806ff0"}},"400":{"id":"#tokensConfig/color/royalblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/400/value","default":"#614bec"}},"type":"object","default":{"value":"#614bec"}},"500":{"id":"#tokensConfig/color/royalblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/500/value","default":"#4127e8"}},"type":"object","default":{"value":"#4127e8"}},"600":{"id":"#tokensConfig/color/royalblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/600/value","default":"#2c15c4"}},"type":"object","default":{"value":"#2c15c4"}},"700":{"id":"#tokensConfig/color/royalblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/700/value","default":"#211093"}},"type":"object","default":{"value":"#211093"}},"800":{"id":"#tokensConfig/color/royalblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/800/value","default":"#160a62"}},"type":"object","default":{"value":"#160a62"}},"900":{"id":"#tokensConfig/color/royalblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/900/value","default":"#0b0531"}},"type":"object","default":{"value":"#0b0531"}}},"type":"object","default":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}}},"purple":{"id":"#tokensConfig/color/purple","properties":{"50":{"id":"#tokensConfig/color/purple/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/50/value","default":"#ead9ff"}},"type":"object","default":{"value":"#ead9ff"}},"100":{"id":"#tokensConfig/color/purple/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/100/value","default":"#d5b3ff"}},"type":"object","default":{"value":"#d5b3ff"}},"200":{"id":"#tokensConfig/color/purple/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/200/value","default":"#c08dff"}},"type":"object","default":{"value":"#c08dff"}},"300":{"id":"#tokensConfig/color/purple/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/300/value","default":"#ab66ff"}},"type":"object","default":{"value":"#ab66ff"}},"400":{"id":"#tokensConfig/color/purple/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/400/value","default":"#9640ff"}},"type":"object","default":{"value":"#9640ff"}},"500":{"id":"#tokensConfig/color/purple/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/500/value","default":"#811aff"}},"type":"object","default":{"value":"#811aff"}},"600":{"id":"#tokensConfig/color/purple/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/600/value","default":"#6500e1"}},"type":"object","default":{"value":"#6500e1"}},"700":{"id":"#tokensConfig/color/purple/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/700/value","default":"#4c00a9"}},"type":"object","default":{"value":"#4c00a9"}},"800":{"id":"#tokensConfig/color/purple/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/800/value","default":"#330070"}},"type":"object","default":{"value":"#330070"}},"900":{"id":"#tokensConfig/color/purple/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/900/value","default":"#190038"}},"type":"object","default":{"value":"#190038"}}},"type":"object","default":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}}},"pink":{"id":"#tokensConfig/color/pink","properties":{"50":{"id":"#tokensConfig/color/pink/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/50/value","default":"#ffd9f2"}},"type":"object","default":{"value":"#ffd9f2"}},"100":{"id":"#tokensConfig/color/pink/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/100/value","default":"#ffb3e5"}},"type":"object","default":{"value":"#ffb3e5"}},"200":{"id":"#tokensConfig/color/pink/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/200/value","default":"#ff8dd8"}},"type":"object","default":{"value":"#ff8dd8"}},"300":{"id":"#tokensConfig/color/pink/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/300/value","default":"#ff66cc"}},"type":"object","default":{"value":"#ff66cc"}},"400":{"id":"#tokensConfig/color/pink/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/400/value","default":"#ff40bf"}},"type":"object","default":{"value":"#ff40bf"}},"500":{"id":"#tokensConfig/color/pink/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/500/value","default":"#ff1ab2"}},"type":"object","default":{"value":"#ff1ab2"}},"600":{"id":"#tokensConfig/color/pink/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/600/value","default":"#e10095"}},"type":"object","default":{"value":"#e10095"}},"700":{"id":"#tokensConfig/color/pink/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/700/value","default":"#a90070"}},"type":"object","default":{"value":"#a90070"}},"800":{"id":"#tokensConfig/color/pink/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/800/value","default":"#70004b"}},"type":"object","default":{"value":"#70004b"}},"900":{"id":"#tokensConfig/color/pink/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/900/value","default":"#380025"}},"type":"object","default":{"value":"#380025"}}},"type":"object","default":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}}},"ruby":{"id":"#tokensConfig/color/ruby","properties":{"50":{"id":"#tokensConfig/color/ruby/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/50/value","default":"#ffd9e4"}},"type":"object","default":{"value":"#ffd9e4"}},"100":{"id":"#tokensConfig/color/ruby/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/100/value","default":"#ffb3c9"}},"type":"object","default":{"value":"#ffb3c9"}},"200":{"id":"#tokensConfig/color/ruby/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/200/value","default":"#ff8dae"}},"type":"object","default":{"value":"#ff8dae"}},"300":{"id":"#tokensConfig/color/ruby/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/300/value","default":"#ff6694"}},"type":"object","default":{"value":"#ff6694"}},"400":{"id":"#tokensConfig/color/ruby/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/400/value","default":"#ff4079"}},"type":"object","default":{"value":"#ff4079"}},"500":{"id":"#tokensConfig/color/ruby/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/500/value","default":"#ff1a5e"}},"type":"object","default":{"value":"#ff1a5e"}},"600":{"id":"#tokensConfig/color/ruby/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/600/value","default":"#e10043"}},"type":"object","default":{"value":"#e10043"}},"700":{"id":"#tokensConfig/color/ruby/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/700/value","default":"#a90032"}},"type":"object","default":{"value":"#a90032"}},"800":{"id":"#tokensConfig/color/ruby/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/800/value","default":"#700021"}},"type":"object","default":{"value":"#700021"}},"900":{"id":"#tokensConfig/color/ruby/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/900/value","default":"#380011"}},"type":"object","default":{"value":"#380011"}}},"type":"object","default":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"type":"object","default":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"elements":{"title":"All the configurable tokens for your Elements.","tags":["@studioIcon uiw:component"],"id":"#tokensConfig/elements","properties":{"text":{"id":"#tokensConfig/elements/text","properties":{"primary":{"id":"#tokensConfig/elements/text/primary","properties":{"color":{"id":"#tokensConfig/elements/text/primary/color","properties":{"static":{"id":"#tokensConfig/elements/text/primary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/primary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/initial","default":"{color.gray.900}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/dark","default":"{color.gray.50}"}},"type":"object","default":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"type":"object","default":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"hover":{"id":"#tokensConfig/elements/text/primary/color/hover","type":"any","default":{}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"secondary":{"id":"#tokensConfig/elements/text/secondary","properties":{"color":{"id":"#tokensConfig/elements/text/secondary/color","properties":{"static":{"id":"#tokensConfig/elements/text/secondary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/initial","default":"{color.gray.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/dark","default":"{color.gray.400}"}},"type":"object","default":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"type":"object","default":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"hover":{"id":"#tokensConfig/elements/text/secondary/color/hover","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/initial","default":"{color.gray.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/dark","default":"{color.gray.200}"}},"type":"object","default":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}},"type":"object","default":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"type":"object","default":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"container":{"title":"Main container sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:width-full-outline"],"id":"#tokensConfig/elements/container","properties":{"maxWidth":{"id":"#tokensConfig/elements/container/maxWidth","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/maxWidth/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"padding":{"id":"#tokensConfig/elements/container/padding","properties":{"mobile":{"id":"#tokensConfig/elements/container/padding/mobile","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/mobile/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"xs":{"id":"#tokensConfig/elements/container/padding/xs","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/xs/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"sm":{"id":"#tokensConfig/elements/container/padding/sm","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/sm/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}},"md":{"id":"#tokensConfig/elements/container/padding/md","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/md/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}}},"type":"object","default":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"type":"object","default":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"backdrop":{"title":"Backdrops used in Elements.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:blur-circular"],"id":"#tokensConfig/elements/backdrop","properties":{"filter":{"id":"#tokensConfig/elements/backdrop/filter","properties":{"value":{"type":"string","id":"#tokensConfig/elements/backdrop/filter/value","default":"saturate(200%) blur(20px)"}},"type":"object","default":{"value":"saturate(200%) blur(20px)"}},"background":{"id":"#tokensConfig/elements/backdrop/background","properties":{"value":{"id":"#tokensConfig/elements/backdrop/background/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/initial","default":"#fffc"},"dark":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/dark","default":"#0c0d0ccc"}},"type":"object","default":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"type":"object","default":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"type":"object","default":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"border":{"title":"Borders used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/elements/border","properties":{"primary":{"id":"#tokensConfig/elements/border/primary","properties":{"static":{"id":"#tokensConfig/elements/border/primary/static","properties":{"value":{"id":"#tokensConfig/elements/border/primary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"hover":{"id":"#tokensConfig/elements/border/primary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/primary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"secondary":{"id":"#tokensConfig/elements/border/secondary","properties":{"static":{"id":"#tokensConfig/elements/border/secondary/static","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"hover":{"id":"#tokensConfig/elements/border/secondary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/initial","default":""},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/dark","default":""}},"type":"object","default":{"initial":"","dark":""}}},"type":"object","default":{"value":{"initial":"","dark":""}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"type":"object","default":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"surface":{"title":"Surfaces used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon fluent:surface-hub-20-filled"],"id":"#tokensConfig/elements/surface","properties":{"background":{"id":"#tokensConfig/elements/surface/background","properties":{"base":{"id":"#tokensConfig/elements/surface/background/base","properties":{"value":{"id":"#tokensConfig/elements/surface/background/base/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"type":"object","default":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"type":"object","default":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"state":{"title":"Color states used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon mdi:palette-advanced"],"id":"#tokensConfig/elements/state","properties":{"primary":{"id":"#tokensConfig/elements/state/primary","properties":{"color":{"id":"#tokensConfig/elements/state/primary/color","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/initial","default":"{color.primary.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/dark","default":"{color.primary.400}"}},"type":"object","default":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/initial","default":"{color.primary.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/dark","default":"{color.primary.200}"}},"type":"object","default":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"type":"object","default":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/primary/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial","default":"{color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark","default":"{color.primary.900}"}},"type":"object","default":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/primary/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/initial","default":"{color.primary.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/dark","default":"{color.primary.700}"}},"type":"object","default":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}},"type":"object","default":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"info":{"id":"#tokensConfig/elements/state/info","properties":{"color":{"id":"#tokensConfig/elements/state/info/color","properties":{"primary":{"id":"#tokensConfig/elements/state/info/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/initial","default":"{color.blue.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/dark","default":"{color.blue.400}"}},"type":"object","default":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"type":"object","default":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/initial","default":"{color.blue.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/dark","default":"{color.blue.200}"}},"type":"object","default":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"type":"object","default":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/info/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/initial","default":"{color.blue.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/dark","default":"{color.blue.900}"}},"type":"object","default":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"type":"object","default":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/info/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/initial","default":"{color.blue.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/dark","default":"{color.blue.700}"}},"type":"object","default":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}},"type":"object","default":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"success":{"id":"#tokensConfig/elements/state/success","properties":{"color":{"id":"#tokensConfig/elements/state/success/color","properties":{"primary":{"id":"#tokensConfig/elements/state/success/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/initial","default":"{color.green.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/dark","default":"{color.green.400}"}},"type":"object","default":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"type":"object","default":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/initial","default":"{color.green.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/dark","default":"{color.green.200}"}},"type":"object","default":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"type":"object","default":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/success/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/initial","default":"{color.green.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/dark","default":"{color.green.900}"}},"type":"object","default":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"type":"object","default":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/success/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/initial","default":"{color.green.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/dark","default":"{color.green.700}"}},"type":"object","default":{"initial":"{color.green.200}","dark":"{color.green.700}"}}},"type":"object","default":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"warning":{"id":"#tokensConfig/elements/state/warning","properties":{"color":{"id":"#tokensConfig/elements/state/warning/color","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/initial","default":"{color.yellow.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/dark","default":"{color.yellow.400}"}},"type":"object","default":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/initial","default":"{color.yellow.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/dark","default":"{color.yellow.200}"}},"type":"object","default":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/warning/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial","default":"{color.yellow.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark","default":"{color.yellow.900}"}},"type":"object","default":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/warning/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/initial","default":"{color.yellow.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/dark","default":"{color.yellow.700}"}},"type":"object","default":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"danger":{"id":"#tokensConfig/elements/state/danger","properties":{"color":{"id":"#tokensConfig/elements/state/danger/color","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/initial","default":"{color.red.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/dark","default":"{color.red.300}"}},"type":"object","default":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"type":"object","default":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/initial","default":"{color.red.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/dark","default":"{color.red.200}"}},"type":"object","default":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"type":"object","default":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/danger/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial","default":"{color.red.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark","default":"{color.red.900}"}},"type":"object","default":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"type":"object","default":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/danger/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/initial","default":"{color.red.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/dark","default":"{color.red.700}"}},"type":"object","default":{"initial":"{color.red.200}","dark":"{color.red.700}"}}},"type":"object","default":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"type":"object","default":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"type":"object","default":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"typography":{"title":"All the configurable tokens for your Typography.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:article"],"id":"#tokensConfig/typography","properties":{"verticalMargin":{"title":"Vertical spacings between paragraphs.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:line-height-line"],"id":"#tokensConfig/typography/verticalMargin","properties":{"sm":{"id":"#tokensConfig/typography/verticalMargin/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/sm/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"base":{"id":"#tokensConfig/typography/verticalMargin/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/base/value","default":"32px"}},"type":"object","default":{"value":"32px"}}},"type":"object","default":{"sm":{"value":"16px"},"base":{"value":"32px"}}},"letterSpacing":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:letter-spacing-line"],"id":"#tokensConfig/typography/letterSpacing","properties":{"tight":{"id":"#tokensConfig/typography/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"wide":{"id":"#tokensConfig/typography/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}}},"type":"object","default":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}}},"fontSize":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:font-size-fill"],"id":"#tokensConfig/typography/fontSize","properties":{"xs":{"id":"#tokensConfig/typography/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xs/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"sm":{"id":"#tokensConfig/typography/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/sm/value","default":"14px"}},"type":"object","default":{"value":"14px"}},"base":{"id":"#tokensConfig/typography/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/base/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"lg":{"id":"#tokensConfig/typography/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/lg/value","default":"18px"}},"type":"object","default":{"value":"18px"}},"xl":{"id":"#tokensConfig/typography/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xl/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"2xl":{"id":"#tokensConfig/typography/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/2xl/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"3xl":{"id":"#tokensConfig/typography/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/3xl/value","default":"30px"}},"type":"object","default":{"value":"30px"}},"4xl":{"id":"#tokensConfig/typography/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/4xl/value","default":"36px"}},"type":"object","default":{"value":"36px"}},"5xl":{"id":"#tokensConfig/typography/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/5xl/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"6xl":{"id":"#tokensConfig/typography/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/6xl/value","default":"60px"}},"type":"object","default":{"value":"60px"}},"7xl":{"id":"#tokensConfig/typography/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/7xl/value","default":"72px"}},"type":"object","default":{"value":"72px"}},"8xl":{"id":"#tokensConfig/typography/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/8xl/value","default":"96px"}},"type":"object","default":{"value":"96px"}},"9xl":{"id":"#tokensConfig/typography/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/9xl/value","default":"128px"}},"type":"object","default":{"value":"128px"}}},"type":"object","default":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}}},"fontWeight":{"title":"Font weights used in typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:bold-fill"],"id":"#tokensConfig/typography/fontWeight","properties":{"thin":{"id":"#tokensConfig/typography/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/typography/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/typography/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/typography/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/typography/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/typography/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/typography/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/typography/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/typography/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"lead":{"title":"Line heights used in your typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon material-symbols:height-rounded"],"id":"#tokensConfig/typography/lead","properties":{"none":{"id":"#tokensConfig/typography/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/typography/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/typography/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/typography/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/typography/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/typography/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your typography fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/typography/font","properties":{"display":{"id":"#tokensConfig/typography/font/display","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/display/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"body":{"id":"#tokensConfig/typography/font/body","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/body/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"code":{"id":"#tokensConfig/typography/font/code","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/code/value","default":"{font.mono}"}},"type":"object","default":{"value":"{font.mono}"}}},"type":"object","default":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}}},"color":{"title":"Your typography color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/typography/color","properties":{"primary":{"id":"#tokensConfig/typography/color/primary","properties":{"50":{"id":"#tokensConfig/typography/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/50/value","default":"{color.primary.50}"}},"type":"object","default":{"value":"{color.primary.50}"}},"100":{"id":"#tokensConfig/typography/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/100/value","default":"{color.primary.100}"}},"type":"object","default":{"value":"{color.primary.100}"}},"200":{"id":"#tokensConfig/typography/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/200/value","default":"{color.primary.200}"}},"type":"object","default":{"value":"{color.primary.200}"}},"300":{"id":"#tokensConfig/typography/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/300/value","default":"{color.primary.300}"}},"type":"object","default":{"value":"{color.primary.300}"}},"400":{"id":"#tokensConfig/typography/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/400/value","default":"{color.primary.400}"}},"type":"object","default":{"value":"{color.primary.400}"}},"500":{"id":"#tokensConfig/typography/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/500/value","default":"{color.primary.500}"}},"type":"object","default":{"value":"{color.primary.500}"}},"600":{"id":"#tokensConfig/typography/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/600/value","default":"{color.primary.600}"}},"type":"object","default":{"value":"{color.primary.600}"}},"700":{"id":"#tokensConfig/typography/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/700/value","default":"{color.primary.700}"}},"type":"object","default":{"value":"{color.primary.700}"}},"800":{"id":"#tokensConfig/typography/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/800/value","default":"{color.primary.800}"}},"type":"object","default":{"value":"{color.primary.800}"}},"900":{"id":"#tokensConfig/typography/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/900/value","default":"{color.primary.900}"}},"type":"object","default":{"value":"{color.primary.900}"}}},"type":"object","default":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/typography/color/secondary","properties":{"50":{"id":"#tokensConfig/typography/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/typography/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/typography/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/typography/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/typography/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/typography/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/typography/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/typography/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/typography/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/typography/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"type":"object","default":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"type":"object","default":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"prose":{"title":"All the configurable tokens for your Prose components.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon lucide:component"],"id":"#tokensConfig/prose","properties":{"p":{"id":"#tokensConfig/prose/p","properties":{"fontSize":{"id":"#tokensConfig/prose/p/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/fontSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/prose/p/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"margin":{"id":"#tokensConfig/prose/p/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"br":{"id":"#tokensConfig/prose/p/br","properties":{"margin":{"id":"#tokensConfig/prose/p/br/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/br/margin/value","default":"{typography.verticalMargin.base} 0 0 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"h1":{"id":"#tokensConfig/prose/h1","properties":{"margin":{"id":"#tokensConfig/prose/h1/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/margin/value","default":"0 0 2rem"}},"type":"object","default":{"value":"0 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h1/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontSize/value","default":"{typography.fontSize.5xl}"}},"type":"object","default":{"value":"{typography.fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h1/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h1/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontWeight/value","default":"{typography.fontWeight.bold}"}},"type":"object","default":{"value":"{typography.fontWeight.bold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h1/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h1/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/iconSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}}},"type":"object","default":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}}},"h2":{"id":"#tokensConfig/prose/h2","properties":{"margin":{"id":"#tokensConfig/prose/h2/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h2/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontSize/value","default":"{typography.fontSize.4xl}"}},"type":"object","default":{"value":"{typography.fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h2/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h2/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h2/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h2/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/iconSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}}},"h3":{"id":"#tokensConfig/prose/h3","properties":{"margin":{"id":"#tokensConfig/prose/h3/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h3/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h3/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h3/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h3/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h3/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/iconSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}}},"h4":{"id":"#tokensConfig/prose/h4","properties":{"margin":{"id":"#tokensConfig/prose/h4/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h4/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h4/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h4/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h4/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h4/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h5":{"id":"#tokensConfig/prose/h5","properties":{"margin":{"id":"#tokensConfig/prose/h5/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h5/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h5/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h5/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h5/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h6":{"id":"#tokensConfig/prose/h6","properties":{"margin":{"id":"#tokensConfig/prose/h6/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h6/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/prose/h6/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"fontWeight":{"id":"#tokensConfig/prose/h6/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h6/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/iconSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}}},"strong":{"id":"#tokensConfig/prose/strong","properties":{"fontWeight":{"id":"#tokensConfig/prose/strong/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/strong/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"img":{"id":"#tokensConfig/prose/img","properties":{"margin":{"id":"#tokensConfig/prose/img/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/img/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"}}},"a":{"id":"#tokensConfig/prose/a","properties":{"textDecoration":{"id":"#tokensConfig/prose/a/textDecoration","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/textDecoration/value","default":"none"}},"type":"object","default":{"value":"none"}},"color":{"id":"#tokensConfig/prose/a/color","properties":{"static":{"id":"#tokensConfig/prose/a/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/initial","default":"inherit"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/dark","default":"inherit"}},"type":"object","default":{"initial":"inherit","dark":"inherit"}}},"type":"object","default":{"value":{"initial":"inherit","dark":"inherit"}}},"hover":{"id":"#tokensConfig/prose/a/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/dark","default":"{typography.color.primary.400}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"type":"object","default":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"border":{"id":"#tokensConfig/prose/a/border","properties":{"width":{"id":"#tokensConfig/prose/a/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/a/border/style","properties":{"static":{"id":"#tokensConfig/prose/a/border/style/static","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/static/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"hover":{"id":"#tokensConfig/prose/a/border/style/hover","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/hover/value","default":"solid"}},"type":"object","default":{"value":"solid"}}},"type":"object","default":{"static":{"value":"dashed"},"hover":{"value":"solid"}}},"color":{"id":"#tokensConfig/prose/a/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"distance":{"id":"#tokensConfig/prose/a/border/distance","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/distance/value","default":"2px"}},"type":"object","default":{"value":"2px"}}},"type":"object","default":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}}},"fontWeight":{"id":"#tokensConfig/prose/a/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/fontWeight/value","default":"{typography.fontWeight.medium}"}},"type":"object","default":{"value":"{typography.fontWeight.medium}"}},"hasCode":{"id":"#tokensConfig/prose/a/hasCode","properties":{"borderBottom":{"id":"#tokensConfig/prose/a/hasCode/borderBottom","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/hasCode/borderBottom/value","default":"none"}},"type":"object","default":{"value":"none"}}},"type":"object","default":{"borderBottom":{"value":"none"}}},"code":{"id":"#tokensConfig/prose/a/code","properties":{"border":{"id":"#tokensConfig/prose/a/code/border","properties":{"width":{"id":"#tokensConfig/prose/a/code/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/width/value","default":"{prose.a.border.width}"}},"type":"object","default":{"value":"{prose.a.border.width}"}},"style":{"id":"#tokensConfig/prose/a/code/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/style/value","default":"{prose.a.border.style.static}"}},"type":"object","default":{"value":"{prose.a.border.style.static}"}},"color":{"id":"#tokensConfig/prose/a/code/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"hover":{"id":"#tokensConfig/prose/a/code/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/dark","default":"{typography.color.primary.600}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"type":"object","default":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"type":"object","default":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"color":{"id":"#tokensConfig/prose/a/code/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/code/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"background":{"id":"#tokensConfig/prose/a/code/background","properties":{"static":{"id":"#tokensConfig/prose/a/code/background/static","type":"any","default":{}},"hover":{"id":"#tokensConfig/prose/a/code/background/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/background/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/initial","default":"{typography.color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/dark","default":"{typography.color.primary.900}"}},"type":"object","default":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}},"type":"object","default":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"type":"object","default":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"type":"object","default":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"blockquote":{"id":"#tokensConfig/prose/blockquote","properties":{"margin":{"id":"#tokensConfig/prose/blockquote/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/blockquote/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/padding/value","default":"0 0 0 24px"}},"type":"object","default":{"value":"0 0 0 24px"}},"quotes":{"id":"#tokensConfig/prose/blockquote/quotes","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/quotes/value","default":"'201C' '201D' '2018' '2019'"}},"type":"object","default":{"value":"'201C' '201D' '2018' '2019'"}},"color":{"id":"#tokensConfig/prose/blockquote/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"border":{"id":"#tokensConfig/prose/blockquote/border","properties":{"width":{"id":"#tokensConfig/prose/blockquote/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/width/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"style":{"id":"#tokensConfig/prose/blockquote/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/blockquote/border/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"ul":{"id":"#tokensConfig/prose/ul","properties":{"listStyleType":{"id":"#tokensConfig/prose/ul/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/listStyleType/value","default":"disc"}},"type":"object","default":{"value":"disc"}},"margin":{"id":"#tokensConfig/prose/ul/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ul/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ul/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ul/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ul/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"ol":{"id":"#tokensConfig/prose/ol","properties":{"listStyleType":{"id":"#tokensConfig/prose/ol/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/listStyleType/value","default":"decimal"}},"type":"object","default":{"value":"decimal"}},"margin":{"id":"#tokensConfig/prose/ol/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ol/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ol/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ol/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ol/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"li":{"id":"#tokensConfig/prose/li","properties":{"margin":{"id":"#tokensConfig/prose/li/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/margin/value","default":"{typography.verticalMargin.sm} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.sm} 0"}},"listStylePosition":{"id":"#tokensConfig/prose/li/listStylePosition","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/listStylePosition/value","default":"outside"}},"type":"object","default":{"value":"outside"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}}},"hr":{"id":"#tokensConfig/prose/hr","properties":{"margin":{"id":"#tokensConfig/prose/hr/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"style":{"id":"#tokensConfig/prose/hr/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"width":{"id":"#tokensConfig/prose/hr/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"color":{"id":"#tokensConfig/prose/hr/color","properties":{"value":{"id":"#tokensConfig/prose/hr/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/hr/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/hr/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"table":{"id":"#tokensConfig/prose/table","properties":{"margin":{"id":"#tokensConfig/prose/table/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"textAlign":{"id":"#tokensConfig/prose/table/textAlign","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/textAlign/value","default":"left"}},"type":"object","default":{"value":"left"}},"fontSize":{"id":"#tokensConfig/prose/table/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/prose/table/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/lineHeight/value","default":"inherit"}},"type":"object","default":{"value":"inherit"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}}},"thead":{"id":"#tokensConfig/prose/thead","properties":{"border":{"id":"#tokensConfig/prose/thead/border","properties":{"width":{"id":"#tokensConfig/prose/thead/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/width/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"style":{"id":"#tokensConfig/prose/thead/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/border/color","properties":{"value":{"id":"#tokensConfig/prose/thead/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"borderBottom":{"id":"#tokensConfig/prose/thead/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/thead/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/thead/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/thead/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"type":"object","default":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"th":{"id":"#tokensConfig/prose/th","properties":{"color":{"id":"#tokensConfig/prose/th/color","properties":{"value":{"id":"#tokensConfig/prose/th/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/th/color/value/initial","default":"{typography.color.secondary.600}"},"dark":{"type":"string","id":"#tokensConfig/prose/th/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"padding":{"id":"#tokensConfig/prose/th/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/padding/value","default":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"type":"object","default":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/th/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"tbody":{"id":"#tokensConfig/prose/tbody","properties":{"tr":{"id":"#tokensConfig/prose/tbody/tr","properties":{"borderBottom":{"id":"#tokensConfig/prose/tbody/tr/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/style/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"color":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"td":{"id":"#tokensConfig/prose/tbody/td","properties":{"padding":{"id":"#tokensConfig/prose/tbody/td/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/td/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"code":{"id":"#tokensConfig/prose/tbody/code","properties":{"inline":{"id":"#tokensConfig/prose/tbody/code/inline","properties":{"fontSize":{"id":"#tokensConfig/prose/tbody/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"type":"object","default":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"type":"object","default":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"code":{"id":"#tokensConfig/prose/code","properties":{"block":{"id":"#tokensConfig/prose/code/block","properties":{"fontSize":{"id":"#tokensConfig/prose/code/block/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"margin":{"id":"#tokensConfig/prose/code/block/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"border":{"id":"#tokensConfig/prose/code/block/border","properties":{"width":{"id":"#tokensConfig/prose/code/block/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/code/block/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/code/block/border/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"color":{"id":"#tokensConfig/prose/code/block/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/block/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/block/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"pre":{"id":"#tokensConfig/prose/code/block/pre","properties":{"padding":{"id":"#tokensConfig/prose/code/block/pre/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/pre/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"inline":{"id":"#tokensConfig/prose/code/inline","properties":{"borderRadius":{"id":"#tokensConfig/prose/code/inline/borderRadius","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/borderRadius/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"padding":{"id":"#tokensConfig/prose/code/inline/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/padding/value","default":"0.25rem 0.375rem 0.25rem 0.375rem"}},"type":"object","default":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"}},"fontSize":{"id":"#tokensConfig/prose/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/code/inline/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontWeight/value","default":"{typography.fontWeight.normal}"}},"type":"object","default":{"value":"{typography.fontWeight.normal}"}},"color":{"id":"#tokensConfig/prose/code/inline/color","properties":{"value":{"id":"#tokensConfig/prose/code/inline/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/inline/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/inline/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}},"type":"object","default":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"type":"object","default":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"type":"object","default":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"radii":{"title":"Your website border radiuses.","tags":["@studioInput design-token","@studioInpuTokenType size","@studioIcon material-symbols:rounded-corner","@studioInputTokenType size"],"id":"#tokensConfig/radii","properties":{"sm":{"id":"#tokensConfig/radii/sm","properties":{"value":{"type":"string","id":"#tokensConfig/radii/sm/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"md":{"id":"#tokensConfig/radii/md","properties":{"value":{"type":"string","id":"#tokensConfig/radii/md/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"lg":{"id":"#tokensConfig/radii/lg","properties":{"value":{"type":"string","id":"#tokensConfig/radii/lg/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"none":{"id":"#tokensConfig/radii/none","properties":{"value":{"type":"string","id":"#tokensConfig/radii/none/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2xs":{"id":"#tokensConfig/radii/2xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xs/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"xs":{"id":"#tokensConfig/radii/xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xs/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"xl":{"id":"#tokensConfig/radii/xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xl/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"2xl":{"id":"#tokensConfig/radii/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/radii/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/3xl/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"full":{"id":"#tokensConfig/radii/full","properties":{"value":{"type":"string","id":"#tokensConfig/radii/full/value","default":"9999px"}},"type":"object","default":{"value":"9999px"}}},"type":"object","default":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}}},"fontSize":{"title":"Your website font sizes.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontSize","properties":{"xs":{"id":"#tokensConfig/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xs/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"sm":{"id":"#tokensConfig/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/sm/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}},"base":{"id":"#tokensConfig/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/base/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"lg":{"id":"#tokensConfig/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/lg/value","default":"1.125rem"}},"type":"object","default":{"value":"1.125rem"}},"xl":{"id":"#tokensConfig/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xl/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"2xl":{"id":"#tokensConfig/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/3xl/value","default":"1.875rem"}},"type":"object","default":{"value":"1.875rem"}},"4xl":{"id":"#tokensConfig/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/4xl/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"5xl":{"id":"#tokensConfig/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/5xl/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"6xl":{"id":"#tokensConfig/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/6xl/value","default":"3.75rem"}},"type":"object","default":{"value":"3.75rem"}},"7xl":{"id":"#tokensConfig/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/7xl/value","default":"4.5rem"}},"type":"object","default":{"value":"4.5rem"}},"8xl":{"id":"#tokensConfig/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/8xl/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"9xl":{"id":"#tokensConfig/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/9xl/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}}},"type":"object","default":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}}},"lead":{"title":"Your website line heights.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon icon-park-outline:auto-line-height"],"id":"#tokensConfig/lead","properties":{"1":{"id":"#tokensConfig/lead/1","properties":{"value":{"type":"string","id":"#tokensConfig/lead/1/value","default":".025rem"}},"type":"object","default":{"value":".025rem"}},"2":{"id":"#tokensConfig/lead/2","properties":{"value":{"type":"string","id":"#tokensConfig/lead/2/value","default":".5rem"}},"type":"object","default":{"value":".5rem"}},"3":{"id":"#tokensConfig/lead/3","properties":{"value":{"type":"string","id":"#tokensConfig/lead/3/value","default":".75rem"}},"type":"object","default":{"value":".75rem"}},"4":{"id":"#tokensConfig/lead/4","properties":{"value":{"type":"string","id":"#tokensConfig/lead/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/lead/5","properties":{"value":{"type":"string","id":"#tokensConfig/lead/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/lead/6","properties":{"value":{"type":"string","id":"#tokensConfig/lead/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/lead/7","properties":{"value":{"type":"string","id":"#tokensConfig/lead/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/lead/8","properties":{"value":{"type":"string","id":"#tokensConfig/lead/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/lead/9","properties":{"value":{"type":"string","id":"#tokensConfig/lead/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/lead/10","properties":{"value":{"type":"string","id":"#tokensConfig/lead/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"none":{"id":"#tokensConfig/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your website fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/font","properties":{"sans":{"id":"#tokensConfig/font/sans","properties":{"value":{"type":"string","id":"#tokensConfig/font/sans/value","default":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"type":"object","default":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"serif":{"id":"#tokensConfig/font/serif","properties":{"value":{"type":"string","id":"#tokensConfig/font/serif/value","default":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"type":"object","default":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"mono":{"id":"#tokensConfig/font/mono","properties":{"value":{"type":"string","id":"#tokensConfig/font/mono/value","default":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"type":"object","default":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"type":"object","default":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"docus":{"title":"All the configurable tokens from Docus.","tags":["@studioIcon material-symbols:docs"],"id":"#tokensConfig/docus","properties":{"header":{"id":"#tokensConfig/docus/header","properties":{"height":{"id":"#tokensConfig/docus/header/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/header/height/value","default":"64px"}},"type":"object","default":{"value":"64px"}}},"type":"object","default":{"height":{"value":"64px"}}},"footer":{"id":"#tokensConfig/docus/footer","properties":{"padding":{"id":"#tokensConfig/docus/footer/padding","properties":{"value":{"type":"string","id":"#tokensConfig/docus/footer/padding/value","default":"{space.4} 0"}},"type":"object","default":{"value":"{space.4} 0"}}},"type":"object","default":{"padding":{"value":"{space.4} 0"}}},"readableLine":{"id":"#tokensConfig/docus/readableLine","properties":{"value":{"type":"string","id":"#tokensConfig/docus/readableLine/value","default":"78ch"}},"type":"object","default":{"value":"78ch"}},"loadingBar":{"id":"#tokensConfig/docus/loadingBar","properties":{"height":{"id":"#tokensConfig/docus/loadingBar/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/height/value","default":"3px"}},"type":"object","default":{"value":"3px"}},"gradientColorStop1":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop1","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop1/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"gradientColorStop2":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop2","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop2/value","default":"#34cdfe"}},"type":"object","default":{"value":"#34cdfe"}},"gradientColorStop3":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop3","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop3/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}}},"type":"object","default":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"type":"object","default":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"media":{"title":"Your website media queries.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:screenshot-monitor-outline-rounded"],"id":"#tokensConfig/media","properties":{"xs":{"id":"#tokensConfig/media/xs","properties":{"value":{"type":"string","id":"#tokensConfig/media/xs/value","default":"(min-width: 475px)"}},"type":"object","default":{"value":"(min-width: 475px)"}},"sm":{"id":"#tokensConfig/media/sm","properties":{"value":{"type":"string","id":"#tokensConfig/media/sm/value","default":"(min-width: 640px)"}},"type":"object","default":{"value":"(min-width: 640px)"}},"md":{"id":"#tokensConfig/media/md","properties":{"value":{"type":"string","id":"#tokensConfig/media/md/value","default":"(min-width: 768px)"}},"type":"object","default":{"value":"(min-width: 768px)"}},"lg":{"id":"#tokensConfig/media/lg","properties":{"value":{"type":"string","id":"#tokensConfig/media/lg/value","default":"(min-width: 1024px)"}},"type":"object","default":{"value":"(min-width: 1024px)"}},"xl":{"id":"#tokensConfig/media/xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/xl/value","default":"(min-width: 1280px)"}},"type":"object","default":{"value":"(min-width: 1280px)"}},"2xl":{"id":"#tokensConfig/media/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/2xl/value","default":"(min-width: 1536px)"}},"type":"object","default":{"value":"(min-width: 1536px)"}},"rm":{"id":"#tokensConfig/media/rm","properties":{"value":{"type":"string","id":"#tokensConfig/media/rm/value","default":"(prefers-reduced-motion: reduce)"}},"type":"object","default":{"value":"(prefers-reduced-motion: reduce)"}},"landscape":{"id":"#tokensConfig/media/landscape","properties":{"value":{"type":"string","id":"#tokensConfig/media/landscape/value","default":"only screen and (orientation: landscape)"}},"type":"object","default":{"value":"only screen and (orientation: landscape)"}},"portrait":{"id":"#tokensConfig/media/portrait","properties":{"value":{"type":"string","id":"#tokensConfig/media/portrait/value","default":"only screen and (orientation: portrait)"}},"type":"object","default":{"value":"only screen and (orientation: portrait)"}}},"type":"object","default":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}}},"width":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/width","properties":{"screen":{"id":"#tokensConfig/width/screen","properties":{"value":{"type":"string","id":"#tokensConfig/width/screen/value","default":"100vw"}},"type":"object","default":{"value":"100vw"}}},"type":"object","default":{"screen":{"value":"100vw"}}},"height":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/height","properties":{"screen":{"id":"#tokensConfig/height/screen","properties":{"value":{"type":"string","id":"#tokensConfig/height/screen/value","default":"100vh"}},"type":"object","default":{"value":"100vh"}}},"type":"object","default":{"screen":{"value":"100vh"}}},"shadow":{"title":"Your website shadows.","tags":["@studioInput design-token","@studioInputTokenType shadow","@studioIcon mdi:box-shadow"],"id":"#tokensConfig/shadow","properties":{"xs":{"id":"#tokensConfig/shadow/xs","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xs/value","default":"0px 1px 2px 0px #000000"}},"type":"object","default":{"value":"0px 1px 2px 0px #000000"}},"sm":{"id":"#tokensConfig/shadow/sm","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/sm/value","default":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"type":"object","default":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"md":{"id":"#tokensConfig/shadow/md","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/md/value","default":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"type":"object","default":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"lg":{"id":"#tokensConfig/shadow/lg","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/lg/value","default":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"type":"object","default":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"xl":{"id":"#tokensConfig/shadow/xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xl/value","default":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"type":"object","default":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"2xl":{"id":"#tokensConfig/shadow/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/2xl/value","default":"0px 25px 50px -12px {color.gray.900}"}},"type":"object","default":{"value":"0px 25px 50px -12px {color.gray.900}"}},"none":{"id":"#tokensConfig/shadow/none","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/none/value","default":"0px 0px 0px 0px transparent"}},"type":"object","default":{"value":"0px 0px 0px 0px transparent"}}},"type":"object","default":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}}},"size":{"title":"Your website sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/size","properties":{"0":{"id":"#tokensConfig/size/0","properties":{"value":{"type":"string","id":"#tokensConfig/size/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2":{"id":"#tokensConfig/size/2","properties":{"value":{"type":"string","id":"#tokensConfig/size/2/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"4":{"id":"#tokensConfig/size/4","properties":{"value":{"type":"string","id":"#tokensConfig/size/4/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"6":{"id":"#tokensConfig/size/6","properties":{"value":{"type":"string","id":"#tokensConfig/size/6/value","default":"6px"}},"type":"object","default":{"value":"6px"}},"8":{"id":"#tokensConfig/size/8","properties":{"value":{"type":"string","id":"#tokensConfig/size/8/value","default":"8px"}},"type":"object","default":{"value":"8px"}},"12":{"id":"#tokensConfig/size/12","properties":{"value":{"type":"string","id":"#tokensConfig/size/12/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"16":{"id":"#tokensConfig/size/16","properties":{"value":{"type":"string","id":"#tokensConfig/size/16/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"20":{"id":"#tokensConfig/size/20","properties":{"value":{"type":"string","id":"#tokensConfig/size/20/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"24":{"id":"#tokensConfig/size/24","properties":{"value":{"type":"string","id":"#tokensConfig/size/24/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"32":{"id":"#tokensConfig/size/32","properties":{"value":{"type":"string","id":"#tokensConfig/size/32/value","default":"32px"}},"type":"object","default":{"value":"32px"}},"40":{"id":"#tokensConfig/size/40","properties":{"value":{"type":"string","id":"#tokensConfig/size/40/value","default":"40px"}},"type":"object","default":{"value":"40px"}},"48":{"id":"#tokensConfig/size/48","properties":{"value":{"type":"string","id":"#tokensConfig/size/48/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"56":{"id":"#tokensConfig/size/56","properties":{"value":{"type":"string","id":"#tokensConfig/size/56/value","default":"56px"}},"type":"object","default":{"value":"56px"}},"64":{"id":"#tokensConfig/size/64","properties":{"value":{"type":"string","id":"#tokensConfig/size/64/value","default":"64px"}},"type":"object","default":{"value":"64px"}},"80":{"id":"#tokensConfig/size/80","properties":{"value":{"type":"string","id":"#tokensConfig/size/80/value","default":"80px"}},"type":"object","default":{"value":"80px"}},"104":{"id":"#tokensConfig/size/104","properties":{"value":{"type":"string","id":"#tokensConfig/size/104/value","default":"104px"}},"type":"object","default":{"value":"104px"}},"200":{"id":"#tokensConfig/size/200","properties":{"value":{"type":"string","id":"#tokensConfig/size/200/value","default":"200px"}},"type":"object","default":{"value":"200px"}},"xs":{"id":"#tokensConfig/size/xs","properties":{"value":{"type":"string","id":"#tokensConfig/size/xs/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"sm":{"id":"#tokensConfig/size/sm","properties":{"value":{"type":"string","id":"#tokensConfig/size/sm/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"md":{"id":"#tokensConfig/size/md","properties":{"value":{"type":"string","id":"#tokensConfig/size/md/value","default":"28rem"}},"type":"object","default":{"value":"28rem"}},"lg":{"id":"#tokensConfig/size/lg","properties":{"value":{"type":"string","id":"#tokensConfig/size/lg/value","default":"32rem"}},"type":"object","default":{"value":"32rem"}},"xl":{"id":"#tokensConfig/size/xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/xl/value","default":"36rem"}},"type":"object","default":{"value":"36rem"}},"2xl":{"id":"#tokensConfig/size/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/2xl/value","default":"42rem"}},"type":"object","default":{"value":"42rem"}},"3xl":{"id":"#tokensConfig/size/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/3xl/value","default":"48rem"}},"type":"object","default":{"value":"48rem"}},"4xl":{"id":"#tokensConfig/size/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/4xl/value","default":"56rem"}},"type":"object","default":{"value":"56rem"}},"5xl":{"id":"#tokensConfig/size/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/5xl/value","default":"64rem"}},"type":"object","default":{"value":"64rem"}},"6xl":{"id":"#tokensConfig/size/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/6xl/value","default":"72rem"}},"type":"object","default":{"value":"72rem"}},"7xl":{"id":"#tokensConfig/size/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/7xl/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"full":{"id":"#tokensConfig/size/full","properties":{"value":{"type":"string","id":"#tokensConfig/size/full/value","default":"100%"}},"type":"object","default":{"value":"100%"}}},"type":"object","default":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}}},"space":{"title":"Your website spacings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/space","properties":{"0":{"id":"#tokensConfig/space/0","properties":{"value":{"type":"string","id":"#tokensConfig/space/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"1":{"id":"#tokensConfig/space/1","properties":{"value":{"type":"string","id":"#tokensConfig/space/1/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"2":{"id":"#tokensConfig/space/2","properties":{"value":{"type":"string","id":"#tokensConfig/space/2/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"3":{"id":"#tokensConfig/space/3","properties":{"value":{"type":"string","id":"#tokensConfig/space/3/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"4":{"id":"#tokensConfig/space/4","properties":{"value":{"type":"string","id":"#tokensConfig/space/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/space/5","properties":{"value":{"type":"string","id":"#tokensConfig/space/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/space/6","properties":{"value":{"type":"string","id":"#tokensConfig/space/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/space/7","properties":{"value":{"type":"string","id":"#tokensConfig/space/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/space/8","properties":{"value":{"type":"string","id":"#tokensConfig/space/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/space/9","properties":{"value":{"type":"string","id":"#tokensConfig/space/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/space/10","properties":{"value":{"type":"string","id":"#tokensConfig/space/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"11":{"id":"#tokensConfig/space/11","properties":{"value":{"type":"string","id":"#tokensConfig/space/11/value","default":"2.75rem"}},"type":"object","default":{"value":"2.75rem"}},"12":{"id":"#tokensConfig/space/12","properties":{"value":{"type":"string","id":"#tokensConfig/space/12/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"14":{"id":"#tokensConfig/space/14","properties":{"value":{"type":"string","id":"#tokensConfig/space/14/value","default":"3.5rem"}},"type":"object","default":{"value":"3.5rem"}},"16":{"id":"#tokensConfig/space/16","properties":{"value":{"type":"string","id":"#tokensConfig/space/16/value","default":"4rem"}},"type":"object","default":{"value":"4rem"}},"20":{"id":"#tokensConfig/space/20","properties":{"value":{"type":"string","id":"#tokensConfig/space/20/value","default":"5rem"}},"type":"object","default":{"value":"5rem"}},"24":{"id":"#tokensConfig/space/24","properties":{"value":{"type":"string","id":"#tokensConfig/space/24/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"28":{"id":"#tokensConfig/space/28","properties":{"value":{"type":"string","id":"#tokensConfig/space/28/value","default":"7rem"}},"type":"object","default":{"value":"7rem"}},"32":{"id":"#tokensConfig/space/32","properties":{"value":{"type":"string","id":"#tokensConfig/space/32/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}},"36":{"id":"#tokensConfig/space/36","properties":{"value":{"type":"string","id":"#tokensConfig/space/36/value","default":"9rem"}},"type":"object","default":{"value":"9rem"}},"40":{"id":"#tokensConfig/space/40","properties":{"value":{"type":"string","id":"#tokensConfig/space/40/value","default":"10rem"}},"type":"object","default":{"value":"10rem"}},"44":{"id":"#tokensConfig/space/44","properties":{"value":{"type":"string","id":"#tokensConfig/space/44/value","default":"11rem"}},"type":"object","default":{"value":"11rem"}},"48":{"id":"#tokensConfig/space/48","properties":{"value":{"type":"string","id":"#tokensConfig/space/48/value","default":"12rem"}},"type":"object","default":{"value":"12rem"}},"52":{"id":"#tokensConfig/space/52","properties":{"value":{"type":"string","id":"#tokensConfig/space/52/value","default":"13rem"}},"type":"object","default":{"value":"13rem"}},"56":{"id":"#tokensConfig/space/56","properties":{"value":{"type":"string","id":"#tokensConfig/space/56/value","default":"14rem"}},"type":"object","default":{"value":"14rem"}},"60":{"id":"#tokensConfig/space/60","properties":{"value":{"type":"string","id":"#tokensConfig/space/60/value","default":"15rem"}},"type":"object","default":{"value":"15rem"}},"64":{"id":"#tokensConfig/space/64","properties":{"value":{"type":"string","id":"#tokensConfig/space/64/value","default":"16rem"}},"type":"object","default":{"value":"16rem"}},"72":{"id":"#tokensConfig/space/72","properties":{"value":{"type":"string","id":"#tokensConfig/space/72/value","default":"18rem"}},"type":"object","default":{"value":"18rem"}},"80":{"id":"#tokensConfig/space/80","properties":{"value":{"type":"string","id":"#tokensConfig/space/80/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"96":{"id":"#tokensConfig/space/96","properties":{"value":{"type":"string","id":"#tokensConfig/space/96/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"px":{"id":"#tokensConfig/space/px","properties":{"value":{"type":"string","id":"#tokensConfig/space/px/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"rem":{"id":"#tokensConfig/space/rem","properties":{"125":{"id":"#tokensConfig/space/rem/125","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/125/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"375":{"id":"#tokensConfig/space/rem/375","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/375/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"625":{"id":"#tokensConfig/space/rem/625","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/625/value","default":"0.625rem"}},"type":"object","default":{"value":"0.625rem"}},"875":{"id":"#tokensConfig/space/rem/875","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/875/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}}},"type":"object","default":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"type":"object","default":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"borderWidth":{"title":"Your website border widths.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/borderWidth","properties":{"noBorder":{"id":"#tokensConfig/borderWidth/noBorder","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/noBorder/value","default":"0"}},"type":"object","default":{"value":"0"}},"sm":{"id":"#tokensConfig/borderWidth/sm","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/sm/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"md":{"id":"#tokensConfig/borderWidth/md","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/md/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"lg":{"id":"#tokensConfig/borderWidth/lg","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/lg/value","default":"3px"}},"type":"object","default":{"value":"3px"}}},"type":"object","default":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}}},"opacity":{"title":"Your website opacities.","tags":["@studioInput design-token","@studioInputTokenType opacity","@studioIcon material-symbols:opacity"],"id":"#tokensConfig/opacity","properties":{"noOpacity":{"id":"#tokensConfig/opacity/noOpacity","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/noOpacity/value","default":"0"}},"type":"object","default":{"value":"0"}},"bright":{"id":"#tokensConfig/opacity/bright","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/bright/value","default":"0.1"}},"type":"object","default":{"value":"0.1"}},"light":{"id":"#tokensConfig/opacity/light","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/light/value","default":"0.15"}},"type":"object","default":{"value":"0.15"}},"soft":{"id":"#tokensConfig/opacity/soft","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/soft/value","default":"0.3"}},"type":"object","default":{"value":"0.3"}},"medium":{"id":"#tokensConfig/opacity/medium","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/medium/value","default":"0.5"}},"type":"object","default":{"value":"0.5"}},"high":{"id":"#tokensConfig/opacity/high","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/high/value","default":"0.8"}},"type":"object","default":{"value":"0.8"}},"total":{"id":"#tokensConfig/opacity/total","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/total/value","default":"1"}},"type":"object","default":{"value":"1"}}},"type":"object","default":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}}},"fontWeight":{"title":"Your website font weights.","tags":["@studioInput design-token","@studioInputTokenType font-weight","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontWeight","properties":{"thin":{"id":"#tokensConfig/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"letterSpacing":{"title":"Your website letter spacings.","tags":["@studioInput design-token","@studioInputTokenType letter-spacing","@studioIcon fluent:font-space-tracking-out-24-filled"],"id":"#tokensConfig/letterSpacing","properties":{"tighter":{"id":"#tokensConfig/letterSpacing/tighter","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tighter/value","default":"-0.05em"}},"type":"object","default":{"value":"-0.05em"}},"tight":{"id":"#tokensConfig/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"normal":{"id":"#tokensConfig/letterSpacing/normal","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/normal/value","default":"0em"}},"type":"object","default":{"value":"0em"}},"wide":{"id":"#tokensConfig/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}},"wider":{"id":"#tokensConfig/letterSpacing/wider","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wider/value","default":"0.05em"}},"type":"object","default":{"value":"0.05em"}},"widest":{"id":"#tokensConfig/letterSpacing/widest","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/widest/value","default":"0.1em"}},"type":"object","default":{"value":"0.1em"}}},"type":"object","default":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}}},"text":{"title":"Your website text scales.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:format-size-rounded"],"id":"#tokensConfig/text","properties":{"xs":{"id":"#tokensConfig/text/xs","properties":{"fontSize":{"id":"#tokensConfig/text/xs/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/fontSize/value","default":"{fontSize.xs}"}},"type":"object","default":{"value":"{fontSize.xs}"}},"lineHeight":{"id":"#tokensConfig/text/xs/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/lineHeight/value","default":"{lead.4}"}},"type":"object","default":{"value":"{lead.4}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}}},"sm":{"id":"#tokensConfig/text/sm","properties":{"fontSize":{"id":"#tokensConfig/text/sm/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/fontSize/value","default":"{fontSize.sm}"}},"type":"object","default":{"value":"{fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/text/sm/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/lineHeight/value","default":"{lead.5}"}},"type":"object","default":{"value":"{lead.5}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}}},"base":{"id":"#tokensConfig/text/base","properties":{"fontSize":{"id":"#tokensConfig/text/base/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/fontSize/value","default":"{fontSize.base}"}},"type":"object","default":{"value":"{fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/text/base/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/lineHeight/value","default":"{lead.6}"}},"type":"object","default":{"value":"{lead.6}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}}},"lg":{"id":"#tokensConfig/text/lg","properties":{"fontSize":{"id":"#tokensConfig/text/lg/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/fontSize/value","default":"{fontSize.lg}"}},"type":"object","default":{"value":"{fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/text/lg/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}}},"xl":{"id":"#tokensConfig/text/xl","properties":{"fontSize":{"id":"#tokensConfig/text/xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/fontSize/value","default":"{fontSize.xl}"}},"type":"object","default":{"value":"{fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/text/xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}}},"2xl":{"id":"#tokensConfig/text/2xl","properties":{"fontSize":{"id":"#tokensConfig/text/2xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/fontSize/value","default":"{fontSize.2xl}"}},"type":"object","default":{"value":"{fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/text/2xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/lineHeight/value","default":"{lead.8}"}},"type":"object","default":{"value":"{lead.8}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}}},"3xl":{"id":"#tokensConfig/text/3xl","properties":{"fontSize":{"id":"#tokensConfig/text/3xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/fontSize/value","default":"{fontSize.3xl}"}},"type":"object","default":{"value":"{fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/text/3xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/lineHeight/value","default":"{lead.9}"}},"type":"object","default":{"value":"{lead.9}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}}},"4xl":{"id":"#tokensConfig/text/4xl","properties":{"fontSize":{"id":"#tokensConfig/text/4xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/fontSize/value","default":"{fontSize.4xl}"}},"type":"object","default":{"value":"{fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/text/4xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/lineHeight/value","default":"{lead.10}"}},"type":"object","default":{"value":"{lead.10}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}}},"5xl":{"id":"#tokensConfig/text/5xl","properties":{"fontSize":{"id":"#tokensConfig/text/5xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/fontSize/value","default":"{fontSize.5xl}"}},"type":"object","default":{"value":"{fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/text/5xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}}},"6xl":{"id":"#tokensConfig/text/6xl","properties":{"fontSize":{"id":"#tokensConfig/text/6xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/fontSize/value","default":"{fontSize.6xl}"}},"type":"object","default":{"value":"{fontSize.6xl}"}},"lineHeight":{"id":"#tokensConfig/text/6xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}},"type":"object","default":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"type":"object","default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"tokensConfig":{"color":{"primary":{"50":{"value":"#fff2cc","variable":"var(--color-primary-50)","original":"#fff2cc"},"100":{"value":"#ffe599","variable":"var(--color-primary-100)","original":"#ffe599"},"200":{"value":"#ffd966","variable":"var(--color-primary-200)","original":"#ffd966"},"300":{"value":"#f1c232","variable":"var(--color-primary-300)","original":"#f1c232"},"400":{"value":"#f1c232","variable":"var(--color-primary-400)","original":"#f1c232"},"500":{"value":"#f1c232","variable":"var(--color-primary-500)","original":"#f1c232"},"600":{"value":"#f1c232","variable":"var(--color-primary-600)","original":"#f1c232"},"700":{"value":"#f1c232","variable":"var(--color-primary-700)","original":"#f1c232"},"800":{"value":"#f1c232","variable":"var(--color-primary-800)","original":"#f1c232"},"900":{"value":"#f1c232","variable":"var(--color-primary-900)","original":"#f1c232"}},"white":{"value":"#ffffff","variable":"var(--color-white)","original":"#ffffff"},"black":{"value":"#0c0c0d","variable":"var(--color-black)","original":"#0c0c0d"},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--color-secondary-900)","original":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa","variable":"var(--color-gray-50)","original":"#fafafa"},"100":{"value":"#f4f4f5","variable":"var(--color-gray-100)","original":"#f4f4f5"},"200":{"value":"#e4e4e7","variable":"var(--color-gray-200)","original":"#e4e4e7"},"300":{"value":"#D4d4d8","variable":"var(--color-gray-300)","original":"#D4d4d8"},"400":{"value":"#a1a1aa","variable":"var(--color-gray-400)","original":"#a1a1aa"},"500":{"value":"#71717A","variable":"var(--color-gray-500)","original":"#71717A"},"600":{"value":"#52525B","variable":"var(--color-gray-600)","original":"#52525B"},"700":{"value":"#3f3f46","variable":"var(--color-gray-700)","original":"#3f3f46"},"800":{"value":"#27272A","variable":"var(--color-gray-800)","original":"#27272A"},"900":{"value":"#18181B","variable":"var(--color-gray-900)","original":"#18181B"}},"green":{"50":{"value":"#d6ffee","variable":"var(--color-green-50)","original":"#d6ffee"},"100":{"value":"#acffdd","variable":"var(--color-green-100)","original":"#acffdd"},"200":{"value":"#83ffcc","variable":"var(--color-green-200)","original":"#83ffcc"},"300":{"value":"#30ffaa","variable":"var(--color-green-300)","original":"#30ffaa"},"400":{"value":"#00dc82","variable":"var(--color-green-400)","original":"#00dc82"},"500":{"value":"#00bd6f","variable":"var(--color-green-500)","original":"#00bd6f"},"600":{"value":"#009d5d","variable":"var(--color-green-600)","original":"#009d5d"},"700":{"value":"#007e4a","variable":"var(--color-green-700)","original":"#007e4a"},"800":{"value":"#005e38","variable":"var(--color-green-800)","original":"#005e38"},"900":{"value":"#003f25","variable":"var(--color-green-900)","original":"#003f25"}},"yellow":{"50":{"value":"#fdf6db","variable":"var(--color-yellow-50)","original":"#fdf6db"},"100":{"value":"#fcedb7","variable":"var(--color-yellow-100)","original":"#fcedb7"},"200":{"value":"#fae393","variable":"var(--color-yellow-200)","original":"#fae393"},"300":{"value":"#f8da70","variable":"var(--color-yellow-300)","original":"#f8da70"},"400":{"value":"#f7d14c","variable":"var(--color-yellow-400)","original":"#f7d14c"},"500":{"value":"#f5c828","variable":"var(--color-yellow-500)","original":"#f5c828"},"600":{"value":"#daac0a","variable":"var(--color-yellow-600)","original":"#daac0a"},"700":{"value":"#a38108","variable":"var(--color-yellow-700)","original":"#a38108"},"800":{"value":"#6d5605","variable":"var(--color-yellow-800)","original":"#6d5605"},"900":{"value":"#362b03","variable":"var(--color-yellow-900)","original":"#362b03"}},"orange":{"50":{"value":"#ffe9d9","variable":"var(--color-orange-50)","original":"#ffe9d9"},"100":{"value":"#ffd3b3","variable":"var(--color-orange-100)","original":"#ffd3b3"},"200":{"value":"#ffbd8d","variable":"var(--color-orange-200)","original":"#ffbd8d"},"300":{"value":"#ffa666","variable":"var(--color-orange-300)","original":"#ffa666"},"400":{"value":"#ff9040","variable":"var(--color-orange-400)","original":"#ff9040"},"500":{"value":"#ff7a1a","variable":"var(--color-orange-500)","original":"#ff7a1a"},"600":{"value":"#e15e00","variable":"var(--color-orange-600)","original":"#e15e00"},"700":{"value":"#a94700","variable":"var(--color-orange-700)","original":"#a94700"},"800":{"value":"#702f00","variable":"var(--color-orange-800)","original":"#702f00"},"900":{"value":"#381800","variable":"var(--color-orange-900)","original":"#381800"}},"red":{"50":{"value":"#ffdbd9","variable":"var(--color-red-50)","original":"#ffdbd9"},"100":{"value":"#ffb7b3","variable":"var(--color-red-100)","original":"#ffb7b3"},"200":{"value":"#ff948d","variable":"var(--color-red-200)","original":"#ff948d"},"300":{"value":"#ff7066","variable":"var(--color-red-300)","original":"#ff7066"},"400":{"value":"#ff4c40","variable":"var(--color-red-400)","original":"#ff4c40"},"500":{"value":"#ff281a","variable":"var(--color-red-500)","original":"#ff281a"},"600":{"value":"#e10e00","variable":"var(--color-red-600)","original":"#e10e00"},"700":{"value":"#a90a00","variable":"var(--color-red-700)","original":"#a90a00"},"800":{"value":"#700700","variable":"var(--color-red-800)","original":"#700700"},"900":{"value":"#380300","variable":"var(--color-red-900)","original":"#380300"}},"pear":{"50":{"value":"#f7f8dc","variable":"var(--color-pear-50)","original":"#f7f8dc"},"100":{"value":"#eff0ba","variable":"var(--color-pear-100)","original":"#eff0ba"},"200":{"value":"#e8e997","variable":"var(--color-pear-200)","original":"#e8e997"},"300":{"value":"#e0e274","variable":"var(--color-pear-300)","original":"#e0e274"},"400":{"value":"#d8da52","variable":"var(--color-pear-400)","original":"#d8da52"},"500":{"value":"#d0d32f","variable":"var(--color-pear-500)","original":"#d0d32f"},"600":{"value":"#a8aa24","variable":"var(--color-pear-600)","original":"#a8aa24"},"700":{"value":"#7e801b","variable":"var(--color-pear-700)","original":"#7e801b"},"800":{"value":"#545512","variable":"var(--color-pear-800)","original":"#545512"},"900":{"value":"#2a2b09","variable":"var(--color-pear-900)","original":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8","variable":"var(--color-teal-50)","original":"#d7faf8"},"100":{"value":"#aff4f0","variable":"var(--color-teal-100)","original":"#aff4f0"},"200":{"value":"#87efe9","variable":"var(--color-teal-200)","original":"#87efe9"},"300":{"value":"#5fe9e1","variable":"var(--color-teal-300)","original":"#5fe9e1"},"400":{"value":"#36e4da","variable":"var(--color-teal-400)","original":"#36e4da"},"500":{"value":"#1cd1c6","variable":"var(--color-teal-500)","original":"#1cd1c6"},"600":{"value":"#16a79e","variable":"var(--color-teal-600)","original":"#16a79e"},"700":{"value":"#117d77","variable":"var(--color-teal-700)","original":"#117d77"},"800":{"value":"#0b544f","variable":"var(--color-teal-800)","original":"#0b544f"},"900":{"value":"#062a28","variable":"var(--color-teal-900)","original":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff","variable":"var(--color-lightblue-50)","original":"#d9f8ff"},"100":{"value":"#b3f1ff","variable":"var(--color-lightblue-100)","original":"#b3f1ff"},"200":{"value":"#8deaff","variable":"var(--color-lightblue-200)","original":"#8deaff"},"300":{"value":"#66e4ff","variable":"var(--color-lightblue-300)","original":"#66e4ff"},"400":{"value":"#40ddff","variable":"var(--color-lightblue-400)","original":"#40ddff"},"500":{"value":"#1ad6ff","variable":"var(--color-lightblue-500)","original":"#1ad6ff"},"600":{"value":"#00b9e1","variable":"var(--color-lightblue-600)","original":"#00b9e1"},"700":{"value":"#008aa9","variable":"var(--color-lightblue-700)","original":"#008aa9"},"800":{"value":"#005c70","variable":"var(--color-lightblue-800)","original":"#005c70"},"900":{"value":"#002e38","variable":"var(--color-lightblue-900)","original":"#002e38"}},"blue":{"50":{"value":"#d9f1ff","variable":"var(--color-blue-50)","original":"#d9f1ff"},"100":{"value":"#b3e4ff","variable":"var(--color-blue-100)","original":"#b3e4ff"},"200":{"value":"#8dd6ff","variable":"var(--color-blue-200)","original":"#8dd6ff"},"300":{"value":"#66c8ff","variable":"var(--color-blue-300)","original":"#66c8ff"},"400":{"value":"#40bbff","variable":"var(--color-blue-400)","original":"#40bbff"},"500":{"value":"#1aadff","variable":"var(--color-blue-500)","original":"#1aadff"},"600":{"value":"#0090e1","variable":"var(--color-blue-600)","original":"#0090e1"},"700":{"value":"#006ca9","variable":"var(--color-blue-700)","original":"#006ca9"},"800":{"value":"#004870","variable":"var(--color-blue-800)","original":"#004870"},"900":{"value":"#002438","variable":"var(--color-blue-900)","original":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff","variable":"var(--color-indigoblue-50)","original":"#d9e5ff"},"100":{"value":"#b3cbff","variable":"var(--color-indigoblue-100)","original":"#b3cbff"},"200":{"value":"#8db0ff","variable":"var(--color-indigoblue-200)","original":"#8db0ff"},"300":{"value":"#6696ff","variable":"var(--color-indigoblue-300)","original":"#6696ff"},"400":{"value":"#407cff","variable":"var(--color-indigoblue-400)","original":"#407cff"},"500":{"value":"#1a62ff","variable":"var(--color-indigoblue-500)","original":"#1a62ff"},"600":{"value":"#0047e1","variable":"var(--color-indigoblue-600)","original":"#0047e1"},"700":{"value":"#0035a9","variable":"var(--color-indigoblue-700)","original":"#0035a9"},"800":{"value":"#002370","variable":"var(--color-indigoblue-800)","original":"#002370"},"900":{"value":"#001238","variable":"var(--color-indigoblue-900)","original":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb","variable":"var(--color-royalblue-50)","original":"#dfdbfb"},"100":{"value":"#c0b7f7","variable":"var(--color-royalblue-100)","original":"#c0b7f7"},"200":{"value":"#a093f3","variable":"var(--color-royalblue-200)","original":"#a093f3"},"300":{"value":"#806ff0","variable":"var(--color-royalblue-300)","original":"#806ff0"},"400":{"value":"#614bec","variable":"var(--color-royalblue-400)","original":"#614bec"},"500":{"value":"#4127e8","variable":"var(--color-royalblue-500)","original":"#4127e8"},"600":{"value":"#2c15c4","variable":"var(--color-royalblue-600)","original":"#2c15c4"},"700":{"value":"#211093","variable":"var(--color-royalblue-700)","original":"#211093"},"800":{"value":"#160a62","variable":"var(--color-royalblue-800)","original":"#160a62"},"900":{"value":"#0b0531","variable":"var(--color-royalblue-900)","original":"#0b0531"}},"purple":{"50":{"value":"#ead9ff","variable":"var(--color-purple-50)","original":"#ead9ff"},"100":{"value":"#d5b3ff","variable":"var(--color-purple-100)","original":"#d5b3ff"},"200":{"value":"#c08dff","variable":"var(--color-purple-200)","original":"#c08dff"},"300":{"value":"#ab66ff","variable":"var(--color-purple-300)","original":"#ab66ff"},"400":{"value":"#9640ff","variable":"var(--color-purple-400)","original":"#9640ff"},"500":{"value":"#811aff","variable":"var(--color-purple-500)","original":"#811aff"},"600":{"value":"#6500e1","variable":"var(--color-purple-600)","original":"#6500e1"},"700":{"value":"#4c00a9","variable":"var(--color-purple-700)","original":"#4c00a9"},"800":{"value":"#330070","variable":"var(--color-purple-800)","original":"#330070"},"900":{"value":"#190038","variable":"var(--color-purple-900)","original":"#190038"}},"pink":{"50":{"value":"#ffd9f2","variable":"var(--color-pink-50)","original":"#ffd9f2"},"100":{"value":"#ffb3e5","variable":"var(--color-pink-100)","original":"#ffb3e5"},"200":{"value":"#ff8dd8","variable":"var(--color-pink-200)","original":"#ff8dd8"},"300":{"value":"#ff66cc","variable":"var(--color-pink-300)","original":"#ff66cc"},"400":{"value":"#ff40bf","variable":"var(--color-pink-400)","original":"#ff40bf"},"500":{"value":"#ff1ab2","variable":"var(--color-pink-500)","original":"#ff1ab2"},"600":{"value":"#e10095","variable":"var(--color-pink-600)","original":"#e10095"},"700":{"value":"#a90070","variable":"var(--color-pink-700)","original":"#a90070"},"800":{"value":"#70004b","variable":"var(--color-pink-800)","original":"#70004b"},"900":{"value":"#380025","variable":"var(--color-pink-900)","original":"#380025"}},"ruby":{"50":{"value":"#ffd9e4","variable":"var(--color-ruby-50)","original":"#ffd9e4"},"100":{"value":"#ffb3c9","variable":"var(--color-ruby-100)","original":"#ffb3c9"},"200":{"value":"#ff8dae","variable":"var(--color-ruby-200)","original":"#ff8dae"},"300":{"value":"#ff6694","variable":"var(--color-ruby-300)","original":"#ff6694"},"400":{"value":"#ff4079","variable":"var(--color-ruby-400)","original":"#ff4079"},"500":{"value":"#ff1a5e","variable":"var(--color-ruby-500)","original":"#ff1a5e"},"600":{"value":"#e10043","variable":"var(--color-ruby-600)","original":"#e10043"},"700":{"value":"#a90032","variable":"var(--color-ruby-700)","original":"#a90032"},"800":{"value":"#700021","variable":"var(--color-ruby-800)","original":"#700021"},"900":{"value":"#380011","variable":"var(--color-ruby-900)","original":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"var(--color-gray-900)","dark":"var(--color-gray-50)"},"variable":"var(--elements-text-primary-color-static)","original":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"var(--color-gray-500)","dark":"var(--color-gray-400)"},"variable":"var(--elements-text-secondary-color-static)","original":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"var(--color-gray-700)","dark":"var(--color-gray-200)"},"variable":"var(--elements-text-secondary-color-hover)","original":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem","variable":"var(--elements-container-maxWidth)","original":"80rem"},"padding":{"mobile":{"value":"var(--space-4)","variable":"var(--elements-container-padding-mobile)","original":"{space.4}"},"xs":{"value":"var(--space-4)","variable":"var(--elements-container-padding-xs)","original":"{space.4}"},"sm":{"value":"var(--space-6)","variable":"var(--elements-container-padding-sm)","original":"{space.6}"},"md":{"value":"var(--space-6)","variable":"var(--elements-container-padding-md)","original":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)","variable":"var(--elements-backdrop-filter)","original":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"},"variable":"var(--elements-backdrop-background)","original":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-border-primary-static)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-primary-hover)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-secondary-static)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""},"variable":"var(--elements-border-secondary-hover)","original":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-surface-background-base)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"var(--color-primary-600)","dark":"var(--color-primary-400)"},"variable":"var(--elements-state-primary-color-primary)","original":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"var(--color-primary-700)","dark":"var(--color-primary-200)"},"variable":"var(--elements-state-primary-color-secondary)","original":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-primary-50)","dark":"var(--color-primary-900)"},"variable":"var(--elements-state-primary-backgroundColor-primary)","original":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-backgroundColor-secondary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-borderColor-primary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"var(--color-primary-200)","dark":"var(--color-primary-700)"},"variable":"var(--elements-state-primary-borderColor-secondary)","original":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"var(--color-blue-500)","dark":"var(--color-blue-400)"},"variable":"var(--elements-state-info-color-primary)","original":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"var(--color-blue-600)","dark":"var(--color-blue-200)"},"variable":"var(--elements-state-info-color-secondary)","original":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-blue-50)","dark":"var(--color-blue-900)"},"variable":"var(--elements-state-info-backgroundColor-primary)","original":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-backgroundColor-secondary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-borderColor-primary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"var(--color-blue-200)","dark":"var(--color-blue-700)"},"variable":"var(--elements-state-info-borderColor-secondary)","original":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"var(--color-green-500)","dark":"var(--color-green-400)"},"variable":"var(--elements-state-success-color-primary)","original":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"var(--color-green-600)","dark":"var(--color-green-200)"},"variable":"var(--elements-state-success-color-secondary)","original":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-green-50)","dark":"var(--color-green-900)"},"variable":"var(--elements-state-success-backgroundColor-primary)","original":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-backgroundColor-secondary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-borderColor-primary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"var(--color-green-200)","dark":"var(--color-green-700)"},"variable":"var(--elements-state-success-borderColor-secondary)","original":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"var(--color-yellow-600)","dark":"var(--color-yellow-400)"},"variable":"var(--elements-state-warning-color-primary)","original":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"var(--color-yellow-700)","dark":"var(--color-yellow-200)"},"variable":"var(--elements-state-warning-color-secondary)","original":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-yellow-50)","dark":"var(--color-yellow-900)"},"variable":"var(--elements-state-warning-backgroundColor-primary)","original":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-backgroundColor-secondary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-borderColor-primary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"var(--color-yellow-200)","dark":"var(--color-yellow-700)"},"variable":"var(--elements-state-warning-borderColor-secondary)","original":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"var(--color-red-500)","dark":"var(--color-red-300)"},"variable":"var(--elements-state-danger-color-primary)","original":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"var(--color-red-600)","dark":"var(--color-red-200)"},"variable":"var(--elements-state-danger-color-secondary)","original":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-red-50)","dark":"var(--color-red-900)"},"variable":"var(--elements-state-danger-backgroundColor-primary)","original":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-backgroundColor-secondary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-borderColor-primary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"var(--color-red-200)","dark":"var(--color-red-700)"},"variable":"var(--elements-state-danger-borderColor-secondary)","original":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px","variable":"var(--typography-verticalMargin-sm)","original":"16px"},"base":{"value":"32px","variable":"var(--typography-verticalMargin-base)","original":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em","variable":"var(--typography-letterSpacing-tight)","original":"-0.025em"},"wide":{"value":"0.025em","variable":"var(--typography-letterSpacing-wide)","original":"0.025em"}},"fontSize":{"xs":{"value":"12px","variable":"var(--typography-fontSize-xs)","original":"12px"},"sm":{"value":"14px","variable":"var(--typography-fontSize-sm)","original":"14px"},"base":{"value":"16px","variable":"var(--typography-fontSize-base)","original":"16px"},"lg":{"value":"18px","variable":"var(--typography-fontSize-lg)","original":"18px"},"xl":{"value":"20px","variable":"var(--typography-fontSize-xl)","original":"20px"},"2xl":{"value":"24px","variable":"var(--typography-fontSize-2xl)","original":"24px"},"3xl":{"value":"30px","variable":"var(--typography-fontSize-3xl)","original":"30px"},"4xl":{"value":"36px","variable":"var(--typography-fontSize-4xl)","original":"36px"},"5xl":{"value":"48px","variable":"var(--typography-fontSize-5xl)","original":"48px"},"6xl":{"value":"60px","variable":"var(--typography-fontSize-6xl)","original":"60px"},"7xl":{"value":"72px","variable":"var(--typography-fontSize-7xl)","original":"72px"},"8xl":{"value":"96px","variable":"var(--typography-fontSize-8xl)","original":"96px"},"9xl":{"value":"128px","variable":"var(--typography-fontSize-9xl)","original":"128px"}},"fontWeight":{"thin":{"value":"100","variable":"var(--typography-fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--typography-fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--typography-fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--typography-fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--typography-fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--typography-fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--typography-fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--typography-fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--typography-fontWeight-black)","original":"900"}},"lead":{"none":{"value":"1","variable":"var(--typography-lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--typography-lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--typography-lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--typography-lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--typography-lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--typography-lead-loose)","original":"2"}},"font":{"display":{"value":"var(--font-sans)","variable":"var(--typography-font-display)","original":"{font.sans}"},"body":{"value":"var(--font-sans)","variable":"var(--typography-font-body)","original":"{font.sans}"},"code":{"value":"var(--font-mono)","variable":"var(--typography-font-code)","original":"{font.mono}"}},"color":{"primary":{"50":{"value":"var(--color-primary-50)","variable":"var(--typography-color-primary-50)","original":"{color.primary.50}"},"100":{"value":"var(--color-primary-100)","variable":"var(--typography-color-primary-100)","original":"{color.primary.100}"},"200":{"value":"var(--color-primary-200)","variable":"var(--typography-color-primary-200)","original":"{color.primary.200}"},"300":{"value":"var(--color-primary-300)","variable":"var(--typography-color-primary-300)","original":"{color.primary.300}"},"400":{"value":"var(--color-primary-400)","variable":"var(--typography-color-primary-400)","original":"{color.primary.400}"},"500":{"value":"var(--color-primary-500)","variable":"var(--typography-color-primary-500)","original":"{color.primary.500}"},"600":{"value":"var(--color-primary-600)","variable":"var(--typography-color-primary-600)","original":"{color.primary.600}"},"700":{"value":"var(--color-primary-700)","variable":"var(--typography-color-primary-700)","original":"{color.primary.700}"},"800":{"value":"var(--color-primary-800)","variable":"var(--typography-color-primary-800)","original":"{color.primary.800}"},"900":{"value":"var(--color-primary-900)","variable":"var(--typography-color-primary-900)","original":"{color.primary.900}"}},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--typography-color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--typography-color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--typography-color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--typography-color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--typography-color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--typography-color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--typography-color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--typography-color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--typography-color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--typography-color-secondary-900)","original":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-p-fontSize)","original":"{typography.fontSize.base}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-p-lineHeight)","original":"{typography.lead.normal}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-p-margin)","original":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"var(--typography-verticalMargin-base) 0 0 0","variable":"var(--prose-p-br-margin)","original":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem","variable":"var(--prose-h1-margin)","original":"0 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-5xl)","variable":"var(--prose-h1-fontSize)","original":"{typography.fontSize.5xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h1-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-bold)","variable":"var(--prose-h1-fontWeight)","original":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h1-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h1-iconSize)","original":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h2-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-4xl)","variable":"var(--prose-h2-fontSize)","original":"{typography.fontSize.4xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h2-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h2-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h2-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h2-iconSize)","original":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h3-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h3-fontSize)","original":"{typography.fontSize.3xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h3-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h3-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h3-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h3-iconSize)","original":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h4-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h4-fontSize)","original":"{typography.fontSize.2xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h4-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h4-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h4-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h4-iconSize)","original":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h5-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h5-fontSize)","original":"{typography.fontSize.xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h5-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h5-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h5-iconSize)","original":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h6-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h6-fontSize)","original":"{typography.fontSize.lg}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-h6-lineHeight)","original":"{typography.lead.normal}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h6-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-h6-iconSize)","original":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-strong-fontWeight)","original":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-img-margin)","original":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none","variable":"var(--prose-a-textDecoration)","original":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"},"variable":"var(--prose-a-color-static)","original":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-400)"},"variable":"var(--prose-a-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px","variable":"var(--prose-a-border-width)","original":"1px"},"style":{"static":{"value":"dashed","variable":"var(--prose-a-border-style-static)","original":"dashed"},"hover":{"value":"solid","variable":"var(--prose-a-border-style-hover)","original":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px","variable":"var(--prose-a-border-distance)","original":"2px"}},"fontWeight":{"value":"var(--typography-fontWeight-medium)","variable":"var(--prose-a-fontWeight)","original":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none","variable":"var(--prose-a-hasCode-borderBottom)","original":"none"}},"code":{"border":{"width":{"value":"var(--prose-a-border-width)","variable":"var(--prose-a-code-border-width)","original":"{prose.a.border.width}"},"style":{"value":"var(--prose-a-border-style-static)","variable":"var(--prose-a-code-border-style)","original":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-a-code-border-color-static)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-600)"},"variable":"var(--prose-a-code-border-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"var(--typography-color-primary-50)","dark":"var(--typography-color-primary-900)"},"variable":"var(--prose-a-code-background-hover)","original":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-blockquote-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px","variable":"var(--prose-blockquote-padding)","original":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'","variable":"var(--prose-blockquote-quotes)","original":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-blockquote-color)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px","variable":"var(--prose-blockquote-border-width)","original":"4px"},"style":{"value":"solid","variable":"var(--prose-blockquote-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-blockquote-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc","variable":"var(--prose-ul-listStyleType)","original":"disc"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ul-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ul-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ul-li-markerColor)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal","variable":"var(--prose-ol-listStyleType)","original":"decimal"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ol-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ol-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ol-li-markerColor)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"var(--typography-verticalMargin-sm) 0","variable":"var(--prose-li-margin)","original":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside","variable":"var(--prose-li-listStylePosition)","original":"outside"}},"hr":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-hr-margin)","original":"{typography.verticalMargin.base} 0"},"style":{"value":"solid","variable":"var(--prose-hr-style)","original":"solid"},"width":{"value":"1px","variable":"var(--prose-hr-width)","original":"1px"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-hr-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-table-margin)","original":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left","variable":"var(--prose-table-textAlign)","original":"left"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-table-fontSize)","original":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit","variable":"var(--prose-table-lineHeight)","original":"inherit"}},"thead":{"border":{"width":{"value":"0px","variable":"var(--prose-thead-border-width)","original":"0px"},"style":{"value":"solid","variable":"var(--prose-thead-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-border-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px","variable":"var(--prose-thead-borderBottom-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-thead-borderBottom-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"var(--typography-color-secondary-600)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-th-color)","original":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)","variable":"var(--prose-th-padding)","original":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-th-fontWeight)","original":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px","variable":"var(--prose-tbody-tr-borderBottom-width)","original":"1px"},"style":{"value":"dashed","variable":"var(--prose-tbody-tr-borderBottom-style)","original":"dashed"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-tbody-tr-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-tbody-td-padding)","original":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-tbody-code-inline-fontSize)","original":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-block-fontSize)","original":"{typography.fontSize.sm}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-code-block-margin)","original":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px","variable":"var(--prose-code-block-border-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-code-block-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-code-block-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-block-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-block-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-code-block-pre-padding)","original":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem","variable":"var(--prose-code-inline-borderRadius)","original":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem","variable":"var(--prose-code-inline-padding)","original":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-inline-fontSize)","original":"{typography.fontSize.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-normal)","variable":"var(--prose-code-inline-fontWeight)","original":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-inline-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-inline-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem","variable":"var(--radii-sm)","original":"0.375rem"},"md":{"value":"0.5rem","variable":"var(--radii-md)","original":"0.5rem"},"lg":{"value":"0.75rem","variable":"var(--radii-lg)","original":"0.75rem"},"none":{"value":"0px","variable":"var(--radii-none)","original":"0px"},"2xs":{"value":"0.125rem","variable":"var(--radii-2xs)","original":"0.125rem"},"xs":{"value":"0.25rem","variable":"var(--radii-xs)","original":"0.25rem"},"xl":{"value":"1rem","variable":"var(--radii-xl)","original":"1rem"},"2xl":{"value":"1.5rem","variable":"var(--radii-2xl)","original":"1.5rem"},"3xl":{"value":"1.75rem","variable":"var(--radii-3xl)","original":"1.75rem"},"full":{"value":"9999px","variable":"var(--radii-full)","original":"9999px"}},"fontSize":{"xs":{"value":"0.75rem","variable":"var(--fontSize-xs)","original":"0.75rem"},"sm":{"value":"0.875rem","variable":"var(--fontSize-sm)","original":"0.875rem"},"base":{"value":"1rem","variable":"var(--fontSize-base)","original":"1rem"},"lg":{"value":"1.125rem","variable":"var(--fontSize-lg)","original":"1.125rem"},"xl":{"value":"1.25rem","variable":"var(--fontSize-xl)","original":"1.25rem"},"2xl":{"value":"1.5rem","variable":"var(--fontSize-2xl)","original":"1.5rem"},"3xl":{"value":"1.875rem","variable":"var(--fontSize-3xl)","original":"1.875rem"},"4xl":{"value":"2.25rem","variable":"var(--fontSize-4xl)","original":"2.25rem"},"5xl":{"value":"3rem","variable":"var(--fontSize-5xl)","original":"3rem"},"6xl":{"value":"3.75rem","variable":"var(--fontSize-6xl)","original":"3.75rem"},"7xl":{"value":"4.5rem","variable":"var(--fontSize-7xl)","original":"4.5rem"},"8xl":{"value":"6rem","variable":"var(--fontSize-8xl)","original":"6rem"},"9xl":{"value":"8rem","variable":"var(--fontSize-9xl)","original":"8rem"}},"lead":{"1":{"value":".025rem","variable":"var(--lead-1)","original":".025rem"},"2":{"value":".5rem","variable":"var(--lead-2)","original":".5rem"},"3":{"value":".75rem","variable":"var(--lead-3)","original":".75rem"},"4":{"value":"1rem","variable":"var(--lead-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--lead-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--lead-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--lead-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--lead-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--lead-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--lead-10)","original":"2.5rem"},"none":{"value":"1","variable":"var(--lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--lead-loose)","original":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji","variable":"var(--font-sans)","original":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif","variable":"var(--font-serif)","original":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace","variable":"var(--font-mono)","original":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px","variable":"var(--docus-header-height)","original":"64px"}},"footer":{"padding":{"value":"var(--space-4) 0","variable":"var(--docus-footer-padding)","original":"{space.4} 0"}},"readableLine":{"value":"78ch","variable":"var(--docus-readableLine)","original":"78ch"},"loadingBar":{"height":{"value":"3px","variable":"var(--docus-loadingBar-height)","original":"3px"},"gradientColorStop1":{"value":"#00dc82","variable":"var(--docus-loadingBar-gradientColorStop1)","original":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe","variable":"var(--docus-loadingBar-gradientColorStop2)","original":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1","variable":"var(--docus-loadingBar-gradientColorStop3)","original":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)","variable":"var(--media-xs)","original":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)","variable":"var(--media-sm)","original":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)","variable":"var(--media-md)","original":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)","variable":"var(--media-lg)","original":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)","variable":"var(--media-xl)","original":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)","variable":"var(--media-2xl)","original":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)","variable":"var(--media-rm)","original":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)","variable":"var(--media-landscape)","original":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)","variable":"var(--media-portrait)","original":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw","variable":"var(--width-screen)","original":"100vw"}},"height":{"screen":{"value":"100vh","variable":"var(--height-screen)","original":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000","variable":"var(--shadow-xs)","original":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000","variable":"var(--shadow-sm)","original":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000","variable":"var(--shadow-md)","original":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000","variable":"var(--shadow-lg)","original":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000","variable":"var(--shadow-xl)","original":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px var(--color-gray-900)","variable":"var(--shadow-2xl)","original":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent","variable":"var(--shadow-none)","original":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px","variable":"var(--size-0)","original":"0px"},"2":{"value":"2px","variable":"var(--size-2)","original":"2px"},"4":{"value":"4px","variable":"var(--size-4)","original":"4px"},"6":{"value":"6px","variable":"var(--size-6)","original":"6px"},"8":{"value":"8px","variable":"var(--size-8)","original":"8px"},"12":{"value":"12px","variable":"var(--size-12)","original":"12px"},"16":{"value":"16px","variable":"var(--size-16)","original":"16px"},"20":{"value":"20px","variable":"var(--size-20)","original":"20px"},"24":{"value":"24px","variable":"var(--size-24)","original":"24px"},"32":{"value":"32px","variable":"var(--size-32)","original":"32px"},"40":{"value":"40px","variable":"var(--size-40)","original":"40px"},"48":{"value":"48px","variable":"var(--size-48)","original":"48px"},"56":{"value":"56px","variable":"var(--size-56)","original":"56px"},"64":{"value":"64px","variable":"var(--size-64)","original":"64px"},"80":{"value":"80px","variable":"var(--size-80)","original":"80px"},"104":{"value":"104px","variable":"var(--size-104)","original":"104px"},"200":{"value":"200px","variable":"var(--size-200)","original":"200px"},"xs":{"value":"20rem","variable":"var(--size-xs)","original":"20rem"},"sm":{"value":"24rem","variable":"var(--size-sm)","original":"24rem"},"md":{"value":"28rem","variable":"var(--size-md)","original":"28rem"},"lg":{"value":"32rem","variable":"var(--size-lg)","original":"32rem"},"xl":{"value":"36rem","variable":"var(--size-xl)","original":"36rem"},"2xl":{"value":"42rem","variable":"var(--size-2xl)","original":"42rem"},"3xl":{"value":"48rem","variable":"var(--size-3xl)","original":"48rem"},"4xl":{"value":"56rem","variable":"var(--size-4xl)","original":"56rem"},"5xl":{"value":"64rem","variable":"var(--size-5xl)","original":"64rem"},"6xl":{"value":"72rem","variable":"var(--size-6xl)","original":"72rem"},"7xl":{"value":"80rem","variable":"var(--size-7xl)","original":"80rem"},"full":{"value":"100%","variable":"var(--size-full)","original":"100%"}},"space":{"0":{"value":"0px","variable":"var(--space-0)","original":"0px"},"1":{"value":"0.25rem","variable":"var(--space-1)","original":"0.25rem"},"2":{"value":"0.5rem","variable":"var(--space-2)","original":"0.5rem"},"3":{"value":"0.75rem","variable":"var(--space-3)","original":"0.75rem"},"4":{"value":"1rem","variable":"var(--space-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--space-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--space-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--space-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--space-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--space-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--space-10)","original":"2.5rem"},"11":{"value":"2.75rem","variable":"var(--space-11)","original":"2.75rem"},"12":{"value":"3rem","variable":"var(--space-12)","original":"3rem"},"14":{"value":"3.5rem","variable":"var(--space-14)","original":"3.5rem"},"16":{"value":"4rem","variable":"var(--space-16)","original":"4rem"},"20":{"value":"5rem","variable":"var(--space-20)","original":"5rem"},"24":{"value":"6rem","variable":"var(--space-24)","original":"6rem"},"28":{"value":"7rem","variable":"var(--space-28)","original":"7rem"},"32":{"value":"8rem","variable":"var(--space-32)","original":"8rem"},"36":{"value":"9rem","variable":"var(--space-36)","original":"9rem"},"40":{"value":"10rem","variable":"var(--space-40)","original":"10rem"},"44":{"value":"11rem","variable":"var(--space-44)","original":"11rem"},"48":{"value":"12rem","variable":"var(--space-48)","original":"12rem"},"52":{"value":"13rem","variable":"var(--space-52)","original":"13rem"},"56":{"value":"14rem","variable":"var(--space-56)","original":"14rem"},"60":{"value":"15rem","variable":"var(--space-60)","original":"15rem"},"64":{"value":"16rem","variable":"var(--space-64)","original":"16rem"},"72":{"value":"18rem","variable":"var(--space-72)","original":"18rem"},"80":{"value":"20rem","variable":"var(--space-80)","original":"20rem"},"96":{"value":"24rem","variable":"var(--space-96)","original":"24rem"},"px":{"value":"1px","variable":"var(--space-px)","original":"1px"},"rem":{"125":{"value":"0.125rem","variable":"var(--space-rem-125)","original":"0.125rem"},"375":{"value":"0.375rem","variable":"var(--space-rem-375)","original":"0.375rem"},"625":{"value":"0.625rem","variable":"var(--space-rem-625)","original":"0.625rem"},"875":{"value":"0.875rem","variable":"var(--space-rem-875)","original":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0","variable":"var(--borderWidth-noBorder)","original":"0"},"sm":{"value":"1px","variable":"var(--borderWidth-sm)","original":"1px"},"md":{"value":"2px","variable":"var(--borderWidth-md)","original":"2px"},"lg":{"value":"3px","variable":"var(--borderWidth-lg)","original":"3px"}},"opacity":{"noOpacity":{"value":"0","variable":"var(--opacity-noOpacity)","original":"0"},"bright":{"value":"0.1","variable":"var(--opacity-bright)","original":"0.1"},"light":{"value":"0.15","variable":"var(--opacity-light)","original":"0.15"},"soft":{"value":"0.3","variable":"var(--opacity-soft)","original":"0.3"},"medium":{"value":"0.5","variable":"var(--opacity-medium)","original":"0.5"},"high":{"value":"0.8","variable":"var(--opacity-high)","original":"0.8"},"total":{"value":"1","variable":"var(--opacity-total)","original":"1"}},"fontWeight":{"thin":{"value":"100","variable":"var(--fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--fontWeight-black)","original":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em","variable":"var(--letterSpacing-tighter)","original":"-0.05em"},"tight":{"value":"-0.025em","variable":"var(--letterSpacing-tight)","original":"-0.025em"},"normal":{"value":"0em","variable":"var(--letterSpacing-normal)","original":"0em"},"wide":{"value":"0.025em","variable":"var(--letterSpacing-wide)","original":"0.025em"},"wider":{"value":"0.05em","variable":"var(--letterSpacing-wider)","original":"0.05em"},"widest":{"value":"0.1em","variable":"var(--letterSpacing-widest)","original":"0.1em"}},"text":{"xs":{"fontSize":{"value":"var(--fontSize-xs)","variable":"var(--text-xs-fontSize)","original":"{fontSize.xs}"},"lineHeight":{"value":"var(--lead-4)","variable":"var(--text-xs-lineHeight)","original":"{lead.4}"}},"sm":{"fontSize":{"value":"var(--fontSize-sm)","variable":"var(--text-sm-fontSize)","original":"{fontSize.sm}"},"lineHeight":{"value":"var(--lead-5)","variable":"var(--text-sm-lineHeight)","original":"{lead.5}"}},"base":{"fontSize":{"value":"var(--fontSize-base)","variable":"var(--text-base-fontSize)","original":"{fontSize.base}"},"lineHeight":{"value":"var(--lead-6)","variable":"var(--text-base-lineHeight)","original":"{lead.6}"}},"lg":{"fontSize":{"value":"var(--fontSize-lg)","variable":"var(--text-lg-fontSize)","original":"{fontSize.lg}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-lg-lineHeight)","original":"{lead.7}"}},"xl":{"fontSize":{"value":"var(--fontSize-xl)","variable":"var(--text-xl-fontSize)","original":"{fontSize.xl}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-xl-lineHeight)","original":"{lead.7}"}},"2xl":{"fontSize":{"value":"var(--fontSize-2xl)","variable":"var(--text-2xl-fontSize)","original":"{fontSize.2xl}"},"lineHeight":{"value":"var(--lead-8)","variable":"var(--text-2xl-lineHeight)","original":"{lead.8}"}},"3xl":{"fontSize":{"value":"var(--fontSize-3xl)","variable":"var(--text-3xl-fontSize)","original":"{fontSize.3xl}"},"lineHeight":{"value":"var(--lead-9)","variable":"var(--text-3xl-lineHeight)","original":"{lead.9}"}},"4xl":{"fontSize":{"value":"var(--fontSize-4xl)","variable":"var(--text-4xl-fontSize)","original":"{fontSize.4xl}"},"lineHeight":{"value":"var(--lead-10)","variable":"var(--text-4xl-lineHeight)","original":"{lead.10}"}},"5xl":{"fontSize":{"value":"var(--fontSize-5xl)","variable":"var(--text-5xl-fontSize)","original":"{fontSize.5xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-5xl-lineHeight)","original":"{lead.none}"}},"6xl":{"fontSize":{"value":"var(--fontSize-6xl)","variable":"var(--text-6xl-fontSize)","original":"{fontSize.6xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-6xl-lineHeight)","original":"{lead.none}"}}}},"content":{"sources":{},"ignores":["\\.","-"],"locales":[],"highlight":{"theme":{"dark":"github-dark","default":"github-light"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini"]},"navigation":{"fields":["icon","titleTemplate","header","main","aside","footer","layout"]},"documentDriven":true},"components":[{"name":"ExampleCard","path":"/components/content/Example/ExampleCard.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleHero","path":"/components/content/Example/ExampleHero.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleIconCard","path":"/components/content/Example/ExampleIconCard.vue","meta":{"props":[{"name":"description","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default description\""},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default title\""},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"IconMarkdown\""}],"slots":[],"events":[]}},{"name":"ExampleMultiselect","path":"/components/content/Example/ExampleMultiselect.vue","meta":{"props":[{"name":"options","global":false,"description":"","tags":[],"required":false,"type":"string | unknown[] | undefined","schema":{"kind":"enum","type":"string | unknown[] | undefined","schema":["undefined","string",{"kind":"array","type":"unknown[]","schema":["unknown"]}]},"default":"[]"}],"slots":[],"events":[]}},{"name":"ExampleTheTitle","path":"/components/content/Example/ExampleTheTitle.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"HeroAnnouncement","path":"/components/content/HeroAnnouncement.vue","meta":{"props":[{"name":"to","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"label","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"IconMarkdown","path":"/components/content/IconMarkdown.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Logo","path":"/components/content/Logo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"MyButton","path":"/components/content/MyButton.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"PropInspector","path":"/components/content/PropInspector.vue","meta":{"props":[{"name":"prop","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any"}],"slots":[],"events":[]}},{"name":"ReadMore","path":"/components/content/ReadMore.vue","meta":{"props":[{"name":"link","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"}],"slots":[],"events":[]}},{"name":"AppFooter","path":"/node_modules/@nuxt-themes/docus/components/app/AppFooter.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeader","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeader.vue","meta":{"props":[{"name":"length","global":false,"description":"Gets the length of the array. This is a number one higher than the highest element defined in an array.","tags":[],"required":true,"type":"number | Prop | null | undefined","schema":{"kind":"enum","type":"number | Prop | null | undefined","schema":["undefined","null","number","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]}]}},{"name":"concat","global":false,"description":"Combines two or more arrays.","tags":[{"name":"param","text":"items Additional items to add to the end of array1."},{"name":"param","text":"items Additional items to add to the end of array1."}],"required":true,"type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }"]}},{"name":"join","global":false,"description":"Adds all the elements of an array separated by the specified separator string.","tags":[{"name":"param","text":"separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma."}],"required":true,"type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":{"kind":"enum","type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]}]}},{"name":"slice","global":false,"description":"Returns a section of an array.","tags":[{"name":"param","text":"start The beginning of the specified portion of the array."},{"name":"param","text":"end The end of the specified portion of the array. This is exclusive of the element at the index 'end'."}],"required":true,"type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]}]}},{"name":"indexOf","global":false,"description":"Returns the index of the first occurrence of a value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"lastIndexOf","global":false,"description":"Returns the index of the last occurrence of a specified value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"every","global":false,"description":"Determines whether all the members of an array satisfy the specified test.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }"]}},{"name":"some","global":false,"description":"Determines whether the specified callback function returns true for any element of an array.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]}]}},{"name":"forEach","global":false,"description":"Performs the specified action for each element in an array.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]}]}},{"name":"map","global":false,"description":"Calls a defined callback function on each element of an array, and returns an array that contains the results.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]}]}},{"name":"filter","global":false,"description":"Returns the elements of an array that meet the condition specified in a callback function.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }"]}},{"name":"reduce","global":false,"description":"Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"reduceRight","global":false,"description":"Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"find","global":false,"description":"Returns the value of the first element in the array where predicate is true, and undefined\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found, find\r\nimmediately returns that element value. Otherwise, find returns undefined."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":{"kind":"enum","type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }"]}},{"name":"findIndex","global":false,"description":"Returns the index of the first element in the array where predicate is true, and -1\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found,\r\nfindIndex immediately returns that element index. Otherwise, findIndex returns -1."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]}]}},{"name":"entries","global":false,"description":"Returns an iterable of key, value pairs for every entry in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"}]}},{"name":"keys","global":false,"description":"Returns an iterable of keys in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"values","global":false,"description":"Returns an iterable of values in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"includes","global":false,"description":"Determines whether an array includes a certain element, returning true or false as appropriate.","tags":[{"name":"param","text":"searchElement The element to search for."},{"name":"param","text":"fromIndex The position in this array at which to begin searching for searchElement."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]}]}},{"name":"flatMap","global":false,"description":"Calls a defined callback function on each element of an array. Then, flattens the result into\r\na new array.\r\nThis is identical to a map followed by flat with depth 1.","tags":[{"name":"param","text":"callback A function that accepts up to three arguments. The flatMap method calls the\r\ncallback function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callback function. If\r\nthisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":{"kind":"enum","type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]}]}},{"name":"flat","global":false,"description":"Returns a new array with all sub-array elements concatenated into it recursively up to the\r\nspecified depth.","tags":[{"name":"param","text":"depth The maximum recursion depth"}],"required":true,"type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]}]}},{"name":"at","global":false,"description":"Returns the item located at the specified index.","tags":[{"name":"param","text":"index The zero-based index of the desired code unit. A negative index will count back from the last item."}],"required":true,"type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":{"kind":"enum","type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]}]}},{"name":"toString","global":false,"description":"Returns a string representation of an object.\nReturns a string representation of an array.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}},{"name":"toLocaleString","global":false,"description":"Returns a date converted to a string using the current locale.\nReturns a string representation of an array. The elements are converted to string using their toLocaleString methods.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}}],"slots":[],"events":[]}},{"name":"AppHeaderDialog","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderLogo","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderNavigation","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppLayout","path":"/node_modules/@nuxt-themes/docus/components/app/AppLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"AppLoadingBar","path":"/node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue","meta":{"props":[{"name":"throttle","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"200"},{"name":"duration","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"2000"}],"slots":[],"events":[]}},{"name":"AppSearch","path":"/node_modules/@nuxt-themes/docus/components/app/AppSearch.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppSocialIcons","path":"/node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ThemeSelect","path":"/node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAside","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAsideTree","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"[]"},{"name":"level","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"0"},{"name":"max","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"null"},{"name":"parent","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"null"}],"slots":[],"events":[]}},{"name":"DocsPageBottom","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsPageLayout","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"DocsPrevNext","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsToc","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue","meta":{"props":[],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"DocsTocLinks","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":{"kind":"enum","type":"TocLink[] | undefined","schema":["undefined",{"kind":"array","type":"TocLink[]","schema":[{"kind":"object","type":"TocLink","schema":{"id":{"name":"id","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"text":{"name":"text","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"depth":{"name":"depth","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"},"children":{"name":"children","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":"TocLink[] | undefined"}}}]}]},"default":"[]"}],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"EditOnLink","path":"/node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue","meta":{"props":[{"name":"owner","global":false,"description":"Repository owner.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.owner"},{"name":"repo","global":false,"description":"Repository name.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.repo"},{"name":"branch","global":false,"description":"The branch to use for the edit link.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.branch"},{"name":"dir","global":false,"description":"A base directory to append to the source path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir"},{"name":"source","global":false,"description":"Source file path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"},{"name":"page","global":false,"description":"Use page from @nuxt/content.","tags":[],"required":false,"type":"any","schema":"any","default":"undefined"},{"name":"contentDir","global":false,"description":"Content directory (to be used with `page`)","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir || \"content\""},{"name":"edit","global":false,"description":"Send to an edit page or not.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"useAppConfig()?.docus?.github?.edit"}],"slots":[],"events":[]}},{"name":"Alert","path":"/node_modules/@nuxt-themes/elements/components/globals/Alert.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Badge","path":"/node_modules/@nuxt-themes/elements/components/globals/Badge.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ButtonLink","path":"/node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue","meta":{"props":[{"name":"href","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blank","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"color","global":false,"description":"","tags":[],"required":false,"type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":{"kind":"enum","type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":["undefined","\"ruby\"","\"primary\"","\"white\"","\"black\"","\"secondary\"","\"gray\"","\"green\"","\"yellow\"","\"orange\"","\"red\"","\"pear\"","\"teal\"","\"lightblue\"","\"blue\"","\"indigoblue\"","\"royalblue\"","\"purple\"","\"pink\"","{ md?: \"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\" | undefined; ... 10 more ...; portrait?: \"ruby\" | ... 17 more ... | undefined; }"]}},{"name":"size","global":false,"description":"","tags":[],"required":false,"type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":{"kind":"enum","type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":["undefined","\"small\"","\"medium\"","\"large\"","\"giant\"","{ md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; initial?: \"small\" | ... 3 more ... | undefined; ... 7 more ...; portrait?: \"small\" | ... 3 more ... | undefined; }"]}},{"name":"transparent","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Callout","path":"/node_modules/@nuxt-themes/elements/components/globals/Callout.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""},{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"ref(false)"}],"slots":[{"name":"summary","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"content","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"CodeBlock","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue","meta":{"props":[{"name":"label","global":false,"description":"Label to display for the tab","tags":[],"required":true,"type":"string","schema":"string"},{"name":"active","global":false,"description":"Select which tab should be active","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"preview","global":false,"description":"Preiew block are bordered and have small padding.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CodeGroup","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Container","path":"/node_modules/@nuxt-themes/elements/components/globals/Container.vue","meta":{"props":[{"name":"as","global":false,"description":"","tags":[],"required":false,"type":"keyof HTMLElementTagNameMap | undefined","schema":{"kind":"enum","type":"keyof HTMLElementTagNameMap | undefined","schema":["undefined","\"object\"","\"style\"","\"map\"","\"label\"","\"data\"","\"template\"","\"link\"","\"small\"","\"sub\"","\"sup\"","\"title\"","\"html\"","\"ruby\"","\"code\"","\"source\"","\"main\"","\"a\"","\"abbr\"","\"address\"","\"area\"","\"article\"","\"aside\"","\"audio\"","\"b\"","\"base\"","\"bdi\"","\"bdo\"","\"blockquote\"","\"body\"","\"br\"","\"button\"","\"canvas\"","\"caption\"","\"cite\"","\"col\"","\"colgroup\"","\"datalist\"","\"dd\"","\"del\"","\"details\"","\"dfn\"","\"dialog\"","\"div\"","\"dl\"","\"dt\"","\"em\"","\"embed\"","\"fieldset\"","\"figcaption\"","\"figure\"","\"footer\"","\"form\"","\"h1\"","\"h2\"","\"h3\"","\"h4\"","\"h5\"","\"h6\"","\"head\"","\"header\"","\"hgroup\"","\"hr\"","\"i\"","\"iframe\"","\"img\"","\"input\"","\"ins\"","\"kbd\"","\"legend\"","\"li\"","\"mark\"","\"menu\"","\"meta\"","\"meter\"","\"nav\"","\"noscript\"","\"ol\"","\"optgroup\"","\"option\"","\"output\"","\"p\"","\"picture\"","\"pre\"","\"progress\"","\"q\"","\"rp\"","\"rt\"","\"s\"","\"samp\"","\"script\"","\"section\"","\"select\"","\"slot\"","\"span\"","\"strong\"","\"summary\"","\"table\"","\"tbody\"","\"td\"","\"textarea\"","\"tfoot\"","\"th\"","\"thead\"","\"time\"","\"tr\"","\"track\"","\"u\"","\"ul\"","\"var\"","\"video\"","\"wbr\""]},"default":"\"div\""},{"name":"padded","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}},{"name":"fluid","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CopyButton","path":"/node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"Ellipsis","path":"/node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue","meta":{"props":[{"name":"width","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"height","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"left","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"zIndex","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10\""},{"name":"top","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"0\""},{"name":"right","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"blur","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"50px\""},{"name":"colors","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]},"default":"[\"rgba(0, 71, 225, 0.22)\", \"rgba(26, 214, 255, 0.22)\", \"rgba(0, 220, 130, 0.22)\"]"}],"slots":[],"events":[]}},{"name":"List","path":"/node_modules/@nuxt-themes/elements/components/globals/List.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"NuxtImg","path":"/node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Props","path":"/node_modules/@nuxt-themes/elements/components/globals/Props.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Sandbox","path":"/node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue","meta":{"props":[{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"repo","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"branch","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"dir","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"file","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"app.vue\""}],"slots":[],"events":[]}},{"name":"SourceLink","path":"/node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue","meta":{"props":[{"name":"source","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"TabsHeader","path":"/node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue","meta":{"props":[{"name":"tabs","global":false,"description":"","tags":[],"required":true,"type":"{ label: string; }[]","schema":{"kind":"array","type":"{ label: string; }[]","schema":[{"kind":"object","type":"{ label: string; }","schema":{"label":{"name":"label","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}}}]}},{"name":"activeTabIndex","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"}],"slots":[{"name":"footer","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:activeTabIndex","type":"any[]","signature":"(event: \"update:activeTabIndex\", ...args: any[]): void","schema":["any"]}]}},{"name":"Terminal","path":"/node_modules/@nuxt-themes/elements/components/globals/Terminal.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"VideoPlayer","path":"/node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue","meta":{"props":[{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"poster","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"sources","global":false,"description":"","tags":[],"required":false,"type":"any[] | undefined","schema":{"kind":"enum","type":"any[] | undefined","schema":["undefined",{"kind":"array","type":"any[]","schema":["any"]}]},"default":"[]"},{"name":"autoplay","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[],"events":[]}},{"name":"IconCodeSandBox","path":"/node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconDocus","path":"/node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxt","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtContent","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtLabs","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtStudio","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconStackBlitz","path":"/node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconVueTelescope","path":"/node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"BlockHero","path":"/node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue","meta":{"props":[{"name":"secondary","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"video","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"cta","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"snippet","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]}}],"slots":[{"name":"announce","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"extra","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"actions","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"support","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Card","path":"/node_modules/@nuxt-themes/elements/components/landing/Card.vue","meta":{"props":[{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"iconClass","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blurry","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"true"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CardGrid","path":"/node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue","meta":{"props":[{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Features\""}],"slots":[{"name":"root","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"VoltaBoard","path":"/node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue","meta":{"props":[{"name":"token","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"ComponentPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundData","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"},{"name":"componentData","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundProps","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"},{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundSlots","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"ComponentPlaygroundTokens","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"TokensPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRepository","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLink","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReadme","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReleases","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLastRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubFileContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubCommits","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs","meta":{"props":[],"slots":[],"events":[]}}]} \ No newline at end of file +{"version":"0.7.2","appConfigSchema":{"properties":{"id":"#appConfig","properties":{"nuxtIcon":{"title":"Nuxt Icon","description":"Configure the defaults of Nuxt Icon","id":"#appConfig/nuxtIcon","properties":{"size":{"title":"Icon Size","description":"Set the default icon size","tags":["@studioIcon material-symbols:format-size-rounded"],"id":"#appConfig/nuxtIcon/size","default":"","type":"string"},"class":{"title":"CSS Class","description":"Set the default CSS class","tags":["@studioIcon material-symbols:css"],"id":"#appConfig/nuxtIcon/class","default":"","type":"string"},"aliases":{"title":"Icon aliases","description":"Define Icon aliases to update them easily without code changes.","tags":["@studioIcon material-symbols:star-rounded","@studioInputObjectValueType icon"],"tsType":"{ [alias: string]: string }","id":"#appConfig/nuxtIcon/aliases","default":{},"type":"object"}},"type":"object","default":{"size":"","class":"","aliases":{}}},"prose":{"title":"Prose configuration from Nuxt Typography","description":"","tags":["@studioIcon material-symbols:short-text-rounded","@studioInput icon"],"id":"#appConfig/prose","properties":{"copyButton":{"title":"Copy button (used in code blocks)","description":"","tags":["@studioIcon material-symbols:content-copy"],"id":"#appConfig/prose/copyButton","properties":{"iconCopy":{"title":"Icon displayed to copy","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopy","default":"ph:copy","type":"string"},"iconCopied":{"title":"Icon displayed when copied","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopied","default":"ph:check","type":"string"}},"type":"object","default":{"iconCopy":"ph:copy","iconCopied":"ph:check"}},"headings":{"title":"Default configuration for all headings (h1, h2, h3, h4, h5 and h6)","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/prose/headings","properties":{"icon":{"title":"Default icon for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/headings/icon","default":"ph:link","type":"string"}},"type":"object","default":{"icon":"ph:link"}},"h1":{"title":"First heading configuration","description":"","tags":["@studioIcon material-symbols:format-h1"],"id":"#appConfig/prose/h1","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h1/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h2":{"title":"Second heading configuration","description":"","tags":["@studioIcon material-symbols:format-h2"],"id":"#appConfig/prose/h2","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h2/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h3":{"title":"Third heading configuration","description":"","tags":["@studioIcon material-symbols:format-h3"],"id":"#appConfig/prose/h3","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h3/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h4":{"title":"Fourth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h4"],"id":"#appConfig/prose/h4","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h4/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h5":{"title":"Fifth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h5"],"id":"#appConfig/prose/h5","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h5/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h6":{"title":"Sixth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h6"],"id":"#appConfig/prose/h6","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h6/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}}},"type":"object","default":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}}},"docus":{"title":"Docus theme configuration.","description":"","tags":["@studioIcon material-symbols:docs"],"id":"#appConfig/docus","properties":{"title":{"title":"Website title, used as header default title and meta title.","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/title","default":"Docus","type":"string"},"titleTemplate":{"title":"The website title template, to overwrite the default one.","description":"","tags":[],"id":"#appConfig/docus/titleTemplate","default":"%s · Docus","type":"string"},"description":{"title":"Website description, used for meta description.","description":"","tags":["@studioIcon material-symbols:description"],"id":"#appConfig/docus/description","default":"The best place to start your documentation.","type":"string"},"image":{"title":"Cover image.","description":"","tags":["@example '/cover.jpg'","@studioIcon dashicons:cover-image","@studioInput file"],"id":"#appConfig/docus/image","default":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","type":"string"},"socials":{"title":"Social links","description":"Will be used in AppSocialIcons component.","tags":["@studioIcon material-symbols:share-outline"],"id":"#appConfig/docus/socials","properties":{"twitter":{"title":"Twitter social handle","description":"","tags":["@example 'nuxt_js'","@studioIcon simple-icons:twitter"],"id":"#appConfig/docus/socials/twitter","default":"","type":"string"},"github":{"title":"GitHub org or repository","description":"","tags":["@example 'nuxt/framework'","@studioIcon simple-icons:github"],"id":"#appConfig/docus/socials/github","default":"","type":"string"},"facebook":{"title":"Facebook page url","description":"","tags":["@example https://www.facebook.com/groups/nuxtjs","@studioIcon simple-icons:facebook"],"id":"#appConfig/docus/socials/facebook","default":"","type":"string"},"instagram":{"title":"Instagram page url","description":"","tags":["@example https://www.instagram.com/wearenuxt","@studioIcon simple-icons:instagram"],"id":"#appConfig/docus/socials/instagram","default":"","type":"string"},"youtube":{"title":"Instagram page url","description":"","tags":["@example https://www.youtube.com/@NuxtLabs","@studioIcon simple-icons:youtube"],"id":"#appConfig/docus/socials/youtube","default":"","type":"string"},"medium":{"title":"Medium page url","description":"","tags":["@example https://medium.com/nuxt","@studioIcon simple-icons:medium"],"id":"#appConfig/docus/socials/medium","default":"","type":"string"}},"type":"object","default":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""}},"layout":{"title":"Theme layout configuration.","description":"","tags":["@studioIcon tabler:arrow-autofit-width"],"tsType":"'default'|'page'","id":"#appConfig/docus/layout","default":"default","type":"string"},"aside":{"title":"Aside navigation configuration.","description":"","tags":["@studioIcon fluent:document-page-24-regular"],"id":"#appConfig/docus/aside","properties":{"level":{"title":"Aside navigation level","description":"Use 0 to disable all nesting. Use 1 and more to display nested navigation in header and aside navigation.","tags":[],"id":"#appConfig/docus/aside/level","default":0,"type":"number"},"collapsed":{"title":"Specify if default collapsibles state globally for aside navigation.","description":"","tags":[],"id":"#appConfig/docus/aside/collapsed","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from aside navigation.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/aside/exclude","default":[],"type":"array","items":{"type":"any"}}},"type":"object","default":{"level":0,"collapsed":false,"exclude":[]}},"header":{"title":"Header configuration.","description":"","tags":["@studioIcon fluent:document-header-24-regular"],"id":"#appConfig/docus/header","properties":{"title":{"title":"Website title","description":"Title to be displayed in header or as aria-label if logo is defined.\nDefault to docus.title","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/header/title","default":"","type":"string"},"logo":{"title":"Logo configuration","description":"Boolean to disable or use the `Logo.vue` component.\nString to be used as a name of a component.","tags":["@example 'MyLogo'","@studioInput boolean"],"id":"#appConfig/docus/header/logo","default":false,"type":"boolean"},"showLinkIcon":{"title":"Header links","description":"Toggle links icons in the header.","tags":[],"id":"#appConfig/docus/header/showLinkIcon","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from header links.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/header/exclude","default":[],"type":"array","items":{"type":"any"}},"fluid":{"title":"Makes the content of the header fluid.","description":"","tags":[],"id":"#appConfig/docus/header/fluid","default":false,"type":"boolean"}},"type":"object","default":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false}},"main":{"title":"Main content configuration.","description":"","tags":["@studioIcon fluent:document-header-footer-24-filled"],"id":"#appConfig/docus/main","properties":{"fluid":{"title":"Makes the content of the main container fluid.","description":"","tags":[],"id":"#appConfig/docus/main/fluid","default":false,"type":"boolean"},"padded":{"title":"Makes the content of the main container padded.","description":"","tags":[],"id":"#appConfig/docus/main/padded","default":true,"type":"boolean"}},"type":"object","default":{"fluid":false,"padded":true}},"footer":{"title":"Footer configuration","description":"","tags":["@studioIcon fluent:document-footer-24-regular"],"id":"#appConfig/docus/footer","properties":{"credits":{"title":"Website credits configuration.","description":"","tags":["@studioIcon material-symbols:copyright"],"tsType":"false|{icon: string, text: string, href: string}","id":"#appConfig/docus/footer/credits","properties":{"icon":{"title":"Icon to show on credits","description":"","tags":["@formtype Icon"],"id":"#appConfig/docus/footer/credits/icon","default":"IconDocus","type":"string"},"text":{"type":"string","id":"#appConfig/docus/footer/credits/text","default":"Powered by Docus"},"href":{"type":"string","id":"#appConfig/docus/footer/credits/href","default":"https://docus.dev"}},"type":"object","default":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"}},"textLinks":{"type":"array","items":{"type":"object","required":["text","href"],"properties":{"href":{"type":"string","description":"URL when clicking the link"},"text":{"type":"string","description":"Text of the link"},"target":{"type":"string","description":"Target attribute of the link"}}},"title":"Text links","description":"Will be added into center section of the footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/textLinks"},"iconLinks":{"type":"array","items":{"type":"object","required":["icon","href"],"properties":{"icon":{"type":"string","description":"Icon name"},"href":{"type":"string","description":"Link when clicking on the icon"},"label":{"type":"string","description":"Label of the icon"}}},"title":"Icon links","description":"Icons to be added to Social Icons in footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/iconLinks"},"fluid":{"title":"Makes the content of the footer fluid.","description":"","tags":[],"id":"#appConfig/docus/footer/fluid","default":true,"type":"boolean"}},"type":"object","default":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true}},"github":{"title":"GitHub integration","description":"Configure the Edit on Github integration.","tags":["@studioIcon simple-icons:github"],"id":"#appConfig/docus/github","properties":{"dir":{"title":"Directory","description":"Your GitHub repository root directory.","tags":[],"id":"#appConfig/docus/github/dir","default":"","type":"string"},"branch":{"title":"Branch","description":"Your GitHub repository branch.","tags":[],"id":"#appConfig/docus/github/branch","default":"","type":"string"},"repo":{"title":"Repository","description":"Your GitHub repository name.","tags":[],"id":"#appConfig/docus/github/repo","default":"","type":"string"},"owner":{"title":"Owner","description":"Your GitHub repository owner.","tags":[],"id":"#appConfig/docus/github/owner","default":"","type":"string"},"edit":{"title":"EditOnGithub","description":"Display EditOnGithub button.","tags":[],"id":"#appConfig/docus/github/edit","default":false,"type":"boolean"}},"type":"object","default":{"dir":"","branch":"","repo":"","owner":"","edit":false}}},"type":"object","default":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"type":"object","default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"appConfig":{"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"}},"docus":{"title":"Frontier","description":"Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.","image":"https://content.nuxtjs.org/preview.png","socials":{"twitter":"","github":"realdecoy/frontier","facebook":"","instagram":"","youtube":"","medium":""},"layout":{"fluid":true},"header":{"title":"","logo":"Logo","showLinkIcon":false,"fluid":false,"exclude":[]},"aside":{"level":1,"collapsed":false,"exclude":[]},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"textLinks":[],"iconLinks":[{"label":"Realdecoy","href":"https://realdecoy.com","icon":"IconNuxt"}],"fluid":false},"github":{"dir":"","branch":"main","repo":"frontier","owner":"realdecoy","edit":true,"root":"","releases":true},"url":"https://realdecoy.com","cover":{"src":"/cover.jpg","alt":"Tooling maded easy for developers"}},"github":{"owner":"realdecoy","repo":"frontier","branch":"main"}},"tokensConfigSchema":{"properties":{"id":"#tokensConfig","properties":{"color":{"title":"Your website color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/color","properties":{"primary":{"id":"#tokensConfig/color/primary","properties":{"50":{"id":"#tokensConfig/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/50/value","default":"#fff2cc"}},"type":"object","default":{"value":"#fff2cc"}},"100":{"id":"#tokensConfig/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/100/value","default":"#ffe599"}},"type":"object","default":{"value":"#ffe599"}},"200":{"id":"#tokensConfig/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/200/value","default":"#ffd966"}},"type":"object","default":{"value":"#ffd966"}},"300":{"id":"#tokensConfig/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/300/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"400":{"id":"#tokensConfig/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/400/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"500":{"id":"#tokensConfig/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/500/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"600":{"id":"#tokensConfig/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/600/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"700":{"id":"#tokensConfig/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/700/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"800":{"id":"#tokensConfig/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/800/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"900":{"id":"#tokensConfig/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/900/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}}},"type":"object","default":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}}},"white":{"id":"#tokensConfig/color/white","properties":{"value":{"type":"string","id":"#tokensConfig/color/white/value","default":"#ffffff"}},"type":"object","default":{"value":"#ffffff"}},"black":{"id":"#tokensConfig/color/black","properties":{"value":{"type":"string","id":"#tokensConfig/color/black/value","default":"#0c0c0d"}},"type":"object","default":{"value":"#0c0c0d"}},"secondary":{"id":"#tokensConfig/color/secondary","properties":{"50":{"id":"#tokensConfig/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}},"gray":{"id":"#tokensConfig/color/gray","properties":{"50":{"id":"#tokensConfig/color/gray/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/50/value","default":"#fafafa"}},"type":"object","default":{"value":"#fafafa"}},"100":{"id":"#tokensConfig/color/gray/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/100/value","default":"#f4f4f5"}},"type":"object","default":{"value":"#f4f4f5"}},"200":{"id":"#tokensConfig/color/gray/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/200/value","default":"#e4e4e7"}},"type":"object","default":{"value":"#e4e4e7"}},"300":{"id":"#tokensConfig/color/gray/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/300/value","default":"#D4d4d8"}},"type":"object","default":{"value":"#D4d4d8"}},"400":{"id":"#tokensConfig/color/gray/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/400/value","default":"#a1a1aa"}},"type":"object","default":{"value":"#a1a1aa"}},"500":{"id":"#tokensConfig/color/gray/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/500/value","default":"#71717A"}},"type":"object","default":{"value":"#71717A"}},"600":{"id":"#tokensConfig/color/gray/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/600/value","default":"#52525B"}},"type":"object","default":{"value":"#52525B"}},"700":{"id":"#tokensConfig/color/gray/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/700/value","default":"#3f3f46"}},"type":"object","default":{"value":"#3f3f46"}},"800":{"id":"#tokensConfig/color/gray/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/800/value","default":"#27272A"}},"type":"object","default":{"value":"#27272A"}},"900":{"id":"#tokensConfig/color/gray/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/900/value","default":"#18181B"}},"type":"object","default":{"value":"#18181B"}}},"type":"object","default":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}}},"green":{"id":"#tokensConfig/color/green","properties":{"50":{"id":"#tokensConfig/color/green/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/50/value","default":"#d6ffee"}},"type":"object","default":{"value":"#d6ffee"}},"100":{"id":"#tokensConfig/color/green/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/100/value","default":"#acffdd"}},"type":"object","default":{"value":"#acffdd"}},"200":{"id":"#tokensConfig/color/green/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/200/value","default":"#83ffcc"}},"type":"object","default":{"value":"#83ffcc"}},"300":{"id":"#tokensConfig/color/green/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/300/value","default":"#30ffaa"}},"type":"object","default":{"value":"#30ffaa"}},"400":{"id":"#tokensConfig/color/green/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/400/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"500":{"id":"#tokensConfig/color/green/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/500/value","default":"#00bd6f"}},"type":"object","default":{"value":"#00bd6f"}},"600":{"id":"#tokensConfig/color/green/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/600/value","default":"#009d5d"}},"type":"object","default":{"value":"#009d5d"}},"700":{"id":"#tokensConfig/color/green/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/700/value","default":"#007e4a"}},"type":"object","default":{"value":"#007e4a"}},"800":{"id":"#tokensConfig/color/green/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/800/value","default":"#005e38"}},"type":"object","default":{"value":"#005e38"}},"900":{"id":"#tokensConfig/color/green/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/900/value","default":"#003f25"}},"type":"object","default":{"value":"#003f25"}}},"type":"object","default":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}}},"yellow":{"id":"#tokensConfig/color/yellow","properties":{"50":{"id":"#tokensConfig/color/yellow/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/50/value","default":"#fdf6db"}},"type":"object","default":{"value":"#fdf6db"}},"100":{"id":"#tokensConfig/color/yellow/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/100/value","default":"#fcedb7"}},"type":"object","default":{"value":"#fcedb7"}},"200":{"id":"#tokensConfig/color/yellow/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/200/value","default":"#fae393"}},"type":"object","default":{"value":"#fae393"}},"300":{"id":"#tokensConfig/color/yellow/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/300/value","default":"#f8da70"}},"type":"object","default":{"value":"#f8da70"}},"400":{"id":"#tokensConfig/color/yellow/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/400/value","default":"#f7d14c"}},"type":"object","default":{"value":"#f7d14c"}},"500":{"id":"#tokensConfig/color/yellow/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/500/value","default":"#f5c828"}},"type":"object","default":{"value":"#f5c828"}},"600":{"id":"#tokensConfig/color/yellow/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/600/value","default":"#daac0a"}},"type":"object","default":{"value":"#daac0a"}},"700":{"id":"#tokensConfig/color/yellow/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/700/value","default":"#a38108"}},"type":"object","default":{"value":"#a38108"}},"800":{"id":"#tokensConfig/color/yellow/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/800/value","default":"#6d5605"}},"type":"object","default":{"value":"#6d5605"}},"900":{"id":"#tokensConfig/color/yellow/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/900/value","default":"#362b03"}},"type":"object","default":{"value":"#362b03"}}},"type":"object","default":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}}},"orange":{"id":"#tokensConfig/color/orange","properties":{"50":{"id":"#tokensConfig/color/orange/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/50/value","default":"#ffe9d9"}},"type":"object","default":{"value":"#ffe9d9"}},"100":{"id":"#tokensConfig/color/orange/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/100/value","default":"#ffd3b3"}},"type":"object","default":{"value":"#ffd3b3"}},"200":{"id":"#tokensConfig/color/orange/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/200/value","default":"#ffbd8d"}},"type":"object","default":{"value":"#ffbd8d"}},"300":{"id":"#tokensConfig/color/orange/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/300/value","default":"#ffa666"}},"type":"object","default":{"value":"#ffa666"}},"400":{"id":"#tokensConfig/color/orange/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/400/value","default":"#ff9040"}},"type":"object","default":{"value":"#ff9040"}},"500":{"id":"#tokensConfig/color/orange/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/500/value","default":"#ff7a1a"}},"type":"object","default":{"value":"#ff7a1a"}},"600":{"id":"#tokensConfig/color/orange/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/600/value","default":"#e15e00"}},"type":"object","default":{"value":"#e15e00"}},"700":{"id":"#tokensConfig/color/orange/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/700/value","default":"#a94700"}},"type":"object","default":{"value":"#a94700"}},"800":{"id":"#tokensConfig/color/orange/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/800/value","default":"#702f00"}},"type":"object","default":{"value":"#702f00"}},"900":{"id":"#tokensConfig/color/orange/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/900/value","default":"#381800"}},"type":"object","default":{"value":"#381800"}}},"type":"object","default":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}}},"red":{"id":"#tokensConfig/color/red","properties":{"50":{"id":"#tokensConfig/color/red/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/50/value","default":"#ffdbd9"}},"type":"object","default":{"value":"#ffdbd9"}},"100":{"id":"#tokensConfig/color/red/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/100/value","default":"#ffb7b3"}},"type":"object","default":{"value":"#ffb7b3"}},"200":{"id":"#tokensConfig/color/red/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/200/value","default":"#ff948d"}},"type":"object","default":{"value":"#ff948d"}},"300":{"id":"#tokensConfig/color/red/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/300/value","default":"#ff7066"}},"type":"object","default":{"value":"#ff7066"}},"400":{"id":"#tokensConfig/color/red/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/400/value","default":"#ff4c40"}},"type":"object","default":{"value":"#ff4c40"}},"500":{"id":"#tokensConfig/color/red/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/500/value","default":"#ff281a"}},"type":"object","default":{"value":"#ff281a"}},"600":{"id":"#tokensConfig/color/red/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/600/value","default":"#e10e00"}},"type":"object","default":{"value":"#e10e00"}},"700":{"id":"#tokensConfig/color/red/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/700/value","default":"#a90a00"}},"type":"object","default":{"value":"#a90a00"}},"800":{"id":"#tokensConfig/color/red/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/800/value","default":"#700700"}},"type":"object","default":{"value":"#700700"}},"900":{"id":"#tokensConfig/color/red/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/900/value","default":"#380300"}},"type":"object","default":{"value":"#380300"}}},"type":"object","default":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}}},"pear":{"id":"#tokensConfig/color/pear","properties":{"50":{"id":"#tokensConfig/color/pear/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/50/value","default":"#f7f8dc"}},"type":"object","default":{"value":"#f7f8dc"}},"100":{"id":"#tokensConfig/color/pear/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/100/value","default":"#eff0ba"}},"type":"object","default":{"value":"#eff0ba"}},"200":{"id":"#tokensConfig/color/pear/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/200/value","default":"#e8e997"}},"type":"object","default":{"value":"#e8e997"}},"300":{"id":"#tokensConfig/color/pear/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/300/value","default":"#e0e274"}},"type":"object","default":{"value":"#e0e274"}},"400":{"id":"#tokensConfig/color/pear/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/400/value","default":"#d8da52"}},"type":"object","default":{"value":"#d8da52"}},"500":{"id":"#tokensConfig/color/pear/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/500/value","default":"#d0d32f"}},"type":"object","default":{"value":"#d0d32f"}},"600":{"id":"#tokensConfig/color/pear/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/600/value","default":"#a8aa24"}},"type":"object","default":{"value":"#a8aa24"}},"700":{"id":"#tokensConfig/color/pear/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/700/value","default":"#7e801b"}},"type":"object","default":{"value":"#7e801b"}},"800":{"id":"#tokensConfig/color/pear/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/800/value","default":"#545512"}},"type":"object","default":{"value":"#545512"}},"900":{"id":"#tokensConfig/color/pear/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/900/value","default":"#2a2b09"}},"type":"object","default":{"value":"#2a2b09"}}},"type":"object","default":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}}},"teal":{"id":"#tokensConfig/color/teal","properties":{"50":{"id":"#tokensConfig/color/teal/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/50/value","default":"#d7faf8"}},"type":"object","default":{"value":"#d7faf8"}},"100":{"id":"#tokensConfig/color/teal/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/100/value","default":"#aff4f0"}},"type":"object","default":{"value":"#aff4f0"}},"200":{"id":"#tokensConfig/color/teal/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/200/value","default":"#87efe9"}},"type":"object","default":{"value":"#87efe9"}},"300":{"id":"#tokensConfig/color/teal/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/300/value","default":"#5fe9e1"}},"type":"object","default":{"value":"#5fe9e1"}},"400":{"id":"#tokensConfig/color/teal/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/400/value","default":"#36e4da"}},"type":"object","default":{"value":"#36e4da"}},"500":{"id":"#tokensConfig/color/teal/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/500/value","default":"#1cd1c6"}},"type":"object","default":{"value":"#1cd1c6"}},"600":{"id":"#tokensConfig/color/teal/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/600/value","default":"#16a79e"}},"type":"object","default":{"value":"#16a79e"}},"700":{"id":"#tokensConfig/color/teal/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/700/value","default":"#117d77"}},"type":"object","default":{"value":"#117d77"}},"800":{"id":"#tokensConfig/color/teal/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/800/value","default":"#0b544f"}},"type":"object","default":{"value":"#0b544f"}},"900":{"id":"#tokensConfig/color/teal/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/900/value","default":"#062a28"}},"type":"object","default":{"value":"#062a28"}}},"type":"object","default":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}}},"lightblue":{"id":"#tokensConfig/color/lightblue","properties":{"50":{"id":"#tokensConfig/color/lightblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/50/value","default":"#d9f8ff"}},"type":"object","default":{"value":"#d9f8ff"}},"100":{"id":"#tokensConfig/color/lightblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/100/value","default":"#b3f1ff"}},"type":"object","default":{"value":"#b3f1ff"}},"200":{"id":"#tokensConfig/color/lightblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/200/value","default":"#8deaff"}},"type":"object","default":{"value":"#8deaff"}},"300":{"id":"#tokensConfig/color/lightblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/300/value","default":"#66e4ff"}},"type":"object","default":{"value":"#66e4ff"}},"400":{"id":"#tokensConfig/color/lightblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/400/value","default":"#40ddff"}},"type":"object","default":{"value":"#40ddff"}},"500":{"id":"#tokensConfig/color/lightblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/500/value","default":"#1ad6ff"}},"type":"object","default":{"value":"#1ad6ff"}},"600":{"id":"#tokensConfig/color/lightblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/600/value","default":"#00b9e1"}},"type":"object","default":{"value":"#00b9e1"}},"700":{"id":"#tokensConfig/color/lightblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/700/value","default":"#008aa9"}},"type":"object","default":{"value":"#008aa9"}},"800":{"id":"#tokensConfig/color/lightblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/800/value","default":"#005c70"}},"type":"object","default":{"value":"#005c70"}},"900":{"id":"#tokensConfig/color/lightblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/900/value","default":"#002e38"}},"type":"object","default":{"value":"#002e38"}}},"type":"object","default":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}}},"blue":{"id":"#tokensConfig/color/blue","properties":{"50":{"id":"#tokensConfig/color/blue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/50/value","default":"#d9f1ff"}},"type":"object","default":{"value":"#d9f1ff"}},"100":{"id":"#tokensConfig/color/blue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/100/value","default":"#b3e4ff"}},"type":"object","default":{"value":"#b3e4ff"}},"200":{"id":"#tokensConfig/color/blue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/200/value","default":"#8dd6ff"}},"type":"object","default":{"value":"#8dd6ff"}},"300":{"id":"#tokensConfig/color/blue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/300/value","default":"#66c8ff"}},"type":"object","default":{"value":"#66c8ff"}},"400":{"id":"#tokensConfig/color/blue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/400/value","default":"#40bbff"}},"type":"object","default":{"value":"#40bbff"}},"500":{"id":"#tokensConfig/color/blue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/500/value","default":"#1aadff"}},"type":"object","default":{"value":"#1aadff"}},"600":{"id":"#tokensConfig/color/blue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/600/value","default":"#0090e1"}},"type":"object","default":{"value":"#0090e1"}},"700":{"id":"#tokensConfig/color/blue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/700/value","default":"#006ca9"}},"type":"object","default":{"value":"#006ca9"}},"800":{"id":"#tokensConfig/color/blue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/800/value","default":"#004870"}},"type":"object","default":{"value":"#004870"}},"900":{"id":"#tokensConfig/color/blue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/900/value","default":"#002438"}},"type":"object","default":{"value":"#002438"}}},"type":"object","default":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}}},"indigoblue":{"id":"#tokensConfig/color/indigoblue","properties":{"50":{"id":"#tokensConfig/color/indigoblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/50/value","default":"#d9e5ff"}},"type":"object","default":{"value":"#d9e5ff"}},"100":{"id":"#tokensConfig/color/indigoblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/100/value","default":"#b3cbff"}},"type":"object","default":{"value":"#b3cbff"}},"200":{"id":"#tokensConfig/color/indigoblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/200/value","default":"#8db0ff"}},"type":"object","default":{"value":"#8db0ff"}},"300":{"id":"#tokensConfig/color/indigoblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/300/value","default":"#6696ff"}},"type":"object","default":{"value":"#6696ff"}},"400":{"id":"#tokensConfig/color/indigoblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/400/value","default":"#407cff"}},"type":"object","default":{"value":"#407cff"}},"500":{"id":"#tokensConfig/color/indigoblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/500/value","default":"#1a62ff"}},"type":"object","default":{"value":"#1a62ff"}},"600":{"id":"#tokensConfig/color/indigoblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/600/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}},"700":{"id":"#tokensConfig/color/indigoblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/700/value","default":"#0035a9"}},"type":"object","default":{"value":"#0035a9"}},"800":{"id":"#tokensConfig/color/indigoblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/800/value","default":"#002370"}},"type":"object","default":{"value":"#002370"}},"900":{"id":"#tokensConfig/color/indigoblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/900/value","default":"#001238"}},"type":"object","default":{"value":"#001238"}}},"type":"object","default":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}}},"royalblue":{"id":"#tokensConfig/color/royalblue","properties":{"50":{"id":"#tokensConfig/color/royalblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/50/value","default":"#dfdbfb"}},"type":"object","default":{"value":"#dfdbfb"}},"100":{"id":"#tokensConfig/color/royalblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/100/value","default":"#c0b7f7"}},"type":"object","default":{"value":"#c0b7f7"}},"200":{"id":"#tokensConfig/color/royalblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/200/value","default":"#a093f3"}},"type":"object","default":{"value":"#a093f3"}},"300":{"id":"#tokensConfig/color/royalblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/300/value","default":"#806ff0"}},"type":"object","default":{"value":"#806ff0"}},"400":{"id":"#tokensConfig/color/royalblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/400/value","default":"#614bec"}},"type":"object","default":{"value":"#614bec"}},"500":{"id":"#tokensConfig/color/royalblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/500/value","default":"#4127e8"}},"type":"object","default":{"value":"#4127e8"}},"600":{"id":"#tokensConfig/color/royalblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/600/value","default":"#2c15c4"}},"type":"object","default":{"value":"#2c15c4"}},"700":{"id":"#tokensConfig/color/royalblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/700/value","default":"#211093"}},"type":"object","default":{"value":"#211093"}},"800":{"id":"#tokensConfig/color/royalblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/800/value","default":"#160a62"}},"type":"object","default":{"value":"#160a62"}},"900":{"id":"#tokensConfig/color/royalblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/900/value","default":"#0b0531"}},"type":"object","default":{"value":"#0b0531"}}},"type":"object","default":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}}},"purple":{"id":"#tokensConfig/color/purple","properties":{"50":{"id":"#tokensConfig/color/purple/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/50/value","default":"#ead9ff"}},"type":"object","default":{"value":"#ead9ff"}},"100":{"id":"#tokensConfig/color/purple/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/100/value","default":"#d5b3ff"}},"type":"object","default":{"value":"#d5b3ff"}},"200":{"id":"#tokensConfig/color/purple/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/200/value","default":"#c08dff"}},"type":"object","default":{"value":"#c08dff"}},"300":{"id":"#tokensConfig/color/purple/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/300/value","default":"#ab66ff"}},"type":"object","default":{"value":"#ab66ff"}},"400":{"id":"#tokensConfig/color/purple/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/400/value","default":"#9640ff"}},"type":"object","default":{"value":"#9640ff"}},"500":{"id":"#tokensConfig/color/purple/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/500/value","default":"#811aff"}},"type":"object","default":{"value":"#811aff"}},"600":{"id":"#tokensConfig/color/purple/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/600/value","default":"#6500e1"}},"type":"object","default":{"value":"#6500e1"}},"700":{"id":"#tokensConfig/color/purple/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/700/value","default":"#4c00a9"}},"type":"object","default":{"value":"#4c00a9"}},"800":{"id":"#tokensConfig/color/purple/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/800/value","default":"#330070"}},"type":"object","default":{"value":"#330070"}},"900":{"id":"#tokensConfig/color/purple/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/900/value","default":"#190038"}},"type":"object","default":{"value":"#190038"}}},"type":"object","default":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}}},"pink":{"id":"#tokensConfig/color/pink","properties":{"50":{"id":"#tokensConfig/color/pink/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/50/value","default":"#ffd9f2"}},"type":"object","default":{"value":"#ffd9f2"}},"100":{"id":"#tokensConfig/color/pink/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/100/value","default":"#ffb3e5"}},"type":"object","default":{"value":"#ffb3e5"}},"200":{"id":"#tokensConfig/color/pink/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/200/value","default":"#ff8dd8"}},"type":"object","default":{"value":"#ff8dd8"}},"300":{"id":"#tokensConfig/color/pink/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/300/value","default":"#ff66cc"}},"type":"object","default":{"value":"#ff66cc"}},"400":{"id":"#tokensConfig/color/pink/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/400/value","default":"#ff40bf"}},"type":"object","default":{"value":"#ff40bf"}},"500":{"id":"#tokensConfig/color/pink/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/500/value","default":"#ff1ab2"}},"type":"object","default":{"value":"#ff1ab2"}},"600":{"id":"#tokensConfig/color/pink/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/600/value","default":"#e10095"}},"type":"object","default":{"value":"#e10095"}},"700":{"id":"#tokensConfig/color/pink/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/700/value","default":"#a90070"}},"type":"object","default":{"value":"#a90070"}},"800":{"id":"#tokensConfig/color/pink/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/800/value","default":"#70004b"}},"type":"object","default":{"value":"#70004b"}},"900":{"id":"#tokensConfig/color/pink/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/900/value","default":"#380025"}},"type":"object","default":{"value":"#380025"}}},"type":"object","default":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}}},"ruby":{"id":"#tokensConfig/color/ruby","properties":{"50":{"id":"#tokensConfig/color/ruby/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/50/value","default":"#ffd9e4"}},"type":"object","default":{"value":"#ffd9e4"}},"100":{"id":"#tokensConfig/color/ruby/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/100/value","default":"#ffb3c9"}},"type":"object","default":{"value":"#ffb3c9"}},"200":{"id":"#tokensConfig/color/ruby/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/200/value","default":"#ff8dae"}},"type":"object","default":{"value":"#ff8dae"}},"300":{"id":"#tokensConfig/color/ruby/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/300/value","default":"#ff6694"}},"type":"object","default":{"value":"#ff6694"}},"400":{"id":"#tokensConfig/color/ruby/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/400/value","default":"#ff4079"}},"type":"object","default":{"value":"#ff4079"}},"500":{"id":"#tokensConfig/color/ruby/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/500/value","default":"#ff1a5e"}},"type":"object","default":{"value":"#ff1a5e"}},"600":{"id":"#tokensConfig/color/ruby/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/600/value","default":"#e10043"}},"type":"object","default":{"value":"#e10043"}},"700":{"id":"#tokensConfig/color/ruby/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/700/value","default":"#a90032"}},"type":"object","default":{"value":"#a90032"}},"800":{"id":"#tokensConfig/color/ruby/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/800/value","default":"#700021"}},"type":"object","default":{"value":"#700021"}},"900":{"id":"#tokensConfig/color/ruby/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/900/value","default":"#380011"}},"type":"object","default":{"value":"#380011"}}},"type":"object","default":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"type":"object","default":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"elements":{"title":"All the configurable tokens for your Elements.","tags":["@studioIcon uiw:component"],"id":"#tokensConfig/elements","properties":{"text":{"id":"#tokensConfig/elements/text","properties":{"primary":{"id":"#tokensConfig/elements/text/primary","properties":{"color":{"id":"#tokensConfig/elements/text/primary/color","properties":{"static":{"id":"#tokensConfig/elements/text/primary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/primary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/initial","default":"{color.gray.900}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/dark","default":"{color.gray.50}"}},"type":"object","default":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"type":"object","default":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"hover":{"id":"#tokensConfig/elements/text/primary/color/hover","type":"any","default":{}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"secondary":{"id":"#tokensConfig/elements/text/secondary","properties":{"color":{"id":"#tokensConfig/elements/text/secondary/color","properties":{"static":{"id":"#tokensConfig/elements/text/secondary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/initial","default":"{color.gray.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/dark","default":"{color.gray.400}"}},"type":"object","default":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"type":"object","default":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"hover":{"id":"#tokensConfig/elements/text/secondary/color/hover","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/initial","default":"{color.gray.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/dark","default":"{color.gray.200}"}},"type":"object","default":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}},"type":"object","default":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"type":"object","default":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"container":{"title":"Main container sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:width-full-outline"],"id":"#tokensConfig/elements/container","properties":{"maxWidth":{"id":"#tokensConfig/elements/container/maxWidth","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/maxWidth/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"padding":{"id":"#tokensConfig/elements/container/padding","properties":{"mobile":{"id":"#tokensConfig/elements/container/padding/mobile","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/mobile/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"xs":{"id":"#tokensConfig/elements/container/padding/xs","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/xs/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"sm":{"id":"#tokensConfig/elements/container/padding/sm","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/sm/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}},"md":{"id":"#tokensConfig/elements/container/padding/md","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/md/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}}},"type":"object","default":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"type":"object","default":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"backdrop":{"title":"Backdrops used in Elements.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:blur-circular"],"id":"#tokensConfig/elements/backdrop","properties":{"filter":{"id":"#tokensConfig/elements/backdrop/filter","properties":{"value":{"type":"string","id":"#tokensConfig/elements/backdrop/filter/value","default":"saturate(200%) blur(20px)"}},"type":"object","default":{"value":"saturate(200%) blur(20px)"}},"background":{"id":"#tokensConfig/elements/backdrop/background","properties":{"value":{"id":"#tokensConfig/elements/backdrop/background/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/initial","default":"#fffc"},"dark":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/dark","default":"#0c0d0ccc"}},"type":"object","default":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"type":"object","default":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"type":"object","default":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"border":{"title":"Borders used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/elements/border","properties":{"primary":{"id":"#tokensConfig/elements/border/primary","properties":{"static":{"id":"#tokensConfig/elements/border/primary/static","properties":{"value":{"id":"#tokensConfig/elements/border/primary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"hover":{"id":"#tokensConfig/elements/border/primary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/primary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"secondary":{"id":"#tokensConfig/elements/border/secondary","properties":{"static":{"id":"#tokensConfig/elements/border/secondary/static","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"hover":{"id":"#tokensConfig/elements/border/secondary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/initial","default":""},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/dark","default":""}},"type":"object","default":{"initial":"","dark":""}}},"type":"object","default":{"value":{"initial":"","dark":""}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"type":"object","default":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"surface":{"title":"Surfaces used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon fluent:surface-hub-20-filled"],"id":"#tokensConfig/elements/surface","properties":{"background":{"id":"#tokensConfig/elements/surface/background","properties":{"base":{"id":"#tokensConfig/elements/surface/background/base","properties":{"value":{"id":"#tokensConfig/elements/surface/background/base/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"type":"object","default":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"type":"object","default":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"state":{"title":"Color states used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon mdi:palette-advanced"],"id":"#tokensConfig/elements/state","properties":{"primary":{"id":"#tokensConfig/elements/state/primary","properties":{"color":{"id":"#tokensConfig/elements/state/primary/color","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/initial","default":"{color.primary.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/dark","default":"{color.primary.400}"}},"type":"object","default":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/initial","default":"{color.primary.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/dark","default":"{color.primary.200}"}},"type":"object","default":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"type":"object","default":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/primary/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial","default":"{color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark","default":"{color.primary.900}"}},"type":"object","default":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/primary/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/initial","default":"{color.primary.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/dark","default":"{color.primary.700}"}},"type":"object","default":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}},"type":"object","default":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"info":{"id":"#tokensConfig/elements/state/info","properties":{"color":{"id":"#tokensConfig/elements/state/info/color","properties":{"primary":{"id":"#tokensConfig/elements/state/info/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/initial","default":"{color.blue.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/dark","default":"{color.blue.400}"}},"type":"object","default":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"type":"object","default":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/initial","default":"{color.blue.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/dark","default":"{color.blue.200}"}},"type":"object","default":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"type":"object","default":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/info/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/initial","default":"{color.blue.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/dark","default":"{color.blue.900}"}},"type":"object","default":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"type":"object","default":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/info/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/initial","default":"{color.blue.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/dark","default":"{color.blue.700}"}},"type":"object","default":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}},"type":"object","default":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"success":{"id":"#tokensConfig/elements/state/success","properties":{"color":{"id":"#tokensConfig/elements/state/success/color","properties":{"primary":{"id":"#tokensConfig/elements/state/success/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/initial","default":"{color.green.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/dark","default":"{color.green.400}"}},"type":"object","default":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"type":"object","default":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/initial","default":"{color.green.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/dark","default":"{color.green.200}"}},"type":"object","default":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"type":"object","default":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/success/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/initial","default":"{color.green.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/dark","default":"{color.green.900}"}},"type":"object","default":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"type":"object","default":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/success/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/initial","default":"{color.green.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/dark","default":"{color.green.700}"}},"type":"object","default":{"initial":"{color.green.200}","dark":"{color.green.700}"}}},"type":"object","default":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"warning":{"id":"#tokensConfig/elements/state/warning","properties":{"color":{"id":"#tokensConfig/elements/state/warning/color","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/initial","default":"{color.yellow.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/dark","default":"{color.yellow.400}"}},"type":"object","default":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/initial","default":"{color.yellow.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/dark","default":"{color.yellow.200}"}},"type":"object","default":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/warning/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial","default":"{color.yellow.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark","default":"{color.yellow.900}"}},"type":"object","default":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/warning/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/initial","default":"{color.yellow.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/dark","default":"{color.yellow.700}"}},"type":"object","default":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"danger":{"id":"#tokensConfig/elements/state/danger","properties":{"color":{"id":"#tokensConfig/elements/state/danger/color","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/initial","default":"{color.red.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/dark","default":"{color.red.300}"}},"type":"object","default":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"type":"object","default":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/initial","default":"{color.red.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/dark","default":"{color.red.200}"}},"type":"object","default":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"type":"object","default":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/danger/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial","default":"{color.red.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark","default":"{color.red.900}"}},"type":"object","default":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"type":"object","default":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/danger/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/initial","default":"{color.red.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/dark","default":"{color.red.700}"}},"type":"object","default":{"initial":"{color.red.200}","dark":"{color.red.700}"}}},"type":"object","default":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"type":"object","default":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"type":"object","default":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"typography":{"title":"All the configurable tokens for your Typography.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:article"],"id":"#tokensConfig/typography","properties":{"verticalMargin":{"title":"Vertical spacings between paragraphs.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:line-height-line"],"id":"#tokensConfig/typography/verticalMargin","properties":{"sm":{"id":"#tokensConfig/typography/verticalMargin/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/sm/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"base":{"id":"#tokensConfig/typography/verticalMargin/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/base/value","default":"32px"}},"type":"object","default":{"value":"32px"}}},"type":"object","default":{"sm":{"value":"16px"},"base":{"value":"32px"}}},"letterSpacing":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:letter-spacing-line"],"id":"#tokensConfig/typography/letterSpacing","properties":{"tight":{"id":"#tokensConfig/typography/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"wide":{"id":"#tokensConfig/typography/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}}},"type":"object","default":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}}},"fontSize":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:font-size-fill"],"id":"#tokensConfig/typography/fontSize","properties":{"xs":{"id":"#tokensConfig/typography/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xs/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"sm":{"id":"#tokensConfig/typography/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/sm/value","default":"14px"}},"type":"object","default":{"value":"14px"}},"base":{"id":"#tokensConfig/typography/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/base/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"lg":{"id":"#tokensConfig/typography/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/lg/value","default":"18px"}},"type":"object","default":{"value":"18px"}},"xl":{"id":"#tokensConfig/typography/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xl/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"2xl":{"id":"#tokensConfig/typography/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/2xl/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"3xl":{"id":"#tokensConfig/typography/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/3xl/value","default":"30px"}},"type":"object","default":{"value":"30px"}},"4xl":{"id":"#tokensConfig/typography/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/4xl/value","default":"36px"}},"type":"object","default":{"value":"36px"}},"5xl":{"id":"#tokensConfig/typography/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/5xl/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"6xl":{"id":"#tokensConfig/typography/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/6xl/value","default":"60px"}},"type":"object","default":{"value":"60px"}},"7xl":{"id":"#tokensConfig/typography/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/7xl/value","default":"72px"}},"type":"object","default":{"value":"72px"}},"8xl":{"id":"#tokensConfig/typography/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/8xl/value","default":"96px"}},"type":"object","default":{"value":"96px"}},"9xl":{"id":"#tokensConfig/typography/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/9xl/value","default":"128px"}},"type":"object","default":{"value":"128px"}}},"type":"object","default":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}}},"fontWeight":{"title":"Font weights used in typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:bold-fill"],"id":"#tokensConfig/typography/fontWeight","properties":{"thin":{"id":"#tokensConfig/typography/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/typography/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/typography/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/typography/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/typography/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/typography/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/typography/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/typography/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/typography/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"lead":{"title":"Line heights used in your typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon material-symbols:height-rounded"],"id":"#tokensConfig/typography/lead","properties":{"none":{"id":"#tokensConfig/typography/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/typography/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/typography/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/typography/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/typography/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/typography/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your typography fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/typography/font","properties":{"display":{"id":"#tokensConfig/typography/font/display","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/display/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"body":{"id":"#tokensConfig/typography/font/body","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/body/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"code":{"id":"#tokensConfig/typography/font/code","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/code/value","default":"{font.mono}"}},"type":"object","default":{"value":"{font.mono}"}}},"type":"object","default":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}}},"color":{"title":"Your typography color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/typography/color","properties":{"primary":{"id":"#tokensConfig/typography/color/primary","properties":{"50":{"id":"#tokensConfig/typography/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/50/value","default":"{color.primary.50}"}},"type":"object","default":{"value":"{color.primary.50}"}},"100":{"id":"#tokensConfig/typography/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/100/value","default":"{color.primary.100}"}},"type":"object","default":{"value":"{color.primary.100}"}},"200":{"id":"#tokensConfig/typography/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/200/value","default":"{color.primary.200}"}},"type":"object","default":{"value":"{color.primary.200}"}},"300":{"id":"#tokensConfig/typography/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/300/value","default":"{color.primary.300}"}},"type":"object","default":{"value":"{color.primary.300}"}},"400":{"id":"#tokensConfig/typography/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/400/value","default":"{color.primary.400}"}},"type":"object","default":{"value":"{color.primary.400}"}},"500":{"id":"#tokensConfig/typography/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/500/value","default":"{color.primary.500}"}},"type":"object","default":{"value":"{color.primary.500}"}},"600":{"id":"#tokensConfig/typography/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/600/value","default":"{color.primary.600}"}},"type":"object","default":{"value":"{color.primary.600}"}},"700":{"id":"#tokensConfig/typography/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/700/value","default":"{color.primary.700}"}},"type":"object","default":{"value":"{color.primary.700}"}},"800":{"id":"#tokensConfig/typography/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/800/value","default":"{color.primary.800}"}},"type":"object","default":{"value":"{color.primary.800}"}},"900":{"id":"#tokensConfig/typography/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/900/value","default":"{color.primary.900}"}},"type":"object","default":{"value":"{color.primary.900}"}}},"type":"object","default":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/typography/color/secondary","properties":{"50":{"id":"#tokensConfig/typography/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/typography/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/typography/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/typography/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/typography/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/typography/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/typography/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/typography/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/typography/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/typography/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"type":"object","default":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"type":"object","default":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"prose":{"title":"All the configurable tokens for your Prose components.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon lucide:component"],"id":"#tokensConfig/prose","properties":{"p":{"id":"#tokensConfig/prose/p","properties":{"fontSize":{"id":"#tokensConfig/prose/p/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/fontSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/prose/p/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"margin":{"id":"#tokensConfig/prose/p/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"br":{"id":"#tokensConfig/prose/p/br","properties":{"margin":{"id":"#tokensConfig/prose/p/br/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/br/margin/value","default":"{typography.verticalMargin.base} 0 0 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"h1":{"id":"#tokensConfig/prose/h1","properties":{"margin":{"id":"#tokensConfig/prose/h1/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/margin/value","default":"0 0 2rem"}},"type":"object","default":{"value":"0 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h1/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontSize/value","default":"{typography.fontSize.5xl}"}},"type":"object","default":{"value":"{typography.fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h1/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h1/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontWeight/value","default":"{typography.fontWeight.bold}"}},"type":"object","default":{"value":"{typography.fontWeight.bold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h1/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h1/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/iconSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}}},"type":"object","default":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}}},"h2":{"id":"#tokensConfig/prose/h2","properties":{"margin":{"id":"#tokensConfig/prose/h2/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h2/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontSize/value","default":"{typography.fontSize.4xl}"}},"type":"object","default":{"value":"{typography.fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h2/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h2/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h2/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h2/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/iconSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}}},"h3":{"id":"#tokensConfig/prose/h3","properties":{"margin":{"id":"#tokensConfig/prose/h3/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h3/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h3/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h3/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h3/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h3/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/iconSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}}},"h4":{"id":"#tokensConfig/prose/h4","properties":{"margin":{"id":"#tokensConfig/prose/h4/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h4/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h4/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h4/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h4/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h4/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h5":{"id":"#tokensConfig/prose/h5","properties":{"margin":{"id":"#tokensConfig/prose/h5/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h5/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h5/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h5/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h5/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h6":{"id":"#tokensConfig/prose/h6","properties":{"margin":{"id":"#tokensConfig/prose/h6/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h6/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/prose/h6/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"fontWeight":{"id":"#tokensConfig/prose/h6/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h6/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/iconSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}}},"strong":{"id":"#tokensConfig/prose/strong","properties":{"fontWeight":{"id":"#tokensConfig/prose/strong/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/strong/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"img":{"id":"#tokensConfig/prose/img","properties":{"margin":{"id":"#tokensConfig/prose/img/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/img/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"}}},"a":{"id":"#tokensConfig/prose/a","properties":{"textDecoration":{"id":"#tokensConfig/prose/a/textDecoration","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/textDecoration/value","default":"none"}},"type":"object","default":{"value":"none"}},"color":{"id":"#tokensConfig/prose/a/color","properties":{"static":{"id":"#tokensConfig/prose/a/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/initial","default":"inherit"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/dark","default":"inherit"}},"type":"object","default":{"initial":"inherit","dark":"inherit"}}},"type":"object","default":{"value":{"initial":"inherit","dark":"inherit"}}},"hover":{"id":"#tokensConfig/prose/a/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/dark","default":"{typography.color.primary.400}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"type":"object","default":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"border":{"id":"#tokensConfig/prose/a/border","properties":{"width":{"id":"#tokensConfig/prose/a/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/a/border/style","properties":{"static":{"id":"#tokensConfig/prose/a/border/style/static","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/static/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"hover":{"id":"#tokensConfig/prose/a/border/style/hover","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/hover/value","default":"solid"}},"type":"object","default":{"value":"solid"}}},"type":"object","default":{"static":{"value":"dashed"},"hover":{"value":"solid"}}},"color":{"id":"#tokensConfig/prose/a/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"distance":{"id":"#tokensConfig/prose/a/border/distance","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/distance/value","default":"2px"}},"type":"object","default":{"value":"2px"}}},"type":"object","default":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}}},"fontWeight":{"id":"#tokensConfig/prose/a/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/fontWeight/value","default":"{typography.fontWeight.medium}"}},"type":"object","default":{"value":"{typography.fontWeight.medium}"}},"hasCode":{"id":"#tokensConfig/prose/a/hasCode","properties":{"borderBottom":{"id":"#tokensConfig/prose/a/hasCode/borderBottom","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/hasCode/borderBottom/value","default":"none"}},"type":"object","default":{"value":"none"}}},"type":"object","default":{"borderBottom":{"value":"none"}}},"code":{"id":"#tokensConfig/prose/a/code","properties":{"border":{"id":"#tokensConfig/prose/a/code/border","properties":{"width":{"id":"#tokensConfig/prose/a/code/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/width/value","default":"{prose.a.border.width}"}},"type":"object","default":{"value":"{prose.a.border.width}"}},"style":{"id":"#tokensConfig/prose/a/code/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/style/value","default":"{prose.a.border.style.static}"}},"type":"object","default":{"value":"{prose.a.border.style.static}"}},"color":{"id":"#tokensConfig/prose/a/code/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"hover":{"id":"#tokensConfig/prose/a/code/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/dark","default":"{typography.color.primary.600}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"type":"object","default":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"type":"object","default":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"color":{"id":"#tokensConfig/prose/a/code/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/code/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"background":{"id":"#tokensConfig/prose/a/code/background","properties":{"static":{"id":"#tokensConfig/prose/a/code/background/static","type":"any","default":{}},"hover":{"id":"#tokensConfig/prose/a/code/background/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/background/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/initial","default":"{typography.color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/dark","default":"{typography.color.primary.900}"}},"type":"object","default":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}},"type":"object","default":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"type":"object","default":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"type":"object","default":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"blockquote":{"id":"#tokensConfig/prose/blockquote","properties":{"margin":{"id":"#tokensConfig/prose/blockquote/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/blockquote/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/padding/value","default":"0 0 0 24px"}},"type":"object","default":{"value":"0 0 0 24px"}},"quotes":{"id":"#tokensConfig/prose/blockquote/quotes","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/quotes/value","default":"'201C' '201D' '2018' '2019'"}},"type":"object","default":{"value":"'201C' '201D' '2018' '2019'"}},"color":{"id":"#tokensConfig/prose/blockquote/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"border":{"id":"#tokensConfig/prose/blockquote/border","properties":{"width":{"id":"#tokensConfig/prose/blockquote/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/width/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"style":{"id":"#tokensConfig/prose/blockquote/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/blockquote/border/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"ul":{"id":"#tokensConfig/prose/ul","properties":{"listStyleType":{"id":"#tokensConfig/prose/ul/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/listStyleType/value","default":"disc"}},"type":"object","default":{"value":"disc"}},"margin":{"id":"#tokensConfig/prose/ul/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ul/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ul/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ul/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ul/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"ol":{"id":"#tokensConfig/prose/ol","properties":{"listStyleType":{"id":"#tokensConfig/prose/ol/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/listStyleType/value","default":"decimal"}},"type":"object","default":{"value":"decimal"}},"margin":{"id":"#tokensConfig/prose/ol/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ol/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ol/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ol/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ol/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"li":{"id":"#tokensConfig/prose/li","properties":{"margin":{"id":"#tokensConfig/prose/li/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/margin/value","default":"{typography.verticalMargin.sm} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.sm} 0"}},"listStylePosition":{"id":"#tokensConfig/prose/li/listStylePosition","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/listStylePosition/value","default":"outside"}},"type":"object","default":{"value":"outside"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}}},"hr":{"id":"#tokensConfig/prose/hr","properties":{"margin":{"id":"#tokensConfig/prose/hr/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"style":{"id":"#tokensConfig/prose/hr/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"width":{"id":"#tokensConfig/prose/hr/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"color":{"id":"#tokensConfig/prose/hr/color","properties":{"value":{"id":"#tokensConfig/prose/hr/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/hr/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/hr/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"table":{"id":"#tokensConfig/prose/table","properties":{"margin":{"id":"#tokensConfig/prose/table/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"textAlign":{"id":"#tokensConfig/prose/table/textAlign","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/textAlign/value","default":"left"}},"type":"object","default":{"value":"left"}},"fontSize":{"id":"#tokensConfig/prose/table/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/prose/table/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/lineHeight/value","default":"inherit"}},"type":"object","default":{"value":"inherit"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}}},"thead":{"id":"#tokensConfig/prose/thead","properties":{"border":{"id":"#tokensConfig/prose/thead/border","properties":{"width":{"id":"#tokensConfig/prose/thead/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/width/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"style":{"id":"#tokensConfig/prose/thead/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/border/color","properties":{"value":{"id":"#tokensConfig/prose/thead/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"borderBottom":{"id":"#tokensConfig/prose/thead/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/thead/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/thead/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/thead/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"type":"object","default":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"th":{"id":"#tokensConfig/prose/th","properties":{"color":{"id":"#tokensConfig/prose/th/color","properties":{"value":{"id":"#tokensConfig/prose/th/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/th/color/value/initial","default":"{typography.color.secondary.600}"},"dark":{"type":"string","id":"#tokensConfig/prose/th/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"padding":{"id":"#tokensConfig/prose/th/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/padding/value","default":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"type":"object","default":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/th/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"tbody":{"id":"#tokensConfig/prose/tbody","properties":{"tr":{"id":"#tokensConfig/prose/tbody/tr","properties":{"borderBottom":{"id":"#tokensConfig/prose/tbody/tr/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/style/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"color":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"td":{"id":"#tokensConfig/prose/tbody/td","properties":{"padding":{"id":"#tokensConfig/prose/tbody/td/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/td/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"code":{"id":"#tokensConfig/prose/tbody/code","properties":{"inline":{"id":"#tokensConfig/prose/tbody/code/inline","properties":{"fontSize":{"id":"#tokensConfig/prose/tbody/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"type":"object","default":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"type":"object","default":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"code":{"id":"#tokensConfig/prose/code","properties":{"block":{"id":"#tokensConfig/prose/code/block","properties":{"fontSize":{"id":"#tokensConfig/prose/code/block/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"margin":{"id":"#tokensConfig/prose/code/block/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"border":{"id":"#tokensConfig/prose/code/block/border","properties":{"width":{"id":"#tokensConfig/prose/code/block/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/code/block/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/code/block/border/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"color":{"id":"#tokensConfig/prose/code/block/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/block/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/block/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"pre":{"id":"#tokensConfig/prose/code/block/pre","properties":{"padding":{"id":"#tokensConfig/prose/code/block/pre/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/pre/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"inline":{"id":"#tokensConfig/prose/code/inline","properties":{"borderRadius":{"id":"#tokensConfig/prose/code/inline/borderRadius","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/borderRadius/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"padding":{"id":"#tokensConfig/prose/code/inline/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/padding/value","default":"0.25rem 0.375rem 0.25rem 0.375rem"}},"type":"object","default":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"}},"fontSize":{"id":"#tokensConfig/prose/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/code/inline/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontWeight/value","default":"{typography.fontWeight.normal}"}},"type":"object","default":{"value":"{typography.fontWeight.normal}"}},"color":{"id":"#tokensConfig/prose/code/inline/color","properties":{"value":{"id":"#tokensConfig/prose/code/inline/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/inline/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/inline/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}},"type":"object","default":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"type":"object","default":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"type":"object","default":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"radii":{"title":"Your website border radiuses.","tags":["@studioInput design-token","@studioInpuTokenType size","@studioIcon material-symbols:rounded-corner","@studioInputTokenType size"],"id":"#tokensConfig/radii","properties":{"sm":{"id":"#tokensConfig/radii/sm","properties":{"value":{"type":"string","id":"#tokensConfig/radii/sm/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"md":{"id":"#tokensConfig/radii/md","properties":{"value":{"type":"string","id":"#tokensConfig/radii/md/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"lg":{"id":"#tokensConfig/radii/lg","properties":{"value":{"type":"string","id":"#tokensConfig/radii/lg/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"none":{"id":"#tokensConfig/radii/none","properties":{"value":{"type":"string","id":"#tokensConfig/radii/none/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2xs":{"id":"#tokensConfig/radii/2xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xs/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"xs":{"id":"#tokensConfig/radii/xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xs/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"xl":{"id":"#tokensConfig/radii/xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xl/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"2xl":{"id":"#tokensConfig/radii/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/radii/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/3xl/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"full":{"id":"#tokensConfig/radii/full","properties":{"value":{"type":"string","id":"#tokensConfig/radii/full/value","default":"9999px"}},"type":"object","default":{"value":"9999px"}}},"type":"object","default":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}}},"fontSize":{"title":"Your website font sizes.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontSize","properties":{"xs":{"id":"#tokensConfig/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xs/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"sm":{"id":"#tokensConfig/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/sm/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}},"base":{"id":"#tokensConfig/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/base/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"lg":{"id":"#tokensConfig/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/lg/value","default":"1.125rem"}},"type":"object","default":{"value":"1.125rem"}},"xl":{"id":"#tokensConfig/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xl/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"2xl":{"id":"#tokensConfig/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/3xl/value","default":"1.875rem"}},"type":"object","default":{"value":"1.875rem"}},"4xl":{"id":"#tokensConfig/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/4xl/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"5xl":{"id":"#tokensConfig/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/5xl/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"6xl":{"id":"#tokensConfig/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/6xl/value","default":"3.75rem"}},"type":"object","default":{"value":"3.75rem"}},"7xl":{"id":"#tokensConfig/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/7xl/value","default":"4.5rem"}},"type":"object","default":{"value":"4.5rem"}},"8xl":{"id":"#tokensConfig/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/8xl/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"9xl":{"id":"#tokensConfig/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/9xl/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}}},"type":"object","default":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}}},"lead":{"title":"Your website line heights.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon icon-park-outline:auto-line-height"],"id":"#tokensConfig/lead","properties":{"1":{"id":"#tokensConfig/lead/1","properties":{"value":{"type":"string","id":"#tokensConfig/lead/1/value","default":".025rem"}},"type":"object","default":{"value":".025rem"}},"2":{"id":"#tokensConfig/lead/2","properties":{"value":{"type":"string","id":"#tokensConfig/lead/2/value","default":".5rem"}},"type":"object","default":{"value":".5rem"}},"3":{"id":"#tokensConfig/lead/3","properties":{"value":{"type":"string","id":"#tokensConfig/lead/3/value","default":".75rem"}},"type":"object","default":{"value":".75rem"}},"4":{"id":"#tokensConfig/lead/4","properties":{"value":{"type":"string","id":"#tokensConfig/lead/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/lead/5","properties":{"value":{"type":"string","id":"#tokensConfig/lead/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/lead/6","properties":{"value":{"type":"string","id":"#tokensConfig/lead/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/lead/7","properties":{"value":{"type":"string","id":"#tokensConfig/lead/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/lead/8","properties":{"value":{"type":"string","id":"#tokensConfig/lead/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/lead/9","properties":{"value":{"type":"string","id":"#tokensConfig/lead/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/lead/10","properties":{"value":{"type":"string","id":"#tokensConfig/lead/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"none":{"id":"#tokensConfig/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your website fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/font","properties":{"sans":{"id":"#tokensConfig/font/sans","properties":{"value":{"type":"string","id":"#tokensConfig/font/sans/value","default":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"type":"object","default":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"serif":{"id":"#tokensConfig/font/serif","properties":{"value":{"type":"string","id":"#tokensConfig/font/serif/value","default":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"type":"object","default":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"mono":{"id":"#tokensConfig/font/mono","properties":{"value":{"type":"string","id":"#tokensConfig/font/mono/value","default":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"type":"object","default":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"type":"object","default":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"docus":{"title":"All the configurable tokens from Docus.","tags":["@studioIcon material-symbols:docs"],"id":"#tokensConfig/docus","properties":{"header":{"id":"#tokensConfig/docus/header","properties":{"height":{"id":"#tokensConfig/docus/header/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/header/height/value","default":"64px"}},"type":"object","default":{"value":"64px"}}},"type":"object","default":{"height":{"value":"64px"}}},"footer":{"id":"#tokensConfig/docus/footer","properties":{"padding":{"id":"#tokensConfig/docus/footer/padding","properties":{"value":{"type":"string","id":"#tokensConfig/docus/footer/padding/value","default":"{space.4} 0"}},"type":"object","default":{"value":"{space.4} 0"}}},"type":"object","default":{"padding":{"value":"{space.4} 0"}}},"readableLine":{"id":"#tokensConfig/docus/readableLine","properties":{"value":{"type":"string","id":"#tokensConfig/docus/readableLine/value","default":"78ch"}},"type":"object","default":{"value":"78ch"}},"loadingBar":{"id":"#tokensConfig/docus/loadingBar","properties":{"height":{"id":"#tokensConfig/docus/loadingBar/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/height/value","default":"3px"}},"type":"object","default":{"value":"3px"}},"gradientColorStop1":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop1","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop1/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"gradientColorStop2":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop2","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop2/value","default":"#34cdfe"}},"type":"object","default":{"value":"#34cdfe"}},"gradientColorStop3":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop3","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop3/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}}},"type":"object","default":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"type":"object","default":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"media":{"title":"Your website media queries.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:screenshot-monitor-outline-rounded"],"id":"#tokensConfig/media","properties":{"xs":{"id":"#tokensConfig/media/xs","properties":{"value":{"type":"string","id":"#tokensConfig/media/xs/value","default":"(min-width: 475px)"}},"type":"object","default":{"value":"(min-width: 475px)"}},"sm":{"id":"#tokensConfig/media/sm","properties":{"value":{"type":"string","id":"#tokensConfig/media/sm/value","default":"(min-width: 640px)"}},"type":"object","default":{"value":"(min-width: 640px)"}},"md":{"id":"#tokensConfig/media/md","properties":{"value":{"type":"string","id":"#tokensConfig/media/md/value","default":"(min-width: 768px)"}},"type":"object","default":{"value":"(min-width: 768px)"}},"lg":{"id":"#tokensConfig/media/lg","properties":{"value":{"type":"string","id":"#tokensConfig/media/lg/value","default":"(min-width: 1024px)"}},"type":"object","default":{"value":"(min-width: 1024px)"}},"xl":{"id":"#tokensConfig/media/xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/xl/value","default":"(min-width: 1280px)"}},"type":"object","default":{"value":"(min-width: 1280px)"}},"2xl":{"id":"#tokensConfig/media/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/2xl/value","default":"(min-width: 1536px)"}},"type":"object","default":{"value":"(min-width: 1536px)"}},"rm":{"id":"#tokensConfig/media/rm","properties":{"value":{"type":"string","id":"#tokensConfig/media/rm/value","default":"(prefers-reduced-motion: reduce)"}},"type":"object","default":{"value":"(prefers-reduced-motion: reduce)"}},"landscape":{"id":"#tokensConfig/media/landscape","properties":{"value":{"type":"string","id":"#tokensConfig/media/landscape/value","default":"only screen and (orientation: landscape)"}},"type":"object","default":{"value":"only screen and (orientation: landscape)"}},"portrait":{"id":"#tokensConfig/media/portrait","properties":{"value":{"type":"string","id":"#tokensConfig/media/portrait/value","default":"only screen and (orientation: portrait)"}},"type":"object","default":{"value":"only screen and (orientation: portrait)"}}},"type":"object","default":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}}},"width":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/width","properties":{"screen":{"id":"#tokensConfig/width/screen","properties":{"value":{"type":"string","id":"#tokensConfig/width/screen/value","default":"100vw"}},"type":"object","default":{"value":"100vw"}}},"type":"object","default":{"screen":{"value":"100vw"}}},"height":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/height","properties":{"screen":{"id":"#tokensConfig/height/screen","properties":{"value":{"type":"string","id":"#tokensConfig/height/screen/value","default":"100vh"}},"type":"object","default":{"value":"100vh"}}},"type":"object","default":{"screen":{"value":"100vh"}}},"shadow":{"title":"Your website shadows.","tags":["@studioInput design-token","@studioInputTokenType shadow","@studioIcon mdi:box-shadow"],"id":"#tokensConfig/shadow","properties":{"xs":{"id":"#tokensConfig/shadow/xs","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xs/value","default":"0px 1px 2px 0px #000000"}},"type":"object","default":{"value":"0px 1px 2px 0px #000000"}},"sm":{"id":"#tokensConfig/shadow/sm","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/sm/value","default":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"type":"object","default":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"md":{"id":"#tokensConfig/shadow/md","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/md/value","default":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"type":"object","default":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"lg":{"id":"#tokensConfig/shadow/lg","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/lg/value","default":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"type":"object","default":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"xl":{"id":"#tokensConfig/shadow/xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xl/value","default":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"type":"object","default":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"2xl":{"id":"#tokensConfig/shadow/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/2xl/value","default":"0px 25px 50px -12px {color.gray.900}"}},"type":"object","default":{"value":"0px 25px 50px -12px {color.gray.900}"}},"none":{"id":"#tokensConfig/shadow/none","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/none/value","default":"0px 0px 0px 0px transparent"}},"type":"object","default":{"value":"0px 0px 0px 0px transparent"}}},"type":"object","default":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}}},"size":{"title":"Your website sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/size","properties":{"0":{"id":"#tokensConfig/size/0","properties":{"value":{"type":"string","id":"#tokensConfig/size/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2":{"id":"#tokensConfig/size/2","properties":{"value":{"type":"string","id":"#tokensConfig/size/2/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"4":{"id":"#tokensConfig/size/4","properties":{"value":{"type":"string","id":"#tokensConfig/size/4/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"6":{"id":"#tokensConfig/size/6","properties":{"value":{"type":"string","id":"#tokensConfig/size/6/value","default":"6px"}},"type":"object","default":{"value":"6px"}},"8":{"id":"#tokensConfig/size/8","properties":{"value":{"type":"string","id":"#tokensConfig/size/8/value","default":"8px"}},"type":"object","default":{"value":"8px"}},"12":{"id":"#tokensConfig/size/12","properties":{"value":{"type":"string","id":"#tokensConfig/size/12/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"16":{"id":"#tokensConfig/size/16","properties":{"value":{"type":"string","id":"#tokensConfig/size/16/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"20":{"id":"#tokensConfig/size/20","properties":{"value":{"type":"string","id":"#tokensConfig/size/20/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"24":{"id":"#tokensConfig/size/24","properties":{"value":{"type":"string","id":"#tokensConfig/size/24/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"32":{"id":"#tokensConfig/size/32","properties":{"value":{"type":"string","id":"#tokensConfig/size/32/value","default":"32px"}},"type":"object","default":{"value":"32px"}},"40":{"id":"#tokensConfig/size/40","properties":{"value":{"type":"string","id":"#tokensConfig/size/40/value","default":"40px"}},"type":"object","default":{"value":"40px"}},"48":{"id":"#tokensConfig/size/48","properties":{"value":{"type":"string","id":"#tokensConfig/size/48/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"56":{"id":"#tokensConfig/size/56","properties":{"value":{"type":"string","id":"#tokensConfig/size/56/value","default":"56px"}},"type":"object","default":{"value":"56px"}},"64":{"id":"#tokensConfig/size/64","properties":{"value":{"type":"string","id":"#tokensConfig/size/64/value","default":"64px"}},"type":"object","default":{"value":"64px"}},"80":{"id":"#tokensConfig/size/80","properties":{"value":{"type":"string","id":"#tokensConfig/size/80/value","default":"80px"}},"type":"object","default":{"value":"80px"}},"104":{"id":"#tokensConfig/size/104","properties":{"value":{"type":"string","id":"#tokensConfig/size/104/value","default":"104px"}},"type":"object","default":{"value":"104px"}},"200":{"id":"#tokensConfig/size/200","properties":{"value":{"type":"string","id":"#tokensConfig/size/200/value","default":"200px"}},"type":"object","default":{"value":"200px"}},"xs":{"id":"#tokensConfig/size/xs","properties":{"value":{"type":"string","id":"#tokensConfig/size/xs/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"sm":{"id":"#tokensConfig/size/sm","properties":{"value":{"type":"string","id":"#tokensConfig/size/sm/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"md":{"id":"#tokensConfig/size/md","properties":{"value":{"type":"string","id":"#tokensConfig/size/md/value","default":"28rem"}},"type":"object","default":{"value":"28rem"}},"lg":{"id":"#tokensConfig/size/lg","properties":{"value":{"type":"string","id":"#tokensConfig/size/lg/value","default":"32rem"}},"type":"object","default":{"value":"32rem"}},"xl":{"id":"#tokensConfig/size/xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/xl/value","default":"36rem"}},"type":"object","default":{"value":"36rem"}},"2xl":{"id":"#tokensConfig/size/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/2xl/value","default":"42rem"}},"type":"object","default":{"value":"42rem"}},"3xl":{"id":"#tokensConfig/size/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/3xl/value","default":"48rem"}},"type":"object","default":{"value":"48rem"}},"4xl":{"id":"#tokensConfig/size/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/4xl/value","default":"56rem"}},"type":"object","default":{"value":"56rem"}},"5xl":{"id":"#tokensConfig/size/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/5xl/value","default":"64rem"}},"type":"object","default":{"value":"64rem"}},"6xl":{"id":"#tokensConfig/size/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/6xl/value","default":"72rem"}},"type":"object","default":{"value":"72rem"}},"7xl":{"id":"#tokensConfig/size/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/7xl/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"full":{"id":"#tokensConfig/size/full","properties":{"value":{"type":"string","id":"#tokensConfig/size/full/value","default":"100%"}},"type":"object","default":{"value":"100%"}}},"type":"object","default":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}}},"space":{"title":"Your website spacings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/space","properties":{"0":{"id":"#tokensConfig/space/0","properties":{"value":{"type":"string","id":"#tokensConfig/space/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"1":{"id":"#tokensConfig/space/1","properties":{"value":{"type":"string","id":"#tokensConfig/space/1/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"2":{"id":"#tokensConfig/space/2","properties":{"value":{"type":"string","id":"#tokensConfig/space/2/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"3":{"id":"#tokensConfig/space/3","properties":{"value":{"type":"string","id":"#tokensConfig/space/3/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"4":{"id":"#tokensConfig/space/4","properties":{"value":{"type":"string","id":"#tokensConfig/space/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/space/5","properties":{"value":{"type":"string","id":"#tokensConfig/space/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/space/6","properties":{"value":{"type":"string","id":"#tokensConfig/space/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/space/7","properties":{"value":{"type":"string","id":"#tokensConfig/space/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/space/8","properties":{"value":{"type":"string","id":"#tokensConfig/space/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/space/9","properties":{"value":{"type":"string","id":"#tokensConfig/space/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/space/10","properties":{"value":{"type":"string","id":"#tokensConfig/space/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"11":{"id":"#tokensConfig/space/11","properties":{"value":{"type":"string","id":"#tokensConfig/space/11/value","default":"2.75rem"}},"type":"object","default":{"value":"2.75rem"}},"12":{"id":"#tokensConfig/space/12","properties":{"value":{"type":"string","id":"#tokensConfig/space/12/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"14":{"id":"#tokensConfig/space/14","properties":{"value":{"type":"string","id":"#tokensConfig/space/14/value","default":"3.5rem"}},"type":"object","default":{"value":"3.5rem"}},"16":{"id":"#tokensConfig/space/16","properties":{"value":{"type":"string","id":"#tokensConfig/space/16/value","default":"4rem"}},"type":"object","default":{"value":"4rem"}},"20":{"id":"#tokensConfig/space/20","properties":{"value":{"type":"string","id":"#tokensConfig/space/20/value","default":"5rem"}},"type":"object","default":{"value":"5rem"}},"24":{"id":"#tokensConfig/space/24","properties":{"value":{"type":"string","id":"#tokensConfig/space/24/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"28":{"id":"#tokensConfig/space/28","properties":{"value":{"type":"string","id":"#tokensConfig/space/28/value","default":"7rem"}},"type":"object","default":{"value":"7rem"}},"32":{"id":"#tokensConfig/space/32","properties":{"value":{"type":"string","id":"#tokensConfig/space/32/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}},"36":{"id":"#tokensConfig/space/36","properties":{"value":{"type":"string","id":"#tokensConfig/space/36/value","default":"9rem"}},"type":"object","default":{"value":"9rem"}},"40":{"id":"#tokensConfig/space/40","properties":{"value":{"type":"string","id":"#tokensConfig/space/40/value","default":"10rem"}},"type":"object","default":{"value":"10rem"}},"44":{"id":"#tokensConfig/space/44","properties":{"value":{"type":"string","id":"#tokensConfig/space/44/value","default":"11rem"}},"type":"object","default":{"value":"11rem"}},"48":{"id":"#tokensConfig/space/48","properties":{"value":{"type":"string","id":"#tokensConfig/space/48/value","default":"12rem"}},"type":"object","default":{"value":"12rem"}},"52":{"id":"#tokensConfig/space/52","properties":{"value":{"type":"string","id":"#tokensConfig/space/52/value","default":"13rem"}},"type":"object","default":{"value":"13rem"}},"56":{"id":"#tokensConfig/space/56","properties":{"value":{"type":"string","id":"#tokensConfig/space/56/value","default":"14rem"}},"type":"object","default":{"value":"14rem"}},"60":{"id":"#tokensConfig/space/60","properties":{"value":{"type":"string","id":"#tokensConfig/space/60/value","default":"15rem"}},"type":"object","default":{"value":"15rem"}},"64":{"id":"#tokensConfig/space/64","properties":{"value":{"type":"string","id":"#tokensConfig/space/64/value","default":"16rem"}},"type":"object","default":{"value":"16rem"}},"72":{"id":"#tokensConfig/space/72","properties":{"value":{"type":"string","id":"#tokensConfig/space/72/value","default":"18rem"}},"type":"object","default":{"value":"18rem"}},"80":{"id":"#tokensConfig/space/80","properties":{"value":{"type":"string","id":"#tokensConfig/space/80/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"96":{"id":"#tokensConfig/space/96","properties":{"value":{"type":"string","id":"#tokensConfig/space/96/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"px":{"id":"#tokensConfig/space/px","properties":{"value":{"type":"string","id":"#tokensConfig/space/px/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"rem":{"id":"#tokensConfig/space/rem","properties":{"125":{"id":"#tokensConfig/space/rem/125","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/125/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"375":{"id":"#tokensConfig/space/rem/375","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/375/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"625":{"id":"#tokensConfig/space/rem/625","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/625/value","default":"0.625rem"}},"type":"object","default":{"value":"0.625rem"}},"875":{"id":"#tokensConfig/space/rem/875","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/875/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}}},"type":"object","default":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"type":"object","default":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"borderWidth":{"title":"Your website border widths.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/borderWidth","properties":{"noBorder":{"id":"#tokensConfig/borderWidth/noBorder","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/noBorder/value","default":"0"}},"type":"object","default":{"value":"0"}},"sm":{"id":"#tokensConfig/borderWidth/sm","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/sm/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"md":{"id":"#tokensConfig/borderWidth/md","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/md/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"lg":{"id":"#tokensConfig/borderWidth/lg","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/lg/value","default":"3px"}},"type":"object","default":{"value":"3px"}}},"type":"object","default":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}}},"opacity":{"title":"Your website opacities.","tags":["@studioInput design-token","@studioInputTokenType opacity","@studioIcon material-symbols:opacity"],"id":"#tokensConfig/opacity","properties":{"noOpacity":{"id":"#tokensConfig/opacity/noOpacity","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/noOpacity/value","default":"0"}},"type":"object","default":{"value":"0"}},"bright":{"id":"#tokensConfig/opacity/bright","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/bright/value","default":"0.1"}},"type":"object","default":{"value":"0.1"}},"light":{"id":"#tokensConfig/opacity/light","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/light/value","default":"0.15"}},"type":"object","default":{"value":"0.15"}},"soft":{"id":"#tokensConfig/opacity/soft","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/soft/value","default":"0.3"}},"type":"object","default":{"value":"0.3"}},"medium":{"id":"#tokensConfig/opacity/medium","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/medium/value","default":"0.5"}},"type":"object","default":{"value":"0.5"}},"high":{"id":"#tokensConfig/opacity/high","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/high/value","default":"0.8"}},"type":"object","default":{"value":"0.8"}},"total":{"id":"#tokensConfig/opacity/total","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/total/value","default":"1"}},"type":"object","default":{"value":"1"}}},"type":"object","default":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}}},"fontWeight":{"title":"Your website font weights.","tags":["@studioInput design-token","@studioInputTokenType font-weight","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontWeight","properties":{"thin":{"id":"#tokensConfig/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"letterSpacing":{"title":"Your website letter spacings.","tags":["@studioInput design-token","@studioInputTokenType letter-spacing","@studioIcon fluent:font-space-tracking-out-24-filled"],"id":"#tokensConfig/letterSpacing","properties":{"tighter":{"id":"#tokensConfig/letterSpacing/tighter","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tighter/value","default":"-0.05em"}},"type":"object","default":{"value":"-0.05em"}},"tight":{"id":"#tokensConfig/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"normal":{"id":"#tokensConfig/letterSpacing/normal","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/normal/value","default":"0em"}},"type":"object","default":{"value":"0em"}},"wide":{"id":"#tokensConfig/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}},"wider":{"id":"#tokensConfig/letterSpacing/wider","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wider/value","default":"0.05em"}},"type":"object","default":{"value":"0.05em"}},"widest":{"id":"#tokensConfig/letterSpacing/widest","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/widest/value","default":"0.1em"}},"type":"object","default":{"value":"0.1em"}}},"type":"object","default":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}}},"text":{"title":"Your website text scales.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:format-size-rounded"],"id":"#tokensConfig/text","properties":{"xs":{"id":"#tokensConfig/text/xs","properties":{"fontSize":{"id":"#tokensConfig/text/xs/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/fontSize/value","default":"{fontSize.xs}"}},"type":"object","default":{"value":"{fontSize.xs}"}},"lineHeight":{"id":"#tokensConfig/text/xs/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/lineHeight/value","default":"{lead.4}"}},"type":"object","default":{"value":"{lead.4}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}}},"sm":{"id":"#tokensConfig/text/sm","properties":{"fontSize":{"id":"#tokensConfig/text/sm/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/fontSize/value","default":"{fontSize.sm}"}},"type":"object","default":{"value":"{fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/text/sm/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/lineHeight/value","default":"{lead.5}"}},"type":"object","default":{"value":"{lead.5}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}}},"base":{"id":"#tokensConfig/text/base","properties":{"fontSize":{"id":"#tokensConfig/text/base/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/fontSize/value","default":"{fontSize.base}"}},"type":"object","default":{"value":"{fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/text/base/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/lineHeight/value","default":"{lead.6}"}},"type":"object","default":{"value":"{lead.6}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}}},"lg":{"id":"#tokensConfig/text/lg","properties":{"fontSize":{"id":"#tokensConfig/text/lg/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/fontSize/value","default":"{fontSize.lg}"}},"type":"object","default":{"value":"{fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/text/lg/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}}},"xl":{"id":"#tokensConfig/text/xl","properties":{"fontSize":{"id":"#tokensConfig/text/xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/fontSize/value","default":"{fontSize.xl}"}},"type":"object","default":{"value":"{fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/text/xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}}},"2xl":{"id":"#tokensConfig/text/2xl","properties":{"fontSize":{"id":"#tokensConfig/text/2xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/fontSize/value","default":"{fontSize.2xl}"}},"type":"object","default":{"value":"{fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/text/2xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/lineHeight/value","default":"{lead.8}"}},"type":"object","default":{"value":"{lead.8}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}}},"3xl":{"id":"#tokensConfig/text/3xl","properties":{"fontSize":{"id":"#tokensConfig/text/3xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/fontSize/value","default":"{fontSize.3xl}"}},"type":"object","default":{"value":"{fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/text/3xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/lineHeight/value","default":"{lead.9}"}},"type":"object","default":{"value":"{lead.9}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}}},"4xl":{"id":"#tokensConfig/text/4xl","properties":{"fontSize":{"id":"#tokensConfig/text/4xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/fontSize/value","default":"{fontSize.4xl}"}},"type":"object","default":{"value":"{fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/text/4xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/lineHeight/value","default":"{lead.10}"}},"type":"object","default":{"value":"{lead.10}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}}},"5xl":{"id":"#tokensConfig/text/5xl","properties":{"fontSize":{"id":"#tokensConfig/text/5xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/fontSize/value","default":"{fontSize.5xl}"}},"type":"object","default":{"value":"{fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/text/5xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}}},"6xl":{"id":"#tokensConfig/text/6xl","properties":{"fontSize":{"id":"#tokensConfig/text/6xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/fontSize/value","default":"{fontSize.6xl}"}},"type":"object","default":{"value":"{fontSize.6xl}"}},"lineHeight":{"id":"#tokensConfig/text/6xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}},"type":"object","default":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"type":"object","default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"tokensConfig":{"color":{"primary":{"50":{"value":"#fff2cc","variable":"var(--color-primary-50)","original":"#fff2cc"},"100":{"value":"#ffe599","variable":"var(--color-primary-100)","original":"#ffe599"},"200":{"value":"#ffd966","variable":"var(--color-primary-200)","original":"#ffd966"},"300":{"value":"#f1c232","variable":"var(--color-primary-300)","original":"#f1c232"},"400":{"value":"#f1c232","variable":"var(--color-primary-400)","original":"#f1c232"},"500":{"value":"#f1c232","variable":"var(--color-primary-500)","original":"#f1c232"},"600":{"value":"#f1c232","variable":"var(--color-primary-600)","original":"#f1c232"},"700":{"value":"#f1c232","variable":"var(--color-primary-700)","original":"#f1c232"},"800":{"value":"#f1c232","variable":"var(--color-primary-800)","original":"#f1c232"},"900":{"value":"#f1c232","variable":"var(--color-primary-900)","original":"#f1c232"}},"white":{"value":"#ffffff","variable":"var(--color-white)","original":"#ffffff"},"black":{"value":"#0c0c0d","variable":"var(--color-black)","original":"#0c0c0d"},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--color-secondary-900)","original":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa","variable":"var(--color-gray-50)","original":"#fafafa"},"100":{"value":"#f4f4f5","variable":"var(--color-gray-100)","original":"#f4f4f5"},"200":{"value":"#e4e4e7","variable":"var(--color-gray-200)","original":"#e4e4e7"},"300":{"value":"#D4d4d8","variable":"var(--color-gray-300)","original":"#D4d4d8"},"400":{"value":"#a1a1aa","variable":"var(--color-gray-400)","original":"#a1a1aa"},"500":{"value":"#71717A","variable":"var(--color-gray-500)","original":"#71717A"},"600":{"value":"#52525B","variable":"var(--color-gray-600)","original":"#52525B"},"700":{"value":"#3f3f46","variable":"var(--color-gray-700)","original":"#3f3f46"},"800":{"value":"#27272A","variable":"var(--color-gray-800)","original":"#27272A"},"900":{"value":"#18181B","variable":"var(--color-gray-900)","original":"#18181B"}},"green":{"50":{"value":"#d6ffee","variable":"var(--color-green-50)","original":"#d6ffee"},"100":{"value":"#acffdd","variable":"var(--color-green-100)","original":"#acffdd"},"200":{"value":"#83ffcc","variable":"var(--color-green-200)","original":"#83ffcc"},"300":{"value":"#30ffaa","variable":"var(--color-green-300)","original":"#30ffaa"},"400":{"value":"#00dc82","variable":"var(--color-green-400)","original":"#00dc82"},"500":{"value":"#00bd6f","variable":"var(--color-green-500)","original":"#00bd6f"},"600":{"value":"#009d5d","variable":"var(--color-green-600)","original":"#009d5d"},"700":{"value":"#007e4a","variable":"var(--color-green-700)","original":"#007e4a"},"800":{"value":"#005e38","variable":"var(--color-green-800)","original":"#005e38"},"900":{"value":"#003f25","variable":"var(--color-green-900)","original":"#003f25"}},"yellow":{"50":{"value":"#fdf6db","variable":"var(--color-yellow-50)","original":"#fdf6db"},"100":{"value":"#fcedb7","variable":"var(--color-yellow-100)","original":"#fcedb7"},"200":{"value":"#fae393","variable":"var(--color-yellow-200)","original":"#fae393"},"300":{"value":"#f8da70","variable":"var(--color-yellow-300)","original":"#f8da70"},"400":{"value":"#f7d14c","variable":"var(--color-yellow-400)","original":"#f7d14c"},"500":{"value":"#f5c828","variable":"var(--color-yellow-500)","original":"#f5c828"},"600":{"value":"#daac0a","variable":"var(--color-yellow-600)","original":"#daac0a"},"700":{"value":"#a38108","variable":"var(--color-yellow-700)","original":"#a38108"},"800":{"value":"#6d5605","variable":"var(--color-yellow-800)","original":"#6d5605"},"900":{"value":"#362b03","variable":"var(--color-yellow-900)","original":"#362b03"}},"orange":{"50":{"value":"#ffe9d9","variable":"var(--color-orange-50)","original":"#ffe9d9"},"100":{"value":"#ffd3b3","variable":"var(--color-orange-100)","original":"#ffd3b3"},"200":{"value":"#ffbd8d","variable":"var(--color-orange-200)","original":"#ffbd8d"},"300":{"value":"#ffa666","variable":"var(--color-orange-300)","original":"#ffa666"},"400":{"value":"#ff9040","variable":"var(--color-orange-400)","original":"#ff9040"},"500":{"value":"#ff7a1a","variable":"var(--color-orange-500)","original":"#ff7a1a"},"600":{"value":"#e15e00","variable":"var(--color-orange-600)","original":"#e15e00"},"700":{"value":"#a94700","variable":"var(--color-orange-700)","original":"#a94700"},"800":{"value":"#702f00","variable":"var(--color-orange-800)","original":"#702f00"},"900":{"value":"#381800","variable":"var(--color-orange-900)","original":"#381800"}},"red":{"50":{"value":"#ffdbd9","variable":"var(--color-red-50)","original":"#ffdbd9"},"100":{"value":"#ffb7b3","variable":"var(--color-red-100)","original":"#ffb7b3"},"200":{"value":"#ff948d","variable":"var(--color-red-200)","original":"#ff948d"},"300":{"value":"#ff7066","variable":"var(--color-red-300)","original":"#ff7066"},"400":{"value":"#ff4c40","variable":"var(--color-red-400)","original":"#ff4c40"},"500":{"value":"#ff281a","variable":"var(--color-red-500)","original":"#ff281a"},"600":{"value":"#e10e00","variable":"var(--color-red-600)","original":"#e10e00"},"700":{"value":"#a90a00","variable":"var(--color-red-700)","original":"#a90a00"},"800":{"value":"#700700","variable":"var(--color-red-800)","original":"#700700"},"900":{"value":"#380300","variable":"var(--color-red-900)","original":"#380300"}},"pear":{"50":{"value":"#f7f8dc","variable":"var(--color-pear-50)","original":"#f7f8dc"},"100":{"value":"#eff0ba","variable":"var(--color-pear-100)","original":"#eff0ba"},"200":{"value":"#e8e997","variable":"var(--color-pear-200)","original":"#e8e997"},"300":{"value":"#e0e274","variable":"var(--color-pear-300)","original":"#e0e274"},"400":{"value":"#d8da52","variable":"var(--color-pear-400)","original":"#d8da52"},"500":{"value":"#d0d32f","variable":"var(--color-pear-500)","original":"#d0d32f"},"600":{"value":"#a8aa24","variable":"var(--color-pear-600)","original":"#a8aa24"},"700":{"value":"#7e801b","variable":"var(--color-pear-700)","original":"#7e801b"},"800":{"value":"#545512","variable":"var(--color-pear-800)","original":"#545512"},"900":{"value":"#2a2b09","variable":"var(--color-pear-900)","original":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8","variable":"var(--color-teal-50)","original":"#d7faf8"},"100":{"value":"#aff4f0","variable":"var(--color-teal-100)","original":"#aff4f0"},"200":{"value":"#87efe9","variable":"var(--color-teal-200)","original":"#87efe9"},"300":{"value":"#5fe9e1","variable":"var(--color-teal-300)","original":"#5fe9e1"},"400":{"value":"#36e4da","variable":"var(--color-teal-400)","original":"#36e4da"},"500":{"value":"#1cd1c6","variable":"var(--color-teal-500)","original":"#1cd1c6"},"600":{"value":"#16a79e","variable":"var(--color-teal-600)","original":"#16a79e"},"700":{"value":"#117d77","variable":"var(--color-teal-700)","original":"#117d77"},"800":{"value":"#0b544f","variable":"var(--color-teal-800)","original":"#0b544f"},"900":{"value":"#062a28","variable":"var(--color-teal-900)","original":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff","variable":"var(--color-lightblue-50)","original":"#d9f8ff"},"100":{"value":"#b3f1ff","variable":"var(--color-lightblue-100)","original":"#b3f1ff"},"200":{"value":"#8deaff","variable":"var(--color-lightblue-200)","original":"#8deaff"},"300":{"value":"#66e4ff","variable":"var(--color-lightblue-300)","original":"#66e4ff"},"400":{"value":"#40ddff","variable":"var(--color-lightblue-400)","original":"#40ddff"},"500":{"value":"#1ad6ff","variable":"var(--color-lightblue-500)","original":"#1ad6ff"},"600":{"value":"#00b9e1","variable":"var(--color-lightblue-600)","original":"#00b9e1"},"700":{"value":"#008aa9","variable":"var(--color-lightblue-700)","original":"#008aa9"},"800":{"value":"#005c70","variable":"var(--color-lightblue-800)","original":"#005c70"},"900":{"value":"#002e38","variable":"var(--color-lightblue-900)","original":"#002e38"}},"blue":{"50":{"value":"#d9f1ff","variable":"var(--color-blue-50)","original":"#d9f1ff"},"100":{"value":"#b3e4ff","variable":"var(--color-blue-100)","original":"#b3e4ff"},"200":{"value":"#8dd6ff","variable":"var(--color-blue-200)","original":"#8dd6ff"},"300":{"value":"#66c8ff","variable":"var(--color-blue-300)","original":"#66c8ff"},"400":{"value":"#40bbff","variable":"var(--color-blue-400)","original":"#40bbff"},"500":{"value":"#1aadff","variable":"var(--color-blue-500)","original":"#1aadff"},"600":{"value":"#0090e1","variable":"var(--color-blue-600)","original":"#0090e1"},"700":{"value":"#006ca9","variable":"var(--color-blue-700)","original":"#006ca9"},"800":{"value":"#004870","variable":"var(--color-blue-800)","original":"#004870"},"900":{"value":"#002438","variable":"var(--color-blue-900)","original":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff","variable":"var(--color-indigoblue-50)","original":"#d9e5ff"},"100":{"value":"#b3cbff","variable":"var(--color-indigoblue-100)","original":"#b3cbff"},"200":{"value":"#8db0ff","variable":"var(--color-indigoblue-200)","original":"#8db0ff"},"300":{"value":"#6696ff","variable":"var(--color-indigoblue-300)","original":"#6696ff"},"400":{"value":"#407cff","variable":"var(--color-indigoblue-400)","original":"#407cff"},"500":{"value":"#1a62ff","variable":"var(--color-indigoblue-500)","original":"#1a62ff"},"600":{"value":"#0047e1","variable":"var(--color-indigoblue-600)","original":"#0047e1"},"700":{"value":"#0035a9","variable":"var(--color-indigoblue-700)","original":"#0035a9"},"800":{"value":"#002370","variable":"var(--color-indigoblue-800)","original":"#002370"},"900":{"value":"#001238","variable":"var(--color-indigoblue-900)","original":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb","variable":"var(--color-royalblue-50)","original":"#dfdbfb"},"100":{"value":"#c0b7f7","variable":"var(--color-royalblue-100)","original":"#c0b7f7"},"200":{"value":"#a093f3","variable":"var(--color-royalblue-200)","original":"#a093f3"},"300":{"value":"#806ff0","variable":"var(--color-royalblue-300)","original":"#806ff0"},"400":{"value":"#614bec","variable":"var(--color-royalblue-400)","original":"#614bec"},"500":{"value":"#4127e8","variable":"var(--color-royalblue-500)","original":"#4127e8"},"600":{"value":"#2c15c4","variable":"var(--color-royalblue-600)","original":"#2c15c4"},"700":{"value":"#211093","variable":"var(--color-royalblue-700)","original":"#211093"},"800":{"value":"#160a62","variable":"var(--color-royalblue-800)","original":"#160a62"},"900":{"value":"#0b0531","variable":"var(--color-royalblue-900)","original":"#0b0531"}},"purple":{"50":{"value":"#ead9ff","variable":"var(--color-purple-50)","original":"#ead9ff"},"100":{"value":"#d5b3ff","variable":"var(--color-purple-100)","original":"#d5b3ff"},"200":{"value":"#c08dff","variable":"var(--color-purple-200)","original":"#c08dff"},"300":{"value":"#ab66ff","variable":"var(--color-purple-300)","original":"#ab66ff"},"400":{"value":"#9640ff","variable":"var(--color-purple-400)","original":"#9640ff"},"500":{"value":"#811aff","variable":"var(--color-purple-500)","original":"#811aff"},"600":{"value":"#6500e1","variable":"var(--color-purple-600)","original":"#6500e1"},"700":{"value":"#4c00a9","variable":"var(--color-purple-700)","original":"#4c00a9"},"800":{"value":"#330070","variable":"var(--color-purple-800)","original":"#330070"},"900":{"value":"#190038","variable":"var(--color-purple-900)","original":"#190038"}},"pink":{"50":{"value":"#ffd9f2","variable":"var(--color-pink-50)","original":"#ffd9f2"},"100":{"value":"#ffb3e5","variable":"var(--color-pink-100)","original":"#ffb3e5"},"200":{"value":"#ff8dd8","variable":"var(--color-pink-200)","original":"#ff8dd8"},"300":{"value":"#ff66cc","variable":"var(--color-pink-300)","original":"#ff66cc"},"400":{"value":"#ff40bf","variable":"var(--color-pink-400)","original":"#ff40bf"},"500":{"value":"#ff1ab2","variable":"var(--color-pink-500)","original":"#ff1ab2"},"600":{"value":"#e10095","variable":"var(--color-pink-600)","original":"#e10095"},"700":{"value":"#a90070","variable":"var(--color-pink-700)","original":"#a90070"},"800":{"value":"#70004b","variable":"var(--color-pink-800)","original":"#70004b"},"900":{"value":"#380025","variable":"var(--color-pink-900)","original":"#380025"}},"ruby":{"50":{"value":"#ffd9e4","variable":"var(--color-ruby-50)","original":"#ffd9e4"},"100":{"value":"#ffb3c9","variable":"var(--color-ruby-100)","original":"#ffb3c9"},"200":{"value":"#ff8dae","variable":"var(--color-ruby-200)","original":"#ff8dae"},"300":{"value":"#ff6694","variable":"var(--color-ruby-300)","original":"#ff6694"},"400":{"value":"#ff4079","variable":"var(--color-ruby-400)","original":"#ff4079"},"500":{"value":"#ff1a5e","variable":"var(--color-ruby-500)","original":"#ff1a5e"},"600":{"value":"#e10043","variable":"var(--color-ruby-600)","original":"#e10043"},"700":{"value":"#a90032","variable":"var(--color-ruby-700)","original":"#a90032"},"800":{"value":"#700021","variable":"var(--color-ruby-800)","original":"#700021"},"900":{"value":"#380011","variable":"var(--color-ruby-900)","original":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"var(--color-gray-900)","dark":"var(--color-gray-50)"},"variable":"var(--elements-text-primary-color-static)","original":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"var(--color-gray-500)","dark":"var(--color-gray-400)"},"variable":"var(--elements-text-secondary-color-static)","original":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"var(--color-gray-700)","dark":"var(--color-gray-200)"},"variable":"var(--elements-text-secondary-color-hover)","original":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem","variable":"var(--elements-container-maxWidth)","original":"80rem"},"padding":{"mobile":{"value":"var(--space-4)","variable":"var(--elements-container-padding-mobile)","original":"{space.4}"},"xs":{"value":"var(--space-4)","variable":"var(--elements-container-padding-xs)","original":"{space.4}"},"sm":{"value":"var(--space-6)","variable":"var(--elements-container-padding-sm)","original":"{space.6}"},"md":{"value":"var(--space-6)","variable":"var(--elements-container-padding-md)","original":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)","variable":"var(--elements-backdrop-filter)","original":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"},"variable":"var(--elements-backdrop-background)","original":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-border-primary-static)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-primary-hover)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-secondary-static)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""},"variable":"var(--elements-border-secondary-hover)","original":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-surface-background-base)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"var(--color-primary-600)","dark":"var(--color-primary-400)"},"variable":"var(--elements-state-primary-color-primary)","original":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"var(--color-primary-700)","dark":"var(--color-primary-200)"},"variable":"var(--elements-state-primary-color-secondary)","original":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-primary-50)","dark":"var(--color-primary-900)"},"variable":"var(--elements-state-primary-backgroundColor-primary)","original":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-backgroundColor-secondary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-borderColor-primary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"var(--color-primary-200)","dark":"var(--color-primary-700)"},"variable":"var(--elements-state-primary-borderColor-secondary)","original":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"var(--color-blue-500)","dark":"var(--color-blue-400)"},"variable":"var(--elements-state-info-color-primary)","original":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"var(--color-blue-600)","dark":"var(--color-blue-200)"},"variable":"var(--elements-state-info-color-secondary)","original":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-blue-50)","dark":"var(--color-blue-900)"},"variable":"var(--elements-state-info-backgroundColor-primary)","original":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-backgroundColor-secondary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-borderColor-primary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"var(--color-blue-200)","dark":"var(--color-blue-700)"},"variable":"var(--elements-state-info-borderColor-secondary)","original":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"var(--color-green-500)","dark":"var(--color-green-400)"},"variable":"var(--elements-state-success-color-primary)","original":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"var(--color-green-600)","dark":"var(--color-green-200)"},"variable":"var(--elements-state-success-color-secondary)","original":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-green-50)","dark":"var(--color-green-900)"},"variable":"var(--elements-state-success-backgroundColor-primary)","original":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-backgroundColor-secondary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-borderColor-primary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"var(--color-green-200)","dark":"var(--color-green-700)"},"variable":"var(--elements-state-success-borderColor-secondary)","original":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"var(--color-yellow-600)","dark":"var(--color-yellow-400)"},"variable":"var(--elements-state-warning-color-primary)","original":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"var(--color-yellow-700)","dark":"var(--color-yellow-200)"},"variable":"var(--elements-state-warning-color-secondary)","original":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-yellow-50)","dark":"var(--color-yellow-900)"},"variable":"var(--elements-state-warning-backgroundColor-primary)","original":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-backgroundColor-secondary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-borderColor-primary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"var(--color-yellow-200)","dark":"var(--color-yellow-700)"},"variable":"var(--elements-state-warning-borderColor-secondary)","original":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"var(--color-red-500)","dark":"var(--color-red-300)"},"variable":"var(--elements-state-danger-color-primary)","original":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"var(--color-red-600)","dark":"var(--color-red-200)"},"variable":"var(--elements-state-danger-color-secondary)","original":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-red-50)","dark":"var(--color-red-900)"},"variable":"var(--elements-state-danger-backgroundColor-primary)","original":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-backgroundColor-secondary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-borderColor-primary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"var(--color-red-200)","dark":"var(--color-red-700)"},"variable":"var(--elements-state-danger-borderColor-secondary)","original":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px","variable":"var(--typography-verticalMargin-sm)","original":"16px"},"base":{"value":"32px","variable":"var(--typography-verticalMargin-base)","original":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em","variable":"var(--typography-letterSpacing-tight)","original":"-0.025em"},"wide":{"value":"0.025em","variable":"var(--typography-letterSpacing-wide)","original":"0.025em"}},"fontSize":{"xs":{"value":"12px","variable":"var(--typography-fontSize-xs)","original":"12px"},"sm":{"value":"14px","variable":"var(--typography-fontSize-sm)","original":"14px"},"base":{"value":"16px","variable":"var(--typography-fontSize-base)","original":"16px"},"lg":{"value":"18px","variable":"var(--typography-fontSize-lg)","original":"18px"},"xl":{"value":"20px","variable":"var(--typography-fontSize-xl)","original":"20px"},"2xl":{"value":"24px","variable":"var(--typography-fontSize-2xl)","original":"24px"},"3xl":{"value":"30px","variable":"var(--typography-fontSize-3xl)","original":"30px"},"4xl":{"value":"36px","variable":"var(--typography-fontSize-4xl)","original":"36px"},"5xl":{"value":"48px","variable":"var(--typography-fontSize-5xl)","original":"48px"},"6xl":{"value":"60px","variable":"var(--typography-fontSize-6xl)","original":"60px"},"7xl":{"value":"72px","variable":"var(--typography-fontSize-7xl)","original":"72px"},"8xl":{"value":"96px","variable":"var(--typography-fontSize-8xl)","original":"96px"},"9xl":{"value":"128px","variable":"var(--typography-fontSize-9xl)","original":"128px"}},"fontWeight":{"thin":{"value":"100","variable":"var(--typography-fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--typography-fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--typography-fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--typography-fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--typography-fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--typography-fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--typography-fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--typography-fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--typography-fontWeight-black)","original":"900"}},"lead":{"none":{"value":"1","variable":"var(--typography-lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--typography-lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--typography-lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--typography-lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--typography-lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--typography-lead-loose)","original":"2"}},"font":{"display":{"value":"var(--font-sans)","variable":"var(--typography-font-display)","original":"{font.sans}"},"body":{"value":"var(--font-sans)","variable":"var(--typography-font-body)","original":"{font.sans}"},"code":{"value":"var(--font-mono)","variable":"var(--typography-font-code)","original":"{font.mono}"}},"color":{"primary":{"50":{"value":"var(--color-primary-50)","variable":"var(--typography-color-primary-50)","original":"{color.primary.50}"},"100":{"value":"var(--color-primary-100)","variable":"var(--typography-color-primary-100)","original":"{color.primary.100}"},"200":{"value":"var(--color-primary-200)","variable":"var(--typography-color-primary-200)","original":"{color.primary.200}"},"300":{"value":"var(--color-primary-300)","variable":"var(--typography-color-primary-300)","original":"{color.primary.300}"},"400":{"value":"var(--color-primary-400)","variable":"var(--typography-color-primary-400)","original":"{color.primary.400}"},"500":{"value":"var(--color-primary-500)","variable":"var(--typography-color-primary-500)","original":"{color.primary.500}"},"600":{"value":"var(--color-primary-600)","variable":"var(--typography-color-primary-600)","original":"{color.primary.600}"},"700":{"value":"var(--color-primary-700)","variable":"var(--typography-color-primary-700)","original":"{color.primary.700}"},"800":{"value":"var(--color-primary-800)","variable":"var(--typography-color-primary-800)","original":"{color.primary.800}"},"900":{"value":"var(--color-primary-900)","variable":"var(--typography-color-primary-900)","original":"{color.primary.900}"}},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--typography-color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--typography-color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--typography-color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--typography-color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--typography-color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--typography-color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--typography-color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--typography-color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--typography-color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--typography-color-secondary-900)","original":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-p-fontSize)","original":"{typography.fontSize.base}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-p-lineHeight)","original":"{typography.lead.normal}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-p-margin)","original":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"var(--typography-verticalMargin-base) 0 0 0","variable":"var(--prose-p-br-margin)","original":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem","variable":"var(--prose-h1-margin)","original":"0 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-5xl)","variable":"var(--prose-h1-fontSize)","original":"{typography.fontSize.5xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h1-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-bold)","variable":"var(--prose-h1-fontWeight)","original":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h1-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h1-iconSize)","original":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h2-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-4xl)","variable":"var(--prose-h2-fontSize)","original":"{typography.fontSize.4xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h2-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h2-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h2-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h2-iconSize)","original":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h3-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h3-fontSize)","original":"{typography.fontSize.3xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h3-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h3-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h3-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h3-iconSize)","original":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h4-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h4-fontSize)","original":"{typography.fontSize.2xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h4-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h4-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h4-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h4-iconSize)","original":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h5-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h5-fontSize)","original":"{typography.fontSize.xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h5-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h5-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h5-iconSize)","original":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h6-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h6-fontSize)","original":"{typography.fontSize.lg}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-h6-lineHeight)","original":"{typography.lead.normal}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h6-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-h6-iconSize)","original":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-strong-fontWeight)","original":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-img-margin)","original":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none","variable":"var(--prose-a-textDecoration)","original":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"},"variable":"var(--prose-a-color-static)","original":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-400)"},"variable":"var(--prose-a-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px","variable":"var(--prose-a-border-width)","original":"1px"},"style":{"static":{"value":"dashed","variable":"var(--prose-a-border-style-static)","original":"dashed"},"hover":{"value":"solid","variable":"var(--prose-a-border-style-hover)","original":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px","variable":"var(--prose-a-border-distance)","original":"2px"}},"fontWeight":{"value":"var(--typography-fontWeight-medium)","variable":"var(--prose-a-fontWeight)","original":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none","variable":"var(--prose-a-hasCode-borderBottom)","original":"none"}},"code":{"border":{"width":{"value":"var(--prose-a-border-width)","variable":"var(--prose-a-code-border-width)","original":"{prose.a.border.width}"},"style":{"value":"var(--prose-a-border-style-static)","variable":"var(--prose-a-code-border-style)","original":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-a-code-border-color-static)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-600)"},"variable":"var(--prose-a-code-border-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"var(--typography-color-primary-50)","dark":"var(--typography-color-primary-900)"},"variable":"var(--prose-a-code-background-hover)","original":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-blockquote-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px","variable":"var(--prose-blockquote-padding)","original":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'","variable":"var(--prose-blockquote-quotes)","original":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-blockquote-color)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px","variable":"var(--prose-blockquote-border-width)","original":"4px"},"style":{"value":"solid","variable":"var(--prose-blockquote-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-blockquote-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc","variable":"var(--prose-ul-listStyleType)","original":"disc"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ul-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ul-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ul-li-markerColor)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal","variable":"var(--prose-ol-listStyleType)","original":"decimal"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ol-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ol-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ol-li-markerColor)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"var(--typography-verticalMargin-sm) 0","variable":"var(--prose-li-margin)","original":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside","variable":"var(--prose-li-listStylePosition)","original":"outside"}},"hr":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-hr-margin)","original":"{typography.verticalMargin.base} 0"},"style":{"value":"solid","variable":"var(--prose-hr-style)","original":"solid"},"width":{"value":"1px","variable":"var(--prose-hr-width)","original":"1px"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-hr-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-table-margin)","original":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left","variable":"var(--prose-table-textAlign)","original":"left"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-table-fontSize)","original":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit","variable":"var(--prose-table-lineHeight)","original":"inherit"}},"thead":{"border":{"width":{"value":"0px","variable":"var(--prose-thead-border-width)","original":"0px"},"style":{"value":"solid","variable":"var(--prose-thead-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-border-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px","variable":"var(--prose-thead-borderBottom-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-thead-borderBottom-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"var(--typography-color-secondary-600)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-th-color)","original":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)","variable":"var(--prose-th-padding)","original":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-th-fontWeight)","original":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px","variable":"var(--prose-tbody-tr-borderBottom-width)","original":"1px"},"style":{"value":"dashed","variable":"var(--prose-tbody-tr-borderBottom-style)","original":"dashed"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-tbody-tr-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-tbody-td-padding)","original":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-tbody-code-inline-fontSize)","original":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-block-fontSize)","original":"{typography.fontSize.sm}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-code-block-margin)","original":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px","variable":"var(--prose-code-block-border-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-code-block-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-code-block-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-block-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-block-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-code-block-pre-padding)","original":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem","variable":"var(--prose-code-inline-borderRadius)","original":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem","variable":"var(--prose-code-inline-padding)","original":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-inline-fontSize)","original":"{typography.fontSize.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-normal)","variable":"var(--prose-code-inline-fontWeight)","original":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-inline-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-inline-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem","variable":"var(--radii-sm)","original":"0.375rem"},"md":{"value":"0.5rem","variable":"var(--radii-md)","original":"0.5rem"},"lg":{"value":"0.75rem","variable":"var(--radii-lg)","original":"0.75rem"},"none":{"value":"0px","variable":"var(--radii-none)","original":"0px"},"2xs":{"value":"0.125rem","variable":"var(--radii-2xs)","original":"0.125rem"},"xs":{"value":"0.25rem","variable":"var(--radii-xs)","original":"0.25rem"},"xl":{"value":"1rem","variable":"var(--radii-xl)","original":"1rem"},"2xl":{"value":"1.5rem","variable":"var(--radii-2xl)","original":"1.5rem"},"3xl":{"value":"1.75rem","variable":"var(--radii-3xl)","original":"1.75rem"},"full":{"value":"9999px","variable":"var(--radii-full)","original":"9999px"}},"fontSize":{"xs":{"value":"0.75rem","variable":"var(--fontSize-xs)","original":"0.75rem"},"sm":{"value":"0.875rem","variable":"var(--fontSize-sm)","original":"0.875rem"},"base":{"value":"1rem","variable":"var(--fontSize-base)","original":"1rem"},"lg":{"value":"1.125rem","variable":"var(--fontSize-lg)","original":"1.125rem"},"xl":{"value":"1.25rem","variable":"var(--fontSize-xl)","original":"1.25rem"},"2xl":{"value":"1.5rem","variable":"var(--fontSize-2xl)","original":"1.5rem"},"3xl":{"value":"1.875rem","variable":"var(--fontSize-3xl)","original":"1.875rem"},"4xl":{"value":"2.25rem","variable":"var(--fontSize-4xl)","original":"2.25rem"},"5xl":{"value":"3rem","variable":"var(--fontSize-5xl)","original":"3rem"},"6xl":{"value":"3.75rem","variable":"var(--fontSize-6xl)","original":"3.75rem"},"7xl":{"value":"4.5rem","variable":"var(--fontSize-7xl)","original":"4.5rem"},"8xl":{"value":"6rem","variable":"var(--fontSize-8xl)","original":"6rem"},"9xl":{"value":"8rem","variable":"var(--fontSize-9xl)","original":"8rem"}},"lead":{"1":{"value":".025rem","variable":"var(--lead-1)","original":".025rem"},"2":{"value":".5rem","variable":"var(--lead-2)","original":".5rem"},"3":{"value":".75rem","variable":"var(--lead-3)","original":".75rem"},"4":{"value":"1rem","variable":"var(--lead-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--lead-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--lead-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--lead-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--lead-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--lead-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--lead-10)","original":"2.5rem"},"none":{"value":"1","variable":"var(--lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--lead-loose)","original":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji","variable":"var(--font-sans)","original":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif","variable":"var(--font-serif)","original":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace","variable":"var(--font-mono)","original":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px","variable":"var(--docus-header-height)","original":"64px"}},"footer":{"padding":{"value":"var(--space-4) 0","variable":"var(--docus-footer-padding)","original":"{space.4} 0"}},"readableLine":{"value":"78ch","variable":"var(--docus-readableLine)","original":"78ch"},"loadingBar":{"height":{"value":"3px","variable":"var(--docus-loadingBar-height)","original":"3px"},"gradientColorStop1":{"value":"#00dc82","variable":"var(--docus-loadingBar-gradientColorStop1)","original":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe","variable":"var(--docus-loadingBar-gradientColorStop2)","original":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1","variable":"var(--docus-loadingBar-gradientColorStop3)","original":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)","variable":"var(--media-xs)","original":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)","variable":"var(--media-sm)","original":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)","variable":"var(--media-md)","original":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)","variable":"var(--media-lg)","original":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)","variable":"var(--media-xl)","original":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)","variable":"var(--media-2xl)","original":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)","variable":"var(--media-rm)","original":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)","variable":"var(--media-landscape)","original":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)","variable":"var(--media-portrait)","original":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw","variable":"var(--width-screen)","original":"100vw"}},"height":{"screen":{"value":"100vh","variable":"var(--height-screen)","original":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000","variable":"var(--shadow-xs)","original":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000","variable":"var(--shadow-sm)","original":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000","variable":"var(--shadow-md)","original":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000","variable":"var(--shadow-lg)","original":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000","variable":"var(--shadow-xl)","original":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px var(--color-gray-900)","variable":"var(--shadow-2xl)","original":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent","variable":"var(--shadow-none)","original":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px","variable":"var(--size-0)","original":"0px"},"2":{"value":"2px","variable":"var(--size-2)","original":"2px"},"4":{"value":"4px","variable":"var(--size-4)","original":"4px"},"6":{"value":"6px","variable":"var(--size-6)","original":"6px"},"8":{"value":"8px","variable":"var(--size-8)","original":"8px"},"12":{"value":"12px","variable":"var(--size-12)","original":"12px"},"16":{"value":"16px","variable":"var(--size-16)","original":"16px"},"20":{"value":"20px","variable":"var(--size-20)","original":"20px"},"24":{"value":"24px","variable":"var(--size-24)","original":"24px"},"32":{"value":"32px","variable":"var(--size-32)","original":"32px"},"40":{"value":"40px","variable":"var(--size-40)","original":"40px"},"48":{"value":"48px","variable":"var(--size-48)","original":"48px"},"56":{"value":"56px","variable":"var(--size-56)","original":"56px"},"64":{"value":"64px","variable":"var(--size-64)","original":"64px"},"80":{"value":"80px","variable":"var(--size-80)","original":"80px"},"104":{"value":"104px","variable":"var(--size-104)","original":"104px"},"200":{"value":"200px","variable":"var(--size-200)","original":"200px"},"xs":{"value":"20rem","variable":"var(--size-xs)","original":"20rem"},"sm":{"value":"24rem","variable":"var(--size-sm)","original":"24rem"},"md":{"value":"28rem","variable":"var(--size-md)","original":"28rem"},"lg":{"value":"32rem","variable":"var(--size-lg)","original":"32rem"},"xl":{"value":"36rem","variable":"var(--size-xl)","original":"36rem"},"2xl":{"value":"42rem","variable":"var(--size-2xl)","original":"42rem"},"3xl":{"value":"48rem","variable":"var(--size-3xl)","original":"48rem"},"4xl":{"value":"56rem","variable":"var(--size-4xl)","original":"56rem"},"5xl":{"value":"64rem","variable":"var(--size-5xl)","original":"64rem"},"6xl":{"value":"72rem","variable":"var(--size-6xl)","original":"72rem"},"7xl":{"value":"80rem","variable":"var(--size-7xl)","original":"80rem"},"full":{"value":"100%","variable":"var(--size-full)","original":"100%"}},"space":{"0":{"value":"0px","variable":"var(--space-0)","original":"0px"},"1":{"value":"0.25rem","variable":"var(--space-1)","original":"0.25rem"},"2":{"value":"0.5rem","variable":"var(--space-2)","original":"0.5rem"},"3":{"value":"0.75rem","variable":"var(--space-3)","original":"0.75rem"},"4":{"value":"1rem","variable":"var(--space-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--space-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--space-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--space-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--space-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--space-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--space-10)","original":"2.5rem"},"11":{"value":"2.75rem","variable":"var(--space-11)","original":"2.75rem"},"12":{"value":"3rem","variable":"var(--space-12)","original":"3rem"},"14":{"value":"3.5rem","variable":"var(--space-14)","original":"3.5rem"},"16":{"value":"4rem","variable":"var(--space-16)","original":"4rem"},"20":{"value":"5rem","variable":"var(--space-20)","original":"5rem"},"24":{"value":"6rem","variable":"var(--space-24)","original":"6rem"},"28":{"value":"7rem","variable":"var(--space-28)","original":"7rem"},"32":{"value":"8rem","variable":"var(--space-32)","original":"8rem"},"36":{"value":"9rem","variable":"var(--space-36)","original":"9rem"},"40":{"value":"10rem","variable":"var(--space-40)","original":"10rem"},"44":{"value":"11rem","variable":"var(--space-44)","original":"11rem"},"48":{"value":"12rem","variable":"var(--space-48)","original":"12rem"},"52":{"value":"13rem","variable":"var(--space-52)","original":"13rem"},"56":{"value":"14rem","variable":"var(--space-56)","original":"14rem"},"60":{"value":"15rem","variable":"var(--space-60)","original":"15rem"},"64":{"value":"16rem","variable":"var(--space-64)","original":"16rem"},"72":{"value":"18rem","variable":"var(--space-72)","original":"18rem"},"80":{"value":"20rem","variable":"var(--space-80)","original":"20rem"},"96":{"value":"24rem","variable":"var(--space-96)","original":"24rem"},"px":{"value":"1px","variable":"var(--space-px)","original":"1px"},"rem":{"125":{"value":"0.125rem","variable":"var(--space-rem-125)","original":"0.125rem"},"375":{"value":"0.375rem","variable":"var(--space-rem-375)","original":"0.375rem"},"625":{"value":"0.625rem","variable":"var(--space-rem-625)","original":"0.625rem"},"875":{"value":"0.875rem","variable":"var(--space-rem-875)","original":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0","variable":"var(--borderWidth-noBorder)","original":"0"},"sm":{"value":"1px","variable":"var(--borderWidth-sm)","original":"1px"},"md":{"value":"2px","variable":"var(--borderWidth-md)","original":"2px"},"lg":{"value":"3px","variable":"var(--borderWidth-lg)","original":"3px"}},"opacity":{"noOpacity":{"value":"0","variable":"var(--opacity-noOpacity)","original":"0"},"bright":{"value":"0.1","variable":"var(--opacity-bright)","original":"0.1"},"light":{"value":"0.15","variable":"var(--opacity-light)","original":"0.15"},"soft":{"value":"0.3","variable":"var(--opacity-soft)","original":"0.3"},"medium":{"value":"0.5","variable":"var(--opacity-medium)","original":"0.5"},"high":{"value":"0.8","variable":"var(--opacity-high)","original":"0.8"},"total":{"value":"1","variable":"var(--opacity-total)","original":"1"}},"fontWeight":{"thin":{"value":"100","variable":"var(--fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--fontWeight-black)","original":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em","variable":"var(--letterSpacing-tighter)","original":"-0.05em"},"tight":{"value":"-0.025em","variable":"var(--letterSpacing-tight)","original":"-0.025em"},"normal":{"value":"0em","variable":"var(--letterSpacing-normal)","original":"0em"},"wide":{"value":"0.025em","variable":"var(--letterSpacing-wide)","original":"0.025em"},"wider":{"value":"0.05em","variable":"var(--letterSpacing-wider)","original":"0.05em"},"widest":{"value":"0.1em","variable":"var(--letterSpacing-widest)","original":"0.1em"}},"text":{"xs":{"fontSize":{"value":"var(--fontSize-xs)","variable":"var(--text-xs-fontSize)","original":"{fontSize.xs}"},"lineHeight":{"value":"var(--lead-4)","variable":"var(--text-xs-lineHeight)","original":"{lead.4}"}},"sm":{"fontSize":{"value":"var(--fontSize-sm)","variable":"var(--text-sm-fontSize)","original":"{fontSize.sm}"},"lineHeight":{"value":"var(--lead-5)","variable":"var(--text-sm-lineHeight)","original":"{lead.5}"}},"base":{"fontSize":{"value":"var(--fontSize-base)","variable":"var(--text-base-fontSize)","original":"{fontSize.base}"},"lineHeight":{"value":"var(--lead-6)","variable":"var(--text-base-lineHeight)","original":"{lead.6}"}},"lg":{"fontSize":{"value":"var(--fontSize-lg)","variable":"var(--text-lg-fontSize)","original":"{fontSize.lg}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-lg-lineHeight)","original":"{lead.7}"}},"xl":{"fontSize":{"value":"var(--fontSize-xl)","variable":"var(--text-xl-fontSize)","original":"{fontSize.xl}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-xl-lineHeight)","original":"{lead.7}"}},"2xl":{"fontSize":{"value":"var(--fontSize-2xl)","variable":"var(--text-2xl-fontSize)","original":"{fontSize.2xl}"},"lineHeight":{"value":"var(--lead-8)","variable":"var(--text-2xl-lineHeight)","original":"{lead.8}"}},"3xl":{"fontSize":{"value":"var(--fontSize-3xl)","variable":"var(--text-3xl-fontSize)","original":"{fontSize.3xl}"},"lineHeight":{"value":"var(--lead-9)","variable":"var(--text-3xl-lineHeight)","original":"{lead.9}"}},"4xl":{"fontSize":{"value":"var(--fontSize-4xl)","variable":"var(--text-4xl-fontSize)","original":"{fontSize.4xl}"},"lineHeight":{"value":"var(--lead-10)","variable":"var(--text-4xl-lineHeight)","original":"{lead.10}"}},"5xl":{"fontSize":{"value":"var(--fontSize-5xl)","variable":"var(--text-5xl-fontSize)","original":"{fontSize.5xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-5xl-lineHeight)","original":"{lead.none}"}},"6xl":{"fontSize":{"value":"var(--fontSize-6xl)","variable":"var(--text-6xl-fontSize)","original":"{fontSize.6xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-6xl-lineHeight)","original":"{lead.none}"}}}},"content":{"sources":{},"ignores":["\\.","-"],"locales":[],"highlight":{"theme":{"dark":"github-dark","default":"github-light"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini"]},"navigation":{"fields":["icon","titleTemplate","header","main","aside","footer","layout"]},"documentDriven":true},"components":[{"name":"ExampleCard","path":"/components/content/Example/ExampleCard.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleHero","path":"/components/content/Example/ExampleHero.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleIconCard","path":"/components/content/Example/ExampleIconCard.vue","meta":{"props":[{"name":"description","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default description\""},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default title\""},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"IconMarkdown\""}],"slots":[],"events":[]}},{"name":"ExampleMultiselect","path":"/components/content/Example/ExampleMultiselect.vue","meta":{"props":[{"name":"options","global":false,"description":"","tags":[],"required":false,"type":"string | unknown[] | undefined","schema":{"kind":"enum","type":"string | unknown[] | undefined","schema":["undefined","string",{"kind":"array","type":"unknown[]","schema":["unknown"]}]},"default":"[]"}],"slots":[],"events":[]}},{"name":"ExampleTheTitle","path":"/components/content/Example/ExampleTheTitle.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"HeroAnnouncement","path":"/components/content/HeroAnnouncement.vue","meta":{"props":[{"name":"to","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"label","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"IconMarkdown","path":"/components/content/IconMarkdown.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Logo","path":"/components/content/Logo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"MyButton","path":"/components/content/MyButton.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"PropInspector","path":"/components/content/PropInspector.vue","meta":{"props":[{"name":"prop","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any"}],"slots":[],"events":[]}},{"name":"ReadMore","path":"/components/content/ReadMore.vue","meta":{"props":[{"name":"link","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"}],"slots":[],"events":[]}},{"name":"AppFooter","path":"/node_modules/@nuxt-themes/docus/components/app/AppFooter.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeader","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeader.vue","meta":{"props":[{"name":"length","global":false,"description":"Gets the length of the array. This is a number one higher than the highest element defined in an array.","tags":[],"required":true,"type":"number | Prop | null | undefined","schema":{"kind":"enum","type":"number | Prop | null | undefined","schema":["undefined","null","number","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]}]}},{"name":"concat","global":false,"description":"Combines two or more arrays.","tags":[{"name":"param","text":"items Additional items to add to the end of array1."},{"name":"param","text":"items Additional items to add to the end of array1."}],"required":true,"type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }"]}},{"name":"join","global":false,"description":"Adds all the elements of an array separated by the specified separator string.","tags":[{"name":"param","text":"separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma."}],"required":true,"type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":{"kind":"enum","type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]}]}},{"name":"slice","global":false,"description":"Returns a section of an array.","tags":[{"name":"param","text":"start The beginning of the specified portion of the array."},{"name":"param","text":"end The end of the specified portion of the array. This is exclusive of the element at the index 'end'."}],"required":true,"type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]}]}},{"name":"indexOf","global":false,"description":"Returns the index of the first occurrence of a value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"lastIndexOf","global":false,"description":"Returns the index of the last occurrence of a specified value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"every","global":false,"description":"Determines whether all the members of an array satisfy the specified test.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }"]}},{"name":"some","global":false,"description":"Determines whether the specified callback function returns true for any element of an array.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]}]}},{"name":"forEach","global":false,"description":"Performs the specified action for each element in an array.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]}]}},{"name":"map","global":false,"description":"Calls a defined callback function on each element of an array, and returns an array that contains the results.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]}]}},{"name":"filter","global":false,"description":"Returns the elements of an array that meet the condition specified in a callback function.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }"]}},{"name":"reduce","global":false,"description":"Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"reduceRight","global":false,"description":"Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"find","global":false,"description":"Returns the value of the first element in the array where predicate is true, and undefined\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found, find\r\nimmediately returns that element value. Otherwise, find returns undefined."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":{"kind":"enum","type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }"]}},{"name":"findIndex","global":false,"description":"Returns the index of the first element in the array where predicate is true, and -1\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found,\r\nfindIndex immediately returns that element index. Otherwise, findIndex returns -1."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]}]}},{"name":"entries","global":false,"description":"Returns an iterable of key, value pairs for every entry in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"}]}},{"name":"keys","global":false,"description":"Returns an iterable of keys in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"values","global":false,"description":"Returns an iterable of values in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"includes","global":false,"description":"Determines whether an array includes a certain element, returning true or false as appropriate.","tags":[{"name":"param","text":"searchElement The element to search for."},{"name":"param","text":"fromIndex The position in this array at which to begin searching for searchElement."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]}]}},{"name":"flatMap","global":false,"description":"Calls a defined callback function on each element of an array. Then, flattens the result into\r\na new array.\r\nThis is identical to a map followed by flat with depth 1.","tags":[{"name":"param","text":"callback A function that accepts up to three arguments. The flatMap method calls the\r\ncallback function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callback function. If\r\nthisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":{"kind":"enum","type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]}]}},{"name":"flat","global":false,"description":"Returns a new array with all sub-array elements concatenated into it recursively up to the\r\nspecified depth.","tags":[{"name":"param","text":"depth The maximum recursion depth"}],"required":true,"type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]}]}},{"name":"at","global":false,"description":"Returns the item located at the specified index.","tags":[{"name":"param","text":"index The zero-based index of the desired code unit. A negative index will count back from the last item."}],"required":true,"type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":{"kind":"enum","type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]}]}},{"name":"toString","global":false,"description":"Returns a string representation of an object.\nReturns a string representation of an array.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}},{"name":"toLocaleString","global":false,"description":"Returns a date converted to a string using the current locale.\nReturns a string representation of an array. The elements are converted to string using their toLocaleString methods.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}}],"slots":[],"events":[]}},{"name":"AppHeaderDialog","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderLogo","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderNavigation","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppLayout","path":"/node_modules/@nuxt-themes/docus/components/app/AppLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"AppLoadingBar","path":"/node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue","meta":{"props":[{"name":"throttle","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"200"},{"name":"duration","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"2000"}],"slots":[],"events":[]}},{"name":"AppSearch","path":"/node_modules/@nuxt-themes/docus/components/app/AppSearch.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppSocialIcons","path":"/node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ThemeSelect","path":"/node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAside","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAsideTree","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"[]"},{"name":"level","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"0"},{"name":"max","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"null"},{"name":"parent","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"null"}],"slots":[],"events":[]}},{"name":"DocsPageBottom","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsPageLayout","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"DocsPrevNext","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsToc","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue","meta":{"props":[],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"DocsTocLinks","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":{"kind":"enum","type":"TocLink[] | undefined","schema":["undefined",{"kind":"array","type":"TocLink[]","schema":[{"kind":"object","type":"TocLink","schema":{"id":{"name":"id","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"text":{"name":"text","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"depth":{"name":"depth","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"},"children":{"name":"children","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":"TocLink[] | undefined"}}}]}]},"default":"[]"}],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"EditOnLink","path":"/node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue","meta":{"props":[{"name":"owner","global":false,"description":"Repository owner.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.owner"},{"name":"repo","global":false,"description":"Repository name.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.repo"},{"name":"branch","global":false,"description":"The branch to use for the edit link.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.branch"},{"name":"dir","global":false,"description":"A base directory to append to the source path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir"},{"name":"source","global":false,"description":"Source file path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"},{"name":"page","global":false,"description":"Use page from @nuxt/content.","tags":[],"required":false,"type":"any","schema":"any","default":"undefined"},{"name":"contentDir","global":false,"description":"Content directory (to be used with `page`)","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir || \"content\""},{"name":"edit","global":false,"description":"Send to an edit page or not.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"useAppConfig()?.docus?.github?.edit"}],"slots":[],"events":[]}},{"name":"Alert","path":"/node_modules/@nuxt-themes/elements/components/globals/Alert.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Badge","path":"/node_modules/@nuxt-themes/elements/components/globals/Badge.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ButtonLink","path":"/node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue","meta":{"props":[{"name":"color","global":false,"description":"","tags":[],"required":false,"type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":{"kind":"enum","type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":["undefined","\"ruby\"","\"primary\"","\"white\"","\"black\"","\"secondary\"","\"gray\"","\"green\"","\"yellow\"","\"orange\"","\"red\"","\"pear\"","\"teal\"","\"lightblue\"","\"blue\"","\"indigoblue\"","\"royalblue\"","\"purple\"","\"pink\"","{ md?: \"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\" | undefined; ... 10 more ...; portrait?: \"ruby\" | ... 17 more ... | undefined; }"]}},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"href","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blank","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"size","global":false,"description":"","tags":[],"required":false,"type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":{"kind":"enum","type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":["undefined","\"small\"","\"medium\"","\"large\"","\"giant\"","{ md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; initial?: \"small\" | ... 3 more ... | undefined; ... 7 more ...; portrait?: \"small\" | ... 3 more ... | undefined; }"]}},{"name":"transparent","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Callout","path":"/node_modules/@nuxt-themes/elements/components/globals/Callout.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""},{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"ref(false)"}],"slots":[{"name":"summary","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"content","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"CodeBlock","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue","meta":{"props":[{"name":"label","global":false,"description":"Label to display for the tab","tags":[],"required":true,"type":"string","schema":"string"},{"name":"active","global":false,"description":"Select which tab should be active","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"preview","global":false,"description":"Preiew block are bordered and have small padding.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CodeGroup","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Container","path":"/node_modules/@nuxt-themes/elements/components/globals/Container.vue","meta":{"props":[{"name":"as","global":false,"description":"","tags":[],"required":false,"type":"keyof HTMLElementTagNameMap | undefined","schema":{"kind":"enum","type":"keyof HTMLElementTagNameMap | undefined","schema":["undefined","\"object\"","\"style\"","\"map\"","\"data\"","\"template\"","\"link\"","\"small\"","\"sub\"","\"sup\"","\"title\"","\"label\"","\"source\"","\"main\"","\"html\"","\"ruby\"","\"code\"","\"a\"","\"abbr\"","\"address\"","\"area\"","\"article\"","\"aside\"","\"audio\"","\"b\"","\"base\"","\"bdi\"","\"bdo\"","\"blockquote\"","\"body\"","\"br\"","\"button\"","\"canvas\"","\"caption\"","\"cite\"","\"col\"","\"colgroup\"","\"datalist\"","\"dd\"","\"del\"","\"details\"","\"dfn\"","\"dialog\"","\"div\"","\"dl\"","\"dt\"","\"em\"","\"embed\"","\"fieldset\"","\"figcaption\"","\"figure\"","\"footer\"","\"form\"","\"h1\"","\"h2\"","\"h3\"","\"h4\"","\"h5\"","\"h6\"","\"head\"","\"header\"","\"hgroup\"","\"hr\"","\"i\"","\"iframe\"","\"img\"","\"input\"","\"ins\"","\"kbd\"","\"legend\"","\"li\"","\"mark\"","\"menu\"","\"meta\"","\"meter\"","\"nav\"","\"noscript\"","\"ol\"","\"optgroup\"","\"option\"","\"output\"","\"p\"","\"picture\"","\"pre\"","\"progress\"","\"q\"","\"rp\"","\"rt\"","\"s\"","\"samp\"","\"script\"","\"section\"","\"select\"","\"slot\"","\"span\"","\"strong\"","\"summary\"","\"table\"","\"tbody\"","\"td\"","\"textarea\"","\"tfoot\"","\"th\"","\"thead\"","\"time\"","\"tr\"","\"track\"","\"u\"","\"ul\"","\"var\"","\"video\"","\"wbr\""]},"default":"\"div\""},{"name":"padded","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}},{"name":"fluid","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CopyButton","path":"/node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"Ellipsis","path":"/node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue","meta":{"props":[{"name":"height","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"width","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"left","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"zIndex","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10\""},{"name":"top","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"0\""},{"name":"right","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"blur","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"50px\""},{"name":"colors","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]},"default":"[\"rgba(0, 71, 225, 0.22)\", \"rgba(26, 214, 255, 0.22)\", \"rgba(0, 220, 130, 0.22)\"]"}],"slots":[],"events":[]}},{"name":"List","path":"/node_modules/@nuxt-themes/elements/components/globals/List.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"NuxtImg","path":"/node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Props","path":"/node_modules/@nuxt-themes/elements/components/globals/Props.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Sandbox","path":"/node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue","meta":{"props":[{"name":"repo","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"branch","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"dir","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"file","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"app.vue\""}],"slots":[],"events":[]}},{"name":"SourceLink","path":"/node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue","meta":{"props":[{"name":"source","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"TabsHeader","path":"/node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue","meta":{"props":[{"name":"tabs","global":false,"description":"","tags":[],"required":true,"type":"{ label: string; }[]","schema":{"kind":"array","type":"{ label: string; }[]","schema":[{"kind":"object","type":"{ label: string; }","schema":{"label":{"name":"label","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}}}]}},{"name":"activeTabIndex","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"}],"slots":[{"name":"footer","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:activeTabIndex","type":"any[]","signature":"(event: \"update:activeTabIndex\", ...args: any[]): void","schema":["any"]}]}},{"name":"Terminal","path":"/node_modules/@nuxt-themes/elements/components/globals/Terminal.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"VideoPlayer","path":"/node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue","meta":{"props":[{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"poster","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"sources","global":false,"description":"","tags":[],"required":false,"type":"any[] | undefined","schema":{"kind":"enum","type":"any[] | undefined","schema":["undefined",{"kind":"array","type":"any[]","schema":["any"]}]},"default":"[]"},{"name":"autoplay","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[],"events":[]}},{"name":"IconCodeSandBox","path":"/node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconDocus","path":"/node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxt","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtContent","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtLabs","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtStudio","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconStackBlitz","path":"/node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconVueTelescope","path":"/node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"BlockHero","path":"/node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue","meta":{"props":[{"name":"secondary","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"video","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"cta","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"snippet","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]}}],"slots":[{"name":"announce","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"extra","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"actions","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"support","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Card","path":"/node_modules/@nuxt-themes/elements/components/landing/Card.vue","meta":{"props":[{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"iconClass","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blurry","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"true"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CardGrid","path":"/node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue","meta":{"props":[{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Features\""}],"slots":[{"name":"root","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"VoltaBoard","path":"/node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue","meta":{"props":[{"name":"token","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"ComponentPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundData","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"},{"name":"componentData","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundProps","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"},{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundSlots","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"ComponentPlaygroundTokens","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"TokensPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRepository","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLink","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReadme","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReleases","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLastRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubFileContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubCommits","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs","meta":{"props":[],"slots":[],"events":[]}}]} \ No newline at end of file diff --git a/docs/.output/public/_nuxt/Alert.443f6167.js b/docs/.output/public/_nuxt/Alert.41cb256b.js similarity index 66% rename from docs/.output/public/_nuxt/Alert.443f6167.js rename to docs/.output/public/_nuxt/Alert.41cb256b.js index 95498bc7..d0944f78 100644 --- a/docs/.output/public/_nuxt/Alert.443f6167.js +++ b/docs/.output/public/_nuxt/Alert.41cb256b.js @@ -1 +1 @@ -import a from"./ContentSlot.7e1a494f.js";import{f as r,q as n,x as s,E as p,G as c,y as i}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as m}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const l={class:"alert-content"},_=r({__name:"Alert",props:{type:{type:String,default:"info",validator(t){return["info","success","warning","danger","primary"].includes(t)}}},setup(t){return(e,d)=>{const o=a;return n(),s("div",{class:i(["alert",[t.type]])},[p("div",l,[c(o,{use:e.$slots.default,unwrap:"p"},null,8,["use"])])],2)}}}),k=m(_,[["__scopeId","data-v-95a79b90"]]);export{k as default}; +import a from"./ContentSlot.c5067a4f.js";import{f as r,q as n,x as s,E as p,G as c,y as i}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as m}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const l={class:"alert-content"},_=r({__name:"Alert",props:{type:{type:String,default:"info",validator(t){return["info","success","warning","danger","primary"].includes(t)}}},setup(t){return(e,d)=>{const o=a;return n(),s("div",{class:i(["alert",[t.type]])},[p("div",l,[c(o,{use:e.$slots.default,unwrap:"p"},null,8,["use"])])],2)}}}),k=m(_,[["__scopeId","data-v-95a79b90"]]);export{k as default}; diff --git a/docs/.output/public/_nuxt/AppLayout.7354fe11.js b/docs/.output/public/_nuxt/AppLayout.7354fe11.js new file mode 100644 index 00000000..e3750a03 --- /dev/null +++ b/docs/.output/public/_nuxt/AppLayout.7354fe11.js @@ -0,0 +1 @@ +import{_ as o}from"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/AppLayout.bec693ec.js b/docs/.output/public/_nuxt/AppLayout.bec693ec.js deleted file mode 100644 index bb52d398..00000000 --- a/docs/.output/public/_nuxt/AppLayout.bec693ec.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./entry.2d43dc03.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/Badge.a4f5598b.js b/docs/.output/public/_nuxt/Badge.af643d4e.js similarity index 63% rename from docs/.output/public/_nuxt/Badge.a4f5598b.js rename to docs/.output/public/_nuxt/Badge.af643d4e.js index 448847b6..f0b5af96 100644 --- a/docs/.output/public/_nuxt/Badge.a4f5598b.js +++ b/docs/.output/public/_nuxt/Badge.af643d4e.js @@ -1 +1 @@ -import n from"./ContentSlot.7e1a494f.js";import{f as a,q as r,x as s,G as _,y as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const m=a({__name:"Badge",props:{type:{type:String,default:"info",validator(e){return["info","success","warning","danger","primary"].includes(e)}}},setup(e){return(t,i)=>{const o=n;return r(),s("span",{class:p([[e.type],"badge"])},[_(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])],2)}}});const B=c(m,[["__scopeId","data-v-69c7b84e"]]);export{B as default}; +import n from"./ContentSlot.c5067a4f.js";import{f as a,q as r,x as s,G as _,y as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const m=a({__name:"Badge",props:{type:{type:String,default:"info",validator(e){return["info","success","warning","danger","primary"].includes(e)}}},setup(e){return(t,i)=>{const o=n;return r(),s("span",{class:p([[e.type],"badge"])},[_(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])],2)}}});const B=c(m,[["__scopeId","data-v-69c7b84e"]]);export{B as default}; diff --git a/docs/.output/public/_nuxt/BlockHero.81a09280.js b/docs/.output/public/_nuxt/BlockHero.495ede00.js similarity index 84% rename from docs/.output/public/_nuxt/BlockHero.81a09280.js rename to docs/.output/public/_nuxt/BlockHero.495ede00.js index 6d396b8c..711916b3 100644 --- a/docs/.output/public/_nuxt/BlockHero.81a09280.js +++ b/docs/.output/public/_nuxt/BlockHero.495ede00.js @@ -1 +1 @@ -import d from"./ContentSlot.7e1a494f.js";import m from"./ButtonLink.2789431f.js";import y from"./Terminal.e111a4e9.js";import{f as _,q as t,x as o,E as a,G as c,D as n,F as f,B as i,C as h,L as k,J as l,P as $}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";/* empty css */import"./index.889aa611.js";/* empty css */const v={class:"block-hero"},w={class:"layout"},q={class:"content"},C={key:0,class:"announce"},N={key:1,class:"title"},S={key:2,class:"description"},V={key:3,class:"extra"},g={class:"actions"},A=["href"],b={class:"support"},D=_({__name:"BlockHero",props:{cta:{type:Array,required:!1},secondary:{type:Array,required:!1},snippet:{type:String,required:!1},video:{type:Array,required:!1}},setup(s){return(e,E)=>{const r=d,u=m,p=y;return t(),o("section",v,[a("div",w,[a("div",q,[e.$slots.announce?(t(),o("p",C,[c(r,{use:e.$slots.announce,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.title?(t(),o("h1",N,[c(r,{use:e.$slots.title,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.description?(t(),o("p",S,[c(r,{use:e.$slots.description,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.extra?(t(),o("div",V,[c(r,{use:e.$slots.extra,unwrap:"p"},null,8,["use"])])):n("",!0),a("div",g,[e.$slots.actions?(t(),i(r,{key:1,use:e.$slots.actions,unwrap:"p"},null,8,["use"])):(t(),o(f,{key:0},[s.cta?(t(),i(u,{key:0,class:"cta",bold:"",size:"medium",href:s.cta[1]},{default:h(()=>[k(l(s.cta[0]),1)]),_:1},8,["href"])):n("",!0),s.secondary?(t(),o("a",{key:1,href:s.secondary[1],class:"secondary"},l(s.secondary[0]),9,A)):n("",!0)],64))])]),a("div",b,[$(e.$slots,"support",{},()=>[s.snippet?(t(),i(p,{key:0,content:s.snippet},null,8,["content"])):n("",!0)],!0)])])])}}}),Q=B(D,[["__scopeId","data-v-27211c58"]]);export{Q as default}; +import d from"./ContentSlot.c5067a4f.js";import m from"./ButtonLink.91883881.js";import y from"./Terminal.e111a4e9.js";import{f as _,q as t,x as o,E as a,G as c,D as n,F as f,B as i,C as h,L as k,J as l,P as $}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";/* empty css */import"./index.889aa611.js";/* empty css */const v={class:"block-hero"},w={class:"layout"},q={class:"content"},C={key:0,class:"announce"},N={key:1,class:"title"},S={key:2,class:"description"},V={key:3,class:"extra"},g={class:"actions"},A=["href"],b={class:"support"},D=_({__name:"BlockHero",props:{cta:{type:Array,required:!1},secondary:{type:Array,required:!1},snippet:{type:String,required:!1},video:{type:Array,required:!1}},setup(s){return(e,E)=>{const r=d,u=m,p=y;return t(),o("section",v,[a("div",w,[a("div",q,[e.$slots.announce?(t(),o("p",C,[c(r,{use:e.$slots.announce,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.title?(t(),o("h1",N,[c(r,{use:e.$slots.title,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.description?(t(),o("p",S,[c(r,{use:e.$slots.description,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.extra?(t(),o("div",V,[c(r,{use:e.$slots.extra,unwrap:"p"},null,8,["use"])])):n("",!0),a("div",g,[e.$slots.actions?(t(),i(r,{key:1,use:e.$slots.actions,unwrap:"p"},null,8,["use"])):(t(),o(f,{key:0},[s.cta?(t(),i(u,{key:0,class:"cta",bold:"",size:"medium",href:s.cta[1]},{default:h(()=>[k(l(s.cta[0]),1)]),_:1},8,["href"])):n("",!0),s.secondary?(t(),o("a",{key:1,href:s.secondary[1],class:"secondary"},l(s.secondary[0]),9,A)):n("",!0)],64))])]),a("div",b,[$(e.$slots,"support",{},()=>[s.snippet?(t(),i(p,{key:0,content:s.snippet},null,8,["content"])):n("",!0)],!0)])])])}}}),Q=B(D,[["__scopeId","data-v-27211c58"]]);export{Q as default}; diff --git a/docs/.output/public/_nuxt/ButtonLink.2789431f.js b/docs/.output/public/_nuxt/ButtonLink.91883881.js similarity index 82% rename from docs/.output/public/_nuxt/ButtonLink.2789431f.js rename to docs/.output/public/_nuxt/ButtonLink.91883881.js index f6972bb7..c255e5a5 100644 --- a/docs/.output/public/_nuxt/ButtonLink.2789431f.js +++ b/docs/.output/public/_nuxt/ButtonLink.91883881.js @@ -1 +1 @@ -import{_ as x}from"./DocsAsideTree.08d70919.js";import S from"./ContentSlot.7e1a494f.js";import{_ as h}from"./app.config.4114fca6.js";import{c as b,u as k,d as i,a as $}from"./Container.f1017aa2.js";import{f as z,h as n,r as s,q as r,B as l,C as y,D as C,G as B,y as H,u as q}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./index.d2b0cb5e.js";const V=z({__name:"ButtonLink",props:{blank:{type:Boolean,required:!1,default:!1},color:b("primary"),href:{type:String,default:""},icon:{type:String,default:""},size:{required:!1,type:[String,Object],default:"medium"},transparent:{required:!1,type:[Boolean,Object],default:!1}},setup(t){const o=t,c=n(()=>((e=o,a=i)=>`{color.${e.color}.600}`)()),u=n(()=>((e=o,a=i)=>`{color.${e.color}.500}`)()),p=n(()=>((e=o,a=i)=>`1px solid {color.${e.color}.600}`)()),m=s({size:{small:{padding:"{space.2} {space.4}",fontSize:"{text.sm.fontSize}",lineHeight:"{text.sm.lineHeight}"},medium:{padding:"{space.rem.625} {space.5}",fontSize:"{text.base.fontSize}",lineHeight:"{text.base.lineHeight}"},large:{padding:"{space.3} {space.6}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"},giant:{padding:"{space.4} {space.8}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"}},transparent:{true:{backgroundColor:"transparent"}}}),{$pinceau:d}=k(n(()=>o),m,s({_PBS_backgroundColor:c,_m49_backgroundColor:u,_BVG_border:p}));return(e,a)=>{const f=x,_=S,g=h;return r(),l(g,{class:H(["button-link",[q(d)]]),to:t.href,target:t.blank?"_blank":void 0},{default:y(()=>[t.icon?(r(),l(f,{key:0,name:t.icon},null,8,["name"])):C("",!0),B(_,{use:e.$slots.default,unwrap:"p ul li"},null,8,["use"])]),_:1},8,["to","target","class"])}}}),D=$(V,[["__scopeId","data-v-02d3ca01"]]);export{D as default}; +import{_ as x}from"./DocsAsideTree.b95e55e0.js";import S from"./ContentSlot.c5067a4f.js";import{_ as h}from"./app.config.f41ab05d.js";import{c as b,u as k,d as i,a as $}from"./Container.f1017aa2.js";import{f as z,h as n,r as s,q as r,B as l,C as y,D as C,G as B,y as H,u as q}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./index.d2b0cb5e.js";const V=z({__name:"ButtonLink",props:{blank:{type:Boolean,required:!1,default:!1},color:b("primary"),href:{type:String,default:""},icon:{type:String,default:""},size:{required:!1,type:[String,Object],default:"medium"},transparent:{required:!1,type:[Boolean,Object],default:!1}},setup(t){const o=t,c=n(()=>((e=o,a=i)=>`{color.${e.color}.600}`)()),u=n(()=>((e=o,a=i)=>`{color.${e.color}.500}`)()),p=n(()=>((e=o,a=i)=>`1px solid {color.${e.color}.600}`)()),m=s({size:{small:{padding:"{space.2} {space.4}",fontSize:"{text.sm.fontSize}",lineHeight:"{text.sm.lineHeight}"},medium:{padding:"{space.rem.625} {space.5}",fontSize:"{text.base.fontSize}",lineHeight:"{text.base.lineHeight}"},large:{padding:"{space.3} {space.6}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"},giant:{padding:"{space.4} {space.8}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"}},transparent:{true:{backgroundColor:"transparent"}}}),{$pinceau:d}=k(n(()=>o),m,s({_PBS_backgroundColor:c,_m49_backgroundColor:u,_BVG_border:p}));return(e,a)=>{const f=x,_=S,g=h;return r(),l(g,{class:H(["button-link",[q(d)]]),to:t.href,target:t.blank?"_blank":void 0},{default:y(()=>[t.icon?(r(),l(f,{key:0,name:t.icon},null,8,["name"])):C("",!0),B(_,{use:e.$slots.default,unwrap:"p ul li"},null,8,["use"])]),_:1},8,["to","target","class"])}}}),D=$(V,[["__scopeId","data-v-02d3ca01"]]);export{D as default}; diff --git a/docs/.output/public/_nuxt/Callout.e09a04aa.js b/docs/.output/public/_nuxt/Callout.12d57ced.js similarity index 72% rename from docs/.output/public/_nuxt/Callout.e09a04aa.js rename to docs/.output/public/_nuxt/Callout.12d57ced.js index 193ae43f..d444805e 100644 --- a/docs/.output/public/_nuxt/Callout.e09a04aa.js +++ b/docs/.output/public/_nuxt/Callout.12d57ced.js @@ -1 +1 @@ -import p from"./ContentSlot.7e1a494f.js";import{v as d,_}from"./DocsAsideTree.08d70919.js";import{f,r as l,q as v,x as h,E as s,G as t,y as r,u as c,a9 as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const C={class:"summary"},V={class:"content"},w=f({__name:"Callout",props:{type:{type:String,default:"info",validator(o){return["info","success","warning","danger","primary"].includes(o)}},modelValue:{required:!1,default:()=>l(!1)}},emits:["update:modelValue"],setup(o,{emit:i}){const e=l(o.modelValue),u=()=>{e.value=!e.value,i("update:modelValue",e.value)};return(a,x)=>{const n=p,m=_;return v(),h("div",{class:r(["callout",[o.type]])},[s("span",{class:"preview",onClick:u},[s("span",C,[t(n,{use:a.$slots.summary},null,8,["use"])]),t(m,{name:"heroicons-outline:chevron-right",class:r(["icon",[c(e)&&"rotate"]])},null,8,["class"])]),y(s("div",V,[t(n,{use:a.$slots.content},null,8,["use"])],512),[[d,c(e)]])],2)}}}),D=g(w,[["__scopeId","data-v-37e0bf51"]]);export{D as default}; +import p from"./ContentSlot.c5067a4f.js";import{v as d,_}from"./DocsAsideTree.b95e55e0.js";import{f,r as l,q as v,x as h,E as s,G as t,y as r,u as c,a9 as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const C={class:"summary"},V={class:"content"},w=f({__name:"Callout",props:{type:{type:String,default:"info",validator(o){return["info","success","warning","danger","primary"].includes(o)}},modelValue:{required:!1,default:()=>l(!1)}},emits:["update:modelValue"],setup(o,{emit:i}){const e=l(o.modelValue),u=()=>{e.value=!e.value,i("update:modelValue",e.value)};return(a,x)=>{const n=p,m=_;return v(),h("div",{class:r(["callout",[o.type]])},[s("span",{class:"preview",onClick:u},[s("span",C,[t(n,{use:a.$slots.summary},null,8,["use"])]),t(m,{name:"heroicons-outline:chevron-right",class:r(["icon",[c(e)&&"rotate"]])},null,8,["class"])]),y(s("div",V,[t(n,{use:a.$slots.content},null,8,["use"])],512),[[d,c(e)]])],2)}}}),D=g(w,[["__scopeId","data-v-37e0bf51"]]);export{D as default}; diff --git a/docs/.output/public/_nuxt/Card.24a8ff8f.js b/docs/.output/public/_nuxt/Card.178cbb97.js similarity index 70% rename from docs/.output/public/_nuxt/Card.24a8ff8f.js rename to docs/.output/public/_nuxt/Card.178cbb97.js index 2fd16f6b..95b23136 100644 --- a/docs/.output/public/_nuxt/Card.24a8ff8f.js +++ b/docs/.output/public/_nuxt/Card.178cbb97.js @@ -1 +1 @@ -import{_ as l}from"./DocsAsideTree.08d70919.js";import d from"./ContentSlot.7e1a494f.js";import{f as p,q as s,x as m,B as u,D as _,P as f,E as o,G as r,C as n,L as c,y as C}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as y}from"./Container.f1017aa2.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const B={class:"title"},h={class:"description"},k=p({__name:"Card",props:{icon:{type:String,default:""},iconClass:{type:String,default:""},blurry:{type:Boolean,default:!0,required:!1}},setup(e){return(t,v)=>{const i=l,a=d;return s(),m("div",{class:C([{blurry:e.blurry},"card"])},[e.icon?(s(),u(i,{key:0,name:e.icon},null,8,["name"])):_("",!0),f(t.$slots,"default",{},void 0,!0),o("div",null,[o("h3",B,[r(a,{use:t.$slots.title,unwrap:"p"},{default:n(()=>[c(" Card title ")]),_:1},8,["use"])]),o("p",h,[r(a,{use:t.$slots.description,unwrap:"p"},{default:n(()=>[c(" Card description ")]),_:1},8,["use"])])])],2)}}}),E=y(k,[["__scopeId","data-v-496504c6"]]);export{E as default}; +import{_ as l}from"./DocsAsideTree.b95e55e0.js";import d from"./ContentSlot.c5067a4f.js";import{f as p,q as s,x as m,B as u,D as _,P as f,E as o,G as r,C as n,L as c,y as C}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as y}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const B={class:"title"},h={class:"description"},k=p({__name:"Card",props:{icon:{type:String,default:""},iconClass:{type:String,default:""},blurry:{type:Boolean,default:!0,required:!1}},setup(e){return(t,v)=>{const i=l,a=d;return s(),m("div",{class:C([{blurry:e.blurry},"card"])},[e.icon?(s(),u(i,{key:0,name:e.icon},null,8,["name"])):_("",!0),f(t.$slots,"default",{},void 0,!0),o("div",null,[o("h3",B,[r(a,{use:t.$slots.title,unwrap:"p"},{default:n(()=>[c(" Card title ")]),_:1},8,["use"])]),o("p",h,[r(a,{use:t.$slots.description,unwrap:"p"},{default:n(()=>[c(" Card description ")]),_:1},8,["use"])])])],2)}}}),E=y(k,[["__scopeId","data-v-496504c6"]]);export{E as default}; diff --git a/docs/.output/public/_nuxt/CardGrid.362959de.js b/docs/.output/public/_nuxt/CardGrid.e3a9f75d.js similarity index 67% rename from docs/.output/public/_nuxt/CardGrid.362959de.js rename to docs/.output/public/_nuxt/CardGrid.e3a9f75d.js index 5d4a762f..6229a1a2 100644 --- a/docs/.output/public/_nuxt/CardGrid.362959de.js +++ b/docs/.output/public/_nuxt/CardGrid.e3a9f75d.js @@ -1 +1 @@ -import r from"./ContentSlot.7e1a494f.js";import{f as a,q as n,x as i,G as e,E as s,P as p}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const l={class:"card-grid"},d={class:"title"},_={class:"layout"},m=a({__name:"CardGrid",props:{title:{type:String,default:"Features"}},setup(u){return(t,f)=>{const o=r;return n(),i("section",l,[e(o,{use:t.$slots.root},null,8,["use"]),s("h2",d,[e(o,{use:t.$slots.title,unwrap:"p"},null,8,["use"])]),s("div",_,[p(t.$slots,"default",{},void 0,!0)])])}}}),y=c(m,[["__scopeId","data-v-8f7bcfd2"]]);export{y as default}; +import r from"./ContentSlot.c5067a4f.js";import{f as a,q as n,x as i,G as e,E as s,P as p}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const l={class:"card-grid"},d={class:"title"},_={class:"layout"},m=a({__name:"CardGrid",props:{title:{type:String,default:"Features"}},setup(u){return(t,f)=>{const o=r;return n(),i("section",l,[e(o,{use:t.$slots.root},null,8,["use"]),s("h2",d,[e(o,{use:t.$slots.title,unwrap:"p"},null,8,["use"])]),s("div",_,[p(t.$slots,"default",{},void 0,!0)])])}}}),y=c(m,[["__scopeId","data-v-8f7bcfd2"]]);export{y as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlayground.00658939.js b/docs/.output/public/_nuxt/ComponentPlayground.00658939.js deleted file mode 100644 index e9f645ca..00000000 --- a/docs/.output/public/_nuxt/ComponentPlayground.00658939.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./ComponentPlayground.vue.db6a2f57.js";import{a as t}from"./Container.f1017aa2.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./asyncData.2775b491.js";import"./entry.2d43dc03.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./query.c3f7607a.js";import"./Ellipsis.50580cd1.js";import"./ComponentPlaygroundData.c394e239.js";import"./TabsHeader.f80c17f8.js";import"./ComponentPlaygroundProps.59058ddd.js";import"./ProseH4.4ddfc0da.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.a4f5598b.js";import"./ContentSlot.7e1a494f.js";import"./ProseP.9fd9b629.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";const j=t(o,[["__scopeId","data-v-9ca9b996"]]);export{j as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js b/docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js new file mode 100644 index 00000000..c6acfa6d --- /dev/null +++ b/docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js @@ -0,0 +1 @@ +import{_ as o}from"./ComponentPlayground.vue.1e5cc557.js";import{a as t}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./asyncData.7c06b2d5.js";import"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";import"./Ellipsis.50580cd1.js";import"./ComponentPlaygroundData.8cb96cd4.js";import"./TabsHeader.f80c17f8.js";import"./ComponentPlaygroundProps.583c9bda.js";import"./ProseH4.77a5278f.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.af643d4e.js";import"./ContentSlot.c5067a4f.js";import"./ProseP.9fd9b629.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";const j=t(o,[["__scopeId","data-v-9ca9b996"]]);export{j as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlayground.vue.db6a2f57.js b/docs/.output/public/_nuxt/ComponentPlayground.vue.1e5cc557.js similarity index 83% rename from docs/.output/public/_nuxt/ComponentPlayground.vue.db6a2f57.js rename to docs/.output/public/_nuxt/ComponentPlayground.vue.1e5cc557.js index 2be056ae..51a716e1 100644 --- a/docs/.output/public/_nuxt/ComponentPlayground.vue.db6a2f57.js +++ b/docs/.output/public/_nuxt/ComponentPlayground.vue.1e5cc557.js @@ -1 +1 @@ -import{u as m}from"./app.config.4114fca6.js";import{u as c}from"./asyncData.2775b491.js";import{u,h as r,f as l,r as i,j as t,aa as d}from"./runtime-core.esm-bundler.6894272a.js";import f from"./Ellipsis.50580cd1.js";import _ from"./ComponentPlaygroundData.c394e239.js";async function y(o){m();const e=u(o);{const{data:n}=await c(`nuxt-component-meta${e?`-${e}`:""}`,()=>$fetch(`/api/component-meta${e?`/${e}`:""}`));return r(()=>n.value)}}const w=l({props:{component:{type:String,required:!0},props:{type:Object,required:!1,default:()=>({})}},async setup(o){const e=r(()=>d(o.component)),n=i({...o.props}),a=await y(o.component);return{as:e,formProps:n,componentData:a}},render(o){const e=Object.entries(this.$slots).reduce((n,[a,s])=>{if(a.startsWith("component-")){const p=a.replace("component-","");n[p]=s}return n},{});return t("div",{class:"component-playground"},[t("div",{class:"component-playground-wrapper"},[t(f,{class:"component-playground-ellipsis",blur:"5vw",height:"100%",width:"100%"}),t(o.as,{...o.formProps,class:"component-playground-component"},{...e})]),t(_,{modelValue:o.formProps,componentData:o.componentData,"onUpdate:modelValue":n=>o.formProps=n})])}});export{w as _}; +import{u as m}from"./app.config.f41ab05d.js";import{u as c}from"./asyncData.7c06b2d5.js";import{u,h as r,f as l,r as i,j as t,aa as d}from"./runtime-core.esm-bundler.6894272a.js";import f from"./Ellipsis.50580cd1.js";import _ from"./ComponentPlaygroundData.8cb96cd4.js";async function y(o){m();const e=u(o);{const{data:n}=await c(`nuxt-component-meta${e?`-${e}`:""}`,()=>$fetch(`/api/component-meta${e?`/${e}`:""}`));return r(()=>n.value)}}const w=l({props:{component:{type:String,required:!0},props:{type:Object,required:!1,default:()=>({})}},async setup(o){const e=r(()=>d(o.component)),n=i({...o.props}),a=await y(o.component);return{as:e,formProps:n,componentData:a}},render(o){const e=Object.entries(this.$slots).reduce((n,[a,s])=>{if(a.startsWith("component-")){const p=a.replace("component-","");n[p]=s}return n},{});return t("div",{class:"component-playground"},[t("div",{class:"component-playground-wrapper"},[t(f,{class:"component-playground-ellipsis",blur:"5vw",height:"100%",width:"100%"}),t(o.as,{...o.formProps,class:"component-playground-component"},{...e})]),t(_,{modelValue:o.formProps,componentData:o.componentData,"onUpdate:modelValue":n=>o.formProps=n})])}});export{w as _}; diff --git a/docs/.output/public/_nuxt/ComponentPlaygroundData.c394e239.js b/docs/.output/public/_nuxt/ComponentPlaygroundData.8cb96cd4.js similarity index 81% rename from docs/.output/public/_nuxt/ComponentPlaygroundData.c394e239.js rename to docs/.output/public/_nuxt/ComponentPlaygroundData.8cb96cd4.js index ca244a5a..09a17097 100644 --- a/docs/.output/public/_nuxt/ComponentPlaygroundData.c394e239.js +++ b/docs/.output/public/_nuxt/ComponentPlaygroundData.8cb96cd4.js @@ -1 +1 @@ -import b from"./TabsHeader.f80c17f8.js";import x from"./ComponentPlaygroundProps.59058ddd.js";import{_ as v}from"./ComponentPlaygroundSlots.vue.d9207f3c.js";import{_ as D}from"./ComponentPlaygroundTokens.vue.43c587d1.js";import{a as g}from"./index.889aa611.js";import{f as V,r as k,q as n,x as C,G as P,u as e,B as m,d as T,D as r}from"./runtime-core.esm-bundler.6894272a.js";import{a as B}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./ProseH4.4ddfc0da.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.a4f5598b.js";import"./ContentSlot.7e1a494f.js";import"./ProseP.9fd9b629.js";const q={class:"component-playground-data"},I=V({__name:"ComponentPlaygroundData",props:{modelValue:{type:Object,required:!1,default:()=>({})},componentData:{type:Object,required:!1,default:()=>({})}},emits:["update:modelValue"],setup(t,{emit:l}){const a=g(t,"modelValue",l),o=k(0),c=[{label:"Props"},{label:"Slots"},{label:"Design Tokens"}],d=p=>o.value=p;return(p,s)=>{const u=b,_=x,i=v,f=D;return n(),C("div",q,[P(u,{"active-tab-index":e(o),tabs:c,"onUpdate:activeTabIndex":d},null,8,["active-tab-index"]),e(o)===0?(n(),m(_,{key:0,modelValue:e(a),"onUpdate:modelValue":s[0]||(s[0]=y=>T(a)?a.value=y:null),"component-data":t.componentData},null,8,["modelValue","component-data"])):r("",!0),e(o)===1?(n(),m(i,{key:1,"component-data":t.componentData},null,8,["component-data"])):r("",!0),e(o)===2?(n(),m(f,{key:2,"component-data":t.componentData},null,8,["component-data"])):r("",!0)])}}});const L=B(I,[["__scopeId","data-v-ff75821c"]]);export{L as default}; +import b from"./TabsHeader.f80c17f8.js";import x from"./ComponentPlaygroundProps.583c9bda.js";import{_ as v}from"./ComponentPlaygroundSlots.vue.d9207f3c.js";import{_ as D}from"./ComponentPlaygroundTokens.vue.43c587d1.js";import{a as g}from"./index.889aa611.js";import{f as V,r as k,q as n,x as C,G as P,u as e,B as m,d as T,D as r}from"./runtime-core.esm-bundler.6894272a.js";import{a as B}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./ProseH4.77a5278f.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.af643d4e.js";import"./ContentSlot.c5067a4f.js";import"./ProseP.9fd9b629.js";const q={class:"component-playground-data"},I=V({__name:"ComponentPlaygroundData",props:{modelValue:{type:Object,required:!1,default:()=>({})},componentData:{type:Object,required:!1,default:()=>({})}},emits:["update:modelValue"],setup(t,{emit:l}){const a=g(t,"modelValue",l),o=k(0),c=[{label:"Props"},{label:"Slots"},{label:"Design Tokens"}],d=p=>o.value=p;return(p,s)=>{const u=b,_=x,i=v,f=D;return n(),C("div",q,[P(u,{"active-tab-index":e(o),tabs:c,"onUpdate:activeTabIndex":d},null,8,["active-tab-index"]),e(o)===0?(n(),m(_,{key:0,modelValue:e(a),"onUpdate:modelValue":s[0]||(s[0]=y=>T(a)?a.value=y:null),"component-data":t.componentData},null,8,["modelValue","component-data"])):r("",!0),e(o)===1?(n(),m(i,{key:1,"component-data":t.componentData},null,8,["component-data"])):r("",!0),e(o)===2?(n(),m(f,{key:2,"component-data":t.componentData},null,8,["component-data"])):r("",!0)])}}});const L=B(I,[["__scopeId","data-v-ff75821c"]]);export{L as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlaygroundProps.59058ddd.js b/docs/.output/public/_nuxt/ComponentPlaygroundProps.583c9bda.js similarity index 80% rename from docs/.output/public/_nuxt/ComponentPlaygroundProps.59058ddd.js rename to docs/.output/public/_nuxt/ComponentPlaygroundProps.583c9bda.js index 4f86bb57..a75fcef5 100644 --- a/docs/.output/public/_nuxt/ComponentPlaygroundProps.59058ddd.js +++ b/docs/.output/public/_nuxt/ComponentPlaygroundProps.583c9bda.js @@ -1 +1 @@ -import k from"./ProseH4.4ddfc0da.js";import B from"./ProseCodeInline.dca1a534.js";import q from"./Badge.a4f5598b.js";import D from"./ProseP.9fd9b629.js";import{a as N}from"./index.889aa611.js";import{f as b,h as j,q as n,x as m,F as E,A as F,u as d,E as c,G as i,C as r,L as s,J as u,B as l,D as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as I}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./ContentSlot.7e1a494f.js";const L={class:"component-playground-data-section"},O=["id"],w=["value","onChange"],A=b({__name:"ComponentPlaygroundProps",props:{modelValue:{type:Object,required:!0},componentData:{type:Object,required:!0}},emits:["update:modelValue"],setup(f,{emit:x}){const a=f,_=N(a,"modelValue",x),y=(t,o)=>{_.value={..._.value,[o]:t.target.value}},g=j(()=>{var t,o;return(o=(t=a==null?void 0:a.componentData)==null?void 0:t.meta)==null?void 0:o.props});return(t,o)=>{const v=k,C=B,h=q,P=D;return n(),m("div",L,[(n(!0),m(E,null,F(d(g),e=>(n(),m("div",{key:e.name},[c("div",{id:e.name,class:"prop-title"},[i(v,{id:e.name},{default:r(()=>[s(u(e.name),1)]),_:2},1032,["id"]),c("span",null,[i(C,null,{default:r(()=>[s(u(e.type),1)]),_:2},1024),e.required?p("",!0):(n(),l(h,{key:0},{default:r(()=>[s(" Required ")]),_:1}))])],8,O),e.description?(n(),l(P,{key:0},{default:r(()=>[s(u(e.description),1)]),_:2},1024)):p("",!0),c("input",{value:d(_)[e.name],onChange:V=>y(V,e.name)},null,40,w)]))),128))])}}});const X=I(A,[["__scopeId","data-v-acf5a6ce"]]);export{X as default}; +import k from"./ProseH4.77a5278f.js";import B from"./ProseCodeInline.dca1a534.js";import q from"./Badge.af643d4e.js";import D from"./ProseP.9fd9b629.js";import{a as N}from"./index.889aa611.js";import{f as b,h as j,q as n,x as m,F as E,A as F,u as d,E as c,G as i,C as r,L as s,J as u,B as l,D as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as I}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ContentSlot.c5067a4f.js";const L={class:"component-playground-data-section"},O=["id"],w=["value","onChange"],A=b({__name:"ComponentPlaygroundProps",props:{modelValue:{type:Object,required:!0},componentData:{type:Object,required:!0}},emits:["update:modelValue"],setup(f,{emit:x}){const a=f,_=N(a,"modelValue",x),y=(t,o)=>{_.value={..._.value,[o]:t.target.value}},g=j(()=>{var t,o;return(o=(t=a==null?void 0:a.componentData)==null?void 0:t.meta)==null?void 0:o.props});return(t,o)=>{const v=k,C=B,h=q,P=D;return n(),m("div",L,[(n(!0),m(E,null,F(d(g),e=>(n(),m("div",{key:e.name},[c("div",{id:e.name,class:"prop-title"},[i(v,{id:e.name},{default:r(()=>[s(u(e.name),1)]),_:2},1032,["id"]),c("span",null,[i(C,null,{default:r(()=>[s(u(e.type),1)]),_:2},1024),e.required?p("",!0):(n(),l(h,{key:0},{default:r(()=>[s(" Required ")]),_:1}))])],8,O),e.description?(n(),l(P,{key:0},{default:r(()=>[s(u(e.description),1)]),_:2},1024)):p("",!0),c("input",{value:d(_)[e.name],onChange:V=>y(V,e.name)},null,40,w)]))),128))])}}});const X=I(A,[["__scopeId","data-v-acf5a6ce"]]);export{X as default}; diff --git a/docs/.output/public/_nuxt/ContentDoc.08489604.js b/docs/.output/public/_nuxt/ContentDoc.cbc50263.js similarity index 77% rename from docs/.output/public/_nuxt/ContentDoc.08489604.js rename to docs/.output/public/_nuxt/ContentDoc.cbc50263.js index de84f520..4338e893 100644 --- a/docs/.output/public/_nuxt/ContentDoc.08489604.js +++ b/docs/.output/public/_nuxt/ContentDoc.cbc50263.js @@ -1 +1 @@ -import{x as s,l as y}from"./app.config.4114fca6.js";import{a as u}from"./entry.2d43dc03.js";import g from"./ContentRenderer.51874b59.js";import v from"./ContentQuery.7a036327.js";import{f as w,ae as C,j as o}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";import"./ContentRendererMarkdown.1da6a628.js";import"./asyncData.2775b491.js";const P=w({name:"ContentDoc",props:{tag:{type:String,required:!1,default:"div"},excerpt:{type:Boolean,default:!1},path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0},head:{type:Boolean,required:!1,default:!0}},render(m){const t=C(),{tag:f,excerpt:i,path:d,query:r,head:p}=m,c={...r||{},path:d||(r==null?void 0:r.path)||s(y().path),find:"one"},l=(e,n)=>o("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:n},null,2));return o(v,c,{default:t!=null&&t.default?({data:e,refresh:n,isPartial:h})=>{var a;return p&&u(e),(a=t.default)==null?void 0:a.call(t,{doc:e,refresh:n,isPartial:h,excerpt:i,...this.$attrs})}:({data:e})=>(p&&u(e),o(g,{value:e,excerpt:i,tag:f,...this.$attrs},{empty:n=>t!=null&&t.empty?t.empty(n):l("default",e)})),empty:e=>{var n;return((n=t==null?void 0:t.empty)==null?void 0:n.call(t,e))||o("p",null,"Document is empty, overwrite this content with #empty slot in .")},"not-found":e=>{var n;return((n=t==null?void 0:t["not-found"])==null?void 0:n.call(t,e))||o("p",null,"Document not found, overwrite this content with #not-found slot in .")}})}});export{P as default}; +import{v as s,l as y}from"./app.config.f41ab05d.js";import{a as u}from"./entry.f3791b9c.js";import g from"./ContentRenderer.b7732722.js";import v from"./ContentQuery.9f33890e.js";import{f as w,ae as C,j as o}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";import"./ContentRendererMarkdown.e52b62de.js";import"./asyncData.7c06b2d5.js";const P=w({name:"ContentDoc",props:{tag:{type:String,required:!1,default:"div"},excerpt:{type:Boolean,default:!1},path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0},head:{type:Boolean,required:!1,default:!0}},render(m){const t=C(),{tag:f,excerpt:i,path:d,query:r,head:p}=m,c={...r||{},path:d||(r==null?void 0:r.path)||s(y().path),find:"one"},l=(e,n)=>o("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:n},null,2));return o(v,c,{default:t!=null&&t.default?({data:e,refresh:n,isPartial:h})=>{var a;return p&&u(e),(a=t.default)==null?void 0:a.call(t,{doc:e,refresh:n,isPartial:h,excerpt:i,...this.$attrs})}:({data:e})=>(p&&u(e),o(g,{value:e,excerpt:i,tag:f,...this.$attrs},{empty:n=>t!=null&&t.empty?t.empty(n):l("default",e)})),empty:e=>{var n;return((n=t==null?void 0:t.empty)==null?void 0:n.call(t,e))||o("p",null,"Document is empty, overwrite this content with #empty slot in .")},"not-found":e=>{var n;return((n=t==null?void 0:t["not-found"])==null?void 0:n.call(t,e))||o("p",null,"Document not found, overwrite this content with #not-found slot in .")}})}});export{P as default}; diff --git a/docs/.output/public/_nuxt/ContentList.394febbe.js b/docs/.output/public/_nuxt/ContentList.e8a9fb87.js similarity index 72% rename from docs/.output/public/_nuxt/ContentList.394febbe.js rename to docs/.output/public/_nuxt/ContentList.e8a9fb87.js index e425b9c8..83d8f307 100644 --- a/docs/.output/public/_nuxt/ContentList.394febbe.js +++ b/docs/.output/public/_nuxt/ContentList.e8a9fb87.js @@ -1 +1 @@ -import n from"./ContentQuery.7a036327.js";import{f as c,ae as h,j as p}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./asyncData.2775b491.js";import"./entry.2d43dc03.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const O=c({name:"ContentList",props:{path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0}},render(m){const t=h(),{path:u,query:r}=m,f={...r||{},path:u||(r==null?void 0:r.path)||"/"},a=(e,o)=>p("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:o},null,2));return p(n,f,{default:t!=null&&t.default?({data:e,refresh:o,isPartial:d})=>t==null?void 0:t.default({list:e,refresh:o,isPartial:d,...this.$attrs}):({data:e})=>a("default",e),empty:e=>t!=null&&t.empty?t.empty(e):a("default",e==null?void 0:e.data),"not-found":e=>{var o;return t!=null&&t["not-found"]?(o=t==null?void 0:t["not-found"])==null?void 0:o.call(t,e):a("not-found",e==null?void 0:e.data)}})}});export{O as default}; +import n from"./ContentQuery.9f33890e.js";import{f as c,ae as h,j as p}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./asyncData.7c06b2d5.js";import"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const O=c({name:"ContentList",props:{path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0}},render(m){const t=h(),{path:u,query:r}=m,f={...r||{},path:u||(r==null?void 0:r.path)||"/"},a=(e,o)=>p("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:o},null,2));return p(n,f,{default:t!=null&&t.default?({data:e,refresh:o,isPartial:d})=>t==null?void 0:t.default({list:e,refresh:o,isPartial:d,...this.$attrs}):({data:e})=>a("default",e),empty:e=>t!=null&&t.empty?t.empty(e):a("default",e==null?void 0:e.data),"not-found":e=>{var o;return t!=null&&t["not-found"]?(o=t==null?void 0:t["not-found"])==null?void 0:o.call(t,e):a("not-found",e==null?void 0:e.data)}})}});export{O as default}; diff --git a/docs/.output/public/_nuxt/ContentNavigation.d592cbe0.js b/docs/.output/public/_nuxt/ContentNavigation.cefda237.js similarity index 56% rename from docs/.output/public/_nuxt/ContentNavigation.d592cbe0.js rename to docs/.output/public/_nuxt/ContentNavigation.cefda237.js index 83437662..d47ce0cf 100644 --- a/docs/.output/public/_nuxt/ContentNavigation.d592cbe0.js +++ b/docs/.output/public/_nuxt/ContentNavigation.cefda237.js @@ -1 +1 @@ -import{u as P,_ as I}from"./app.config.4114fca6.js";import{u as D}from"./asyncData.2775b491.js";import{u as R,d as V}from"./useDocus.edcbeab5.js";import{b as g,h as S,f as y}from"./entry.2d43dc03.js";import{_ as e}from"./Container.f1017aa2.js";import"./ContentSlot.7e1a494f.js";import"./DocsAsideTree.08d70919.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.21b8aa9d.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.4ddfc0da.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.a4f5598b.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./Ellipsis.50580cd1.js";import"./List.vue.d5bae865.js";import"./NuxtImg.vue.594abc77.js";import"./Props.80a76d3d.js";import"./TabsHeader.f80c17f8.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.db6a2f57.js";import"./ComponentPlaygroundProps.59058ddd.js";import"./ComponentPlaygroundData.c394e239.js";/* empty css */import"./ContentDoc.08489604.js";import"./ContentList.394febbe.js";import{f as a,r as v,Q as b,x as B,o as x,j as f,h as O,e as r,ak as j,ae as N}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentQuery.7a036327.js";import"./ContentRenderer.51874b59.js";import"./ContentRendererMarkdown.1da6a628.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.eb6ef861.js";import"./layout.732d57d1.js";import"./GithubRepository.bbd436c6.js";import"./GithubLink.6e1f1ea3.js";import"./GithubReadme.3309f143.js";import"./GithubReleases.54c416e9.js";import"./GithubLastRelease.7ffc61aa.js";import"./GithubRelease.fea5f747.js";import"./GithubContributors.35cdb9ac.js";import"./GithubFileContributors.2287b161.js";import"./GithubCommits.e43b30d0.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./query.c3f7607a.js";import"./ProseTbody.37a7db42.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";import"./useGithub.916c5979.js";const c=a({emits:{error(t){return!0}},setup(t,{slots:i,emit:o}){const _=v(null),u=P();return b(m=>{if(!u.isHydrating)return o("error",m),_.value=m,!1}),()=>{var m,n;return _.value?(m=i.error)==null?void 0:m.call(i,{error:_}):(n=i.default)==null?void 0:n.call(i)}}}),k=Object.freeze(Object.defineProperty({__proto__:null,default:c},Symbol.toStringTag,{value:"Module"})),z=a({name:"DevOnly",setup(t,i){return()=>null}}),M=Object.freeze(Object.defineProperty({__proto__:null,default:z},Symbol.toStringTag,{value:"Module"})),C=a({name:"ServerPlaceholder",render(){return B("div")}}),q=Object.freeze(Object.defineProperty({__proto__:null,default:C},Symbol.toStringTag,{value:"Module"})),$=a({name:"NuxtLoadingIndicator",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3},height:{type:Number,default:3},color:{type:[String,Boolean],default:"repeating-linear-gradient(to right,#00dc82 0%,#34cdfe 50%,#0047e1 100%)"}},setup(t,{slots:i}){const o=H({duration:t.duration,throttle:t.throttle}),_=P();return _.hook("page:start",o.start),_.hook("page:finish",o.finish),x(()=>o.clear),()=>f("div",{class:"nuxt-loading-indicator",style:{position:"fixed",top:0,right:0,left:0,pointerEvents:"none",width:`${o.progress.value}%`,height:`${t.height}px`,opacity:o.isLoading.value?1:0,background:t.color||void 0,backgroundSize:`${100/o.progress.value*100}% auto`,transition:"width 0.1s, height 0.4s, opacity 0.4s",zIndex:999999}},i)}});function H(t){const i=v(0),o=v(!1),_=O(()=>1e4/t.duration);let u=null,m=null;function n(){l(),i.value=0,t.throttle?m=setTimeout(()=>{o.value=!0,s()},t.throttle):(o.value=!0,s())}function h(){i.value=100,T()}function l(){clearInterval(u),clearTimeout(m),u=null,m=null}function A(L){i.value=Math.min(100,i.value+L)}function T(){l(),setTimeout(()=>{o.value=!1,setTimeout(()=>{i.value=0},400)},500)}function s(){u=setInterval(()=>{A(_.value)},100)}return{progress:i,isLoading:o,start:n,finish:h,clear:l}}const w=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),U=t=>Object.fromEntries(Object.entries(t).filter(([,i])=>i!==void 0)),d=(t,i)=>(o,_)=>(g(()=>t({...U(o),..._.attrs},_)),()=>{var u,m;return i?(m=(u=_.slots).default)==null?void 0:m.call(u):null}),E={accesskey:String,autocapitalize:String,autofocus:{type:Boolean,default:void 0},class:[String,Object,Array],contenteditable:{type:Boolean,default:void 0},contextmenu:String,dir:String,draggable:{type:Boolean,default:void 0},enterkeyhint:String,exportparts:String,hidden:{type:Boolean,default:void 0},id:String,inputmode:String,is:String,itemid:String,itemprop:String,itemref:String,itemscope:String,itemtype:String,lang:String,nonce:String,part:String,slot:String,spellcheck:{type:Boolean,default:void 0},style:String,tabindex:String,title:String,translate:String},F=a({name:"NoScript",inheritAttrs:!1,props:{...E,title:String,body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u;const o={...t},_=(((u=i.default)==null?void 0:u.call(i))||[]).filter(({children:m})=>m).map(({children:m})=>m).join("");return _&&(o.children=_),{noscript:[o]}})}),Q=a({name:"Link",inheritAttrs:!1,props:{...E,as:String,crossorigin:String,disabled:Boolean,fetchpriority:String,href:String,hreflang:String,imagesizes:String,imagesrcset:String,integrity:String,media:String,prefetch:{type:Boolean,default:void 0},referrerpolicy:String,rel:String,sizes:String,title:String,type:String,methods:String,target:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>({link:[t]}))}),G=a({name:"Base",inheritAttrs:!1,props:{...E,href:String,target:String},setup:d(t=>({base:t}))}),J=a({name:"Title",inheritAttrs:!1,setup:d((t,{slots:i})=>{var _,u,m;return{title:((m=(u=(_=i.default)==null?void 0:_.call(i))==null?void 0:u[0])==null?void 0:m.children)||null}})}),K=a({name:"Meta",inheritAttrs:!1,props:{...E,charset:String,content:String,httpEquiv:String,name:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>{const i={...t};return i.httpEquiv&&(i["http-equiv"]=i.httpEquiv,delete i.httpEquiv),{meta:[i]}})}),W=a({name:"Style",inheritAttrs:!1,props:{...E,type:String,media:String,nonce:String,title:String,scoped:{type:Boolean,default:void 0},body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u,m,n;const o={...t},_=(n=(m=(u=i.default)==null?void 0:u.call(i))==null?void 0:m[0])==null?void 0:n.children;return _&&(o.children=_),{style:[o]}})}),X=a({name:"Head",inheritAttrs:!1,setup:(t,i)=>()=>{var o,_;return(_=(o=i.slots).default)==null?void 0:_.call(o)}}),Y=a({name:"Html",inheritAttrs:!1,props:{...E,manifest:String,version:String,xmlns:String,renderPriority:[String,Number]},setup:d(t=>({htmlAttrs:t}),!0)}),Z=a({name:"Body",inheritAttrs:!1,props:{...E,renderPriority:[String,Number]},setup:d(t=>({bodyAttrs:t}),!0)}),p=Object.freeze(Object.defineProperty({__proto__:null,Base:G,Body:Z,Head:X,Html:Y,Link:Q,Meta:K,NoScript:F,Style:W,Title:J},Symbol.toStringTag,{value:"Module"}));r(()=>e(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleTheTitle.e4b43830.js"),["./ExampleTheTitle.e4b43830.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./HeroAnnouncement.32859cbb.js"),["./HeroAnnouncement.32859cbb.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.L),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./MyButton.d8f00b03.js"),["./MyButton.d8f00b03.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ReadMore.bd9c6b06.js"),["./ReadMore.bd9c6b06.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.y),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.x),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.o),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.r),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.s),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./AppLayout.bec693ec.js"),["./AppLayout.bec693ec.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.A),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.t),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.n),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenNotFound.25e8b3dc.js"),["./DocumentDrivenNotFound.25e8b3dc.js","./ButtonLink.2789431f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.T),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAside.44ffd29b.js"),["./DocsAside.44ffd29b.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.08d70919.js").then(t=>t.D),["./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageBottom.a96d3867.js"),["./DocsPageBottom.a96d3867.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.c8de8b63.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.21b8aa9d.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageLayout.8e541ec6.js"),["./DocsPageLayout.8e541ec6.js","./DocsAside.44ffd29b.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./Alert.f24f4058.css","./DocsPageBottom.a96d3867.js","./ProseA.c8de8b63.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.21b8aa9d.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.adb795e8.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.03cf2013.js","./DocsTocLinks.c11364e4.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPrevNext.adb795e8.js"),["./DocsPrevNext.adb795e8.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsToc.03cf2013.js"),["./DocsToc.03cf2013.js","./DocsTocLinks.c11364e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.4114fca6.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsTocLinks.c11364e4.js"),["./DocsTocLinks.c11364e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.4114fca6.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./EditOnLink.f0fb05c8.js"),["./EditOnLink.f0fb05c8.js","./EditOnLink.vue.21b8aa9d.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.edcbeab5.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseA.c8de8b63.js"),["./ProseA.c8de8b63.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCode.2adf04d1.js"),["./ProseCode.2adf04d1.js","./ProseCodeCopyButton.1eec7dbb.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH1.ee507e45.js"),["./ProseH1.ee507e45.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH2.36291d6d.js"),["./ProseH2.36291d6d.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH3.0209a6ec.js"),["./ProseH3.0209a6ec.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH4.4ddfc0da.js"),["./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH5.fd3b0c88.js"),["./ProseH5.fd3b0c88.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH6.c2012c78.js"),["./ProseH6.c2012c78.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseImg.ff3b8d7e.js"),["./ProseImg.ff3b8d7e.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeCopyButton.1eec7dbb.js"),["./ProseCodeCopyButton.1eec7dbb.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Alert.443f6167.js"),["./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Badge.a4f5598b.js"),["./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ButtonLink.2789431f.js"),["./ButtonLink.2789431f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./ButtonLink.1b73392c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Callout.e09a04aa.js"),["./Callout.e09a04aa.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Container.f1017aa2.js").then(t=>t.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CopyButton.c9acc792.js"),["./CopyButton.c9acc792.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./List.0c42b342.js"),["./List.0c42b342.js","./List.vue.d5bae865.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./List.a65f0e81.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./NuxtImg.3bab810e.js"),["./NuxtImg.3bab810e.js","./NuxtImg.vue.594abc77.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Props.80a76d3d.js"),["./Props.80a76d3d.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.4114fca6.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Sandbox.21a025fb.js"),["./Sandbox.21a025fb.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Sandbox.68fd6c5d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VideoPlayer.4efd76f7.js"),["./VideoPlayer.4efd76f7.js","./NuxtImg.vue.594abc77.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./BlockHero.81a09280.js"),["./BlockHero.81a09280.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.2789431f.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Card.24a8ff8f.js"),["./Card.24a8ff8f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./Card.5dfb7f30.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CardGrid.362959de.js"),["./CardGrid.362959de.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlayground.00658939.js"),["./ComponentPlayground.00658939.js","./ComponentPlayground.vue.db6a2f57.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.c394e239.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.59058ddd.js","./ProseH4.4ddfc0da.js","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundData.c394e239.js"),["./ComponentPlaygroundData.c394e239.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.59058ddd.js","./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundProps.59058ddd.js"),["./ComponentPlaygroundProps.59058ddd.js","./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentPreviewMode.0a29e9d3.js"),["./ContentPreviewMode.0a29e9d3.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.4114fca6.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./asyncData.2775b491.js","./entry.2d43dc03.js","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentDoc.08489604.js"),["./ContentDoc.08489604.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./ContentQuery.7a036327.js","./asyncData.2775b491.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentList.394febbe.js"),["./ContentList.394febbe.js","./ContentQuery.7a036327.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>et),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentQuery.7a036327.js"),["./ContentQuery.7a036327.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRenderer.51874b59.js"),["./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRendererMarkdown.1da6a628.js"),["./ContentRendererMarkdown.1da6a628.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentSlot.7e1a494f.js"),["./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Markdown.eb6ef861.js"),["./Markdown.eb6ef861.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./welcome.0953e899.js"),["./welcome.0953e899.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./asyncData.2775b491.js","./ContentSlot.7e1a494f.js","./EditOnLink.vue.21b8aa9d.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.4ddfc0da.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.a4f5598b.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.d5bae865.js","./List.a65f0e81.css","./NuxtImg.vue.594abc77.js","./Props.80a76d3d.js","./ProseTbody.37a7db42.js","./ComponentPlayground.vue.db6a2f57.js","./ComponentPlaygroundData.c394e239.js","./ComponentPlaygroundProps.59058ddd.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.08489604.js","./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./ContentQuery.7a036327.js","./ContentList.394febbe.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.eb6ef861.js","./layout.732d57d1.js","./GithubRepository.bbd436c6.js","./useGithub.916c5979.js","./GithubLink.6e1f1ea3.js","./GithubReadme.3309f143.js","./GithubReleases.54c416e9.js","./GithubLastRelease.7ffc61aa.js","./GithubRelease.fea5f747.js","./GithubContributors.35cdb9ac.js","./GithubFileContributors.2287b161.js","./GithubCommits.e43b30d0.js","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./layout.732d57d1.js"),["./layout.732d57d1.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./entry.2d43dc03.js","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>k),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.v),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>M),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>q),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./app.config.4114fca6.js").then(t=>t.y),["./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>w),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRepository.bbd436c6.js"),["./GithubRepository.bbd436c6.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLink.6e1f1ea3.js"),["./GithubLink.6e1f1ea3.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReadme.3309f143.js"),["./GithubReadme.3309f143.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReleases.54c416e9.js"),["./GithubReleases.54c416e9.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLastRelease.7ffc61aa.js"),["./GithubLastRelease.7ffc61aa.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRelease.fea5f747.js"),["./GithubRelease.fea5f747.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubContributors.35cdb9ac.js"),["./GithubContributors.35cdb9ac.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubFileContributors.2287b161.js"),["./GithubFileContributors.2287b161.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubCommits.e43b30d0.js"),["./GithubCommits.e43b30d0.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.916c5979.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.w),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.08d70919.js").then(t=>t.I),["./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.2d43dc03.js").then(t=>t.p),["./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.NoScript));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Link));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Base));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Title));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Meta));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Style));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Head));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Html));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Body));const tt=a({name:"ContentNavigation",props:{query:{type:Object,required:!1,default:void 0}},async setup(t){const{query:i}=j(t),o=O(()=>{var u;return typeof((u=i.value)==null?void 0:u.params)=="function"?i.value.params():i.value});if(!o.value&&R("dd-navigation").value){const{navigation:u}=V();return{navigation:u}}const{data:_}=await D(`content-navigation-${S(o.value)}`,()=>y(o.value));return{navigation:_}},render(t){const i=N(),{navigation:o}=t,_=n=>f(I,{to:n._path},()=>n.title),u=(n,h)=>f("ul",h?{"data-level":h}:null,n.map(l=>l.children?f("li",null,[_(l),u(l.children,h+1)]):f("li",null,_(l)))),m=n=>u(n,0);return i!=null&&i.default?i.default({navigation:o,...this.$attrs}):m(o)}}),et=Object.freeze(Object.defineProperty({__proto__:null,default:tt},Symbol.toStringTag,{value:"Module"}));export{tt as default}; +import{u as P,_ as I}from"./app.config.f41ab05d.js";import{u as D}from"./asyncData.7c06b2d5.js";import{u as R,d as V}from"./useDocus.41ab1ca5.js";import{b as g,h as S,f as y}from"./entry.f3791b9c.js";import{_ as e}from"./Container.f1017aa2.js";import"./ContentSlot.c5067a4f.js";import"./DocsAsideTree.b95e55e0.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.77a5278f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.af643d4e.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./Ellipsis.50580cd1.js";import"./List.vue.98cb48bf.js";import"./NuxtImg.vue.a13022c3.js";import"./Props.876d937c.js";import"./TabsHeader.f80c17f8.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.1e5cc557.js";import"./ComponentPlaygroundProps.583c9bda.js";import"./ComponentPlaygroundData.8cb96cd4.js";/* empty css */import"./ContentDoc.cbc50263.js";import"./ContentList.e8a9fb87.js";import{f as a,r as v,Q as b,x as B,o as x,j as f,h as O,e as r,ak as j,ae as N}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentQuery.9f33890e.js";import"./ContentRenderer.b7732722.js";import"./ContentRendererMarkdown.e52b62de.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.7f24e431.js";import"./layout.0a22fa4a.js";import"./GithubRepository.345038c7.js";import"./GithubLink.6cd695ea.js";import"./GithubReadme.5eafd6e1.js";import"./GithubReleases.05c52708.js";import"./GithubLastRelease.a4aeb30e.js";import"./GithubRelease.d892113d.js";import"./GithubContributors.9ddddad6.js";import"./GithubFileContributors.1ad6f7bf.js";import"./GithubCommits.35c65eac.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./query.c3f7607a.js";import"./ProseTbody.37a7db42.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";import"./useGithub.1972ce55.js";const c=a({emits:{error(t){return!0}},setup(t,{slots:i,emit:o}){const _=v(null),u=P();return b(m=>{if(!u.isHydrating)return o("error",m),_.value=m,!1}),()=>{var m,n;return _.value?(m=i.error)==null?void 0:m.call(i,{error:_}):(n=i.default)==null?void 0:n.call(i)}}}),k=Object.freeze(Object.defineProperty({__proto__:null,default:c},Symbol.toStringTag,{value:"Module"})),z=a({name:"DevOnly",setup(t,i){return()=>null}}),M=Object.freeze(Object.defineProperty({__proto__:null,default:z},Symbol.toStringTag,{value:"Module"})),C=a({name:"ServerPlaceholder",render(){return B("div")}}),q=Object.freeze(Object.defineProperty({__proto__:null,default:C},Symbol.toStringTag,{value:"Module"})),$=a({name:"NuxtLoadingIndicator",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3},height:{type:Number,default:3},color:{type:[String,Boolean],default:"repeating-linear-gradient(to right,#00dc82 0%,#34cdfe 50%,#0047e1 100%)"}},setup(t,{slots:i}){const o=H({duration:t.duration,throttle:t.throttle}),_=P();return _.hook("page:start",o.start),_.hook("page:finish",o.finish),x(()=>o.clear),()=>f("div",{class:"nuxt-loading-indicator",style:{position:"fixed",top:0,right:0,left:0,pointerEvents:"none",width:`${o.progress.value}%`,height:`${t.height}px`,opacity:o.isLoading.value?1:0,background:t.color||void 0,backgroundSize:`${100/o.progress.value*100}% auto`,transition:"width 0.1s, height 0.4s, opacity 0.4s",zIndex:999999}},i)}});function H(t){const i=v(0),o=v(!1),_=O(()=>1e4/t.duration);let u=null,m=null;function n(){l(),i.value=0,t.throttle?m=setTimeout(()=>{o.value=!0,s()},t.throttle):(o.value=!0,s())}function h(){i.value=100,T()}function l(){clearInterval(u),clearTimeout(m),u=null,m=null}function A(L){i.value=Math.min(100,i.value+L)}function T(){l(),setTimeout(()=>{o.value=!1,setTimeout(()=>{i.value=0},400)},500)}function s(){u=setInterval(()=>{A(_.value)},100)}return{progress:i,isLoading:o,start:n,finish:h,clear:l}}const w=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),U=t=>Object.fromEntries(Object.entries(t).filter(([,i])=>i!==void 0)),d=(t,i)=>(o,_)=>(g(()=>t({...U(o),..._.attrs},_)),()=>{var u,m;return i?(m=(u=_.slots).default)==null?void 0:m.call(u):null}),E={accesskey:String,autocapitalize:String,autofocus:{type:Boolean,default:void 0},class:[String,Object,Array],contenteditable:{type:Boolean,default:void 0},contextmenu:String,dir:String,draggable:{type:Boolean,default:void 0},enterkeyhint:String,exportparts:String,hidden:{type:Boolean,default:void 0},id:String,inputmode:String,is:String,itemid:String,itemprop:String,itemref:String,itemscope:String,itemtype:String,lang:String,nonce:String,part:String,slot:String,spellcheck:{type:Boolean,default:void 0},style:String,tabindex:String,title:String,translate:String},F=a({name:"NoScript",inheritAttrs:!1,props:{...E,title:String,body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u;const o={...t},_=(((u=i.default)==null?void 0:u.call(i))||[]).filter(({children:m})=>m).map(({children:m})=>m).join("");return _&&(o.children=_),{noscript:[o]}})}),Q=a({name:"Link",inheritAttrs:!1,props:{...E,as:String,crossorigin:String,disabled:Boolean,fetchpriority:String,href:String,hreflang:String,imagesizes:String,imagesrcset:String,integrity:String,media:String,prefetch:{type:Boolean,default:void 0},referrerpolicy:String,rel:String,sizes:String,title:String,type:String,methods:String,target:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>({link:[t]}))}),G=a({name:"Base",inheritAttrs:!1,props:{...E,href:String,target:String},setup:d(t=>({base:t}))}),J=a({name:"Title",inheritAttrs:!1,setup:d((t,{slots:i})=>{var _,u,m;return{title:((m=(u=(_=i.default)==null?void 0:_.call(i))==null?void 0:u[0])==null?void 0:m.children)||null}})}),K=a({name:"Meta",inheritAttrs:!1,props:{...E,charset:String,content:String,httpEquiv:String,name:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>{const i={...t};return i.httpEquiv&&(i["http-equiv"]=i.httpEquiv,delete i.httpEquiv),{meta:[i]}})}),W=a({name:"Style",inheritAttrs:!1,props:{...E,type:String,media:String,nonce:String,title:String,scoped:{type:Boolean,default:void 0},body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u,m,n;const o={...t},_=(n=(m=(u=i.default)==null?void 0:u.call(i))==null?void 0:m[0])==null?void 0:n.children;return _&&(o.children=_),{style:[o]}})}),X=a({name:"Head",inheritAttrs:!1,setup:(t,i)=>()=>{var o,_;return(_=(o=i.slots).default)==null?void 0:_.call(o)}}),Y=a({name:"Html",inheritAttrs:!1,props:{...E,manifest:String,version:String,xmlns:String,renderPriority:[String,Number]},setup:d(t=>({htmlAttrs:t}),!0)}),Z=a({name:"Body",inheritAttrs:!1,props:{...E,renderPriority:[String,Number]},setup:d(t=>({bodyAttrs:t}),!0)}),p=Object.freeze(Object.defineProperty({__proto__:null,Base:G,Body:Z,Head:X,Html:Y,Link:Q,Meta:K,NoScript:F,Style:W,Title:J},Symbol.toStringTag,{value:"Module"}));r(()=>e(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleTheTitle.f00d8fad.js"),["./ExampleTheTitle.f00d8fad.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./HeroAnnouncement.15bcf84c.js"),["./HeroAnnouncement.15bcf84c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.L),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./MyButton.67bdaa98.js"),["./MyButton.67bdaa98.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ReadMore.4d40ce3f.js"),["./ReadMore.4d40ce3f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.y),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.x),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.o),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.r),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.s),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./AppLayout.7354fe11.js"),["./AppLayout.7354fe11.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.A),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.t),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.n),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenNotFound.66d77c6e.js"),["./DocumentDrivenNotFound.66d77c6e.js","./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.T),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAside.08a0955d.js"),["./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.b95e55e0.js").then(t=>t.D),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageBottom.b38ecc43.js"),["./DocsPageBottom.b38ecc43.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageLayout.d352cf62.js"),["./DocsPageLayout.d352cf62.js","./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css","./DocsPageBottom.b38ecc43.js","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2b9ea48f.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPrevNext.2b9ea48f.js"),["./DocsPrevNext.2b9ea48f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsToc.55846f28.js"),["./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsTocLinks.644c91ee.js"),["./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./EditOnLink.77af6984.js"),["./EditOnLink.77af6984.js","./EditOnLink.vue.1d2292f2.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.41ab1ca5.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseA.a4d07cc8.js"),["./ProseA.a4d07cc8.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCode.0e5c7be6.js"),["./ProseCode.0e5c7be6.js","./ProseCodeCopyButton.29965c5a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH1.c24b90eb.js"),["./ProseH1.c24b90eb.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH2.957cbe8e.js"),["./ProseH2.957cbe8e.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH3.cb2444de.js"),["./ProseH3.cb2444de.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH4.77a5278f.js"),["./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH5.8dc93198.js"),["./ProseH5.8dc93198.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH6.bdc78e01.js"),["./ProseH6.bdc78e01.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseImg.16c4c81d.js"),["./ProseImg.16c4c81d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeCopyButton.29965c5a.js"),["./ProseCodeCopyButton.29965c5a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Alert.41cb256b.js"),["./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Badge.af643d4e.js"),["./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ButtonLink.91883881.js"),["./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Callout.12d57ced.js"),["./Callout.12d57ced.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Container.f1017aa2.js").then(t=>t.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CopyButton.f7858c79.js"),["./CopyButton.f7858c79.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./List.63030545.js"),["./List.63030545.js","./List.vue.98cb48bf.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./List.a65f0e81.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./NuxtImg.66944f8e.js"),["./NuxtImg.66944f8e.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Props.876d937c.js"),["./Props.876d937c.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.f41ab05d.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Sandbox.b8bdb0c7.js"),["./Sandbox.b8bdb0c7.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Sandbox.68fd6c5d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VideoPlayer.065c6aeb.js"),["./VideoPlayer.065c6aeb.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./BlockHero.495ede00.js"),["./BlockHero.495ede00.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.91883881.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Card.178cbb97.js"),["./Card.178cbb97.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./Card.5dfb7f30.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CardGrid.e3a9f75d.js"),["./CardGrid.e3a9f75d.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlayground.3c424a18.js"),["./ComponentPlayground.3c424a18.js","./ComponentPlayground.vue.1e5cc557.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundData.8cb96cd4.js"),["./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundProps.583c9bda.js"),["./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentPreviewMode.ea418cb0.js"),["./ContentPreviewMode.ea418cb0.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentDoc.cbc50263.js"),["./ContentDoc.cbc50263.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./ContentQuery.9f33890e.js","./asyncData.7c06b2d5.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentList.e8a9fb87.js"),["./ContentList.e8a9fb87.js","./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>et),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentQuery.9f33890e.js"),["./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRenderer.b7732722.js"),["./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRendererMarkdown.e52b62de.js"),["./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentSlot.c5067a4f.js"),["./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Markdown.7f24e431.js"),["./Markdown.7f24e431.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./welcome.4086e1c1.js"),["./welcome.4086e1c1.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./asyncData.7c06b2d5.js","./ContentSlot.c5067a4f.js","./EditOnLink.vue.1d2292f2.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.77a5278f.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.af643d4e.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.98cb48bf.js","./List.a65f0e81.css","./NuxtImg.vue.a13022c3.js","./Props.876d937c.js","./ProseTbody.37a7db42.js","./ComponentPlayground.vue.1e5cc557.js","./ComponentPlaygroundData.8cb96cd4.js","./ComponentPlaygroundProps.583c9bda.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.cbc50263.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./ContentQuery.9f33890e.js","./ContentList.e8a9fb87.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.7f24e431.js","./layout.0a22fa4a.js","./GithubRepository.345038c7.js","./useGithub.1972ce55.js","./GithubLink.6cd695ea.js","./GithubReadme.5eafd6e1.js","./GithubReleases.05c52708.js","./GithubLastRelease.a4aeb30e.js","./GithubRelease.d892113d.js","./GithubContributors.9ddddad6.js","./GithubFileContributors.1ad6f7bf.js","./GithubCommits.35c65eac.js","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./layout.0a22fa4a.js"),["./layout.0a22fa4a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./entry.f3791b9c.js","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>k),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.v),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>M),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>q),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./app.config.f41ab05d.js").then(t=>t.x),["./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>w),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRepository.345038c7.js"),["./GithubRepository.345038c7.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLink.6cd695ea.js"),["./GithubLink.6cd695ea.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReadme.5eafd6e1.js"),["./GithubReadme.5eafd6e1.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReleases.05c52708.js"),["./GithubReleases.05c52708.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLastRelease.a4aeb30e.js"),["./GithubLastRelease.a4aeb30e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRelease.d892113d.js"),["./GithubRelease.d892113d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubContributors.9ddddad6.js"),["./GithubContributors.9ddddad6.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubFileContributors.1ad6f7bf.js"),["./GithubFileContributors.1ad6f7bf.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubCommits.35c65eac.js"),["./GithubCommits.35c65eac.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.w),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.b95e55e0.js").then(t=>t.I),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.p),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.NoScript));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Link));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Base));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Title));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Meta));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Style));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Head));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Html));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Body));const tt=a({name:"ContentNavigation",props:{query:{type:Object,required:!1,default:void 0}},async setup(t){const{query:i}=j(t),o=O(()=>{var u;return typeof((u=i.value)==null?void 0:u.params)=="function"?i.value.params():i.value});if(!o.value&&R("dd-navigation").value){const{navigation:u}=V();return{navigation:u}}const{data:_}=await D(`content-navigation-${S(o.value)}`,()=>y(o.value));return{navigation:_}},render(t){const i=N(),{navigation:o}=t,_=n=>f(I,{to:n._path},()=>n.title),u=(n,h)=>f("ul",h?{"data-level":h}:null,n.map(l=>l.children?f("li",null,[_(l),u(l.children,h+1)]):f("li",null,_(l)))),m=n=>u(n,0);return i!=null&&i.default?i.default({navigation:o,...this.$attrs}):m(o)}}),et=Object.freeze(Object.defineProperty({__proto__:null,default:tt},Symbol.toStringTag,{value:"Module"}));export{tt as default}; diff --git a/docs/.output/public/_nuxt/ContentPreviewMode.0a29e9d3.js b/docs/.output/public/_nuxt/ContentPreviewMode.ea418cb0.js similarity index 92% rename from docs/.output/public/_nuxt/ContentPreviewMode.0a29e9d3.js rename to docs/.output/public/_nuxt/ContentPreviewMode.ea418cb0.js index 1113c121..73fa4023 100644 --- a/docs/.output/public/_nuxt/ContentPreviewMode.0a29e9d3.js +++ b/docs/.output/public/_nuxt/ContentPreviewMode.ea418cb0.js @@ -1 +1 @@ -import{_ as T,a as b}from"./Container.f1017aa2.js";import{u as q,l as k,p as S}from"./app.config.4114fca6.js";import{T as g}from"./DocsAsideTree.08d70919.js";import{r as I}from"./asyncData.2775b491.js";import{u as L}from"./cookie.5bbb58d5.js";import{f as M,r as p,O as A,aj as N,q as u,x as l,y as B,F as E,E as e,D as v,G as x,C,J as R,n as U,M as z,N as D}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./index.d2b0cb5e.js";import"./useDocus.edcbeab5.js";import"./entry.2d43dc03.js";import"./query.c3f7607a.js";const i=a=>(z("data-v-572e7d1a"),a=a(),D(),a),F=i(()=>e("svg",{viewBox:"0 0 90 90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},[e("path",{d:"M50.0016 71.0999h29.2561c.9293.0001 1.8422-.241 2.6469-.6992.8047-.4582 1.4729-1.1173 1.9373-1.9109.4645-.7936.7088-1.6939.7083-2.6102-.0004-.9162-.2455-1.8163-.7106-2.6095L64.192 29.713c-.4644-.7934-1.1325-1.4523-1.937-1.9105-.8046-.4581-1.7173-.6993-2.6463-.6993-.9291 0-1.8418.2412-2.6463.6993-.8046.4582-1.4726 1.1171-1.937 1.9105l-5.0238 8.5861-9.8224-16.7898c-.4648-.7934-1.1332-1.4522-1.938-1.9102-.8047-.4581-1.7176-.6992-2.6468-.6992-.9292 0-1.842.2411-2.6468.6992-.8048.458-1.4731 1.1168-1.9379 1.9102L6.56062 63.2701c-.46512.7932-.71021 1.6933-.71061 2.6095-.00041.9163.24389 1.8166.70831 2.6102.46443.7936 1.1326 1.4527 1.93732 1.9109.80473.4582 1.71766.6993 2.64686.6992h18.3646c7.2763 0 12.6422-3.1516 16.3345-9.3002l8.9642-15.3081 4.8015-8.1925 14.4099 24.6083H54.8058l-4.8042 8.1925ZM29.2077 62.899l-12.8161-.0028L35.603 30.0869l9.5857 16.4047-6.418 10.9645c-2.4521 3.9894-5.2377 5.4429-9.563 5.4429Z",fill:"currentColor"})],-1)),H=i(()=>e("span",null,"Preview mode enabled",-1)),V={key:0},j=i(()=>e("div",{id:"__preview_background"},null,-1)),O=i(()=>e("svg",{id:"__preview_loading_icon",width:"32",height:"32",viewBox:"0 0 24 24"},[e("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 0 0 4.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 0 1-15.357-2m15.357 2H15"})],-1)),Z=i(()=>e("p",null,"Initializing the preview...",-1)),G={key:0},J=i(()=>e("div",{id:"__preview_background"},null,-1)),$={id:"__preview_loader"},K=M({__name:"ContentPreviewMode",props:{previewToken:{type:Object,required:!0},apiURL:{type:String,required:!0},syncPreview:{type:Function,required:!0},requestPreviewSyncAPI:{type:Function,required:!0}},setup(a){const s=a,_=["__nuxt_preview","__preview_enabled"],P=q(),w=p(!0),m=p(!1),o=p(!1),n=p("");let t;const f=async()=>{L("previewToken").value="",k().query.preview="",await S(k().path),U(()=>{I()}),w.value=!1,n.value="",document.body.classList.remove(..._)},h=async c=>{const r=await s.syncPreview(c);if(o.value!==!0){if(!r){setTimeout(()=>h(c),1e3);return}o.value=!0,P.callHook("nuxt-studio:preview:ready"),window.parent&&window.self!==window.parent&&t.disconnect()}};return A(async()=>{t=(await T(()=>import("./index.e2533f77.js"),[],import.meta.url)).connect(`${s.apiURL}/preview`,{transports:["websocket","polling"],auth:{token:s.previewToken.value}});let r;t.on("connect",()=>{r=setTimeout(()=>{o.value||(r=setTimeout(()=>{n.value="Preview sync timed out",o.value=!1},3e4),t.emit("draft:requestSync"))},3e4)});const y=()=>{r&&(clearInterval(r),r=null)};t.on("draft:sync",d=>{if(y(),!d){s.requestPreviewSyncAPI(),t.once("draft:ready",()=>{t.emit("draft:requestSync")});return}h(d)}),t.on("draft:unauthorized",()=>{y(),n.value="Unauthorized preview token",o.value=!1}),t.on("disconnect",()=>{y()}),document.body.classList.add(..._),t.on("draft:update",d=>{m.value=!0,s.syncPreview(d),m.value=!1})}),N(()=>{document.body.classList.remove(..._)}),(c,r)=>(u(),l("div",null,[w.value?(u(),l("div",{key:0,id:"__nuxt_preview",class:B({__preview_ready:o.value,__preview_refreshing:m.value})},[o.value?(u(),l(E,{key:0},[F,H,e("button",{onClick:f}," Close ")],64)):v("",!0)],2)):v("",!0),x(g,{name:"preview-loading"},{default:C(()=>[w.value&&!o.value&&!n.value?(u(),l("div",V,[j,e("div",{id:"__preview_loader"},[O,Z,e("button",{onClick:f}," Cancel ")])])):v("",!0)]),_:1}),x(g,{name:"preview-loading"},{default:C(()=>[n.value?(u(),l("div",G,[J,e("div",$,[e("p",null,R(n.value),1),e("button",{onClick:f}," Exit preview ")])])):v("",!0)]),_:1})]))}}),se=b(K,[["__scopeId","data-v-572e7d1a"]]);export{se as default}; +import{_ as T,a as b}from"./Container.f1017aa2.js";import{u as q,l as k,p as S}from"./app.config.f41ab05d.js";import{T as g}from"./DocsAsideTree.b95e55e0.js";import{r as I}from"./asyncData.7c06b2d5.js";import{u as L}from"./cookie.b9cff64d.js";import{f as M,r as p,O as A,aj as N,q as u,x as l,y as B,F as E,E as e,D as v,G as x,C,J as R,n as U,M as z,N as D}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./index.d2b0cb5e.js";import"./useDocus.41ab1ca5.js";import"./entry.f3791b9c.js";import"./query.c3f7607a.js";const i=a=>(z("data-v-572e7d1a"),a=a(),D(),a),F=i(()=>e("svg",{viewBox:"0 0 90 90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},[e("path",{d:"M50.0016 71.0999h29.2561c.9293.0001 1.8422-.241 2.6469-.6992.8047-.4582 1.4729-1.1173 1.9373-1.9109.4645-.7936.7088-1.6939.7083-2.6102-.0004-.9162-.2455-1.8163-.7106-2.6095L64.192 29.713c-.4644-.7934-1.1325-1.4523-1.937-1.9105-.8046-.4581-1.7173-.6993-2.6463-.6993-.9291 0-1.8418.2412-2.6463.6993-.8046.4582-1.4726 1.1171-1.937 1.9105l-5.0238 8.5861-9.8224-16.7898c-.4648-.7934-1.1332-1.4522-1.938-1.9102-.8047-.4581-1.7176-.6992-2.6468-.6992-.9292 0-1.842.2411-2.6468.6992-.8048.458-1.4731 1.1168-1.9379 1.9102L6.56062 63.2701c-.46512.7932-.71021 1.6933-.71061 2.6095-.00041.9163.24389 1.8166.70831 2.6102.46443.7936 1.1326 1.4527 1.93732 1.9109.80473.4582 1.71766.6993 2.64686.6992h18.3646c7.2763 0 12.6422-3.1516 16.3345-9.3002l8.9642-15.3081 4.8015-8.1925 14.4099 24.6083H54.8058l-4.8042 8.1925ZM29.2077 62.899l-12.8161-.0028L35.603 30.0869l9.5857 16.4047-6.418 10.9645c-2.4521 3.9894-5.2377 5.4429-9.563 5.4429Z",fill:"currentColor"})],-1)),H=i(()=>e("span",null,"Preview mode enabled",-1)),V={key:0},j=i(()=>e("div",{id:"__preview_background"},null,-1)),O=i(()=>e("svg",{id:"__preview_loading_icon",width:"32",height:"32",viewBox:"0 0 24 24"},[e("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 0 0 4.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 0 1-15.357-2m15.357 2H15"})],-1)),Z=i(()=>e("p",null,"Initializing the preview...",-1)),G={key:0},J=i(()=>e("div",{id:"__preview_background"},null,-1)),$={id:"__preview_loader"},K=M({__name:"ContentPreviewMode",props:{previewToken:{type:Object,required:!0},apiURL:{type:String,required:!0},syncPreview:{type:Function,required:!0},requestPreviewSyncAPI:{type:Function,required:!0}},setup(a){const s=a,_=["__nuxt_preview","__preview_enabled"],P=q(),w=p(!0),m=p(!1),o=p(!1),n=p("");let t;const f=async()=>{L("previewToken").value="",k().query.preview="",await S(k().path),U(()=>{I()}),w.value=!1,n.value="",document.body.classList.remove(..._)},h=async c=>{const r=await s.syncPreview(c);if(o.value!==!0){if(!r){setTimeout(()=>h(c),1e3);return}o.value=!0,P.callHook("nuxt-studio:preview:ready"),window.parent&&window.self!==window.parent&&t.disconnect()}};return A(async()=>{t=(await T(()=>import("./index.e2533f77.js"),[],import.meta.url)).connect(`${s.apiURL}/preview`,{transports:["websocket","polling"],auth:{token:s.previewToken.value}});let r;t.on("connect",()=>{r=setTimeout(()=>{o.value||(r=setTimeout(()=>{n.value="Preview sync timed out",o.value=!1},3e4),t.emit("draft:requestSync"))},3e4)});const y=()=>{r&&(clearInterval(r),r=null)};t.on("draft:sync",d=>{if(y(),!d){s.requestPreviewSyncAPI(),t.once("draft:ready",()=>{t.emit("draft:requestSync")});return}h(d)}),t.on("draft:unauthorized",()=>{y(),n.value="Unauthorized preview token",o.value=!1}),t.on("disconnect",()=>{y()}),document.body.classList.add(..._),t.on("draft:update",d=>{m.value=!0,s.syncPreview(d),m.value=!1})}),N(()=>{document.body.classList.remove(..._)}),(c,r)=>(u(),l("div",null,[w.value?(u(),l("div",{key:0,id:"__nuxt_preview",class:B({__preview_ready:o.value,__preview_refreshing:m.value})},[o.value?(u(),l(E,{key:0},[F,H,e("button",{onClick:f}," Close ")],64)):v("",!0)],2)):v("",!0),x(g,{name:"preview-loading"},{default:C(()=>[w.value&&!o.value&&!n.value?(u(),l("div",V,[j,e("div",{id:"__preview_loader"},[O,Z,e("button",{onClick:f}," Cancel ")])])):v("",!0)]),_:1}),x(g,{name:"preview-loading"},{default:C(()=>[n.value?(u(),l("div",G,[J,e("div",$,[e("p",null,R(n.value),1),e("button",{onClick:f}," Exit preview ")])])):v("",!0)]),_:1})]))}}),se=b(K,[["__scopeId","data-v-572e7d1a"]]);export{se as default}; diff --git a/docs/.output/public/_nuxt/ContentQuery.7a036327.js b/docs/.output/public/_nuxt/ContentQuery.9f33890e.js similarity index 89% rename from docs/.output/public/_nuxt/ContentQuery.7a036327.js rename to docs/.output/public/_nuxt/ContentQuery.9f33890e.js index 3e2902b0..5dd18160 100644 --- a/docs/.output/public/_nuxt/ContentQuery.7a036327.js +++ b/docs/.output/public/_nuxt/ContentQuery.9f33890e.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as q}from"./asyncData.2775b491.js";import{h as g,q as m}from"./entry.2d43dc03.js";import{f as S,ak as b,h as k,a as C,ae as N,j as _}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const Y=S({name:"ContentQuery",props:{path:{type:String,required:!1,default:void 0},only:{type:Array,required:!1,default:void 0},without:{type:Array,required:!1,default:void 0},where:{type:Object,required:!1,default:void 0},sort:{type:Object,required:!1,default:void 0},limit:{type:Number,required:!1,default:void 0},skip:{type:Number,required:!1,default:void 0},locale:{type:String,required:!1,default:void 0},find:{type:String,required:!1,default:void 0}},async setup(u){const{path:t,only:r,without:n,where:a,sort:o,limit:l,skip:f,locale:s,find:d}=b(u),h=k(()=>{var e;return(e=t.value)==null?void 0:e.includes("/_")});C(()=>u,()=>p(),{deep:!0});const{data:v,refresh:p}=await q(`content-query-${g(u)}`,()=>{let e;return t.value?e=m(t.value):e=m(),r.value&&(e=e.only(r.value)),n.value&&(e=e.without(n.value)),a.value&&(e=e.where(a.value)),o.value&&(e=e.sort(o.value)),l.value&&(e=e.limit(l.value)),f.value&&(e=e.skip(f.value)),s.value&&(e=e.where({_locale:s.value})),d.value==="one"?e.findOne():d.value==="surround"?t.value?e.findSurround(t.value):(console.warn("[Content] Surround queries requires `path` prop to be set."),console.warn("[Content] Query without `path` will return regular `find()` results."),e.find()):e.find()});return{isPartial:h,data:v,refresh:p}},render(u){var y;const t=N(),{data:r,refresh:n,isPartial:a,path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e}=u,i={path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e};if(i.find==="one"){if(!r&&(t!=null&&t["not-found"]))return t["not-found"]({props:i,...this.$attrs});if(t!=null&&t.empty&&(r==null?void 0:r._type)==="markdown"&&!((y=r==null?void 0:r.body)!=null&&y.children.length))return t.empty({props:i,...this.$attrs})}else if((!r||!r.length)&&t!=null&&t["not-found"])return t["not-found"]({props:i,...this.$attrs});return t!=null&&t.default?t.default({data:r,refresh:n,isPartial:a,props:i,...this.$attrs}):((c,w)=>_("pre",null,JSON.stringify({message:"You should use slots with !",slot:c,data:w},null,2)))("default",{data:r,props:i,isPartial:a})}});export{Y as default}; +import"./app.config.f41ab05d.js";import{u as q}from"./asyncData.7c06b2d5.js";import{h as g,q as m}from"./entry.f3791b9c.js";import{f as S,ak as b,h as k,a as C,ae as N,j as _}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const Y=S({name:"ContentQuery",props:{path:{type:String,required:!1,default:void 0},only:{type:Array,required:!1,default:void 0},without:{type:Array,required:!1,default:void 0},where:{type:Object,required:!1,default:void 0},sort:{type:Object,required:!1,default:void 0},limit:{type:Number,required:!1,default:void 0},skip:{type:Number,required:!1,default:void 0},locale:{type:String,required:!1,default:void 0},find:{type:String,required:!1,default:void 0}},async setup(u){const{path:t,only:r,without:n,where:a,sort:o,limit:l,skip:f,locale:s,find:d}=b(u),h=k(()=>{var e;return(e=t.value)==null?void 0:e.includes("/_")});C(()=>u,()=>p(),{deep:!0});const{data:v,refresh:p}=await q(`content-query-${g(u)}`,()=>{let e;return t.value?e=m(t.value):e=m(),r.value&&(e=e.only(r.value)),n.value&&(e=e.without(n.value)),a.value&&(e=e.where(a.value)),o.value&&(e=e.sort(o.value)),l.value&&(e=e.limit(l.value)),f.value&&(e=e.skip(f.value)),s.value&&(e=e.where({_locale:s.value})),d.value==="one"?e.findOne():d.value==="surround"?t.value?e.findSurround(t.value):(console.warn("[Content] Surround queries requires `path` prop to be set."),console.warn("[Content] Query without `path` will return regular `find()` results."),e.find()):e.find()});return{isPartial:h,data:v,refresh:p}},render(u){var y;const t=N(),{data:r,refresh:n,isPartial:a,path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e}=u,i={path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e};if(i.find==="one"){if(!r&&(t!=null&&t["not-found"]))return t["not-found"]({props:i,...this.$attrs});if(t!=null&&t.empty&&(r==null?void 0:r._type)==="markdown"&&!((y=r==null?void 0:r.body)!=null&&y.children.length))return t.empty({props:i,...this.$attrs})}else if((!r||!r.length)&&t!=null&&t["not-found"])return t["not-found"]({props:i,...this.$attrs});return t!=null&&t.default?t.default({data:r,refresh:n,isPartial:a,props:i,...this.$attrs}):((c,w)=>_("pre",null,JSON.stringify({message:"You should use slots with !",slot:c,data:w},null,2)))("default",{data:r,props:i,isPartial:a})}});export{Y as default}; diff --git a/docs/.output/public/_nuxt/ContentRenderer.51874b59.js b/docs/.output/public/_nuxt/ContentRenderer.b7732722.js similarity index 90% rename from docs/.output/public/_nuxt/ContentRenderer.51874b59.js rename to docs/.output/public/_nuxt/ContentRenderer.b7732722.js index 9cd5f510..1ac7444c 100644 --- a/docs/.output/public/_nuxt/ContentRenderer.51874b59.js +++ b/docs/.output/public/_nuxt/ContentRenderer.b7732722.js @@ -1 +1 @@ -import c from"./ContentRendererMarkdown.1da6a628.js";import{f as m,a as l,ae as s,j as d}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.5bbb58d5.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";const w=m({name:"ContentRenderer",props:{value:{type:Object,required:!1,default:()=>({})},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"}},setup(t){l(()=>t.excerpt,n=>{var e,r,a;n&&!((e=t.value)!=null&&e.excerpt)&&(console.warn(`No excerpt found for document content/${(r=t==null?void 0:t.value)==null?void 0:r._path}.${(a=t==null?void 0:t.value)==null?void 0:a._extension}!`),console.warn("Make sure to use in your content if you want to use excerpt feature."))},{immediate:!0})},render(t){var i,o,u,f;const n=s(),{value:e,excerpt:r,tag:a}=t;return!((o=(i=e==null?void 0:e.body)==null?void 0:i.children)!=null&&o.length)&&(n!=null&&n.empty)?n.empty({value:e,excerpt:r,tag:a,...this.$attrs}):n!=null&&n.default?n.default({value:e,excerpt:r,tag:a,...this.$attrs}):(e==null?void 0:e._type)==="markdown"&&((f=(u=e==null?void 0:e.body)==null?void 0:u.children)!=null&&f.length)?d(c,{value:e,excerpt:r,tag:a,...this.$attrs}):d("pre",null,JSON.stringify({message:"You should use slots with ",value:e,excerpt:r,tag:a},null,2))}});export{w as default}; +import c from"./ContentRendererMarkdown.e52b62de.js";import{f as m,a as l,ae as s,j as d}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";const w=m({name:"ContentRenderer",props:{value:{type:Object,required:!1,default:()=>({})},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"}},setup(t){l(()=>t.excerpt,n=>{var e,r,a;n&&!((e=t.value)!=null&&e.excerpt)&&(console.warn(`No excerpt found for document content/${(r=t==null?void 0:t.value)==null?void 0:r._path}.${(a=t==null?void 0:t.value)==null?void 0:a._extension}!`),console.warn("Make sure to use in your content if you want to use excerpt feature."))},{immediate:!0})},render(t){var i,o,u,f;const n=s(),{value:e,excerpt:r,tag:a}=t;return!((o=(i=e==null?void 0:e.body)==null?void 0:i.children)!=null&&o.length)&&(n!=null&&n.empty)?n.empty({value:e,excerpt:r,tag:a,...this.$attrs}):n!=null&&n.default?n.default({value:e,excerpt:r,tag:a,...this.$attrs}):(e==null?void 0:e._type)==="markdown"&&((f=(u=e==null?void 0:e.body)==null?void 0:u.children)!=null&&f.length)?d(c,{value:e,excerpt:r,tag:a,...this.$attrs}):d("pre",null,JSON.stringify({message:"You should use slots with ",value:e,excerpt:r,tag:a},null,2))}});export{w as default}; diff --git a/docs/.output/public/_nuxt/ContentRendererMarkdown.1da6a628.js b/docs/.output/public/_nuxt/ContentRendererMarkdown.e52b62de.js similarity index 99% rename from docs/.output/public/_nuxt/ContentRendererMarkdown.1da6a628.js rename to docs/.output/public/_nuxt/ContentRendererMarkdown.e52b62de.js index ee667d48..4106d52f 100644 --- a/docs/.output/public/_nuxt/ContentRendererMarkdown.1da6a628.js +++ b/docs/.output/public/_nuxt/ContentRendererMarkdown.e52b62de.js @@ -1 +1 @@ -import{d as Y}from"./cookie.5bbb58d5.js";import{p as Z}from"./index.d2b0cb5e.js";import{b as J,l as G}from"./app.config.4114fca6.js";import{f as Q,j as M,aa as A,al as x}from"./runtime-core.esm-bundler.6894272a.js";class S{constructor(e,o,t){this.property=e,this.normal=o,t&&(this.space=t)}}S.prototype.property={};S.prototype.normal={};S.prototype.space=null;function E(n,e){const o={},t={};let r=-1;for(;++r4&&o.slice(0,4)==="data"&&tn.test(e)){if(e.charAt(4)==="-"){const a=e.slice(5).replace(R,sn);t="data"+a.charAt(0).toUpperCase()+a.slice(1)}else{const a=e.slice(4);if(!R.test(a)){let i=a.replace(rn,un);i.charAt(0)!=="-"&&(i="-"+i),e="data"+i}}r=L}return new r(t,e)}function un(n){return"-"+n.toLowerCase()}function sn(n){return n.charAt(1).toUpperCase()}const cn=E([B,z,H,_,en],"html");E([B,z,H,_,on],"svg");const F=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"],D="default",N=/^@|^v-on:/,V=/^:|^v-bind:/,q=/^v-model/,pn=["select","textarea","input"],Dn=Q({name:"ContentRendererMarkdown",props:{value:{type:Object,required:!0},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"},components:{type:Object,default:()=>({})}},async setup(n){var o;const{content:{tags:e={}}}=J().public;return await xn(n.value.body,{tags:{...e,...((o=n.value)==null?void 0:o._components)||{},...n.components}}),{tags:e}},render(n){var p;const{tags:e,tag:o,value:t,components:r}=n;if(!t)return null;let a=t.body||t;n.excerpt&&t.excerpt&&(a=t.excerpt);const i={...t,tags:{...e,...(t==null?void 0:t._components)||{},...r}};let s=i.component||o;return typeof i.component=="object"&&(s=i.component.name),s=X(s),M(s,{...(p=i.component)==null?void 0:p.props,...this.$attrs},K(a,M,i,i))}});function dn(n,e,o,t={}){var p;if(n.type==="text")return e(x,n.value);if(n.tag==="script")return W(n);const r=n.tag,a=typeof((p=n.props)==null?void 0:p.__ignoreMap)>"u"&&o.tags[r]||r;if(n.tag==="binding")return gn(n,e,o,t);const i=X(a);typeof i=="object"&&(i.tag=r);const s=hn(n,o);return e(i,s,K(n,e,o,{...t,...s}))}function W(n){var e,o;return n.type==="text"?n.value:(e=n.children)!=null&&e.length?`<${n.tag}>${((o=n.children)==null?void 0:o.map(W).join(""))||""}`:`<${n.tag}>`}function gn(n,e,o,t={}){var p;const r={...t,$route:()=>G(),$document:o,$doc:o},a=/\.|\[(\d+)\]/,s=((p=n.props)==null?void 0:p.value.trim().split(a).filter(Boolean)).reduce((g,y)=>y in g?typeof g[y]=="function"?g[y]():g[y]:{},r);return e(x,s)}function K(n,e,o,t){const a=(n.children||[]).reduce((s,p)=>{if(!kn(p))return s[D].push(p),s;const g=bn(p);return s[g]=s[g]||[],s[g].push(...p.children||[]),s},{[D]:[]});return Object.entries(a).reduce((s,[p,g])=>(g.length&&(s[p]=()=>{const y=g.map(h=>dn(h,e,o,t));return Sn(y)}),s),{})}function hn(n,e){const{tag:o="",props:t={}}=n;return Object.keys(t).reduce(function(r,a){if(a==="__ignoreMap")return r;const i=t[a];if(q.test(a)&&!pn.includes(o))return mn(a,i,r,e);if(a==="v-bind")return fn(a,i,r,e);if(N.test(a))return yn(a,i,r,e);if(V.test(a))return vn(a,i,r,e);const{attribute:s}=an(cn,a);return Array.isArray(i)&&i.every(p=>typeof p=="string")?(r[s]=i.join(" "),r):(r[s]=i,r)},{})}function mn(n,e,o,t){const r=h=>+h,a=h=>h.trim(),i=h=>h,s=n.replace(q,"").split(".").filter(h=>h).reduce((h,$)=>(h[$]=!0,h),{}),p="value",g=s.lazy?"change":"input",y=s.number?r:s.trim?a:i;return o[p]=C(e,t),o.on=o.on||{},o.on[g]=h=>t[e]=y(h),o}function fn(n,e,o,t){const r=C(e,t);return o=Object.assign(o,r),o}function yn(n,e,o,t){return n=n.replace(N,""),o.on=o.on||{},o.on[n]=()=>C(e,t),o}function vn(n,e,o,t){return n=n.replace(V,""),o[n]=C(e,t),o}const X=n=>{if(!F.includes(n)){const e=A(Z(n),!1);if(typeof e=="object")return e}return n};function C(n,e){const o=n.split(".").reduce((t,r)=>typeof t=="object"?t[r]:void 0,e);return typeof o>"u"?Y(n):o}function bn(n){let e="";for(const o of Object.keys(n.props||{}))if(!(!o.startsWith("#")&&!o.startsWith("v-slot:"))){e=o.split(/[:#]/,2)[1];break}return e||D}function kn(n){return n.tag==="template"}function Sn(n){const e=[];for(const o of n){const t=e[e.length-1];o.type===x&&(t==null?void 0:t.type)===x?t.children=t.children+o.children:e.push(o)}return e}async function xn(n,e){const o=Array.from(new Set(t(n,e)));await Promise.all(o.map(async r=>{const a=A(r);a!=null&&a.__asyncLoader&&!a.__asyncResolved&&await a.__asyncLoader()}));function t(r,a){var p;if(r.type==="text"||r.tag==="binding")return[];const i=typeof((p=r.props)==null?void 0:p.__ignoreMap)>"u"&&a.tags[r.tag]||r.tag,s=[];r.type!=="root"&&!F.includes(i)&&s.push(i);for(const g of r.children||[])s.push(...t(g,a));return s}}export{Dn as default}; +import{d as Y}from"./cookie.b9cff64d.js";import{p as Z}from"./index.d2b0cb5e.js";import{f as J,l as G}from"./app.config.f41ab05d.js";import{f as Q,j as M,aa as A,al as x}from"./runtime-core.esm-bundler.6894272a.js";class S{constructor(e,o,t){this.property=e,this.normal=o,t&&(this.space=t)}}S.prototype.property={};S.prototype.normal={};S.prototype.space=null;function E(n,e){const o={},t={};let r=-1;for(;++r4&&o.slice(0,4)==="data"&&tn.test(e)){if(e.charAt(4)==="-"){const a=e.slice(5).replace(R,sn);t="data"+a.charAt(0).toUpperCase()+a.slice(1)}else{const a=e.slice(4);if(!R.test(a)){let i=a.replace(rn,un);i.charAt(0)!=="-"&&(i="-"+i),e="data"+i}}r=L}return new r(t,e)}function un(n){return"-"+n.toLowerCase()}function sn(n){return n.charAt(1).toUpperCase()}const cn=E([B,z,H,_,en],"html");E([B,z,H,_,on],"svg");const F=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"],D="default",N=/^@|^v-on:/,V=/^:|^v-bind:/,q=/^v-model/,pn=["select","textarea","input"],Dn=Q({name:"ContentRendererMarkdown",props:{value:{type:Object,required:!0},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"},components:{type:Object,default:()=>({})}},async setup(n){var o;const{content:{tags:e={}}}=J().public;return await xn(n.value.body,{tags:{...e,...((o=n.value)==null?void 0:o._components)||{},...n.components}}),{tags:e}},render(n){var p;const{tags:e,tag:o,value:t,components:r}=n;if(!t)return null;let a=t.body||t;n.excerpt&&t.excerpt&&(a=t.excerpt);const i={...t,tags:{...e,...(t==null?void 0:t._components)||{},...r}};let s=i.component||o;return typeof i.component=="object"&&(s=i.component.name),s=X(s),M(s,{...(p=i.component)==null?void 0:p.props,...this.$attrs},K(a,M,i,i))}});function dn(n,e,o,t={}){var p;if(n.type==="text")return e(x,n.value);if(n.tag==="script")return W(n);const r=n.tag,a=typeof((p=n.props)==null?void 0:p.__ignoreMap)>"u"&&o.tags[r]||r;if(n.tag==="binding")return gn(n,e,o,t);const i=X(a);typeof i=="object"&&(i.tag=r);const s=hn(n,o);return e(i,s,K(n,e,o,{...t,...s}))}function W(n){var e,o;return n.type==="text"?n.value:(e=n.children)!=null&&e.length?`<${n.tag}>${((o=n.children)==null?void 0:o.map(W).join(""))||""}`:`<${n.tag}>`}function gn(n,e,o,t={}){var p;const r={...t,$route:()=>G(),$document:o,$doc:o},a=/\.|\[(\d+)\]/,s=((p=n.props)==null?void 0:p.value.trim().split(a).filter(Boolean)).reduce((g,y)=>y in g?typeof g[y]=="function"?g[y]():g[y]:{},r);return e(x,s)}function K(n,e,o,t){const a=(n.children||[]).reduce((s,p)=>{if(!kn(p))return s[D].push(p),s;const g=bn(p);return s[g]=s[g]||[],s[g].push(...p.children||[]),s},{[D]:[]});return Object.entries(a).reduce((s,[p,g])=>(g.length&&(s[p]=()=>{const y=g.map(h=>dn(h,e,o,t));return Sn(y)}),s),{})}function hn(n,e){const{tag:o="",props:t={}}=n;return Object.keys(t).reduce(function(r,a){if(a==="__ignoreMap")return r;const i=t[a];if(q.test(a)&&!pn.includes(o))return mn(a,i,r,e);if(a==="v-bind")return fn(a,i,r,e);if(N.test(a))return yn(a,i,r,e);if(V.test(a))return vn(a,i,r,e);const{attribute:s}=an(cn,a);return Array.isArray(i)&&i.every(p=>typeof p=="string")?(r[s]=i.join(" "),r):(r[s]=i,r)},{})}function mn(n,e,o,t){const r=h=>+h,a=h=>h.trim(),i=h=>h,s=n.replace(q,"").split(".").filter(h=>h).reduce((h,$)=>(h[$]=!0,h),{}),p="value",g=s.lazy?"change":"input",y=s.number?r:s.trim?a:i;return o[p]=C(e,t),o.on=o.on||{},o.on[g]=h=>t[e]=y(h),o}function fn(n,e,o,t){const r=C(e,t);return o=Object.assign(o,r),o}function yn(n,e,o,t){return n=n.replace(N,""),o.on=o.on||{},o.on[n]=()=>C(e,t),o}function vn(n,e,o,t){return n=n.replace(V,""),o[n]=C(e,t),o}const X=n=>{if(!F.includes(n)){const e=A(Z(n),!1);if(typeof e=="object")return e}return n};function C(n,e){const o=n.split(".").reduce((t,r)=>typeof t=="object"?t[r]:void 0,e);return typeof o>"u"?Y(n):o}function bn(n){let e="";for(const o of Object.keys(n.props||{}))if(!(!o.startsWith("#")&&!o.startsWith("v-slot:"))){e=o.split(/[:#]/,2)[1];break}return e||D}function kn(n){return n.tag==="template"}function Sn(n){const e=[];for(const o of n){const t=e[e.length-1];o.type===x&&(t==null?void 0:t.type)===x?t.children=t.children+o.children:e.push(o)}return e}async function xn(n,e){const o=Array.from(new Set(t(n,e)));await Promise.all(o.map(async r=>{const a=A(r);a!=null&&a.__asyncLoader&&!a.__asyncResolved&&await a.__asyncLoader()}));function t(r,a){var p;if(r.type==="text"||r.tag==="binding")return[];const i=typeof((p=r.props)==null?void 0:p.__ignoreMap)>"u"&&a.tags[r.tag]||r.tag,s=[];r.type!=="root"&&!F.includes(i)&&s.push(i);for(const g of r.children||[])s.push(...t(g,a));return s}}export{Dn as default}; diff --git a/docs/.output/public/_nuxt/ContentSlot.7e1a494f.js b/docs/.output/public/_nuxt/ContentSlot.c5067a4f.js similarity index 83% rename from docs/.output/public/_nuxt/ContentSlot.7e1a494f.js rename to docs/.output/public/_nuxt/ContentSlot.c5067a4f.js index e6ed1de3..498b8677 100644 --- a/docs/.output/public/_nuxt/ContentSlot.7e1a494f.js +++ b/docs/.output/public/_nuxt/ContentSlot.c5067a4f.js @@ -1 +1 @@ -import{u as m}from"./DocsAsideTree.08d70919.js";import{f as g,ae as h,h as c,j as a,g as y}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";const b=g({name:"ContentSlot",functional:!0,props:{use:{type:Function,default:void 0},unwrap:{type:[Boolean,String],default:!1}},setup(e){const{parent:l}=y(),{between:s,default:i}=h(),u=c(()=>typeof e.unwrap=="string"?e.unwrap.split(" "):["*"]);return{fallbackSlot:i,tags:u,between:s,parent:l}},render({use:e,unwrap:l,fallbackSlot:s,between:i,tags:u,parent:n}){var f;try{let o=e;if(typeof e=="string"&&(o=(n==null?void 0:n.slots[e])||((f=n==null?void 0:n.parent)==null?void 0:f.slots[e]),console.warn(`Please set :use="$slots.${e}" in component to enable reactivity`)),!o)return s?s():a("div");if(!l)return[o()];const{flatUnwrap:d}=m(),p=d(o(),u);return i?p.flatMap((t,r)=>r===0?[t]:[i(),t]):p.reduce((t,r)=>(typeof r.children=="string"?typeof t[t.length-1]=="string"?t[t.length-1]+=r.children:t.push(r.children):t.push(r),t),[])}catch{return a("div")}}});export{b as default}; +import{u as m}from"./DocsAsideTree.b95e55e0.js";import{f as g,ae as h,h as c,j as a,g as y}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";const b=g({name:"ContentSlot",functional:!0,props:{use:{type:Function,default:void 0},unwrap:{type:[Boolean,String],default:!1}},setup(e){const{parent:l}=y(),{between:s,default:i}=h(),u=c(()=>typeof e.unwrap=="string"?e.unwrap.split(" "):["*"]);return{fallbackSlot:i,tags:u,between:s,parent:l}},render({use:e,unwrap:l,fallbackSlot:s,between:i,tags:u,parent:n}){var f;try{let o=e;if(typeof e=="string"&&(o=(n==null?void 0:n.slots[e])||((f=n==null?void 0:n.parent)==null?void 0:f.slots[e]),console.warn(`Please set :use="$slots.${e}" in component to enable reactivity`)),!o)return s?s():a("div");if(!l)return[o()];const{flatUnwrap:d}=m(),p=d(o(),u);return i?p.flatMap((t,r)=>r===0?[t]:[i(),t]):p.reduce((t,r)=>(typeof r.children=="string"?typeof t[t.length-1]=="string"?t[t.length-1]+=r.children:t.push(r.children):t.push(r),t),[])}catch{return a("div")}}});export{b as default}; diff --git a/docs/.output/public/_nuxt/CopyButton.c9acc792.js b/docs/.output/public/_nuxt/CopyButton.f7858c79.js similarity index 79% rename from docs/.output/public/_nuxt/CopyButton.c9acc792.js rename to docs/.output/public/_nuxt/CopyButton.f7858c79.js index 799a5941..b177fa7e 100644 --- a/docs/.output/public/_nuxt/CopyButton.c9acc792.js +++ b/docs/.output/public/_nuxt/CopyButton.f7858c79.js @@ -1 +1 @@ -import{_ as i}from"./DocsAsideTree.08d70919.js";import{u as l}from"./index.889aa611.js";import{f as m,r as u,q as t,x as f,u as d,B as n}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";const w=m({__name:"CopyButton",props:{content:{type:String,default:""}},setup(c){const a=c,{copy:p}=l(),o=u("init"),r=s=>{p(a.content).then(()=>{o.value="copied",setTimeout(()=>{o.value="init"},1e3)}).catch(()=>{console.warn("Couldn't copy to clipboard!")})};return(s,y)=>{const e=i;return t(),f("button",{class:"copy rounded-lg bg-gray-800 px-2 py-2 font-mono text-xs font-semibold leading-none text-gray-400 focus:outline-none dark:bg-black",onClick:r},[d(o)==="copied"?(t(),n(e,{key:0,name:"fa-check",class:"h-4 w-4"})):(t(),n(e,{key:1,name:"fa-copy",class:"h-4 w-4"}))])}}});export{w as default}; +import{_ as i}from"./DocsAsideTree.b95e55e0.js";import{u as l}from"./index.889aa611.js";import{f as m,r as u,q as t,x as f,u as d,B as n}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";const w=m({__name:"CopyButton",props:{content:{type:String,default:""}},setup(c){const a=c,{copy:p}=l(),o=u("init"),r=s=>{p(a.content).then(()=>{o.value="copied",setTimeout(()=>{o.value="init"},1e3)}).catch(()=>{console.warn("Couldn't copy to clipboard!")})};return(s,y)=>{const e=i;return t(),f("button",{class:"copy rounded-lg bg-gray-800 px-2 py-2 font-mono text-xs font-semibold leading-none text-gray-400 focus:outline-none dark:bg-black",onClick:r},[d(o)==="copied"?(t(),n(e,{key:0,name:"fa-check",class:"h-4 w-4"})):(t(),n(e,{key:1,name:"fa-copy",class:"h-4 w-4"}))])}}});export{w as default}; diff --git a/docs/.output/public/_nuxt/DocsAside.44ffd29b.js b/docs/.output/public/_nuxt/DocsAside.08a0955d.js similarity index 71% rename from docs/.output/public/_nuxt/DocsAside.44ffd29b.js rename to docs/.output/public/_nuxt/DocsAside.08a0955d.js index 1e92b20e..46a06e14 100644 --- a/docs/.output/public/_nuxt/DocsAside.44ffd29b.js +++ b/docs/.output/public/_nuxt/DocsAside.08a0955d.js @@ -1 +1 @@ -import{b as r,_ as m}from"./DocsAsideTree.08d70919.js";import{_ as i}from"./app.config.4114fca6.js";import{c as l}from"./useDocus.edcbeab5.js";import{f as u,q as t,x as f,u as s,B as c,C as d,G as k,M as x,N as h,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as I}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const N=o=>(x("data-v-4fc52927"),o=o(),h(),o),b=N(()=>B("span",{class:"text"},"Go back",-1)),v=u({__name:"DocsAside",setup(o){const{tree:e}=l();return(w,C)=>{var n;const a=r,_=m,p=i;return t(),f("nav",null,[((n=s(e))==null?void 0:n.length)>0?(t(),c(a,{key:0,links:s(e)},null,8,["links"])):(t(),c(p,{key:1,to:"/",class:"go-back-link"},{default:d(()=>[k(_,{name:"heroicons-outline:arrow-left",class:"icon"}),b]),_:1}))])}}}),V=I(v,[["__scopeId","data-v-4fc52927"]]);export{V as default}; +import{b as r,_ as m}from"./DocsAsideTree.b95e55e0.js";import{_ as i}from"./app.config.f41ab05d.js";import{c as l}from"./useDocus.41ab1ca5.js";import{f as u,q as t,x as f,u as s,B as c,C as d,G as k,M as x,N as h,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as I}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const N=o=>(x("data-v-4fc52927"),o=o(),h(),o),b=N(()=>B("span",{class:"text"},"Go back",-1)),v=u({__name:"DocsAside",setup(o){const{tree:e}=l();return(w,C)=>{var n;const a=r,_=m,p=i;return t(),f("nav",null,[((n=s(e))==null?void 0:n.length)>0?(t(),c(a,{key:0,links:s(e)},null,8,["links"])):(t(),c(p,{key:1,to:"/",class:"go-back-link"},{default:d(()=>[k(_,{name:"heroicons-outline:arrow-left",class:"icon"}),b]),_:1}))])}}}),V=I(v,[["__scopeId","data-v-4fc52927"]]);export{V as default}; diff --git a/docs/.output/public/_nuxt/DocsAsideTree.08d70919.js b/docs/.output/public/_nuxt/DocsAsideTree.b95e55e0.js similarity index 99% rename from docs/.output/public/_nuxt/DocsAsideTree.08d70919.js rename to docs/.output/public/_nuxt/DocsAsideTree.b95e55e0.js index 4b701f44..eec8e039 100644 --- a/docs/.output/public/_nuxt/DocsAsideTree.08d70919.js +++ b/docs/.output/public/_nuxt/DocsAsideTree.b95e55e0.js @@ -1 +1 @@ -import{w as en,b as me,l as ye,u as nn,_ as on}from"./app.config.4114fca6.js";import{u as rn}from"./cookie.5bbb58d5.js";import{e as sn,u as be,c as cn}from"./useDocus.edcbeab5.js";import{j as G,R as ve,U as At,V as an,W as we,X as rt,Y as it,Z as ln,_ as un,$ as fn,a0 as dn,a1 as pn,a2 as Se,a3 as hn,a4 as gn,a5 as mn,a6 as xe,a7 as yn,f as ct,r as bn,h as R,a as vn,a8 as wn,u as S,q as _,x as z,y as B,B as H,I as Sn,J as gt,z as xn,F as In,A as Cn,E as U,D as lt,G as _n,C as Tn,a9 as An}from"./runtime-core.esm-bundler.6894272a.js";import{a as Ie}from"./Container.f1017aa2.js";const En="http://www.w3.org/2000/svg",N=typeof document<"u"?document:null,zt=N&&N.createElement("template"),$n={insert:(t,e,n)=>{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,r)=>{const o=e?N.createElementNS(En,t):N.createElement(t,n?{is:n}:void 0);return t==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:t=>N.createTextNode(t),createComment:t=>N.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>N.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,r,o,s){const i=n?n.previousSibling:e.lastChild;if(o&&(o===s||o.nextSibling))for(;e.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{zt.innerHTML=r?`${t}`:t;const c=zt.content;if(r){const l=c.firstChild;for(;l.firstChild;)c.appendChild(l.firstChild);c.removeChild(l)}e.insertBefore(c,n)}return[i?i.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Mn(t,e,n){const r=t._vtc;r&&(e=(e?[e,...r]:[...r]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function jn(t,e,n){const r=t.style,o=rt(n);if(n&&!o){if(e&&!rt(e))for(const s in e)n[s]==null&&mt(r,s,"");for(const s in n)mt(r,s,n[s])}else{const s=r.display;o?e!==n&&(r.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(r.display=s)}}const Bt=/\s*!important$/;function mt(t,e,n){if(it(n))n.forEach(r=>mt(t,e,r));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const r=Pn(t,e);Bt.test(n)?t.setProperty(Se(r),n.replace(Bt,""),"important"):t[r]=n}}const Ht=["Webkit","Moz","ms"],ut={};function Pn(t,e){const n=ut[e];if(n)return n;let r=hn(e);if(r!=="filter"&&r in t)return ut[e]=r;r=gn(r);for(let o=0;oft||(zn.then(()=>ft=0),ft=Date.now());function Hn(t,e){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;yn(Un(r,n.value),e,5,[r])};return n.value=t,n.attached=Bn(),n}function Un(t,e){if(it(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(r=>o=>!o._stopped&&r&&r(o))}else return e}const Kt=/^on[a-z]/,qn=(t,e,n,r,o=!1,s,i,c,l)=>{e==="class"?Mn(t,r,o):e==="style"?jn(t,n,r):dn(e)?pn(e)||Dn(t,e,n,r,i):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Kn(t,e,r,o))?On(t,e,r,s,i,c,l):(e==="true-value"?t._trueValue=r:e==="false-value"&&(t._falseValue=r),Ln(t,e,r,o))};function Kn(t,e,n,r){return r?!!(e==="innerHTML"||e==="textContent"||e in t&&Kt.test(e)&&we(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||Kt.test(e)&&rt(n)?!1:e in t}const $="transition",q="animation",Ce=(t,{slots:e})=>G(ve,Vn(t),e);Ce.displayName="Transition";const _e={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Ce.props=At({},ve.props,_e);const O=(t,e=[])=>{it(t)?t.forEach(n=>n(...e)):t&&t(...e)},Vt=t=>t?it(t)?t.some(e=>e.length>1):t.length>1:!1;function Vn(t){const e={};for(const g in t)g in _e||(e[g]=t[g]);if(t.css===!1)return e;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:f=i,appearToClass:u=c,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:h=`${n}-leave-active`,leaveToClass:y=`${n}-leave-to`}=t,m=Qn(o),a=m&&m[0],p=m&&m[1],{onBeforeEnter:x,onEnter:w,onEnterCancelled:b,onLeave:j,onLeaveCancelled:A,onBeforeAppear:v=x,onAppear:I=w,onAppearCancelled:P=b}=e,E=(g,C,L)=>{F(g,C?u:c),F(g,C?f:i),L&&L()},T=(g,C)=>{g._isLeaving=!1,F(g,d),F(g,y),F(g,h),C&&C()},Nt=g=>(C,L)=>{const Dt=g?I:w,Rt=()=>E(C,g,L);O(Dt,[C,Rt]),Qt(()=>{F(C,g?l:s),M(C,g?u:c),Vt(Dt)||Wt(C,r,a,Rt)})};return At(e,{onBeforeEnter(g){O(x,[g]),M(g,s),M(g,i)},onBeforeAppear(g){O(v,[g]),M(g,l),M(g,f)},onEnter:Nt(!1),onAppear:Nt(!0),onLeave(g,C){g._isLeaving=!0;const L=()=>T(g,C);M(g,d),Jn(),M(g,h),Qt(()=>{g._isLeaving&&(F(g,d),M(g,y),Vt(j)||Wt(g,r,p,L))}),O(j,[g,L])},onEnterCancelled(g){E(g,!1),O(b,[g])},onAppearCancelled(g){E(g,!0),O(P,[g])},onLeaveCancelled(g){T(g),O(A,[g])}})}function Qn(t){if(t==null)return null;if(an(t))return[dt(t.enter),dt(t.leave)];{const e=dt(t);return[e,e]}}function dt(t){return ln(t)}function M(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function F(t,e){e.split(/\s+/).forEach(r=>r&&t.classList.remove(r));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function Qt(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Wn=0;function Wt(t,e,n,r){const o=t._endId=++Wn,s=()=>{o===t._endId&&r()};if(n)return setTimeout(s,n);const{type:i,timeout:c,propCount:l}=Gn(t,e);if(!i)return r();const f=i+"end";let u=0;const d=()=>{t.removeEventListener(f,h),s()},h=y=>{y.target===t&&++u>=l&&d()};setTimeout(()=>{u(n[m]||"").split(", "),o=r(`${$}Delay`),s=r(`${$}Duration`),i=Gt(o,s),c=r(`${q}Delay`),l=r(`${q}Duration`),f=Gt(c,l);let u=null,d=0,h=0;e===$?i>0&&(u=$,d=i,h=s.length):e===q?f>0&&(u=q,d=f,h=l.length):(d=Math.max(i,f),u=d>0?i>f?$:q:null,h=u?u===$?s.length:l.length:0);const y=u===$&&/\b(transform|all)(,|$)/.test(r(`${$}Property`).toString());return{type:u,timeout:d,propCount:h,hasTransform:y}}function Gt(t,e){for(;t.lengthJt(n)+Jt(t[r])))}function Jt(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function Jn(){return document.body.offsetHeight}const Xn=["ctrl","shift","alt","meta"],kn={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>Xn.some(n=>t[`${n}Key`]&&!e.includes(n))},Pr=(t,e)=>(n,...r)=>{for(let o=0;o{K(t,!1)}):K(t,e))},beforeUnmount(t,{value:e}){K(t,e)}};function K(t,e){t.style.display=e?t._vod:"none"}const Te=At({patchProp:qn},$n);let Q,Xt=!1;function Zn(){return Q||(Q=un(Te))}function to(){return Q=Xt?Q:fn(Te),Xt=!0,Q}const Lr=(...t)=>{const e=Zn().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(!o)return;const s=e._component;!we(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},e},Or=(...t)=>{const e=to().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(o)return n(o,!0,o instanceof SVGElement)},e};function Ae(t){return rt(t)?document.querySelector(t):t}const eo=["p","h1","h2","h3","h4","h5","h6","li"];function yt(t,e){return t.type===e||typeof t.type=="object"&&t.type.tag===e||t.tag===e}function Ee(t){return yt(t,"text")||typeof t.children=="string"}function $e(t){return Array.isArray(t.children)||typeof t.children=="string"?t.children:typeof t.children.default=="function"?t.children.default():[]}function bt(t){if(!t)return"";if(Array.isArray(t))return t.map(bt).join("");if(Ee(t))return t.children||t.value;const e=$e(t);return Array.isArray(e)?e.map(bt).join(""):""}function Et(t,e=["p"]){if(Array.isArray(t))return t.flatMap(r=>Et(r,e));let n=t;return e.some(r=>r==="*"||yt(t,r))&&(n=$e(t)||t,!Array.isArray(n)&&eo.some(r=>yt(t,r))&&(n=[n])),n}function Me(t,e=["p"]){return t=Array.isArray(t)?t:[t],e.length?t.flatMap(n=>Me(Et(n,[e[0]]),e.slice(1))).filter(n=>!(Ee(n)&&bt(n).trim()==="")):t}const Fr=t=>en(t,me().public.content.api.baseURL),Nr=()=>({unwrap:Et,flatUnwrap:Me}),Dr=()=>{const{experimental:t}=me().content;if(t.clientDB)return!0;const e=ye().query;return Object.prototype.hasOwnProperty.call(e,"preview")&&!e.preview?!1:!!(e.preview||rn("previewToken").value)},je=Object.freeze({left:0,top:0,width:16,height:16}),Pe=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),$t=Object.freeze({...je,...Pe});Object.freeze({...$t,body:"",hidden:!1});({...je});const Le=Object.freeze({width:null,height:null}),Oe=Object.freeze({...Le,...Pe});function no(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in Le?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const oo=/[\s,]+/;function ro(t,e){e.split(oo).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function so(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}const io=/(-?[0-9.]*[0-9]+[0-9.]*)/g,co=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function kt(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(io);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=co.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const ao=t=>t==="unset"||t==="undefined"||t==="none";function lo(t,e){const n={...$t,...t},r={...Oe,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=kt(d,l/f)):(u=i==="auto"?l:i,d=c===null?kt(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{ao(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const uo=/\sid="(\S+)"/g,fo="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let po=0;function ho(t,e=fo){const n=[];let r;for(;r=uo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(po++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}function go(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function mo(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function yo(t){return'url("data:image/svg+xml,'+mo(t)+'")'}const Yt={...Oe,inline:!1},bo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},vo={display:"inline-block"},vt={backgroundColor:"currentColor"},Fe={backgroundColor:"transparent"},Zt={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},te={webkitMask:vt,mask:vt,background:Fe};for(const t in te){const e=te[t];for(const n in Zt)e[t+n]=Zt[n]}const tt={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";tt[t+"-flip"]=e,tt[t.slice(0,1)+"-flip"]=e,tt[t+"Flip"]=e});function ee(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const wo=(t,e)=>{const n=no(Yt,e),r={...bo},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&ro(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=so(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=tt[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):Yt[a]===void 0&&(r[a]=p)}}}const l=lo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=ho(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=go(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":yo(m),width:ee(f.width),height:ee(f.height),...vo,...y?vt:Fe,...c},G("span",r)},So=Object.create(null),xo=ct({inheritAttrs:!1,render(){const t=this.$attrs,e=t.icon,n=typeof e=="string"?So[e]:typeof e=="object"?e:null;return n===null||typeof n!="object"||typeof n.body!="string"?this.$slots.default?this.$slots.default():null:wo({...$t,...n},t)}}),W=/^[a-z0-9]+(-[a-z0-9]+)*$/,k=(t,e,n,r="")=>{const o=t.split(":");if(t.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const c=o.pop(),l=o.pop(),f={provider:o.length>0?o[0]:r,prefix:l,name:c};return e&&!et(f)?null:f}const s=o[0],i=s.split("-");if(i.length>1){const c={provider:r,prefix:i.shift(),name:i.join("-")};return e&&!et(c)?null:c}if(n&&r===""){const c={provider:r,prefix:"",name:s};return e&&!et(c,n)?null:c}return null},et=(t,e)=>t?!!((t.provider===""||t.provider.match(W))&&(e&&t.prefix===""||t.prefix.match(W))&&t.name.match(W)):!1,Ne=Object.freeze({left:0,top:0,width:16,height:16}),st=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Y=Object.freeze({...Ne,...st}),wt=Object.freeze({...Y,body:"",hidden:!1});function Io(t,e){const n={};!t.hFlip!=!e.hFlip&&(n.hFlip=!0),!t.vFlip!=!e.vFlip&&(n.vFlip=!0);const r=((t.rotate||0)+(e.rotate||0))%4;return r&&(n.rotate=r),n}function ne(t,e){const n=Io(t,e);for(const r in wt)r in st?r in t&&!(r in n)&&(n[r]=st[r]):r in e?n[r]=e[r]:r in t&&(n[r]=t[r]);return n}function Co(t,e){const n=t.icons,r=t.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const c=r[i]&&r[i].parent,l=c&&s(c);l&&(o[i]=[c].concat(l))}return o[i]}return(e||Object.keys(n).concat(Object.keys(r))).forEach(s),o}function _o(t,e,n){const r=t.icons,o=t.aliases||Object.create(null);let s={};function i(c){s=ne(r[c]||o[c],s)}return i(e),n.forEach(i),ne(t,s)}function De(t,e){const n=[];if(typeof t!="object"||typeof t.icons!="object")return n;t.not_found instanceof Array&&t.not_found.forEach(o=>{e(o,null),n.push(o)});const r=Co(t);for(const o in r){const s=r[o];s&&(e(o,_o(t,o,s)),n.push(o))}return n}const To={provider:"",aliases:{},not_found:{},...Ne};function pt(t,e){for(const n in e)if(n in t&&typeof t[n]!=typeof e[n])return!1;return!0}function Re(t){if(typeof t!="object"||t===null)return null;const e=t;if(typeof e.prefix!="string"||!t.icons||typeof t.icons!="object"||!pt(t,To))return null;const n=e.icons;for(const o in n){const s=n[o];if(!o.match(W)||typeof s.body!="string"||!pt(s,wt))return null}const r=e.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o.match(W)||typeof i!="string"||!n[i]&&!r[i]||!pt(s,wt))return null}return e}const oe=Object.create(null);function Ao(t,e){return{provider:t,prefix:e,icons:Object.create(null),missing:new Set}}function D(t,e){const n=oe[t]||(oe[t]=Object.create(null));return n[e]||(n[e]=Ao(t,e))}function Mt(t,e){return Re(e)?De(e,(n,r)=>{r?t.icons[n]=r:t.missing.add(n)}):[]}function Eo(t,e,n){try{if(typeof n.body=="string")return t.icons[e]={...n},!0}catch{}return!1}let J=!1;function ze(t){return typeof t=="boolean"&&(J=t),J}function Be(t){const e=typeof t=="string"?k(t,!0,J):t;if(e){const n=D(e.provider,e.prefix),r=e.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function $o(t,e){const n=k(t,!0,J);if(!n)return!1;const r=D(n.provider,n.prefix);return Eo(r,n.name,e)}function Mo(t,e){if(typeof t!="object")return!1;if(typeof e!="string"&&(e=t.provider||""),J&&!e&&!t.prefix){let o=!1;return Re(t)&&(t.prefix="",De(t,(s,i)=>{i&&$o(s,i)&&(o=!0)})),o}const n=t.prefix;if(!et({provider:e,prefix:n,name:"a"}))return!1;const r=D(e,n);return!!Mt(r,t)}const He=Object.freeze({width:null,height:null}),Ue=Object.freeze({...He,...st}),jo=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Po=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function re(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(jo);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=Po.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const Lo=t=>t==="unset"||t==="undefined"||t==="none";function Oo(t,e){const n={...Y,...t},r={...Ue,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=re(d,l/f)):(u=i==="auto"?l:i,d=c===null?re(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{Lo(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const Fo=/\sid="(\S+)"/g,No="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Do=0;function Ro(t,e=No){const n=[];let r;for(;r=Fo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(Do++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}const St=Object.create(null);function zo(t,e){St[t]=e}function xt(t){return St[t]||St[""]}function jt(t){let e;if(typeof t.resources=="string")e=[t.resources];else if(e=t.resources,!(e instanceof Array)||!e.length)return null;return{resources:e,path:t.path||"/",maxURL:t.maxURL||500,rotate:t.rotate||750,timeout:t.timeout||5e3,random:t.random===!0,index:t.index||0,dataAfterTimeout:t.dataAfterTimeout!==!1}}const Pt=Object.create(null),V=["https://api.simplesvg.com","https://api.unisvg.com"],nt=[];for(;V.length>0;)V.length===1||Math.random()>.5?nt.push(V.shift()):nt.push(V.pop());Pt[""]=jt({resources:["https://api.iconify.design"].concat(nt)});function Bo(t,e){const n=jt(e);return n===null?!1:(Pt[t]=n,!0)}function Lt(t){return Pt[t]}const Ho=()=>{let t;try{if(t=fetch,typeof t=="function")return t}catch{}};let se=Ho();function Uo(t,e){const n=Lt(t);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=e+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function qo(t){return t===404}const Ko=(t,e,n)=>{const r=[],o=Uo(t,e),s="icons";let i={type:s,provider:t,prefix:e,icons:[]},c=0;return n.forEach((l,f)=>{c+=l.length+1,c>=o&&f>0&&(r.push(i),i={type:s,provider:t,prefix:e,icons:[]},c=l.length),i.icons.push(l)}),r.push(i),r};function Vo(t){if(typeof t=="string"){const e=Lt(t);if(e)return e.path}return"/"}const Qo=(t,e,n)=>{if(!se){n("abort",424);return}let r=Vo(e.provider);switch(e.type){case"icons":{const s=e.prefix,c=e.icons.join(","),l=new URLSearchParams({icons:c});r+=s+".json?"+l.toString();break}case"custom":{const s=e.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;se(t+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(qo(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},Wo={prepare:Ko,send:Qo};function Go(t){const e={loaded:[],missing:[],pending:[]},n=Object.create(null);t.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return t.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,c=o.name,l=n[s]||(n[s]=Object.create(null)),f=l[i]||(l[i]=D(s,i));let u;c in f.icons?u=e.loaded:i===""||f.missing.has(c)?u=e.missing:u=e.pending;const d={provider:s,prefix:i,name:c};u.push(d)}),e}function qe(t,e){t.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==e))})}function Jo(t){t.pendingCallbacksFlag||(t.pendingCallbacksFlag=!0,setTimeout(()=>{t.pendingCallbacksFlag=!1;const e=t.loaderCallbacks?t.loaderCallbacks.slice(0):[];if(!e.length)return;let n=!1;const r=t.provider,o=t.prefix;e.forEach(s=>{const i=s.icons,c=i.pending.length;i.pending=i.pending.filter(l=>{if(l.prefix!==o)return!0;const f=l.name;if(t.icons[f])i.loaded.push({provider:r,prefix:o,name:f});else if(t.missing.has(f))i.missing.push({provider:r,prefix:o,name:f});else return n=!0,!0;return!1}),i.pending.length!==c&&(n||qe([t],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let Xo=0;function ko(t,e,n){const r=Xo++,o=qe.bind(null,n,r);if(!e.pending.length)return o;const s={id:r,icons:e,callback:t,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function Yo(t,e=!0,n=!1){const r=[];return t.forEach(o=>{const s=typeof o=="string"?k(o,e,n):o;s&&r.push(s)}),r}var Zo={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function tr(t,e,n,r){const o=t.resources.length,s=t.random?Math.floor(Math.random()*o):t.index;let i;if(t.random){let v=t.resources.slice(0);for(i=[];v.length>1;){const I=Math.floor(Math.random()*v.length);i.push(v[I]),v=v.slice(0,I).concat(v.slice(I+1))}i=i.concat(v)}else i=t.resources.slice(s).concat(t.resources.slice(0,s));const c=Date.now();let l="pending",f=0,u,d=null,h=[],y=[];typeof r=="function"&&y.push(r);function m(){d&&(clearTimeout(d),d=null)}function a(){l==="pending"&&(l="aborted"),m(),h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function p(v,I){I&&(y=[]),typeof v=="function"&&y.push(v)}function x(){return{startTime:c,payload:e,status:l,queriesSent:f,queriesPending:h.length,subscribe:p,abort:a}}function w(){l="failed",y.forEach(v=>{v(void 0,u)})}function b(){h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function j(v,I,P){const E=I!=="success";switch(h=h.filter(T=>T!==v),l){case"pending":break;case"failed":if(E||!t.dataAfterTimeout)return;break;default:return}if(I==="abort"){u=P,w();return}if(E){u=P,h.length||(i.length?A():w());return}if(m(),b(),!t.random){const T=t.resources.indexOf(v.resource);T!==-1&&T!==t.index&&(t.index=T)}l="completed",y.forEach(T=>{T(P)})}function A(){if(l!=="pending")return;m();const v=i.shift();if(v===void 0){if(h.length){d=setTimeout(()=>{m(),l==="pending"&&(b(),w())},t.timeout);return}w();return}const I={status:"pending",resource:v,callback:(P,E)=>{j(I,P,E)}};h.push(I),f++,d=setTimeout(A,t.rotate),n(v,e,I.callback)}return setTimeout(A),x}function Ke(t){const e={...Zo,...t};let n=[];function r(){n=n.filter(c=>c().status==="pending")}function o(c,l,f){const u=tr(e,c,l,(d,h)=>{r(),f&&f(d,h)});return n.push(u),u}function s(c){return n.find(l=>c(l))||null}return{query:o,find:s,setIndex:c=>{e.index=c},getIndex:()=>e.index,cleanup:r}}function ie(){}const ht=Object.create(null);function er(t){if(!ht[t]){const e=Lt(t);if(!e)return;const n=Ke(e),r={config:e,redundancy:n};ht[t]=r}return ht[t]}function nr(t,e,n){let r,o;if(typeof t=="string"){const s=xt(t);if(!s)return n(void 0,424),ie;o=s.send;const i=er(t);i&&(r=i.redundancy)}else{const s=jt(t);if(s){r=Ke(s);const i=t.resources?t.resources[0]:"",c=xt(i);c&&(o=c.send)}}return!r||!o?(n(void 0,424),ie):r.query(e,o,n)().abort}const ce="iconify2",X="iconify",Ve=X+"-count",ae=X+"-version",Qe=36e5,or=168;function It(t,e){try{return t.getItem(e)}catch{}}function Ot(t,e,n){try{return t.setItem(e,n),!0}catch{}}function le(t,e){try{t.removeItem(e)}catch{}}function Ct(t,e){return Ot(t,Ve,e.toString())}function _t(t){return parseInt(It(t,Ve))||0}const at={local:!0,session:!0},We={local:new Set,session:new Set};let Ft=!1;function rr(t){Ft=t}let Z=typeof window>"u"?{}:window;function Ge(t){const e=t+"Storage";try{if(Z&&Z[e]&&typeof Z[e].length=="number")return Z[e]}catch{}at[t]=!1}function Je(t,e){const n=Ge(t);if(!n)return;const r=It(n,ae);if(r!==ce){if(r){const c=_t(n);for(let l=0;l{const l=X+c.toString(),f=It(n,l);if(typeof f=="string"){try{const u=JSON.parse(f);if(typeof u=="object"&&typeof u.cached=="number"&&u.cached>o&&typeof u.provider=="string"&&typeof u.data=="object"&&typeof u.data.prefix=="string"&&e(u,c))return!0}catch{}le(n,l)}};let i=_t(n);for(let c=i-1;c>=0;c--)s(c)||(c===i-1?(i--,Ct(n,i)):We[t].add(c))}function Xe(){if(!Ft){rr(!0);for(const t in at)Je(t,e=>{const n=e.data,r=e.provider,o=n.prefix,s=D(r,o);if(!Mt(s,n).length)return!1;const i=n.lastModified||-1;return s.lastModifiedCached=s.lastModifiedCached?Math.min(s.lastModifiedCached,i):i,!0})}}function sr(t,e){const n=t.lastModifiedCached;if(n&&n>=e)return n===e;if(t.lastModifiedCached=e,n)for(const r in at)Je(r,o=>{const s=o.data;return o.provider!==t.provider||s.prefix!==t.prefix||s.lastModified===e});return!0}function ir(t,e){Ft||Xe();function n(r){let o;if(!at[r]||!(o=Ge(r)))return;const s=We[r];let i;if(s.size)s.delete(i=Array.from(s).shift());else if(i=_t(o),!Ct(o,i+1))return;const c={cached:Math.floor(Date.now()/Qe),provider:t.provider,data:e};return Ot(o,X+i.toString(),JSON.stringify(c))}e.lastModified&&!sr(t,e.lastModified)||Object.keys(e.icons).length&&(e.not_found&&(e=Object.assign({},e),delete e.not_found),n("local")||n("session"))}function ue(){}function cr(t){t.iconsLoaderFlag||(t.iconsLoaderFlag=!0,setTimeout(()=>{t.iconsLoaderFlag=!1,Jo(t)}))}function ar(t,e){t.iconsToLoad?t.iconsToLoad=t.iconsToLoad.concat(e).sort():t.iconsToLoad=e,t.iconsQueueFlag||(t.iconsQueueFlag=!0,setTimeout(()=>{t.iconsQueueFlag=!1;const{provider:n,prefix:r}=t,o=t.iconsToLoad;delete t.iconsToLoad;let s;if(!o||!(s=xt(n)))return;s.prepare(n,r,o).forEach(c=>{nr(n,c,l=>{if(typeof l!="object")c.icons.forEach(f=>{t.missing.add(f)});else try{const f=Mt(t,l);if(!f.length)return;const u=t.pendingIcons;u&&f.forEach(d=>{u.delete(d)}),ir(t,l)}catch(f){console.error(f)}cr(t)})})}))}const ke=(t,e)=>{const n=Yo(t,!0,ze()),r=Go(n);if(!r.pending.length){let l=!0;return e&&setTimeout(()=>{l&&e(r.loaded,r.missing,r.pending,ue)}),()=>{l=!1}}const o=Object.create(null),s=[];let i,c;return r.pending.forEach(l=>{const{provider:f,prefix:u}=l;if(u===c&&f===i)return;i=f,c=u,s.push(D(f,u));const d=o[f]||(o[f]=Object.create(null));d[u]||(d[u]=[])}),r.pending.forEach(l=>{const{provider:f,prefix:u,name:d}=l,h=D(f,u),y=h.pendingIcons||(h.pendingIcons=new Set);y.has(d)||(y.add(d),o[f][u].push(d))}),s.forEach(l=>{const{provider:f,prefix:u}=l;o[f][u].length&&ar(l,o[f][u])}),e?ko(e,r,s):ue},lr=t=>new Promise((e,n)=>{const r=typeof t=="string"?k(t,!0):t;if(!r){n(t);return}ke([r||t],o=>{if(o.length&&r){const s=Be(r);if(s){e({...Y,...s});return}}n(t)})});function ur(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in He?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const fr=/[\s,]+/;function dr(t,e){e.split(fr).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function pr(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}function hr(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function gr(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function mr(t){return'url("data:image/svg+xml,'+gr(t)+'")'}const fe={...Ue,inline:!1},yr={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},br={display:"inline-block"},Tt={backgroundColor:"currentColor"},Ye={backgroundColor:"transparent"},de={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},pe={webkitMask:Tt,mask:Tt,background:Ye};for(const t in pe){const e=pe[t];for(const n in de)e[t+n]=de[n]}const ot={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";ot[t+"-flip"]=e,ot[t.slice(0,1)+"-flip"]=e,ot[t+"Flip"]=e});function he(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const ge=(t,e)=>{const n=ur(fe,e),r={...yr},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&dr(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=pr(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=ot[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):fe[a]===void 0&&(r[a]=p)}}}const l=Oo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=Ro(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=hr(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":mr(m),width:he(f.width),height:he(f.height),...br,...y?Tt:Ye,...c},G("span",r)};ze(!0);zo("",Wo);if(typeof document<"u"&&typeof window<"u"){Xe();const t=window;if(t.IconifyPreload!==void 0){const e=t.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof e=="object"&&e!==null&&(e instanceof Array?e:[e]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!Mo(r))&&console.error(n)}catch{console.error(n)}})}if(t.IconifyProviders!==void 0){const e=t.IconifyProviders;if(typeof e=="object"&&e!==null)for(let n in e){const r="IconifyProviders["+n+"] is invalid.";try{const o=e[n];if(typeof o!="object"||!o||o.resources===void 0)continue;Bo(n,o)||console.error(r)}catch{console.error(r)}}}}const vr={...Y,body:""};ct({inheritAttrs:!1,data(){return{iconMounted:!1,counter:0}},mounted(){this._name="",this._loadingIcon=null,this.iconMounted=!0},unmounted(){this.abortLoading()},methods:{abortLoading(){this._loadingIcon&&(this._loadingIcon.abort(),this._loadingIcon=null)},getIcon(t,e){if(typeof t=="object"&&t!==null&&typeof t.body=="string")return this._name="",this.abortLoading(),{data:t};let n;if(typeof t!="string"||(n=k(t,!1,!0))===null)return this.abortLoading(),null;const r=Be(n);if(!r)return(!this._loadingIcon||this._loadingIcon.name!==t)&&(this.abortLoading(),this._name="",r!==null&&(this._loadingIcon={name:t,abort:ke([n],()=>{this.counter++})})),null;this.abortLoading(),this._name!==t&&(this._name=t,e&&e(t));const o=["iconify"];return n.prefix!==""&&o.push("iconify--"+n.prefix),n.provider!==""&&o.push("iconify--"+n.provider),{data:r,classes:o}}},render(){this.counter;const t=this.$attrs,e=this.iconMounted?this.getIcon(t.icon,t.onLoad):null;if(!e)return ge(vr,t);let n=t;return e.classes&&(n={...t,class:(typeof t.class=="string"?t.class+" ":"")+e.classes.join(" ")}),ge({...Y,...e.data},n)}});const wr=["width","height"],Sr=ct({__name:"Icon",props:{name:{type:String,required:!0},size:{type:String,default:""}},async setup(t){var m;let e,n;const r=t,o=nn(),s=sn();(m=s==null?void 0:s.nuxtIcon)!=null&&m.aliases;const i=be("icons",()=>({})),c=bn(!1),l=R(()=>{var a;return(((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.aliases)||{})[r.name]||r.name}),f=R(()=>{var a;return(a=i.value)==null?void 0:a[l.value]}),u=R(()=>o.vueApp.component(l.value)),d=R(()=>{var p;const a=r.size||((p=s.nuxtIcon)==null?void 0:p.size)||"1em";return String(Number(a))===a?`${a}px`:a}),h=R(()=>{var a;return((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.class)??"icon"});async function y(){var a;u.value||(a=i.value)!=null&&a[l.value]||(c.value=!0,i.value[l.value]=await lr(l.value).catch(()=>{}),c.value=!1)}return vn(()=>l.value,y),!u.value&&([e,n]=wn(()=>y()),e=await e,n()),(a,p)=>S(c)?(_(),z("span",{key:0,class:B(S(h)),width:S(d),height:S(d)},null,10,wr)):S(f)?(_(),H(S(xo),{key:1,icon:S(f),class:B(S(h)),width:S(d),height:S(d)},null,8,["icon","class","width","height"])):S(u)?(_(),H(Sn(S(u)),{key:2,class:B(S(h)),width:S(d),height:S(d)},null,8,["class","width","height"])):(_(),z("span",{key:3,class:B(S(h)),style:xn({fontSize:S(d),lineHeight:S(d),width:S(d),height:S(d)})},gt(t.name),7))}});const Ze=Ie(Sr,[["__scopeId","data-v-28b5b508"]]),Rr=Object.freeze(Object.defineProperty({__proto__:null,default:Ze},Symbol.toStringTag,{value:"Module"})),xr={class:"docs-aside-tree"},Ir=["onClick"],Cr={class:"content"},_r={class:"content"},Tr=ct({__name:"DocsAsideTree",props:{links:{type:Array,default:()=>[]},level:{type:Number,default:0},max:{type:Number,default:null},parent:{type:Object,default:null}},setup(t){var f;const e=t,n=ye(),{config:r}=cn(),o=be(`docus-docs-aside-collapse-map-${((f=e.parent)==null?void 0:f._path)||"/"}`,()=>e.level===0?{}:e.links.filter(u=>!!u.children).reduce((u,d)=>(u[d._path]=!0,u),{})),s=u=>n.path===u._path,i=u=>{var d,h,y,m;if(u.children){if(typeof o.value[u._path]<"u")return o.value[u._path];if((d=u==null?void 0:u.aside)!=null&&d.collapsed)return u.aside.collapsed;if(u!=null&&u.collapsed)return u==null?void 0:u.collapsed;if((y=(h=r==null?void 0:r.value)==null?void 0:h.aside)!=null&&y.collapsed)return(m=r.value.aside)==null?void 0:m.collapsed}return!1},c=u=>o.value[u._path]=!i(u),l=R(()=>e.links.some(u=>u.children));return(u,d)=>{const h=Ze,y=on,m=tn;return _(),z("ul",xr,[(_(!0),z(In,null,Cn(t.links,a=>{var p,x,w,b,j;return _(),z("li",{key:a._path,class:B({"has-parent-icon":(p=t.parent)==null?void 0:p.icon,"has-children":t.level>0&&a.children,bordered:t.level>0||!S(l),active:s(a)})},[a.children?(_(),z("button",{key:0,class:"title-collapsible-button",onClick:A=>c(a)},[U("span",Cr,[(x=a==null?void 0:a.navigation)!=null&&x.icon||a.icon?(_(),H(h,{key:0,name:((w=a==null?void 0:a.navigation)==null?void 0:w.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((b=a==null?void 0:a.navigation)==null?void 0:b.title)||a.title||a._path),1)]),U("span",null,[_n(h,{name:i(a)?"lucide:chevrons-up-down":"lucide:chevrons-down-up",class:"collapsible-icon"},null,8,["name"])])],8,Ir)):(_(),H(y,{key:1,to:a.redirect?a.redirect:a._path,class:B(["link",{padded:t.level>0||!S(l),active:s(a)}]),exact:a.exact},{default:Tn(()=>{var A,v,I;return[U("span",_r,[(A=a==null?void 0:a.navigation)!=null&&A.icon||a.icon?(_(),H(h,{key:0,name:((v=a==null?void 0:a.navigation)==null?void 0:v.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((I=a==null?void 0:a.navigation)==null?void 0:I.title)||a.title||a._path),1)])]}),_:2},1032,["to","exact","class"])),(j=a.children)!=null&&j.length&&(t.max===null||t.level+1{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,r)=>{const o=e?N.createElementNS(En,t):N.createElement(t,n?{is:n}:void 0);return t==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:t=>N.createTextNode(t),createComment:t=>N.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>N.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,r,o,s){const i=n?n.previousSibling:e.lastChild;if(o&&(o===s||o.nextSibling))for(;e.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{zt.innerHTML=r?`${t}`:t;const c=zt.content;if(r){const l=c.firstChild;for(;l.firstChild;)c.appendChild(l.firstChild);c.removeChild(l)}e.insertBefore(c,n)}return[i?i.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Mn(t,e,n){const r=t._vtc;r&&(e=(e?[e,...r]:[...r]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function jn(t,e,n){const r=t.style,o=rt(n);if(n&&!o){if(e&&!rt(e))for(const s in e)n[s]==null&&mt(r,s,"");for(const s in n)mt(r,s,n[s])}else{const s=r.display;o?e!==n&&(r.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(r.display=s)}}const Bt=/\s*!important$/;function mt(t,e,n){if(it(n))n.forEach(r=>mt(t,e,r));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const r=Pn(t,e);Bt.test(n)?t.setProperty(Se(r),n.replace(Bt,""),"important"):t[r]=n}}const Ht=["Webkit","Moz","ms"],ut={};function Pn(t,e){const n=ut[e];if(n)return n;let r=hn(e);if(r!=="filter"&&r in t)return ut[e]=r;r=gn(r);for(let o=0;oft||(zn.then(()=>ft=0),ft=Date.now());function Hn(t,e){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;yn(Un(r,n.value),e,5,[r])};return n.value=t,n.attached=Bn(),n}function Un(t,e){if(it(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(r=>o=>!o._stopped&&r&&r(o))}else return e}const Kt=/^on[a-z]/,qn=(t,e,n,r,o=!1,s,i,c,l)=>{e==="class"?Mn(t,r,o):e==="style"?jn(t,n,r):dn(e)?pn(e)||Dn(t,e,n,r,i):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Kn(t,e,r,o))?On(t,e,r,s,i,c,l):(e==="true-value"?t._trueValue=r:e==="false-value"&&(t._falseValue=r),Ln(t,e,r,o))};function Kn(t,e,n,r){return r?!!(e==="innerHTML"||e==="textContent"||e in t&&Kt.test(e)&&we(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||Kt.test(e)&&rt(n)?!1:e in t}const $="transition",q="animation",Ce=(t,{slots:e})=>G(ve,Vn(t),e);Ce.displayName="Transition";const _e={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Ce.props=At({},ve.props,_e);const O=(t,e=[])=>{it(t)?t.forEach(n=>n(...e)):t&&t(...e)},Vt=t=>t?it(t)?t.some(e=>e.length>1):t.length>1:!1;function Vn(t){const e={};for(const g in t)g in _e||(e[g]=t[g]);if(t.css===!1)return e;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:f=i,appearToClass:u=c,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:h=`${n}-leave-active`,leaveToClass:y=`${n}-leave-to`}=t,m=Qn(o),a=m&&m[0],p=m&&m[1],{onBeforeEnter:x,onEnter:w,onEnterCancelled:b,onLeave:j,onLeaveCancelled:A,onBeforeAppear:v=x,onAppear:I=w,onAppearCancelled:P=b}=e,E=(g,C,L)=>{F(g,C?u:c),F(g,C?f:i),L&&L()},T=(g,C)=>{g._isLeaving=!1,F(g,d),F(g,y),F(g,h),C&&C()},Nt=g=>(C,L)=>{const Dt=g?I:w,Rt=()=>E(C,g,L);O(Dt,[C,Rt]),Qt(()=>{F(C,g?l:s),M(C,g?u:c),Vt(Dt)||Wt(C,r,a,Rt)})};return At(e,{onBeforeEnter(g){O(x,[g]),M(g,s),M(g,i)},onBeforeAppear(g){O(v,[g]),M(g,l),M(g,f)},onEnter:Nt(!1),onAppear:Nt(!0),onLeave(g,C){g._isLeaving=!0;const L=()=>T(g,C);M(g,d),Jn(),M(g,h),Qt(()=>{g._isLeaving&&(F(g,d),M(g,y),Vt(j)||Wt(g,r,p,L))}),O(j,[g,L])},onEnterCancelled(g){E(g,!1),O(b,[g])},onAppearCancelled(g){E(g,!0),O(P,[g])},onLeaveCancelled(g){T(g),O(A,[g])}})}function Qn(t){if(t==null)return null;if(an(t))return[dt(t.enter),dt(t.leave)];{const e=dt(t);return[e,e]}}function dt(t){return ln(t)}function M(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function F(t,e){e.split(/\s+/).forEach(r=>r&&t.classList.remove(r));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function Qt(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Wn=0;function Wt(t,e,n,r){const o=t._endId=++Wn,s=()=>{o===t._endId&&r()};if(n)return setTimeout(s,n);const{type:i,timeout:c,propCount:l}=Gn(t,e);if(!i)return r();const f=i+"end";let u=0;const d=()=>{t.removeEventListener(f,h),s()},h=y=>{y.target===t&&++u>=l&&d()};setTimeout(()=>{u(n[m]||"").split(", "),o=r(`${$}Delay`),s=r(`${$}Duration`),i=Gt(o,s),c=r(`${q}Delay`),l=r(`${q}Duration`),f=Gt(c,l);let u=null,d=0,h=0;e===$?i>0&&(u=$,d=i,h=s.length):e===q?f>0&&(u=q,d=f,h=l.length):(d=Math.max(i,f),u=d>0?i>f?$:q:null,h=u?u===$?s.length:l.length:0);const y=u===$&&/\b(transform|all)(,|$)/.test(r(`${$}Property`).toString());return{type:u,timeout:d,propCount:h,hasTransform:y}}function Gt(t,e){for(;t.lengthJt(n)+Jt(t[r])))}function Jt(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function Jn(){return document.body.offsetHeight}const Xn=["ctrl","shift","alt","meta"],kn={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>Xn.some(n=>t[`${n}Key`]&&!e.includes(n))},Pr=(t,e)=>(n,...r)=>{for(let o=0;o{K(t,!1)}):K(t,e))},beforeUnmount(t,{value:e}){K(t,e)}};function K(t,e){t.style.display=e?t._vod:"none"}const Te=At({patchProp:qn},$n);let Q,Xt=!1;function Zn(){return Q||(Q=un(Te))}function to(){return Q=Xt?Q:fn(Te),Xt=!0,Q}const Lr=(...t)=>{const e=Zn().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(!o)return;const s=e._component;!we(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},e},Or=(...t)=>{const e=to().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(o)return n(o,!0,o instanceof SVGElement)},e};function Ae(t){return rt(t)?document.querySelector(t):t}const eo=["p","h1","h2","h3","h4","h5","h6","li"];function yt(t,e){return t.type===e||typeof t.type=="object"&&t.type.tag===e||t.tag===e}function Ee(t){return yt(t,"text")||typeof t.children=="string"}function $e(t){return Array.isArray(t.children)||typeof t.children=="string"?t.children:typeof t.children.default=="function"?t.children.default():[]}function bt(t){if(!t)return"";if(Array.isArray(t))return t.map(bt).join("");if(Ee(t))return t.children||t.value;const e=$e(t);return Array.isArray(e)?e.map(bt).join(""):""}function Et(t,e=["p"]){if(Array.isArray(t))return t.flatMap(r=>Et(r,e));let n=t;return e.some(r=>r==="*"||yt(t,r))&&(n=$e(t)||t,!Array.isArray(n)&&eo.some(r=>yt(t,r))&&(n=[n])),n}function Me(t,e=["p"]){return t=Array.isArray(t)?t:[t],e.length?t.flatMap(n=>Me(Et(n,[e[0]]),e.slice(1))).filter(n=>!(Ee(n)&&bt(n).trim()==="")):t}const Fr=t=>en(t,me().public.content.api.baseURL),Nr=()=>({unwrap:Et,flatUnwrap:Me}),Dr=()=>{const{experimental:t}=me().content;if(t.clientDB)return!0;const e=ye().query;return Object.prototype.hasOwnProperty.call(e,"preview")&&!e.preview?!1:!!(e.preview||rn("previewToken").value)},je=Object.freeze({left:0,top:0,width:16,height:16}),Pe=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),$t=Object.freeze({...je,...Pe});Object.freeze({...$t,body:"",hidden:!1});({...je});const Le=Object.freeze({width:null,height:null}),Oe=Object.freeze({...Le,...Pe});function no(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in Le?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const oo=/[\s,]+/;function ro(t,e){e.split(oo).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function so(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}const io=/(-?[0-9.]*[0-9]+[0-9.]*)/g,co=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function kt(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(io);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=co.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const ao=t=>t==="unset"||t==="undefined"||t==="none";function lo(t,e){const n={...$t,...t},r={...Oe,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=kt(d,l/f)):(u=i==="auto"?l:i,d=c===null?kt(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{ao(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const uo=/\sid="(\S+)"/g,fo="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let po=0;function ho(t,e=fo){const n=[];let r;for(;r=uo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(po++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}function go(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function mo(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function yo(t){return'url("data:image/svg+xml,'+mo(t)+'")'}const Yt={...Oe,inline:!1},bo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},vo={display:"inline-block"},vt={backgroundColor:"currentColor"},Fe={backgroundColor:"transparent"},Zt={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},te={webkitMask:vt,mask:vt,background:Fe};for(const t in te){const e=te[t];for(const n in Zt)e[t+n]=Zt[n]}const tt={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";tt[t+"-flip"]=e,tt[t.slice(0,1)+"-flip"]=e,tt[t+"Flip"]=e});function ee(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const wo=(t,e)=>{const n=no(Yt,e),r={...bo},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&ro(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=so(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=tt[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):Yt[a]===void 0&&(r[a]=p)}}}const l=lo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=ho(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=go(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":yo(m),width:ee(f.width),height:ee(f.height),...vo,...y?vt:Fe,...c},G("span",r)},So=Object.create(null),xo=ct({inheritAttrs:!1,render(){const t=this.$attrs,e=t.icon,n=typeof e=="string"?So[e]:typeof e=="object"?e:null;return n===null||typeof n!="object"||typeof n.body!="string"?this.$slots.default?this.$slots.default():null:wo({...$t,...n},t)}}),W=/^[a-z0-9]+(-[a-z0-9]+)*$/,k=(t,e,n,r="")=>{const o=t.split(":");if(t.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const c=o.pop(),l=o.pop(),f={provider:o.length>0?o[0]:r,prefix:l,name:c};return e&&!et(f)?null:f}const s=o[0],i=s.split("-");if(i.length>1){const c={provider:r,prefix:i.shift(),name:i.join("-")};return e&&!et(c)?null:c}if(n&&r===""){const c={provider:r,prefix:"",name:s};return e&&!et(c,n)?null:c}return null},et=(t,e)=>t?!!((t.provider===""||t.provider.match(W))&&(e&&t.prefix===""||t.prefix.match(W))&&t.name.match(W)):!1,Ne=Object.freeze({left:0,top:0,width:16,height:16}),st=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Y=Object.freeze({...Ne,...st}),wt=Object.freeze({...Y,body:"",hidden:!1});function Io(t,e){const n={};!t.hFlip!=!e.hFlip&&(n.hFlip=!0),!t.vFlip!=!e.vFlip&&(n.vFlip=!0);const r=((t.rotate||0)+(e.rotate||0))%4;return r&&(n.rotate=r),n}function ne(t,e){const n=Io(t,e);for(const r in wt)r in st?r in t&&!(r in n)&&(n[r]=st[r]):r in e?n[r]=e[r]:r in t&&(n[r]=t[r]);return n}function Co(t,e){const n=t.icons,r=t.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const c=r[i]&&r[i].parent,l=c&&s(c);l&&(o[i]=[c].concat(l))}return o[i]}return(e||Object.keys(n).concat(Object.keys(r))).forEach(s),o}function _o(t,e,n){const r=t.icons,o=t.aliases||Object.create(null);let s={};function i(c){s=ne(r[c]||o[c],s)}return i(e),n.forEach(i),ne(t,s)}function De(t,e){const n=[];if(typeof t!="object"||typeof t.icons!="object")return n;t.not_found instanceof Array&&t.not_found.forEach(o=>{e(o,null),n.push(o)});const r=Co(t);for(const o in r){const s=r[o];s&&(e(o,_o(t,o,s)),n.push(o))}return n}const To={provider:"",aliases:{},not_found:{},...Ne};function pt(t,e){for(const n in e)if(n in t&&typeof t[n]!=typeof e[n])return!1;return!0}function Re(t){if(typeof t!="object"||t===null)return null;const e=t;if(typeof e.prefix!="string"||!t.icons||typeof t.icons!="object"||!pt(t,To))return null;const n=e.icons;for(const o in n){const s=n[o];if(!o.match(W)||typeof s.body!="string"||!pt(s,wt))return null}const r=e.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o.match(W)||typeof i!="string"||!n[i]&&!r[i]||!pt(s,wt))return null}return e}const oe=Object.create(null);function Ao(t,e){return{provider:t,prefix:e,icons:Object.create(null),missing:new Set}}function D(t,e){const n=oe[t]||(oe[t]=Object.create(null));return n[e]||(n[e]=Ao(t,e))}function Mt(t,e){return Re(e)?De(e,(n,r)=>{r?t.icons[n]=r:t.missing.add(n)}):[]}function Eo(t,e,n){try{if(typeof n.body=="string")return t.icons[e]={...n},!0}catch{}return!1}let J=!1;function ze(t){return typeof t=="boolean"&&(J=t),J}function Be(t){const e=typeof t=="string"?k(t,!0,J):t;if(e){const n=D(e.provider,e.prefix),r=e.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function $o(t,e){const n=k(t,!0,J);if(!n)return!1;const r=D(n.provider,n.prefix);return Eo(r,n.name,e)}function Mo(t,e){if(typeof t!="object")return!1;if(typeof e!="string"&&(e=t.provider||""),J&&!e&&!t.prefix){let o=!1;return Re(t)&&(t.prefix="",De(t,(s,i)=>{i&&$o(s,i)&&(o=!0)})),o}const n=t.prefix;if(!et({provider:e,prefix:n,name:"a"}))return!1;const r=D(e,n);return!!Mt(r,t)}const He=Object.freeze({width:null,height:null}),Ue=Object.freeze({...He,...st}),jo=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Po=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function re(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(jo);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=Po.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const Lo=t=>t==="unset"||t==="undefined"||t==="none";function Oo(t,e){const n={...Y,...t},r={...Ue,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=re(d,l/f)):(u=i==="auto"?l:i,d=c===null?re(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{Lo(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const Fo=/\sid="(\S+)"/g,No="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Do=0;function Ro(t,e=No){const n=[];let r;for(;r=Fo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(Do++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}const St=Object.create(null);function zo(t,e){St[t]=e}function xt(t){return St[t]||St[""]}function jt(t){let e;if(typeof t.resources=="string")e=[t.resources];else if(e=t.resources,!(e instanceof Array)||!e.length)return null;return{resources:e,path:t.path||"/",maxURL:t.maxURL||500,rotate:t.rotate||750,timeout:t.timeout||5e3,random:t.random===!0,index:t.index||0,dataAfterTimeout:t.dataAfterTimeout!==!1}}const Pt=Object.create(null),V=["https://api.simplesvg.com","https://api.unisvg.com"],nt=[];for(;V.length>0;)V.length===1||Math.random()>.5?nt.push(V.shift()):nt.push(V.pop());Pt[""]=jt({resources:["https://api.iconify.design"].concat(nt)});function Bo(t,e){const n=jt(e);return n===null?!1:(Pt[t]=n,!0)}function Lt(t){return Pt[t]}const Ho=()=>{let t;try{if(t=fetch,typeof t=="function")return t}catch{}};let se=Ho();function Uo(t,e){const n=Lt(t);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=e+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function qo(t){return t===404}const Ko=(t,e,n)=>{const r=[],o=Uo(t,e),s="icons";let i={type:s,provider:t,prefix:e,icons:[]},c=0;return n.forEach((l,f)=>{c+=l.length+1,c>=o&&f>0&&(r.push(i),i={type:s,provider:t,prefix:e,icons:[]},c=l.length),i.icons.push(l)}),r.push(i),r};function Vo(t){if(typeof t=="string"){const e=Lt(t);if(e)return e.path}return"/"}const Qo=(t,e,n)=>{if(!se){n("abort",424);return}let r=Vo(e.provider);switch(e.type){case"icons":{const s=e.prefix,c=e.icons.join(","),l=new URLSearchParams({icons:c});r+=s+".json?"+l.toString();break}case"custom":{const s=e.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;se(t+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(qo(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},Wo={prepare:Ko,send:Qo};function Go(t){const e={loaded:[],missing:[],pending:[]},n=Object.create(null);t.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return t.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,c=o.name,l=n[s]||(n[s]=Object.create(null)),f=l[i]||(l[i]=D(s,i));let u;c in f.icons?u=e.loaded:i===""||f.missing.has(c)?u=e.missing:u=e.pending;const d={provider:s,prefix:i,name:c};u.push(d)}),e}function qe(t,e){t.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==e))})}function Jo(t){t.pendingCallbacksFlag||(t.pendingCallbacksFlag=!0,setTimeout(()=>{t.pendingCallbacksFlag=!1;const e=t.loaderCallbacks?t.loaderCallbacks.slice(0):[];if(!e.length)return;let n=!1;const r=t.provider,o=t.prefix;e.forEach(s=>{const i=s.icons,c=i.pending.length;i.pending=i.pending.filter(l=>{if(l.prefix!==o)return!0;const f=l.name;if(t.icons[f])i.loaded.push({provider:r,prefix:o,name:f});else if(t.missing.has(f))i.missing.push({provider:r,prefix:o,name:f});else return n=!0,!0;return!1}),i.pending.length!==c&&(n||qe([t],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let Xo=0;function ko(t,e,n){const r=Xo++,o=qe.bind(null,n,r);if(!e.pending.length)return o;const s={id:r,icons:e,callback:t,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function Yo(t,e=!0,n=!1){const r=[];return t.forEach(o=>{const s=typeof o=="string"?k(o,e,n):o;s&&r.push(s)}),r}var Zo={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function tr(t,e,n,r){const o=t.resources.length,s=t.random?Math.floor(Math.random()*o):t.index;let i;if(t.random){let v=t.resources.slice(0);for(i=[];v.length>1;){const I=Math.floor(Math.random()*v.length);i.push(v[I]),v=v.slice(0,I).concat(v.slice(I+1))}i=i.concat(v)}else i=t.resources.slice(s).concat(t.resources.slice(0,s));const c=Date.now();let l="pending",f=0,u,d=null,h=[],y=[];typeof r=="function"&&y.push(r);function m(){d&&(clearTimeout(d),d=null)}function a(){l==="pending"&&(l="aborted"),m(),h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function p(v,I){I&&(y=[]),typeof v=="function"&&y.push(v)}function x(){return{startTime:c,payload:e,status:l,queriesSent:f,queriesPending:h.length,subscribe:p,abort:a}}function w(){l="failed",y.forEach(v=>{v(void 0,u)})}function b(){h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function j(v,I,P){const E=I!=="success";switch(h=h.filter(T=>T!==v),l){case"pending":break;case"failed":if(E||!t.dataAfterTimeout)return;break;default:return}if(I==="abort"){u=P,w();return}if(E){u=P,h.length||(i.length?A():w());return}if(m(),b(),!t.random){const T=t.resources.indexOf(v.resource);T!==-1&&T!==t.index&&(t.index=T)}l="completed",y.forEach(T=>{T(P)})}function A(){if(l!=="pending")return;m();const v=i.shift();if(v===void 0){if(h.length){d=setTimeout(()=>{m(),l==="pending"&&(b(),w())},t.timeout);return}w();return}const I={status:"pending",resource:v,callback:(P,E)=>{j(I,P,E)}};h.push(I),f++,d=setTimeout(A,t.rotate),n(v,e,I.callback)}return setTimeout(A),x}function Ke(t){const e={...Zo,...t};let n=[];function r(){n=n.filter(c=>c().status==="pending")}function o(c,l,f){const u=tr(e,c,l,(d,h)=>{r(),f&&f(d,h)});return n.push(u),u}function s(c){return n.find(l=>c(l))||null}return{query:o,find:s,setIndex:c=>{e.index=c},getIndex:()=>e.index,cleanup:r}}function ie(){}const ht=Object.create(null);function er(t){if(!ht[t]){const e=Lt(t);if(!e)return;const n=Ke(e),r={config:e,redundancy:n};ht[t]=r}return ht[t]}function nr(t,e,n){let r,o;if(typeof t=="string"){const s=xt(t);if(!s)return n(void 0,424),ie;o=s.send;const i=er(t);i&&(r=i.redundancy)}else{const s=jt(t);if(s){r=Ke(s);const i=t.resources?t.resources[0]:"",c=xt(i);c&&(o=c.send)}}return!r||!o?(n(void 0,424),ie):r.query(e,o,n)().abort}const ce="iconify2",X="iconify",Ve=X+"-count",ae=X+"-version",Qe=36e5,or=168;function It(t,e){try{return t.getItem(e)}catch{}}function Ot(t,e,n){try{return t.setItem(e,n),!0}catch{}}function le(t,e){try{t.removeItem(e)}catch{}}function Ct(t,e){return Ot(t,Ve,e.toString())}function _t(t){return parseInt(It(t,Ve))||0}const at={local:!0,session:!0},We={local:new Set,session:new Set};let Ft=!1;function rr(t){Ft=t}let Z=typeof window>"u"?{}:window;function Ge(t){const e=t+"Storage";try{if(Z&&Z[e]&&typeof Z[e].length=="number")return Z[e]}catch{}at[t]=!1}function Je(t,e){const n=Ge(t);if(!n)return;const r=It(n,ae);if(r!==ce){if(r){const c=_t(n);for(let l=0;l{const l=X+c.toString(),f=It(n,l);if(typeof f=="string"){try{const u=JSON.parse(f);if(typeof u=="object"&&typeof u.cached=="number"&&u.cached>o&&typeof u.provider=="string"&&typeof u.data=="object"&&typeof u.data.prefix=="string"&&e(u,c))return!0}catch{}le(n,l)}};let i=_t(n);for(let c=i-1;c>=0;c--)s(c)||(c===i-1?(i--,Ct(n,i)):We[t].add(c))}function Xe(){if(!Ft){rr(!0);for(const t in at)Je(t,e=>{const n=e.data,r=e.provider,o=n.prefix,s=D(r,o);if(!Mt(s,n).length)return!1;const i=n.lastModified||-1;return s.lastModifiedCached=s.lastModifiedCached?Math.min(s.lastModifiedCached,i):i,!0})}}function sr(t,e){const n=t.lastModifiedCached;if(n&&n>=e)return n===e;if(t.lastModifiedCached=e,n)for(const r in at)Je(r,o=>{const s=o.data;return o.provider!==t.provider||s.prefix!==t.prefix||s.lastModified===e});return!0}function ir(t,e){Ft||Xe();function n(r){let o;if(!at[r]||!(o=Ge(r)))return;const s=We[r];let i;if(s.size)s.delete(i=Array.from(s).shift());else if(i=_t(o),!Ct(o,i+1))return;const c={cached:Math.floor(Date.now()/Qe),provider:t.provider,data:e};return Ot(o,X+i.toString(),JSON.stringify(c))}e.lastModified&&!sr(t,e.lastModified)||Object.keys(e.icons).length&&(e.not_found&&(e=Object.assign({},e),delete e.not_found),n("local")||n("session"))}function ue(){}function cr(t){t.iconsLoaderFlag||(t.iconsLoaderFlag=!0,setTimeout(()=>{t.iconsLoaderFlag=!1,Jo(t)}))}function ar(t,e){t.iconsToLoad?t.iconsToLoad=t.iconsToLoad.concat(e).sort():t.iconsToLoad=e,t.iconsQueueFlag||(t.iconsQueueFlag=!0,setTimeout(()=>{t.iconsQueueFlag=!1;const{provider:n,prefix:r}=t,o=t.iconsToLoad;delete t.iconsToLoad;let s;if(!o||!(s=xt(n)))return;s.prepare(n,r,o).forEach(c=>{nr(n,c,l=>{if(typeof l!="object")c.icons.forEach(f=>{t.missing.add(f)});else try{const f=Mt(t,l);if(!f.length)return;const u=t.pendingIcons;u&&f.forEach(d=>{u.delete(d)}),ir(t,l)}catch(f){console.error(f)}cr(t)})})}))}const ke=(t,e)=>{const n=Yo(t,!0,ze()),r=Go(n);if(!r.pending.length){let l=!0;return e&&setTimeout(()=>{l&&e(r.loaded,r.missing,r.pending,ue)}),()=>{l=!1}}const o=Object.create(null),s=[];let i,c;return r.pending.forEach(l=>{const{provider:f,prefix:u}=l;if(u===c&&f===i)return;i=f,c=u,s.push(D(f,u));const d=o[f]||(o[f]=Object.create(null));d[u]||(d[u]=[])}),r.pending.forEach(l=>{const{provider:f,prefix:u,name:d}=l,h=D(f,u),y=h.pendingIcons||(h.pendingIcons=new Set);y.has(d)||(y.add(d),o[f][u].push(d))}),s.forEach(l=>{const{provider:f,prefix:u}=l;o[f][u].length&&ar(l,o[f][u])}),e?ko(e,r,s):ue},lr=t=>new Promise((e,n)=>{const r=typeof t=="string"?k(t,!0):t;if(!r){n(t);return}ke([r||t],o=>{if(o.length&&r){const s=Be(r);if(s){e({...Y,...s});return}}n(t)})});function ur(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in He?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const fr=/[\s,]+/;function dr(t,e){e.split(fr).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function pr(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}function hr(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function gr(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function mr(t){return'url("data:image/svg+xml,'+gr(t)+'")'}const fe={...Ue,inline:!1},yr={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},br={display:"inline-block"},Tt={backgroundColor:"currentColor"},Ye={backgroundColor:"transparent"},de={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},pe={webkitMask:Tt,mask:Tt,background:Ye};for(const t in pe){const e=pe[t];for(const n in de)e[t+n]=de[n]}const ot={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";ot[t+"-flip"]=e,ot[t.slice(0,1)+"-flip"]=e,ot[t+"Flip"]=e});function he(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const ge=(t,e)=>{const n=ur(fe,e),r={...yr},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&dr(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=pr(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=ot[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):fe[a]===void 0&&(r[a]=p)}}}const l=Oo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=Ro(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=hr(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":mr(m),width:he(f.width),height:he(f.height),...br,...y?Tt:Ye,...c},G("span",r)};ze(!0);zo("",Wo);if(typeof document<"u"&&typeof window<"u"){Xe();const t=window;if(t.IconifyPreload!==void 0){const e=t.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof e=="object"&&e!==null&&(e instanceof Array?e:[e]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!Mo(r))&&console.error(n)}catch{console.error(n)}})}if(t.IconifyProviders!==void 0){const e=t.IconifyProviders;if(typeof e=="object"&&e!==null)for(let n in e){const r="IconifyProviders["+n+"] is invalid.";try{const o=e[n];if(typeof o!="object"||!o||o.resources===void 0)continue;Bo(n,o)||console.error(r)}catch{console.error(r)}}}}const vr={...Y,body:""};ct({inheritAttrs:!1,data(){return{iconMounted:!1,counter:0}},mounted(){this._name="",this._loadingIcon=null,this.iconMounted=!0},unmounted(){this.abortLoading()},methods:{abortLoading(){this._loadingIcon&&(this._loadingIcon.abort(),this._loadingIcon=null)},getIcon(t,e){if(typeof t=="object"&&t!==null&&typeof t.body=="string")return this._name="",this.abortLoading(),{data:t};let n;if(typeof t!="string"||(n=k(t,!1,!0))===null)return this.abortLoading(),null;const r=Be(n);if(!r)return(!this._loadingIcon||this._loadingIcon.name!==t)&&(this.abortLoading(),this._name="",r!==null&&(this._loadingIcon={name:t,abort:ke([n],()=>{this.counter++})})),null;this.abortLoading(),this._name!==t&&(this._name=t,e&&e(t));const o=["iconify"];return n.prefix!==""&&o.push("iconify--"+n.prefix),n.provider!==""&&o.push("iconify--"+n.provider),{data:r,classes:o}}},render(){this.counter;const t=this.$attrs,e=this.iconMounted?this.getIcon(t.icon,t.onLoad):null;if(!e)return ge(vr,t);let n=t;return e.classes&&(n={...t,class:(typeof t.class=="string"?t.class+" ":"")+e.classes.join(" ")}),ge({...Y,...e.data},n)}});const wr=["width","height"],Sr=ct({__name:"Icon",props:{name:{type:String,required:!0},size:{type:String,default:""}},async setup(t){var m;let e,n;const r=t,o=nn(),s=sn();(m=s==null?void 0:s.nuxtIcon)!=null&&m.aliases;const i=be("icons",()=>({})),c=bn(!1),l=R(()=>{var a;return(((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.aliases)||{})[r.name]||r.name}),f=R(()=>{var a;return(a=i.value)==null?void 0:a[l.value]}),u=R(()=>o.vueApp.component(l.value)),d=R(()=>{var p;const a=r.size||((p=s.nuxtIcon)==null?void 0:p.size)||"1em";return String(Number(a))===a?`${a}px`:a}),h=R(()=>{var a;return((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.class)??"icon"});async function y(){var a;u.value||(a=i.value)!=null&&a[l.value]||(c.value=!0,i.value[l.value]=await lr(l.value).catch(()=>{}),c.value=!1)}return vn(()=>l.value,y),!u.value&&([e,n]=wn(()=>y()),e=await e,n()),(a,p)=>S(c)?(_(),z("span",{key:0,class:B(S(h)),width:S(d),height:S(d)},null,10,wr)):S(f)?(_(),H(S(xo),{key:1,icon:S(f),class:B(S(h)),width:S(d),height:S(d)},null,8,["icon","class","width","height"])):S(u)?(_(),H(Sn(S(u)),{key:2,class:B(S(h)),width:S(d),height:S(d)},null,8,["class","width","height"])):(_(),z("span",{key:3,class:B(S(h)),style:xn({fontSize:S(d),lineHeight:S(d),width:S(d),height:S(d)})},gt(t.name),7))}});const Ze=Ie(Sr,[["__scopeId","data-v-28b5b508"]]),Rr=Object.freeze(Object.defineProperty({__proto__:null,default:Ze},Symbol.toStringTag,{value:"Module"})),xr={class:"docs-aside-tree"},Ir=["onClick"],Cr={class:"content"},_r={class:"content"},Tr=ct({__name:"DocsAsideTree",props:{links:{type:Array,default:()=>[]},level:{type:Number,default:0},max:{type:Number,default:null},parent:{type:Object,default:null}},setup(t){var f;const e=t,n=ye(),{config:r}=cn(),o=be(`docus-docs-aside-collapse-map-${((f=e.parent)==null?void 0:f._path)||"/"}`,()=>e.level===0?{}:e.links.filter(u=>!!u.children).reduce((u,d)=>(u[d._path]=!0,u),{})),s=u=>n.path===u._path,i=u=>{var d,h,y,m;if(u.children){if(typeof o.value[u._path]<"u")return o.value[u._path];if((d=u==null?void 0:u.aside)!=null&&d.collapsed)return u.aside.collapsed;if(u!=null&&u.collapsed)return u==null?void 0:u.collapsed;if((y=(h=r==null?void 0:r.value)==null?void 0:h.aside)!=null&&y.collapsed)return(m=r.value.aside)==null?void 0:m.collapsed}return!1},c=u=>o.value[u._path]=!i(u),l=R(()=>e.links.some(u=>u.children));return(u,d)=>{const h=Ze,y=on,m=tn;return _(),z("ul",xr,[(_(!0),z(In,null,Cn(t.links,a=>{var p,x,w,b,j;return _(),z("li",{key:a._path,class:B({"has-parent-icon":(p=t.parent)==null?void 0:p.icon,"has-children":t.level>0&&a.children,bordered:t.level>0||!S(l),active:s(a)})},[a.children?(_(),z("button",{key:0,class:"title-collapsible-button",onClick:A=>c(a)},[U("span",Cr,[(x=a==null?void 0:a.navigation)!=null&&x.icon||a.icon?(_(),H(h,{key:0,name:((w=a==null?void 0:a.navigation)==null?void 0:w.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((b=a==null?void 0:a.navigation)==null?void 0:b.title)||a.title||a._path),1)]),U("span",null,[_n(h,{name:i(a)?"lucide:chevrons-up-down":"lucide:chevrons-down-up",class:"collapsible-icon"},null,8,["name"])])],8,Ir)):(_(),H(y,{key:1,to:a.redirect?a.redirect:a._path,class:B(["link",{padded:t.level>0||!S(l),active:s(a)}]),exact:a.exact},{default:Tn(()=>{var A,v,I;return[U("span",_r,[(A=a==null?void 0:a.navigation)!=null&&A.icon||a.icon?(_(),H(h,{key:0,name:((v=a==null?void 0:a.navigation)==null?void 0:v.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((I=a==null?void 0:a.navigation)==null?void 0:I.title)||a.title||a._path),1)])]}),_:2},1032,["to","exact","class"])),(j=a.children)!=null&&j.length&&(t.max===null||t.level+1(b("data-v-c70c0152"),o=o(),v(),o),E={key:0,class:"docs-page-bottom"},V={key:0,class:"edit-link"},w=B(()=>r("span",null," Edit this page on GitHub ",-1)),G={key:1},L=C({__name:"DocsPageBottom",setup(o){const{page:e}=D(),{config:d}=I();return(P,T)=>{var _,p,m;const u=g,f=x,l=k;return t(e)?(s(),n("div",E,[(p=(_=t(d))==null?void 0:_.github)!=null&&p.edit?(s(),n("div",V,[a(u,{name:"uil:edit"}),a(l,{page:t(e)},{default:i(({url:h})=>[a(f,{to:h},{default:i(()=>[w]),_:2},1032,["to"])]),_:1},8,["page"])])):c("",!0),(m=t(e))!=null&&m.mtime?(s(),n("span",G,[N("Updated on "),r("b",null,S(new Intl.DateTimeFormat("en-US").format(Date.parse(t(e).mtime))),1)])):c("",!0)])):c("",!0)}}}),K=y(L,[["__scopeId","data-v-c70c0152"]]);export{K as default}; +import{_ as g}from"./DocsAsideTree.b95e55e0.js";import x from"./ProseA.a4d07cc8.js";import{_ as k}from"./EditOnLink.vue.1d2292f2.js";import{d as D,c as I}from"./useDocus.41ab1ca5.js";import{f as C,u as t,q as s,x as n,G as a,C as i,D as c,L as N,E as r,J as S,M as b,N as v}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as y}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";/* empty css */const B=o=>(b("data-v-c70c0152"),o=o(),v(),o),E={key:0,class:"docs-page-bottom"},V={key:0,class:"edit-link"},w=B(()=>r("span",null," Edit this page on GitHub ",-1)),G={key:1},L=C({__name:"DocsPageBottom",setup(o){const{page:e}=D(),{config:d}=I();return(P,T)=>{var _,p,m;const u=g,f=x,l=k;return t(e)?(s(),n("div",E,[(p=(_=t(d))==null?void 0:_.github)!=null&&p.edit?(s(),n("div",V,[a(u,{name:"uil:edit"}),a(l,{page:t(e)},{default:i(({url:h})=>[a(f,{to:h},{default:i(()=>[w]),_:2},1032,["to"])]),_:1},8,["page"])])):c("",!0),(m=t(e))!=null&&m.mtime?(s(),n("span",G,[N("Updated on "),r("b",null,S(new Intl.DateTimeFormat("en-US").format(Date.parse(t(e).mtime))),1)])):c("",!0)])):c("",!0)}}}),K=y(L,[["__scopeId","data-v-c70c0152"]]);export{K as default}; diff --git a/docs/.output/public/_nuxt/DocsPageLayout.8e541ec6.js b/docs/.output/public/_nuxt/DocsPageLayout.d352cf62.js similarity index 79% rename from docs/.output/public/_nuxt/DocsPageLayout.8e541ec6.js rename to docs/.output/public/_nuxt/DocsPageLayout.d352cf62.js index 9f314834..9f58f538 100644 --- a/docs/.output/public/_nuxt/DocsPageLayout.8e541ec6.js +++ b/docs/.output/public/_nuxt/DocsPageLayout.d352cf62.js @@ -1 +1 @@ -import G from"./DocsAside.44ffd29b.js";import J from"./ProseCodeInline.dca1a534.js";import R from"./Alert.443f6167.js";import U from"./DocsPageBottom.a96d3867.js";import K from"./DocsPrevNext.adb795e8.js";import{_ as Q}from"./DocsAsideTree.08d70919.js";import W from"./DocsToc.03cf2013.js";import{b as X,a as Y}from"./Container.f1017aa2.js";import{d as Z,c as oo,u as to}from"./useDocus.edcbeab5.js";import{l as eo}from"./app.config.4114fca6.js";import{f as no,h as d,r as I,O as so,o as ao,q as i,B as $,C as g,u as e,x,G as r,D as y,E as p,P as ro,L as k,J as co,F as lo,y as f,M as io,N as po}from"./runtime-core.esm-bundler.6894272a.js";/* empty css *//* empty css */import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";import"./ContentSlot.7e1a494f.js";/* empty css */import"./ProseA.c8de8b63.js";/* empty css */import"./EditOnLink.vue.21b8aa9d.js";/* empty css *//* empty css */import"./DocsTocLinks.c11364e4.js";/* empty css *//* empty css */const uo=u=>(io("data-v-64504251"),u=u(),po(),u),_o={key:1,class:"toc"},mo={class:"toc-wrapper"},fo=uo(()=>p("span",{class:"title"},"Table of Contents",-1)),vo=no({__name:"DocsPageLayout",setup(u){const{page:s,navigation:V}=Z(),{config:v}=oo(),A=eo(),M=(o,t=!0)=>{var n;return typeof((n=s.value)==null?void 0:n[o])<"u"?s.value[o]:t},T=d(()=>{var o,t,n;return!s.value||((n=(t=(o=s.value)==null?void 0:o.body)==null?void 0:t.children)==null?void 0:n.length)>0}),C=d(()=>{var o,t,n,_,m;return((o=s.value)==null?void 0:o.toc)!==!1&&((m=(_=(n=(t=s.value)==null?void 0:t.body)==null?void 0:n.toc)==null?void 0:_.links)==null?void 0:m.length)>=2}),E=d(()=>{var o,t;return((o=s.value)==null?void 0:o.aside)!==!1&&((t=V.value)==null?void 0:t.length)>0}),F=d(()=>M("bottom",!0)),c=I(!1),a=I(null),h=()=>A.path.split("/").slice(0,2).join("/"),l=to("asideScroll",()=>{var o;return{parentPath:h(),scrollTop:((o=a.value)==null?void 0:o.scrollTop)||0}});function P(){a.value&&(a.value.scrollHeight===0&&setTimeout(P,0),a.value.scrollTop=l.value.scrollTop)}return so(()=>{l.value.parentPath!==h()?(l.value.parentPath=h(),l.value.scrollTop=0):P()}),ao(()=>{a.value&&(l.value.scrollTop=a.value.scrollTop)}),(o,t)=>{var S,b,B,D,N,w;const n=G,_=J,m=R,H=U,L=K,O=Q,j=W,q=X;return i(),$(q,{fluid:(b=(S=e(v))==null?void 0:S.main)==null?void 0:b.fluid,padded:(D=(B=e(v))==null?void 0:B.main)==null?void 0:D.padded,class:f(["docs-page-content",{fluid:(w=(N=e(v))==null?void 0:N.main)==null?void 0:w.fluid}])},{default:g(()=>[e(E)?(i(),x("aside",{key:0,ref_key:"asideNav",ref:a,class:"aside-nav"},[r(n,{class:"app-aside"})],512)):y("",!0),p("article",{class:f(["page-body",{"with-toc":e(C)}])},[e(T)?ro(o.$slots,"default",{key:0},void 0,!0):(i(),$(m,{key:1,type:"info"},{default:g(()=>[k(" Start writing in "),r(_,null,{default:g(()=>[k("content/"+co(e(s)._file),1)]),_:1}),k(" to see this page taking shape. ")]),_:1})),e(T)&&e(s)&&e(F)?(i(),x(lo,{key:2},[r(H),r(L)],64)):y("",!0)],2),e(C)?(i(),x("div",_o,[p("div",mo,[p("button",{onClick:t[0]||(t[0]=z=>c.value=!e(c))},[fo,r(O,{name:"heroicons-outline:chevron-right",class:f(["icon",[e(c)&&"rotate"]])},null,8,["class"])]),p("div",{class:f(["docs-toc-wrapper",[e(c)&&"opened"]])},[r(j,{onMove:t[1]||(t[1]=z=>c.value=!1)})],2)])])):y("",!0)]),_:3},8,["fluid","padded","class"])}}}),qo=Y(vo,[["__scopeId","data-v-64504251"]]);export{qo as default}; +import G from"./DocsAside.08a0955d.js";import J from"./ProseCodeInline.dca1a534.js";import R from"./Alert.41cb256b.js";import U from"./DocsPageBottom.b38ecc43.js";import K from"./DocsPrevNext.2b9ea48f.js";import{_ as Q}from"./DocsAsideTree.b95e55e0.js";import W from"./DocsToc.55846f28.js";import{b as X,a as Y}from"./Container.f1017aa2.js";import{d as Z,c as oo,u as to}from"./useDocus.41ab1ca5.js";import{l as eo}from"./app.config.f41ab05d.js";import{f as no,h as d,r as I,O as so,o as ao,q as i,B as $,C as g,u as e,x,G as r,D as y,E as p,P as ro,L as k,J as co,F as lo,y as f,M as io,N as po}from"./runtime-core.esm-bundler.6894272a.js";/* empty css *//* empty css */import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";import"./ContentSlot.c5067a4f.js";/* empty css */import"./ProseA.a4d07cc8.js";/* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css *//* empty css */import"./DocsTocLinks.644c91ee.js";/* empty css *//* empty css */const uo=u=>(io("data-v-64504251"),u=u(),po(),u),_o={key:1,class:"toc"},mo={class:"toc-wrapper"},fo=uo(()=>p("span",{class:"title"},"Table of Contents",-1)),vo=no({__name:"DocsPageLayout",setup(u){const{page:s,navigation:V}=Z(),{config:v}=oo(),A=eo(),M=(o,t=!0)=>{var n;return typeof((n=s.value)==null?void 0:n[o])<"u"?s.value[o]:t},T=d(()=>{var o,t,n;return!s.value||((n=(t=(o=s.value)==null?void 0:o.body)==null?void 0:t.children)==null?void 0:n.length)>0}),C=d(()=>{var o,t,n,_,m;return((o=s.value)==null?void 0:o.toc)!==!1&&((m=(_=(n=(t=s.value)==null?void 0:t.body)==null?void 0:n.toc)==null?void 0:_.links)==null?void 0:m.length)>=2}),E=d(()=>{var o,t;return((o=s.value)==null?void 0:o.aside)!==!1&&((t=V.value)==null?void 0:t.length)>0}),F=d(()=>M("bottom",!0)),c=I(!1),a=I(null),h=()=>A.path.split("/").slice(0,2).join("/"),l=to("asideScroll",()=>{var o;return{parentPath:h(),scrollTop:((o=a.value)==null?void 0:o.scrollTop)||0}});function P(){a.value&&(a.value.scrollHeight===0&&setTimeout(P,0),a.value.scrollTop=l.value.scrollTop)}return so(()=>{l.value.parentPath!==h()?(l.value.parentPath=h(),l.value.scrollTop=0):P()}),ao(()=>{a.value&&(l.value.scrollTop=a.value.scrollTop)}),(o,t)=>{var S,b,B,D,N,w;const n=G,_=J,m=R,H=U,L=K,O=Q,j=W,q=X;return i(),$(q,{fluid:(b=(S=e(v))==null?void 0:S.main)==null?void 0:b.fluid,padded:(D=(B=e(v))==null?void 0:B.main)==null?void 0:D.padded,class:f(["docs-page-content",{fluid:(w=(N=e(v))==null?void 0:N.main)==null?void 0:w.fluid}])},{default:g(()=>[e(E)?(i(),x("aside",{key:0,ref_key:"asideNav",ref:a,class:"aside-nav"},[r(n,{class:"app-aside"})],512)):y("",!0),p("article",{class:f(["page-body",{"with-toc":e(C)}])},[e(T)?ro(o.$slots,"default",{key:0},void 0,!0):(i(),$(m,{key:1,type:"info"},{default:g(()=>[k(" Start writing in "),r(_,null,{default:g(()=>[k("content/"+co(e(s)._file),1)]),_:1}),k(" to see this page taking shape. ")]),_:1})),e(T)&&e(s)&&e(F)?(i(),x(lo,{key:2},[r(H),r(L)],64)):y("",!0)],2),e(C)?(i(),x("div",_o,[p("div",mo,[p("button",{onClick:t[0]||(t[0]=z=>c.value=!e(c))},[fo,r(O,{name:"heroicons-outline:chevron-right",class:f(["icon",[e(c)&&"rotate"]])},null,8,["class"])]),p("div",{class:f(["docs-toc-wrapper",[e(c)&&"opened"]])},[r(j,{onMove:t[1]||(t[1]=z=>c.value=!1)})],2)])])):y("",!0)]),_:3},8,["fluid","padded","class"])}}}),qo=Y(vo,[["__scopeId","data-v-64504251"]]);export{qo as default}; diff --git a/docs/.output/public/_nuxt/DocsPrevNext.adb795e8.js b/docs/.output/public/_nuxt/DocsPrevNext.2b9ea48f.js similarity index 82% rename from docs/.output/public/_nuxt/DocsPrevNext.adb795e8.js rename to docs/.output/public/_nuxt/DocsPrevNext.2b9ea48f.js index 3f59f298..3481e082 100644 --- a/docs/.output/public/_nuxt/DocsPrevNext.adb795e8.js +++ b/docs/.output/public/_nuxt/DocsPrevNext.2b9ea48f.js @@ -1 +1 @@ -import{_ as v}from"./DocsAsideTree.08d70919.js";import{_ as y}from"./app.config.4114fca6.js";import{d as k,b as C}from"./useDocus.edcbeab5.js";import{u as g}from"./index.d2b0cb5e.js";import{f as w,u as t,q as r,x as l,B as m,C as d,G as u,E as o,J as c,D as h}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";const N={key:0,class:"docs-prev-next"},D={class:"wrapper"},V={class:"directory"},E={class:"title"},F={key:1},I={class:"wrapper"},P={class:"directory"},b={class:"title"},j=w({__name:"DocsPrevNext",setup(q){const{prev:s,next:n,navigation:f}=k(),{navDirFromPath:x}=C(),p=_=>{const a=x(_._path,f.value||[]);if(a&&a[0])return a[0]._path;{const e=_.split("/");return(e.length>1?e[e.length-2]:"").split("-").map(g).join(" ")}};return(_,a)=>{const e=v,i=y;return t(s)||t(n)?(r(),l("div",N,[t(s)?(r(),m(i,{key:0,to:t(s)._path,class:"prev"},{default:d(()=>[u(e,{name:"heroicons-outline:arrow-sm-left",class:"icon"}),o("div",D,[o("span",V,c(p(t(s)._path)),1),o("span",E,c(t(s).title),1)])]),_:1},8,["to"])):(r(),l("span",F)),t(n)?(r(),m(i,{key:2,to:t(n)._path,class:"next"},{default:d(()=>[o("div",I,[o("span",P,c(p(t(n)._path)),1),o("span",b,c(t(n).title),1)]),u(e,{name:"heroicons-outline:arrow-sm-right",class:"icon"})]),_:1},8,["to"])):h("",!0)])):h("",!0)}}}),K=B(j,[["__scopeId","data-v-c087c434"]]);export{K as default}; +import{_ as v}from"./DocsAsideTree.b95e55e0.js";import{_ as y}from"./app.config.f41ab05d.js";import{d as k,b as C}from"./useDocus.41ab1ca5.js";import{u as g}from"./index.d2b0cb5e.js";import{f as w,u as t,q as r,x as l,B as m,C as d,G as u,E as o,J as c,D as h}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";const N={key:0,class:"docs-prev-next"},D={class:"wrapper"},V={class:"directory"},E={class:"title"},F={key:1},I={class:"wrapper"},P={class:"directory"},b={class:"title"},j=w({__name:"DocsPrevNext",setup(q){const{prev:s,next:n,navigation:f}=k(),{navDirFromPath:x}=C(),p=_=>{const a=x(_._path,f.value||[]);if(a&&a[0])return a[0]._path;{const e=_.split("/");return(e.length>1?e[e.length-2]:"").split("-").map(g).join(" ")}};return(_,a)=>{const e=v,i=y;return t(s)||t(n)?(r(),l("div",N,[t(s)?(r(),m(i,{key:0,to:t(s)._path,class:"prev"},{default:d(()=>[u(e,{name:"heroicons-outline:arrow-sm-left",class:"icon"}),o("div",D,[o("span",V,c(p(t(s)._path)),1),o("span",E,c(t(s).title),1)])]),_:1},8,["to"])):(r(),l("span",F)),t(n)?(r(),m(i,{key:2,to:t(n)._path,class:"next"},{default:d(()=>[o("div",I,[o("span",P,c(p(t(n)._path)),1),o("span",b,c(t(n).title),1)]),u(e,{name:"heroicons-outline:arrow-sm-right",class:"icon"})]),_:1},8,["to"])):h("",!0)])):h("",!0)}}}),K=B(j,[["__scopeId","data-v-c087c434"]]);export{K as default}; diff --git a/docs/.output/public/_nuxt/DocsToc.03cf2013.js b/docs/.output/public/_nuxt/DocsToc.55846f28.js similarity index 73% rename from docs/.output/public/_nuxt/DocsToc.03cf2013.js rename to docs/.output/public/_nuxt/DocsToc.55846f28.js index de2eca26..a12be8a2 100644 --- a/docs/.output/public/_nuxt/DocsToc.03cf2013.js +++ b/docs/.output/public/_nuxt/DocsToc.55846f28.js @@ -1 +1 @@ -import i from"./DocsTocLinks.c11364e4.js";import{d}from"./useDocus.edcbeab5.js";import{f as l,q as c,x as a,u as p,F as u,G as f,D as k,M as v,N as x,E as r}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as h}from"./Container.f1017aa2.js";/* empty css */import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";const C=o=>(v("data-v-d4e4405c"),o=o(),x(),o),I={class:"docs-toc"},N=C(()=>r("div",{class:"docs-toc-title"},[r("span",null,"Table of Contents")],-1)),B=l({__name:"DocsToc",emits:["move"],setup(o,{emit:m}){const{toc:t}=d();return(D,e)=>{var s,n;const _=i;return c(),a("div",I,[(n=(s=p(t))==null?void 0:s.links)!=null&&n.length?(c(),a(u,{key:0},[N,f(_,{links:p(t).links,onMove:e[0]||(e[0]=S=>m("move"))},null,8,["links"])],64)):k("",!0)])}}}),G=h(B,[["__scopeId","data-v-d4e4405c"]]);export{G as default}; +import i from"./DocsTocLinks.644c91ee.js";import{d}from"./useDocus.41ab1ca5.js";import{f as l,q as c,x as a,u as p,F as u,G as f,D as k,M as v,N as x,E as r}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as h}from"./Container.f1017aa2.js";/* empty css */import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";const C=o=>(v("data-v-d4e4405c"),o=o(),x(),o),I={class:"docs-toc"},N=C(()=>r("div",{class:"docs-toc-title"},[r("span",null,"Table of Contents")],-1)),B=l({__name:"DocsToc",emits:["move"],setup(o,{emit:m}){const{toc:t}=d();return(D,e)=>{var s,n;const _=i;return c(),a("div",I,[(n=(s=p(t))==null?void 0:s.links)!=null&&n.length?(c(),a(u,{key:0},[N,f(_,{links:p(t).links,onMove:e[0]||(e[0]=S=>m("move"))},null,8,["links"])],64)):k("",!0)])}}}),G=h(B,[["__scopeId","data-v-d4e4405c"]]);export{G as default}; diff --git a/docs/.output/public/_nuxt/DocsTocLinks.c11364e4.js b/docs/.output/public/_nuxt/DocsTocLinks.644c91ee.js similarity index 85% rename from docs/.output/public/_nuxt/DocsTocLinks.c11364e4.js rename to docs/.output/public/_nuxt/DocsTocLinks.644c91ee.js index a6970d95..783e6a3a 100644 --- a/docs/.output/public/_nuxt/DocsTocLinks.c11364e4.js +++ b/docs/.output/public/_nuxt/DocsTocLinks.644c91ee.js @@ -1 +1 @@ -/* empty css */import{a as f}from"./Container.f1017aa2.js";import{i as h}from"./app.config.4114fca6.js";import{a as v}from"./DocsAsideTree.08d70919.js";import{r as d,a as _,af as g,o as y,f as k,q as r,x as m,F as x,A as B,y as p,E as b,J as A,u as C,B as H,D as S}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const q=()=>{const n=d(),s=d([]),c=d([]),a=e=>e.forEach(t=>{const u=t.target.id;t.isIntersecting?s.value.push(u):s.value=s.value.filter(l=>l!==u)}),i=e=>e.forEach(t=>{n.value.observe(t)});return _(s,(e,t)=>{e.length===0?c.value=t:c.value=e},{deep:!0}),g(()=>n.value=new IntersectionObserver(a)),y(()=>{var e;return(e=n.value)==null?void 0:e.disconnect()}),{visibleHeadings:s,activeHeadings:c,updateHeadings:i}},D={class:"docs-toc-links"},E=["href","onClick"],T=k({__name:"DocsTocLinks",props:{links:{type:Array,default:()=>[]}},emits:["move"],setup(n,{emit:s}){const c=h(),{activeHeadings:a,updateHeadings:i}=q();setTimeout(()=>{i([...document.querySelectorAll(".document-driven-page h1, .docus-content h1"),...document.querySelectorAll(".document-driven-page h2, .docus-content h2"),...document.querySelectorAll(".document-driven-page h3, .docus-content h3"),...document.querySelectorAll(".document-driven-page h4, .docus-content h4")])},300);function e(t){c.push(`#${t}`),s("move",t)}return(t,u)=>{const l=$;return r(),m("ul",D,[(r(!0),m(x,null,B(n.links,o=>(r(),m("li",{key:o.text,class:p([`depth-${o.depth}`])},[b("a",{href:`#${o.id}`,class:p([C(a).includes(o.id)&&"active"]),onClick:v(w=>e(o.id),["prevent"])},A(o.text),11,E),o.children?(r(),H(l,{key:0,links:o.children},null,8,["links"])):S("",!0)],2))),128))])}}}),$=f(T,[["__scopeId","data-v-8d68a659"]]);export{$ as default}; +/* empty css */import{a as f}from"./Container.f1017aa2.js";import{i as h}from"./app.config.f41ab05d.js";import{a as v}from"./DocsAsideTree.b95e55e0.js";import{r as d,a as _,af as g,o as y,f as k,q as r,x as m,F as x,A as B,y as p,E as b,J as A,u as C,B as H,D as S}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const q=()=>{const n=d(),s=d([]),c=d([]),a=e=>e.forEach(t=>{const u=t.target.id;t.isIntersecting?s.value.push(u):s.value=s.value.filter(l=>l!==u)}),i=e=>e.forEach(t=>{n.value.observe(t)});return _(s,(e,t)=>{e.length===0?c.value=t:c.value=e},{deep:!0}),g(()=>n.value=new IntersectionObserver(a)),y(()=>{var e;return(e=n.value)==null?void 0:e.disconnect()}),{visibleHeadings:s,activeHeadings:c,updateHeadings:i}},D={class:"docs-toc-links"},E=["href","onClick"],T=k({__name:"DocsTocLinks",props:{links:{type:Array,default:()=>[]}},emits:["move"],setup(n,{emit:s}){const c=h(),{activeHeadings:a,updateHeadings:i}=q();setTimeout(()=>{i([...document.querySelectorAll(".document-driven-page h1, .docus-content h1"),...document.querySelectorAll(".document-driven-page h2, .docus-content h2"),...document.querySelectorAll(".document-driven-page h3, .docus-content h3"),...document.querySelectorAll(".document-driven-page h4, .docus-content h4")])},300);function e(t){c.push(`#${t}`),s("move",t)}return(t,u)=>{const l=$;return r(),m("ul",D,[(r(!0),m(x,null,B(n.links,o=>(r(),m("li",{key:o.text,class:p([`depth-${o.depth}`])},[b("a",{href:`#${o.id}`,class:p([C(a).includes(o.id)&&"active"]),onClick:v(w=>e(o.id),["prevent"])},A(o.text),11,E),o.children?(r(),H(l,{key:0,links:o.children},null,8,["links"])):S("",!0)],2))),128))])}}}),$=f(T,[["__scopeId","data-v-8d68a659"]]);export{$ as default}; diff --git a/docs/.output/public/_nuxt/DocumentDrivenNotFound.25e8b3dc.js b/docs/.output/public/_nuxt/DocumentDrivenNotFound.66d77c6e.js similarity index 75% rename from docs/.output/public/_nuxt/DocumentDrivenNotFound.25e8b3dc.js rename to docs/.output/public/_nuxt/DocumentDrivenNotFound.66d77c6e.js index a0154874..b64185ba 100644 --- a/docs/.output/public/_nuxt/DocumentDrivenNotFound.25e8b3dc.js +++ b/docs/.output/public/_nuxt/DocumentDrivenNotFound.66d77c6e.js @@ -1 +1 @@ -import s from"./ButtonLink.2789431f.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import{q as a,x as i,E as o,G as r,C as _,L as p,M as d,N as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./ContentSlot.7e1a494f.js";/* empty css */const l={},e=t=>(d("data-v-ab67d04f"),t=t(),m(),t),u={class:"document-driven-not-found not-prose"},f=e(()=>o("p",null," 404 ",-1)),h={class:"content"},x=e(()=>o("div",{class:"text-section"},[o("h1",null," Not Found "),o("p",null," This is not the page you're looking for. ")],-1)),v={class:"button-section"};function k(t,N){const n=s;return a(),i("div",u,[o("main",null,[f,o("div",h,[x,o("div",v,[r(n,{href:"/",size:"large",variant:"primary"},{default:_(()=>[p(" Go back home ")]),_:1})])])])])}const L=c(l,[["render",k],["__scopeId","data-v-ab67d04f"]]);export{L as default}; +import s from"./ButtonLink.91883881.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import{q as a,x as i,E as o,G as r,C as _,L as p,M as d,N as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ContentSlot.c5067a4f.js";/* empty css */const l={},e=t=>(d("data-v-ab67d04f"),t=t(),m(),t),u={class:"document-driven-not-found not-prose"},f=e(()=>o("p",null," 404 ",-1)),h={class:"content"},x=e(()=>o("div",{class:"text-section"},[o("h1",null," Not Found "),o("p",null," This is not the page you're looking for. ")],-1)),v={class:"button-section"};function k(t,N){const n=s;return a(),i("div",u,[o("main",null,[f,o("div",h,[x,o("div",v,[r(n,{href:"/",size:"large",variant:"primary"},{default:_(()=>[p(" Go back home ")]),_:1})])])])])}const L=c(l,[["render",k],["__scopeId","data-v-ab67d04f"]]);export{L as default}; diff --git a/docs/.output/public/_nuxt/EditOnLink.77af6984.js b/docs/.output/public/_nuxt/EditOnLink.77af6984.js new file mode 100644 index 00000000..227ab3bb --- /dev/null +++ b/docs/.output/public/_nuxt/EditOnLink.77af6984.js @@ -0,0 +1 @@ +import{_ as o}from"./EditOnLink.vue.1d2292f2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./useDocus.41ab1ca5.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/EditOnLink.f0fb05c8.js b/docs/.output/public/_nuxt/EditOnLink.f0fb05c8.js deleted file mode 100644 index a6e9b50a..00000000 --- a/docs/.output/public/_nuxt/EditOnLink.f0fb05c8.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./EditOnLink.vue.21b8aa9d.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./useDocus.edcbeab5.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/EditOnLink.vue.21b8aa9d.js b/docs/.output/public/_nuxt/EditOnLink.vue.1d2292f2.js similarity index 94% rename from docs/.output/public/_nuxt/EditOnLink.vue.21b8aa9d.js rename to docs/.output/public/_nuxt/EditOnLink.vue.1d2292f2.js index ee98be1d..e2aa6e66 100644 --- a/docs/.output/public/_nuxt/EditOnLink.vue.21b8aa9d.js +++ b/docs/.output/public/_nuxt/EditOnLink.vue.1d2292f2.js @@ -1 +1 @@ -import{j as m}from"./app.config.4114fca6.js";import{e as a}from"./useDocus.edcbeab5.js";import{f as y,h as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";const _=y({props:{owner:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.owner},required:!1},repo:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.repo},required:!1},branch:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.branch},required:!1},dir:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:()=>{var e,t,r;return((r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir)||"content"}},edit:{type:Boolean,required:!1,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.edit}}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=c(()=>{var s,h;let{repo:n,owner:u,branch:d,contentDir:f}=e,l="";if((h=(s=a())==null?void 0:s.public)!=null&&h.content){let i;const{sources:b}=a().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){i=b[g];break}(i==null?void 0:i.driver)==="github"&&(n=i.repo||e.repo||"",u=i.owner||e.owner||"",d=i.branch||e.branch||"main",f=i.dir||e.contentDir||"",l=i.prefix||"")}return{repo:n,owner:u,branch:d,contentDir:f,prefix:l}}),r=c(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=c(()=>{var u;const n=[];return(u=e==null?void 0:e.page)!=null&&u._path?(t.value.contentDir&&n.push(t.value.contentDir),n.push(e.page._file.substring(t.value.prefix.length)),n):(e.dir&&n.push(e.dir),e.source&&n.push(e.source),n)});return{url:c(()=>{var u;const n=[r.value];return e.edit?n.push("edit"):n.push("tree"),n.push(((u=t==null?void 0:t.value)==null?void 0:u.branch)||"",...o.value),n.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,r=p();return(o=r==null?void 0:r.default)==null?void 0:o.call(r,{url:t})}});export{_}; +import{j as m}from"./app.config.f41ab05d.js";import{e as a}from"./useDocus.41ab1ca5.js";import{f as y,h as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";const _=y({props:{owner:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.owner},required:!1},repo:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.repo},required:!1},branch:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.branch},required:!1},dir:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:()=>{var e,t,r;return((r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir)||"content"}},edit:{type:Boolean,required:!1,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.edit}}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=c(()=>{var s,h;let{repo:n,owner:u,branch:d,contentDir:f}=e,l="";if((h=(s=a())==null?void 0:s.public)!=null&&h.content){let i;const{sources:b}=a().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){i=b[g];break}(i==null?void 0:i.driver)==="github"&&(n=i.repo||e.repo||"",u=i.owner||e.owner||"",d=i.branch||e.branch||"main",f=i.dir||e.contentDir||"",l=i.prefix||"")}return{repo:n,owner:u,branch:d,contentDir:f,prefix:l}}),r=c(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=c(()=>{var u;const n=[];return(u=e==null?void 0:e.page)!=null&&u._path?(t.value.contentDir&&n.push(t.value.contentDir),n.push(e.page._file.substring(t.value.prefix.length)),n):(e.dir&&n.push(e.dir),e.source&&n.push(e.source),n)});return{url:c(()=>{var u;const n=[r.value];return e.edit?n.push("edit"):n.push("tree"),n.push(((u=t==null?void 0:t.value)==null?void 0:u.branch)||"",...o.value),n.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,r=p();return(o=r==null?void 0:r.default)==null?void 0:o.call(r,{url:t})}});export{_}; diff --git a/docs/.output/public/_nuxt/ExampleTheTitle.e4b43830.js b/docs/.output/public/_nuxt/ExampleTheTitle.e4b43830.js deleted file mode 100644 index fafdbb74..00000000 --- a/docs/.output/public/_nuxt/ExampleTheTitle.e4b43830.js +++ /dev/null @@ -1 +0,0 @@ -import e from"./ContentSlot.7e1a494f.js";import{a as r}from"./Container.f1017aa2.js";import{q as s,x as n,G as c}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const a={},m={class:"text-4xl"};function p(t,i){const o=e;return s(),n("h1",m,[c(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])])}const B=r(a,[["render",p]]);export{B as default}; diff --git a/docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js b/docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js new file mode 100644 index 00000000..c1d94241 --- /dev/null +++ b/docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js @@ -0,0 +1 @@ +import e from"./ContentSlot.c5067a4f.js";import{a as r}from"./Container.f1017aa2.js";import{q as s,x as n,G as c}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const a={},m={class:"text-4xl"};function p(t,i){const o=e;return s(),n("h1",m,[c(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])])}const B=r(a,[["render",p]]);export{B as default}; diff --git a/docs/.output/public/_nuxt/GithubCommits.e43b30d0.js b/docs/.output/public/_nuxt/GithubCommits.35c65eac.js similarity index 60% rename from docs/.output/public/_nuxt/GithubCommits.e43b30d0.js rename to docs/.output/public/_nuxt/GithubCommits.35c65eac.js index a888f49a..4ce1effa 100644 --- a/docs/.output/public/_nuxt/GithubCommits.e43b30d0.js +++ b/docs/.output/public/_nuxt/GithubCommits.35c65eac.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as i}from"./asyncData.2775b491.js";import{h as a}from"./entry.2d43dc03.js";import{u as s}from"./useGithub.916c5979.js";import{f as u,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchCommits:m}=s(),{data:o,pending:t,refresh:e}=await i(`github-commits-${a(r.query)}`,()=>m(r.query));return{commits:o,pending:t,refresh:e}},render({commits:r,pending:m,refresh:o}){var e;const t=p();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{commits:r,pending:m,refresh:o})}});export{G as default}; +import"./app.config.f41ab05d.js";import{u as i}from"./asyncData.7c06b2d5.js";import{h as a}from"./entry.f3791b9c.js";import{u as s}from"./useGithub.1972ce55.js";import{f as u,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchCommits:m}=s(),{data:o,pending:t,refresh:e}=await i(`github-commits-${a(r.query)}`,()=>m(r.query));return{commits:o,pending:t,refresh:e}},render({commits:r,pending:m,refresh:o}){var e;const t=p();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{commits:r,pending:m,refresh:o})}});export{G as default}; diff --git a/docs/.output/public/_nuxt/GithubContributors.35cdb9ac.js b/docs/.output/public/_nuxt/GithubContributors.9ddddad6.js similarity index 61% rename from docs/.output/public/_nuxt/GithubContributors.35cdb9ac.js rename to docs/.output/public/_nuxt/GithubContributors.9ddddad6.js index 3b6c3f10..072a7a0b 100644 --- a/docs/.output/public/_nuxt/GithubContributors.35cdb9ac.js +++ b/docs/.output/public/_nuxt/GithubContributors.9ddddad6.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u}from"./asyncData.2775b491.js";import{h as a}from"./entry.2d43dc03.js";import{u as n}from"./useGithub.916c5979.js";import{f as s,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=s({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchContributors:o}=n(),{data:i,refresh:t,pending:e}=await u(`github-contributors-${a(r.query)}`,()=>o(r.query));return{contributors:i,refresh:t,pending:e}},render({contributors:r,refresh:o,pending:i}){var e;const t=m();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{contributors:r,refresh:o,pending:i})}});export{G as default}; +import"./app.config.f41ab05d.js";import{u}from"./asyncData.7c06b2d5.js";import{h as a}from"./entry.f3791b9c.js";import{u as n}from"./useGithub.1972ce55.js";import{f as s,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=s({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchContributors:o}=n(),{data:i,refresh:t,pending:e}=await u(`github-contributors-${a(r.query)}`,()=>o(r.query));return{contributors:i,refresh:t,pending:e}},render({contributors:r,refresh:o,pending:i}){var e;const t=m();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{contributors:r,refresh:o,pending:i})}});export{G as default}; diff --git a/docs/.output/public/_nuxt/GithubFileContributors.2287b161.js b/docs/.output/public/_nuxt/GithubFileContributors.1ad6f7bf.js similarity index 64% rename from docs/.output/public/_nuxt/GithubFileContributors.2287b161.js rename to docs/.output/public/_nuxt/GithubFileContributors.1ad6f7bf.js index 693f9c20..e76cb42f 100644 --- a/docs/.output/public/_nuxt/GithubFileContributors.2287b161.js +++ b/docs/.output/public/_nuxt/GithubFileContributors.1ad6f7bf.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as a}from"./asyncData.2775b491.js";import{h as s}from"./entry.2d43dc03.js";import{u as n}from"./useGithub.916c5979.js";import{f as m,t as f,a as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const j=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(e){const o=f(e.query,"source"),{fetchFileContributors:i}=n();c(o,()=>{r&&r()});const{data:t,refresh:r,pending:u}=await a(`github-file-contributors-${s(e.query)}`,()=>i(e.query));return{contributors:t,refresh:r,pending:u}},render({contributors:e,refresh:o,pending:i}){var r;const t=p();return(r=t==null?void 0:t.default)==null?void 0:r.call(t,{contributors:e,refresh:o,pending:i})}});export{j as default}; +import"./app.config.f41ab05d.js";import{u as a}from"./asyncData.7c06b2d5.js";import{h as s}from"./entry.f3791b9c.js";import{u as n}from"./useGithub.1972ce55.js";import{f as m,t as f,a as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const j=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(e){const o=f(e.query,"source"),{fetchFileContributors:i}=n();c(o,()=>{r&&r()});const{data:t,refresh:r,pending:u}=await a(`github-file-contributors-${s(e.query)}`,()=>i(e.query));return{contributors:t,refresh:r,pending:u}},render({contributors:e,refresh:o,pending:i}){var r;const t=p();return(r=t==null?void 0:t.default)==null?void 0:r.call(t,{contributors:e,refresh:o,pending:i})}});export{j as default}; diff --git a/docs/.output/public/_nuxt/GithubLastRelease.7ffc61aa.js b/docs/.output/public/_nuxt/GithubLastRelease.a4aeb30e.js similarity index 61% rename from docs/.output/public/_nuxt/GithubLastRelease.7ffc61aa.js rename to docs/.output/public/_nuxt/GithubLastRelease.a4aeb30e.js index 9bdd4f52..4a7c091d 100644 --- a/docs/.output/public/_nuxt/GithubLastRelease.7ffc61aa.js +++ b/docs/.output/public/_nuxt/GithubLastRelease.a4aeb30e.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as o}from"./asyncData.2775b491.js";import{h as i}from"./entry.2d43dc03.js";import{u}from"./useGithub.916c5979.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const L=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchLastRelease:a}=u(),{data:s,refresh:e,pending:r}=await o(`github-last-release-${i(t.query)}`,()=>a(t.query));return{release:s,refresh:e,pending:r}},render({release:t,refresh:a,pending:s}){var r;const e=p();return(r=e==null?void 0:e.default)==null?void 0:r.call(e,{release:t,refresh:a,pending:s})}});export{L as default}; +import"./app.config.f41ab05d.js";import{u as o}from"./asyncData.7c06b2d5.js";import{h as i}from"./entry.f3791b9c.js";import{u}from"./useGithub.1972ce55.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const L=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchLastRelease:a}=u(),{data:s,refresh:e,pending:r}=await o(`github-last-release-${i(t.query)}`,()=>a(t.query));return{release:s,refresh:e,pending:r}},render({release:t,refresh:a,pending:s}){var r;const e=p();return(r=e==null?void 0:e.default)==null?void 0:r.call(e,{release:t,refresh:a,pending:s})}});export{L as default}; diff --git a/docs/.output/public/_nuxt/GithubLink.6e1f1ea3.js b/docs/.output/public/_nuxt/GithubLink.6cd695ea.js similarity index 96% rename from docs/.output/public/_nuxt/GithubLink.6e1f1ea3.js rename to docs/.output/public/_nuxt/GithubLink.6cd695ea.js index 7cdcd57f..b4e819d8 100644 --- a/docs/.output/public/_nuxt/GithubLink.6e1f1ea3.js +++ b/docs/.output/public/_nuxt/GithubLink.6cd695ea.js @@ -1 +1 @@ -import{b as u,j as m}from"./app.config.4114fca6.js";import{f as y,h as f,ae as v}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";const D=y({props:{owner:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.owner},required:!1},repo:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.repo},required:!1},branch:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.branch},required:!1},dir:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:"content"},edit:{type:Boolean,required:!1,default:!0}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=f(()=>{var h,s;let{repo:r,owner:a,branch:c,contentDir:l}=e,d="";if((s=(h=u())==null?void 0:h.public)!=null&&s.content){let n;const{sources:b}=u().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){n=b[g];break}(n==null?void 0:n.driver)==="github"&&(r=n.repo||e.repo||"",a=n.owner||e.owner||"",c=n.branch||e.branch||"main",l=n.dir||e.contentDir||"",d=n.prefix||"")}return{repo:r,owner:a,branch:c,contentDir:l,prefix:d}}),i=f(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=f(()=>{var a;const r=[];return(a=e==null?void 0:e.page)!=null&&a._path?(t.value.contentDir&&r.push(t.value.contentDir),r.push(e.page._file.substring(t.value.prefix.length)),r):(e.dir&&r.push(e.dir),e.source&&r.push(e.source),r)});return{url:f(()=>{const r=[i.value];return e.edit?r.push("edit"):r.push("tree"),r.push(t.value.branch,...o.value),r.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,i=v();return(o=i==null?void 0:i.default)==null?void 0:o.call(i,{url:t})}});export{D as default}; +import{f as u,j as m}from"./app.config.f41ab05d.js";import{f as y,h as f,ae as v}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";const D=y({props:{owner:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.owner},required:!1},repo:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.repo},required:!1},branch:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.branch},required:!1},dir:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:"content"},edit:{type:Boolean,required:!1,default:!0}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=f(()=>{var h,s;let{repo:r,owner:a,branch:c,contentDir:l}=e,d="";if((s=(h=u())==null?void 0:h.public)!=null&&s.content){let n;const{sources:b}=u().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){n=b[g];break}(n==null?void 0:n.driver)==="github"&&(r=n.repo||e.repo||"",a=n.owner||e.owner||"",c=n.branch||e.branch||"main",l=n.dir||e.contentDir||"",d=n.prefix||"")}return{repo:r,owner:a,branch:c,contentDir:l,prefix:d}}),i=f(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=f(()=>{var a;const r=[];return(a=e==null?void 0:e.page)!=null&&a._path?(t.value.contentDir&&r.push(t.value.contentDir),r.push(e.page._file.substring(t.value.prefix.length)),r):(e.dir&&r.push(e.dir),e.source&&r.push(e.source),r)});return{url:f(()=>{const r=[i.value];return e.edit?r.push("edit"):r.push("tree"),r.push(t.value.branch,...o.value),r.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,i=v();return(o=i==null?void 0:i.default)==null?void 0:o.call(i,{url:t})}});export{D as default}; diff --git a/docs/.output/public/_nuxt/GithubReadme.3309f143.js b/docs/.output/public/_nuxt/GithubReadme.5eafd6e1.js similarity index 60% rename from docs/.output/public/_nuxt/GithubReadme.3309f143.js rename to docs/.output/public/_nuxt/GithubReadme.5eafd6e1.js index f5ab0bf6..048bdc62 100644 --- a/docs/.output/public/_nuxt/GithubReadme.3309f143.js +++ b/docs/.output/public/_nuxt/GithubReadme.5eafd6e1.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as o}from"./asyncData.2775b491.js";import{h as i}from"./entry.2d43dc03.js";import{u}from"./useGithub.916c5979.js";import{f as p,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=p({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReadme:a}=u(),{data:m,refresh:e,pending:t}=await o(`github-readme-${i(r.query)}`,()=>a(r.query));return{readme:m,refresh:e,pending:t}},render({readme:r,refresh:a,pending:m}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{readme:r,refresh:a,pending:m})}});export{R as default}; +import"./app.config.f41ab05d.js";import{u as o}from"./asyncData.7c06b2d5.js";import{h as i}from"./entry.f3791b9c.js";import{u}from"./useGithub.1972ce55.js";import{f as p,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=p({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReadme:a}=u(),{data:m,refresh:e,pending:t}=await o(`github-readme-${i(r.query)}`,()=>a(r.query));return{readme:m,refresh:e,pending:t}},render({readme:r,refresh:a,pending:m}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{readme:r,refresh:a,pending:m})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/GithubRelease.fea5f747.js b/docs/.output/public/_nuxt/GithubRelease.d892113d.js similarity index 62% rename from docs/.output/public/_nuxt/GithubRelease.fea5f747.js rename to docs/.output/public/_nuxt/GithubRelease.d892113d.js index 402c893b..c96cd72e 100644 --- a/docs/.output/public/_nuxt/GithubRelease.fea5f747.js +++ b/docs/.output/public/_nuxt/GithubRelease.d892113d.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as i}from"./asyncData.2775b491.js";import{h as o}from"./entry.2d43dc03.js";import{u as s}from"./useGithub.916c5979.js";import{f as m,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchRelease:a}=s();if(!r.query.tag)return;const{data:u,refresh:e,pending:t}=await i(`github-release-${o(r.query)}`,()=>a(r.query));return{release:u,refresh:e,pending:t}},render({release:r,refresh:a,pending:u}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{release:r,refresh:a,pending:u})}});export{R as default}; +import"./app.config.f41ab05d.js";import{u as i}from"./asyncData.7c06b2d5.js";import{h as o}from"./entry.f3791b9c.js";import{u as s}from"./useGithub.1972ce55.js";import{f as m,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchRelease:a}=s();if(!r.query.tag)return;const{data:u,refresh:e,pending:t}=await i(`github-release-${o(r.query)}`,()=>a(r.query));return{release:u,refresh:e,pending:t}},render({release:r,refresh:a,pending:u}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{release:r,refresh:a,pending:u})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/GithubReleases.54c416e9.js b/docs/.output/public/_nuxt/GithubReleases.05c52708.js similarity index 60% rename from docs/.output/public/_nuxt/GithubReleases.54c416e9.js rename to docs/.output/public/_nuxt/GithubReleases.05c52708.js index 73931b0e..bd6fab9c 100644 --- a/docs/.output/public/_nuxt/GithubReleases.54c416e9.js +++ b/docs/.output/public/_nuxt/GithubReleases.05c52708.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as o}from"./asyncData.2775b491.js";import{h as i}from"./entry.2d43dc03.js";import{u}from"./useGithub.916c5979.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReleases:a}=u(),{data:s,refresh:e,pending:t}=await o(`github-releases-${i(r.query)}`,()=>a(r.query));return{releases:s,refresh:e,pending:t}},render({releases:r,refresh:a,pending:s}){var t;const e=p();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{releases:r,refresh:a,pending:s})}});export{R as default}; +import"./app.config.f41ab05d.js";import{u as o}from"./asyncData.7c06b2d5.js";import{h as i}from"./entry.f3791b9c.js";import{u}from"./useGithub.1972ce55.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReleases:a}=u(),{data:s,refresh:e,pending:t}=await o(`github-releases-${i(r.query)}`,()=>a(r.query));return{releases:s,refresh:e,pending:t}},render({releases:r,refresh:a,pending:s}){var t;const e=p();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{releases:r,refresh:a,pending:s})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/GithubRepository.bbd436c6.js b/docs/.output/public/_nuxt/GithubRepository.345038c7.js similarity index 61% rename from docs/.output/public/_nuxt/GithubRepository.bbd436c6.js rename to docs/.output/public/_nuxt/GithubRepository.345038c7.js index b4fa017d..748bbc7a 100644 --- a/docs/.output/public/_nuxt/GithubRepository.bbd436c6.js +++ b/docs/.output/public/_nuxt/GithubRepository.345038c7.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{u as p}from"./asyncData.2775b491.js";import{h as a}from"./entry.2d43dc03.js";import{u as s}from"./useGithub.916c5979.js";import{f as u,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchRepository:o}=s(),{data:i,refresh:r,pending:e}=await p(`github-repository-${a(t.query)}`,()=>o(t.query));return{repository:i,refresh:r,pending:e}},render({repository:t,refresh:o,pending:i}){var e;const r=m();return(e=r==null?void 0:r.default)==null?void 0:e.call(r,{repository:t,refresh:o,pending:i})}});export{R as default}; +import"./app.config.f41ab05d.js";import{u as p}from"./asyncData.7c06b2d5.js";import{h as a}from"./entry.f3791b9c.js";import{u as s}from"./useGithub.1972ce55.js";import{f as u,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchRepository:o}=s(),{data:i,refresh:r,pending:e}=await p(`github-repository-${a(t.query)}`,()=>o(t.query));return{repository:i,refresh:r,pending:e}},render({repository:t,refresh:o,pending:i}){var e;const r=m();return(e=r==null?void 0:r.default)==null?void 0:e.call(r,{repository:t,refresh:o,pending:i})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/HeroAnnouncement.32859cbb.js b/docs/.output/public/_nuxt/HeroAnnouncement.15bcf84c.js similarity index 64% rename from docs/.output/public/_nuxt/HeroAnnouncement.32859cbb.js rename to docs/.output/public/_nuxt/HeroAnnouncement.15bcf84c.js index ec9c4339..8e9dc225 100644 --- a/docs/.output/public/_nuxt/HeroAnnouncement.32859cbb.js +++ b/docs/.output/public/_nuxt/HeroAnnouncement.15bcf84c.js @@ -1 +1 @@ -import{_ as n}from"./DocsAsideTree.08d70919.js";import{_ as a}from"./app.config.4114fca6.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as r,B as c,C as _,G as p,E as m,J as i}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./index.d2b0cb5e.js";const l={__name:"HeroAnnouncement",props:{to:{type:String,default:""},label:{type:String,default:""}},setup(t){return(u,d)=>{const o=n,e=a;return r(),c(e,{to:t.to,class:"link"},{default:_(()=>[p(o,{name:"heroicons-solid:sparkles",class:"icon"}),m("span",null,i(t.label),1)]),_:1},8,["to"])}}},N=s(l,[["__scopeId","data-v-d15db3c4"]]);export{N as default}; +import{_ as n}from"./DocsAsideTree.b95e55e0.js";import{_ as a}from"./app.config.f41ab05d.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as r,B as c,C as _,G as p,E as m,J as i}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./index.d2b0cb5e.js";const l={__name:"HeroAnnouncement",props:{to:{type:String,default:""},label:{type:String,default:""}},setup(t){return(u,d)=>{const o=n,e=a;return r(),c(e,{to:t.to,class:"link"},{default:_(()=>[p(o,{name:"heroicons-solid:sparkles",class:"icon"}),m("span",null,i(t.label),1)]),_:1},8,["to"])}}},N=s(l,[["__scopeId","data-v-d15db3c4"]]);export{N as default}; diff --git a/docs/.output/public/_nuxt/List.0c42b342.js b/docs/.output/public/_nuxt/List.0c42b342.js deleted file mode 100644 index 69d3eece..00000000 --- a/docs/.output/public/_nuxt/List.0c42b342.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./List.vue.d5bae865.js";import{a as t}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./ContentSlot.7e1a494f.js";const e=t(o,[["__scopeId","data-v-f4e70c29"]]);export{e as default}; diff --git a/docs/.output/public/_nuxt/List.63030545.js b/docs/.output/public/_nuxt/List.63030545.js new file mode 100644 index 00000000..53ab44ea --- /dev/null +++ b/docs/.output/public/_nuxt/List.63030545.js @@ -0,0 +1 @@ +import{_ as o}from"./List.vue.98cb48bf.js";import{a as t}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ContentSlot.c5067a4f.js";const e=t(o,[["__scopeId","data-v-f4e70c29"]]);export{e as default}; diff --git a/docs/.output/public/_nuxt/List.vue.d5bae865.js b/docs/.output/public/_nuxt/List.vue.98cb48bf.js similarity index 85% rename from docs/.output/public/_nuxt/List.vue.d5bae865.js rename to docs/.output/public/_nuxt/List.vue.98cb48bf.js index 750465b4..15e94b26 100644 --- a/docs/.output/public/_nuxt/List.vue.d5bae865.js +++ b/docs/.output/public/_nuxt/List.vue.98cb48bf.js @@ -1 +1 @@ -import{_ as r,u as l}from"./DocsAsideTree.08d70919.js";import u from"./ContentSlot.7e1a494f.js";import{f as p,ae as m,h as _,j as e}from"./runtime-core.esm-bundler.6894272a.js";const f={primary:"heroicons-outline:check",info:"heroicons-outline:information-circle",success:"heroicons-outline:check-circle",warning:"heroicons-outline:exclamation",danger:"heroicons-outline:exclamation-circle"},g=p({props:{icon:{type:String,default:null},type:{type:String,default:"primary",validator:n=>["primary","info","success","warning","danger"].includes(n)}},setup(n){const t=m(),{flatUnwrap:i,unwrap:s}=l(),a=_(()=>n.icon||f[n.type]);return()=>{const c=i((t.default&&t.default())??[],["ul"]).map(o=>s(o,["li"]));return e("ul",c.map(o=>e("li",[e("span",{class:`list-icon ${n.type}`},e(r,{name:a.value,class:"icon"})),e("span",e(u,{use:()=>o}))])))}}});export{g as _}; +import{_ as r,u as l}from"./DocsAsideTree.b95e55e0.js";import u from"./ContentSlot.c5067a4f.js";import{f as p,ae as m,h as _,j as e}from"./runtime-core.esm-bundler.6894272a.js";const f={primary:"heroicons-outline:check",info:"heroicons-outline:information-circle",success:"heroicons-outline:check-circle",warning:"heroicons-outline:exclamation",danger:"heroicons-outline:exclamation-circle"},g=p({props:{icon:{type:String,default:null},type:{type:String,default:"primary",validator:n=>["primary","info","success","warning","danger"].includes(n)}},setup(n){const t=m(),{flatUnwrap:i,unwrap:s}=l(),a=_(()=>n.icon||f[n.type]);return()=>{const c=i((t.default&&t.default())??[],["ul"]).map(o=>s(o,["li"]));return e("ul",c.map(o=>e("li",[e("span",{class:`list-icon ${n.type}`},e(r,{name:a.value,class:"icon"})),e("span",e(u,{use:()=>o}))])))}}});export{g as _}; diff --git a/docs/.output/public/_nuxt/Markdown.eb6ef861.js b/docs/.output/public/_nuxt/Markdown.7f24e431.js similarity index 52% rename from docs/.output/public/_nuxt/Markdown.eb6ef861.js rename to docs/.output/public/_nuxt/Markdown.7f24e431.js index 923a3a05..3180cf7c 100644 --- a/docs/.output/public/_nuxt/Markdown.eb6ef861.js +++ b/docs/.output/public/_nuxt/Markdown.7f24e431.js @@ -1 +1 @@ -import a from"./ContentSlot.7e1a494f.js";import{f as s,ae as m,h as p,g as i}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";const b=s({name:"Markdown",extends:a,setup(t){const{parent:e}=i(),{between:n,default:r}=m(),o=p(()=>typeof t.unwrap=="string"?t.unwrap.split(" "):["*"]);return{fallbackSlot:r,tags:o,between:n,parent:e}}});export{b as default}; +import a from"./ContentSlot.c5067a4f.js";import{f as s,ae as m,h as p,g as i}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";const b=s({name:"Markdown",extends:a,setup(t){const{parent:e}=i(),{between:n,default:r}=m(),o=p(()=>typeof t.unwrap=="string"?t.unwrap.split(" "):["*"]);return{fallbackSlot:r,tags:o,between:n,parent:e}}});export{b as default}; diff --git a/docs/.output/public/_nuxt/MyButton.d8f00b03.js b/docs/.output/public/_nuxt/MyButton.67bdaa98.js similarity index 58% rename from docs/.output/public/_nuxt/MyButton.d8f00b03.js rename to docs/.output/public/_nuxt/MyButton.67bdaa98.js index 9733319c..dce94e27 100644 --- a/docs/.output/public/_nuxt/MyButton.d8f00b03.js +++ b/docs/.output/public/_nuxt/MyButton.67bdaa98.js @@ -1 +1 @@ -import r from"./ContentSlot.7e1a494f.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as a,x as n,G as p,y as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";const c={__name:"MyButton",props:{type:{type:String,default:"info"}},setup(t){return(o,i)=>{const e=r;return a(),n("button",{class:m(t.type)},[p(e,{use:o.$slots.default,unwrap:"p"},null,8,["use"])],2)}}},C=s(c,[["__scopeId","data-v-14e24467"]]);export{C as default}; +import r from"./ContentSlot.c5067a4f.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as a,x as n,G as p,y as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const c={__name:"MyButton",props:{type:{type:String,default:"info"}},setup(t){return(o,i)=>{const e=r;return a(),n("button",{class:m(t.type)},[p(e,{use:o.$slots.default,unwrap:"p"},null,8,["use"])],2)}}},C=s(c,[["__scopeId","data-v-14e24467"]]);export{C as default}; diff --git a/docs/.output/public/_nuxt/NuxtImg.3bab810e.js b/docs/.output/public/_nuxt/NuxtImg.3bab810e.js deleted file mode 100644 index 3b82e616..00000000 --- a/docs/.output/public/_nuxt/NuxtImg.3bab810e.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./NuxtImg.vue.594abc77.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/NuxtImg.66944f8e.js b/docs/.output/public/_nuxt/NuxtImg.66944f8e.js new file mode 100644 index 00000000..ff9e9b14 --- /dev/null +++ b/docs/.output/public/_nuxt/NuxtImg.66944f8e.js @@ -0,0 +1 @@ +import{_ as o}from"./NuxtImg.vue.a13022c3.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/NuxtImg.vue.594abc77.js b/docs/.output/public/_nuxt/NuxtImg.vue.a13022c3.js similarity index 90% rename from docs/.output/public/_nuxt/NuxtImg.vue.594abc77.js rename to docs/.output/public/_nuxt/NuxtImg.vue.a13022c3.js index 7a778868..2d04fe38 100644 --- a/docs/.output/public/_nuxt/NuxtImg.vue.594abc77.js +++ b/docs/.output/public/_nuxt/NuxtImg.vue.a13022c3.js @@ -1 +1 @@ -import{w as i,b as a}from"./app.config.4114fca6.js";import{f as n,h,j as e}from"./runtime-core.esm-bundler.6894272a.js";const p=n({props:{src:{type:[String,Object],default:null}},setup(s){const r=t=>t&&t.startsWith("/")&&!t.startsWith("//")?i(t,a().app.baseURL):t;return{imgSrc:h(()=>{let t=s.src;try{t=JSON.parse(t)}catch{t=s.src}return typeof t=="string"?r(s.src):{light:r(t.light),dark:r(t.dark)}})}},render({imgSrc:s}){if(typeof s=="string")return e("img",{src:s,...this.$attrs});const r=[];return s.light&&r.push(e("img",{src:s.light,class:["dark-img"],...this.$attrs})),s.dark&&r.push(e("img",{src:s.dark,class:["light-img"],...this.$attrs})),r}});export{p as _}; +import{w as i,f as a}from"./app.config.f41ab05d.js";import{f as n,h,j as e}from"./runtime-core.esm-bundler.6894272a.js";const p=n({props:{src:{type:[String,Object],default:null}},setup(s){const r=t=>t&&t.startsWith("/")&&!t.startsWith("//")?i(t,a().app.baseURL):t;return{imgSrc:h(()=>{let t=s.src;try{t=JSON.parse(t)}catch{t=s.src}return typeof t=="string"?r(s.src):{light:r(t.light),dark:r(t.dark)}})}},render({imgSrc:s}){if(typeof s=="string")return e("img",{src:s,...this.$attrs});const r=[];return s.light&&r.push(e("img",{src:s.light,class:["dark-img"],...this.$attrs})),s.dark&&r.push(e("img",{src:s.dark,class:["light-img"],...this.$attrs})),r}});export{p as _}; diff --git a/docs/.output/public/_nuxt/Props.80a76d3d.js b/docs/.output/public/_nuxt/Props.876d937c.js similarity index 92% rename from docs/.output/public/_nuxt/Props.80a76d3d.js rename to docs/.output/public/_nuxt/Props.876d937c.js index 34bd4602..a510a022 100644 --- a/docs/.output/public/_nuxt/Props.80a76d3d.js +++ b/docs/.output/public/_nuxt/Props.876d937c.js @@ -1 +1 @@ -import T from"./ProseTh.d24c1b52.js";import $ from"./ProseTr.d0d94723.js";import V from"./ProseThead.40eb8658.js";import g from"./ProseCodeInline.dca1a534.js";import b from"./ProseTd.921f02a8.js";import p from"./ProseTbody.37a7db42.js";import N from"./ProseTable.a85f8bca.js";import"./app.config.4114fca6.js";import{u as R}from"./asyncData.2775b491.js";import{k as F}from"./index.d2b0cb5e.js";import{a as S}from"./Container.f1017aa2.js";import{f as A,h as c,q as a,B as l,C as e,G as r,L as d,D as s,x as J,A as L,F as x,J as m}from"./runtime-core.esm-bundler.6894272a.js";import"./entry.2d43dc03.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./query.c3f7607a.js";const E=A({props:{of:{type:String,default:void 0},required:{type:Boolean,default:void 0},values:{type:Boolean,default:void 0},description:{type:Boolean,default:void 0},default:{type:Boolean,default:void 0}},async setup(t){const k=`/api/component-meta/${F(t.of)}`,{data:h}=await R(t.of,()=>$fetch(k),"$oSoCJtWFoC"),i=c(()=>h.value.props.filter(o=>{var n;return!((n=o.tags)!=null&&n.ignore.includes(o))})),w=c(()=>{var o;return t.required!==void 0?t.required:(o=i.value)==null?void 0:o.find(n=>n.required!==void 0)}),q=c(()=>{var o;return t.values!==void 0?t.values:(o=i.value)==null?void 0:o.find(n=>n.values)}),f=c(()=>{var o;return t.description!==void 0?t.description:(o=i.value)==null?void 0:o.find(n=>n.description)}),y=c(()=>{var o;return t.default!==void 0?t.default:(o=i.value)==null?void 0:o.find(n=>n.default)});return{meta:h,properties:i,showRequired:w,showValues:q,showDescription:f,showDefault:y}}});function G(t,k,h,i,w,q){var v,D,P;const f=T,y=$,o=V,n=g,_=b,B=p,C=N;return t.meta&&((v=t.meta)!=null&&v.props)&&((P=(D=t.meta)==null?void 0:D.props)!=null&&P.length)?(a(),l(C,{key:0},{default:e(()=>[r(o,null,{default:e(()=>[r(y,null,{default:e(()=>[r(f,null,{default:e(()=>[d("Prop")]),_:1}),r(f,null,{default:e(()=>[d("Type")]),_:1}),t.showRequired?(a(),l(f,{key:0},{default:e(()=>[d(" Required ")]),_:1})):s("",!0),t.showDefault?(a(),l(f,{key:1},{default:e(()=>[d(" Default ")]),_:1})):s("",!0),t.showValues?(a(),l(f,{key:2},{default:e(()=>[d(" Values ")]),_:1})):s("",!0),t.showDescription?(a(),l(f,{key:3},{default:e(()=>[d(" Description ")]),_:1})):s("",!0)]),_:1})]),_:1}),r(B,null,{default:e(()=>[(a(!0),J(x,null,L(t.properties,u=>(a(),l(y,{key:u.name},{default:e(()=>[r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.name)||"?"),1)]),_:2},1024)]),_:2},1024),r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.type)||"?"),1)]),_:2},1024)]),_:2},1024),t.showRequired?(a(),l(_,{key:0},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.required==="?"?"?":u.required?"Yes":"No"),1)]),_:2},1024)]),_:2},1024)):s("",!0),t.showDefault?(a(),l(_,{key:1},{default:e(()=>[u.default?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.default)||"?"),1)]),_:2},1024)):s("",!0)]),_:2},1024)):s("",!0),t.showValues?(a(),l(_,{key:2},{default:e(()=>[u.values?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.values)||"?"),1)]),_:2},1024)):(a(),l(n,{key:1},{default:e(()=>[d(" - ")]),_:1}))]),_:2},1024)):s("",!0),t.showDescription?(a(),l(_,{key:3},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.description),1)]),_:2},1024)]),_:2},1024)):s("",!0)]),_:2},1024))),128))]),_:1})]),_:1})):s("",!0)}const oe=S(E,[["render",G]]);export{oe as default}; +import T from"./ProseTh.d24c1b52.js";import $ from"./ProseTr.d0d94723.js";import V from"./ProseThead.40eb8658.js";import g from"./ProseCodeInline.dca1a534.js";import b from"./ProseTd.921f02a8.js";import p from"./ProseTbody.37a7db42.js";import N from"./ProseTable.a85f8bca.js";import"./app.config.f41ab05d.js";import{u as R}from"./asyncData.7c06b2d5.js";import{k as F}from"./index.d2b0cb5e.js";import{a as S}from"./Container.f1017aa2.js";import{f as A,h as c,q as a,B as l,C as e,G as r,L as d,D as s,x as J,A as L,F as x,J as m}from"./runtime-core.esm-bundler.6894272a.js";import"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const E=A({props:{of:{type:String,default:void 0},required:{type:Boolean,default:void 0},values:{type:Boolean,default:void 0},description:{type:Boolean,default:void 0},default:{type:Boolean,default:void 0}},async setup(t){const k=`/api/component-meta/${F(t.of)}`,{data:h}=await R(t.of,()=>$fetch(k),"$oSoCJtWFoC"),i=c(()=>h.value.props.filter(o=>{var n;return!((n=o.tags)!=null&&n.ignore.includes(o))})),w=c(()=>{var o;return t.required!==void 0?t.required:(o=i.value)==null?void 0:o.find(n=>n.required!==void 0)}),q=c(()=>{var o;return t.values!==void 0?t.values:(o=i.value)==null?void 0:o.find(n=>n.values)}),f=c(()=>{var o;return t.description!==void 0?t.description:(o=i.value)==null?void 0:o.find(n=>n.description)}),y=c(()=>{var o;return t.default!==void 0?t.default:(o=i.value)==null?void 0:o.find(n=>n.default)});return{meta:h,properties:i,showRequired:w,showValues:q,showDescription:f,showDefault:y}}});function G(t,k,h,i,w,q){var v,D,P;const f=T,y=$,o=V,n=g,_=b,B=p,C=N;return t.meta&&((v=t.meta)!=null&&v.props)&&((P=(D=t.meta)==null?void 0:D.props)!=null&&P.length)?(a(),l(C,{key:0},{default:e(()=>[r(o,null,{default:e(()=>[r(y,null,{default:e(()=>[r(f,null,{default:e(()=>[d("Prop")]),_:1}),r(f,null,{default:e(()=>[d("Type")]),_:1}),t.showRequired?(a(),l(f,{key:0},{default:e(()=>[d(" Required ")]),_:1})):s("",!0),t.showDefault?(a(),l(f,{key:1},{default:e(()=>[d(" Default ")]),_:1})):s("",!0),t.showValues?(a(),l(f,{key:2},{default:e(()=>[d(" Values ")]),_:1})):s("",!0),t.showDescription?(a(),l(f,{key:3},{default:e(()=>[d(" Description ")]),_:1})):s("",!0)]),_:1})]),_:1}),r(B,null,{default:e(()=>[(a(!0),J(x,null,L(t.properties,u=>(a(),l(y,{key:u.name},{default:e(()=>[r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.name)||"?"),1)]),_:2},1024)]),_:2},1024),r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.type)||"?"),1)]),_:2},1024)]),_:2},1024),t.showRequired?(a(),l(_,{key:0},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.required==="?"?"?":u.required?"Yes":"No"),1)]),_:2},1024)]),_:2},1024)):s("",!0),t.showDefault?(a(),l(_,{key:1},{default:e(()=>[u.default?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.default)||"?"),1)]),_:2},1024)):s("",!0)]),_:2},1024)):s("",!0),t.showValues?(a(),l(_,{key:2},{default:e(()=>[u.values?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.values)||"?"),1)]),_:2},1024)):(a(),l(n,{key:1},{default:e(()=>[d(" - ")]),_:1}))]),_:2},1024)):s("",!0),t.showDescription?(a(),l(_,{key:3},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.description),1)]),_:2},1024)]),_:2},1024)):s("",!0)]),_:2},1024))),128))]),_:1})]),_:1})):s("",!0)}const oe=S(E,[["render",G]]);export{oe as default}; diff --git a/docs/.output/public/_nuxt/ProseA.c8de8b63.js b/docs/.output/public/_nuxt/ProseA.a4d07cc8.js similarity index 89% rename from docs/.output/public/_nuxt/ProseA.c8de8b63.js rename to docs/.output/public/_nuxt/ProseA.a4d07cc8.js index eaeb3e51..d8df18bd 100644 --- a/docs/.output/public/_nuxt/ProseA.c8de8b63.js +++ b/docs/.output/public/_nuxt/ProseA.a4d07cc8.js @@ -1 +1 @@ -import{_ as a}from"./app.config.4114fca6.js";import{f as n,q as s,B as r,C as c,P as l}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as f}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const _=n({__name:"ProseA",props:{href:{type:String,default:""},blank:{type:Boolean,default:!1},static:{type:Boolean,default:!1}},setup(t){return(e,i)=>{const o=a;return s(),r(o,{to:t.href,blank:t.blank,static:t.static},{default:c(()=>[l(e.$slots,"default",{},void 0,!0)]),_:3},8,["to","blank","static"])}}}),x=f(_,[["__scopeId","data-v-9cebe7e3"]]);export{x as default}; +import{_ as a}from"./app.config.f41ab05d.js";import{f as n,q as s,B as r,C as c,P as l}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as f}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const _=n({__name:"ProseA",props:{href:{type:String,default:""},blank:{type:Boolean,default:!1},static:{type:Boolean,default:!1}},setup(t){return(e,i)=>{const o=a;return s(),r(o,{to:t.href,blank:t.blank,static:t.static},{default:c(()=>[l(e.$slots,"default",{},void 0,!0)]),_:3},8,["to","blank","static"])}}}),x=f(_,[["__scopeId","data-v-9cebe7e3"]]);export{x as default}; diff --git a/docs/.output/public/_nuxt/ProseCode.2adf04d1.js b/docs/.output/public/_nuxt/ProseCode.0e5c7be6.js similarity index 76% rename from docs/.output/public/_nuxt/ProseCode.2adf04d1.js rename to docs/.output/public/_nuxt/ProseCode.0e5c7be6.js index e32588e4..281c1d21 100644 --- a/docs/.output/public/_nuxt/ProseCode.2adf04d1.js +++ b/docs/.output/public/_nuxt/ProseCode.0e5c7be6.js @@ -1 +1 @@ -import i from"./ProseCodeCopyButton.1eec7dbb.js";import{f as m,r as u,q as n,x as a,J as p,D as d,P as f,G as c,y as g}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as v}from"./Container.f1017aa2.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./index.889aa611.js";const y={key:0,class:"filename"},h=m({__name:"ProseCode",props:{code:{type:String,default:""},language:{type:String,default:null},filename:{type:String,default:null},highlights:{type:Array,default:()=>[]}},setup(e){const o=u(!1);return(s,t)=>{const r=i;return n(),a("div",{class:g([[`highlight-${e.language}`],"prose-code"]),onMouseenter:t[0]||(t[0]=l=>o.value=!0),onMouseleave:t[1]||(t[1]=l=>o.value=!1)},[e.filename?(n(),a("span",y,p(e.filename),1)):d("",!0),f(s.$slots,"default",{},void 0,!0),c(r,{show:o.value,content:e.code,class:"copy-button"},null,8,["show","content"])],34)}}}),M=v(h,[["__scopeId","data-v-0f086f28"]]);export{M as default}; +import i from"./ProseCodeCopyButton.29965c5a.js";import{f as m,r as u,q as n,x as a,J as p,D as d,P as f,G as c,y as g}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as v}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./index.889aa611.js";const y={key:0,class:"filename"},h=m({__name:"ProseCode",props:{code:{type:String,default:""},language:{type:String,default:null},filename:{type:String,default:null},highlights:{type:Array,default:()=>[]}},setup(e){const o=u(!1);return(s,t)=>{const r=i;return n(),a("div",{class:g([[`highlight-${e.language}`],"prose-code"]),onMouseenter:t[0]||(t[0]=l=>o.value=!0),onMouseleave:t[1]||(t[1]=l=>o.value=!1)},[e.filename?(n(),a("span",y,p(e.filename),1)):d("",!0),f(s.$slots,"default",{},void 0,!0),c(r,{show:o.value,content:e.code,class:"copy-button"},null,8,["show","content"])],34)}}}),M=v(h,[["__scopeId","data-v-0f086f28"]]);export{M as default}; diff --git a/docs/.output/public/_nuxt/ProseCodeCopyButton.1eec7dbb.js b/docs/.output/public/_nuxt/ProseCodeCopyButton.29965c5a.js similarity index 85% rename from docs/.output/public/_nuxt/ProseCodeCopyButton.1eec7dbb.js rename to docs/.output/public/_nuxt/ProseCodeCopyButton.29965c5a.js index e1cd1086..d01ade07 100644 --- a/docs/.output/public/_nuxt/ProseCodeCopyButton.1eec7dbb.js +++ b/docs/.output/public/_nuxt/ProseCodeCopyButton.29965c5a.js @@ -1 +1 @@ -import{T as f,_ as y}from"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import{e as C}from"./useDocus.edcbeab5.js";import{u as h}from"./index.889aa611.js";import{f as B,r as w,q as t,x,E as l,G as k,C as v,B as r,u as i,y as b,M as I,N as S}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as T}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const z=o=>(I("data-v-5fa3121e"),o=o(),S(),o),N=z(()=>l("span",{class:"sr-only"},"Copy to clipboard",-1)),g={class:"icon-wrapper"},E=B({__name:"ProseCodeCopyButton",props:{content:{type:String,default:""},show:{type:Boolean,default:!1}},setup(o){const m=o,{copy:d}=h(),{prose:a}=C(),e=w("init"),u=_=>{d(m.content).then(()=>{e.value="copied",setTimeout(()=>{e.value="init"},1e3)}).catch(s=>{console.warn("Couldn't copy to clipboard!",s)})};return(_,s)=>{const n=y;return t(),x("button",{class:b([(o.show||e.value==="copied")&&"show"]),onClick:u},[N,l("span",g,[k(f,{name:"fade"},{default:v(()=>{var c,p;return[e.value==="copied"?(t(),r(n,{key:0,name:(c=i(a).copyButton)==null?void 0:c.iconCopied,size:"18",class:"copied"},null,8,["name"])):(t(),r(n,{key:1,name:(p=i(a).copyButton)==null?void 0:p.iconCopy,size:"18"},null,8,["name"]))]}),_:1})])],2)}}}),F=T(E,[["__scopeId","data-v-5fa3121e"]]);export{F as default}; +import{T as f,_ as y}from"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import{e as C}from"./useDocus.41ab1ca5.js";import{u as h}from"./index.889aa611.js";import{f as B,r as w,q as t,x,E as l,G as k,C as v,B as r,u as i,y as b,M as I,N as S}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as T}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const z=o=>(I("data-v-5fa3121e"),o=o(),S(),o),N=z(()=>l("span",{class:"sr-only"},"Copy to clipboard",-1)),g={class:"icon-wrapper"},E=B({__name:"ProseCodeCopyButton",props:{content:{type:String,default:""},show:{type:Boolean,default:!1}},setup(o){const m=o,{copy:d}=h(),{prose:a}=C(),e=w("init"),u=_=>{d(m.content).then(()=>{e.value="copied",setTimeout(()=>{e.value="init"},1e3)}).catch(s=>{console.warn("Couldn't copy to clipboard!",s)})};return(_,s)=>{const n=y;return t(),x("button",{class:b([(o.show||e.value==="copied")&&"show"]),onClick:u},[N,l("span",g,[k(f,{name:"fade"},{default:v(()=>{var c,p;return[e.value==="copied"?(t(),r(n,{key:0,name:(c=i(a).copyButton)==null?void 0:c.iconCopied,size:"18",class:"copied"},null,8,["name"])):(t(),r(n,{key:1,name:(p=i(a).copyButton)==null?void 0:p.iconCopy,size:"18"},null,8,["name"]))]}),_:1})])],2)}}}),F=T(E,[["__scopeId","data-v-5fa3121e"]]);export{F as default}; diff --git a/docs/.output/public/_nuxt/ProseH1.ee507e45.js b/docs/.output/public/_nuxt/ProseH1.c24b90eb.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH1.ee507e45.js rename to docs/.output/public/_nuxt/ProseH1.c24b90eb.js index 6678ca19..53f530b9 100644 --- a/docs/.output/public/_nuxt/ProseH1.ee507e45.js +++ b/docs/.output/public/_nuxt/ProseH1.c24b90eb.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.08d70919.js";import{_ as u}from"./app.config.4114fca6.js";import{e as f}from"./useDocus.edcbeab5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH1",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h1",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-d187dd3d"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import{e as f}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH1",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h1",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-d187dd3d"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH2.36291d6d.js b/docs/.output/public/_nuxt/ProseH2.957cbe8e.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH2.36291d6d.js rename to docs/.output/public/_nuxt/ProseH2.957cbe8e.js index e4f264c5..8c42786a 100644 --- a/docs/.output/public/_nuxt/ProseH2.36291d6d.js +++ b/docs/.output/public/_nuxt/ProseH2.957cbe8e.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.08d70919.js";import{_ as f}from"./app.config.4114fca6.js";import{e as u}from"./useDocus.edcbeab5.js";import{f as p,h as c,q as a,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH2",props:{id:null},setup(e){const{prose:o}=u(),i=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return a(),l("h2",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(a(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-273f00cc"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as f}from"./app.config.f41ab05d.js";import{e as u}from"./useDocus.41ab1ca5.js";import{f as p,h as c,q as a,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH2",props:{id:null},setup(e){const{prose:o}=u(),i=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return a(),l("h2",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(a(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-273f00cc"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH3.0209a6ec.js b/docs/.output/public/_nuxt/ProseH3.cb2444de.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH3.0209a6ec.js rename to docs/.output/public/_nuxt/ProseH3.cb2444de.js index c917ec18..8072eafc 100644 --- a/docs/.output/public/_nuxt/ProseH3.0209a6ec.js +++ b/docs/.output/public/_nuxt/ProseH3.cb2444de.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.08d70919.js";import{_ as u}from"./app.config.4114fca6.js";import{e as f}from"./useDocus.edcbeab5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH3",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h3",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-c013d38e"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import{e as f}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH3",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h3",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-c013d38e"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH4.4ddfc0da.js b/docs/.output/public/_nuxt/ProseH4.77a5278f.js similarity index 67% rename from docs/.output/public/_nuxt/ProseH4.4ddfc0da.js rename to docs/.output/public/_nuxt/ProseH4.77a5278f.js index 7f9f9340..2089d7ea 100644 --- a/docs/.output/public/_nuxt/ProseH4.4ddfc0da.js +++ b/docs/.output/public/_nuxt/ProseH4.77a5278f.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.08d70919.js";import{_ as u}from"./app.config.4114fca6.js";import{e as f}from"./useDocus.edcbeab5.js";import{f as p,h as a,q as _,x as l,G as h,C as x,P as k,u as c,B as C,D as g}from"./runtime-core.esm-bundler.6894272a.js";import{a as v}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const B=["id"],$=p({__name:"ProseH4",props:{id:null},setup(n){const{prose:e}=f(),s=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)&&((t=e==null?void 0:e.headings)==null?void 0:t.icon)}),i=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)||((t=e==null?void 0:e.headings)==null?void 0:t.icon)});return(o,t)=>{const m=d,r=u;return _(),l("h4",{id:n.id},[h(r,{href:`#${n.id}`},{default:x(()=>[k(o.$slots,"default",{},void 0,!0),c(s)?(_(),C(m,{key:0,name:c(i)},null,8,["name"])):g("",!0)]),_:3},8,["href"])],8,B)}}});const w=v($,[["__scopeId","data-v-1e5a0afd"]]);export{w as default}; +import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import{e as f}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as _,x as l,G as h,C as x,P as k,u as c,B as C,D as g}from"./runtime-core.esm-bundler.6894272a.js";import{a as v}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const B=["id"],$=p({__name:"ProseH4",props:{id:null},setup(n){const{prose:e}=f(),s=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)&&((t=e==null?void 0:e.headings)==null?void 0:t.icon)}),i=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)||((t=e==null?void 0:e.headings)==null?void 0:t.icon)});return(o,t)=>{const m=d,r=u;return _(),l("h4",{id:n.id},[h(r,{href:`#${n.id}`},{default:x(()=>[k(o.$slots,"default",{},void 0,!0),c(s)?(_(),C(m,{key:0,name:c(i)},null,8,["name"])):g("",!0)]),_:3},8,["href"])],8,B)}}});const w=v($,[["__scopeId","data-v-1e5a0afd"]]);export{w as default}; diff --git a/docs/.output/public/_nuxt/ProseH5.fd3b0c88.js b/docs/.output/public/_nuxt/ProseH5.8dc93198.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH5.fd3b0c88.js rename to docs/.output/public/_nuxt/ProseH5.8dc93198.js index 3142b3ed..8325a8ea 100644 --- a/docs/.output/public/_nuxt/ProseH5.fd3b0c88.js +++ b/docs/.output/public/_nuxt/ProseH5.8dc93198.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.08d70919.js";import{_ as f}from"./app.config.4114fca6.js";import{e as u}from"./useDocus.edcbeab5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH5",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h5",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-35e434df"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as f}from"./app.config.f41ab05d.js";import{e as u}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH5",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h5",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-35e434df"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH6.c2012c78.js b/docs/.output/public/_nuxt/ProseH6.bdc78e01.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH6.c2012c78.js rename to docs/.output/public/_nuxt/ProseH6.bdc78e01.js index 88163acd..9d42e5bd 100644 --- a/docs/.output/public/_nuxt/ProseH6.c2012c78.js +++ b/docs/.output/public/_nuxt/ProseH6.bdc78e01.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.08d70919.js";import{_ as f}from"./app.config.4114fca6.js";import{e as u}from"./useDocus.edcbeab5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH6",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h6",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),y=g(N,[["__scopeId","data-v-dfc5fb9b"]]);export{y as default}; +import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as f}from"./app.config.f41ab05d.js";import{e as u}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH6",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h6",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),y=g(N,[["__scopeId","data-v-dfc5fb9b"]]);export{y as default}; diff --git a/docs/.output/public/_nuxt/ProseImg.16c4c81d.js b/docs/.output/public/_nuxt/ProseImg.16c4c81d.js new file mode 100644 index 00000000..f404a842 --- /dev/null +++ b/docs/.output/public/_nuxt/ProseImg.16c4c81d.js @@ -0,0 +1 @@ +import{w as a,f as i}from"./app.config.f41ab05d.js";import{f as o,h as n,q as c,x as m,ai as f,u as h}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as u}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const d=["src","alt","width","height"],p=o({__name:"ProseImg",props:{src:{type:String,default:""},alt:{type:String,default:""},width:{type:[String,Number],default:void 0},height:{type:[String,Number],default:void 0}},setup(t){const e=t,s=n(()=>{var r;return(r=e.src)!=null&&r.startsWith("/")&&!e.src.startsWith("//")?a(e.src,i().app.baseURL):e.src});return(r,l)=>(c(),m("img",f(r.$attrs,{src:h(s),alt:t.alt,width:t.width,height:t.height}),null,16,d))}}),b=u(p,[["__scopeId","data-v-2ef15301"]]);export{b as default}; diff --git a/docs/.output/public/_nuxt/ProseImg.ff3b8d7e.js b/docs/.output/public/_nuxt/ProseImg.ff3b8d7e.js deleted file mode 100644 index 3ce86d1d..00000000 --- a/docs/.output/public/_nuxt/ProseImg.ff3b8d7e.js +++ /dev/null @@ -1 +0,0 @@ -import{w as a,b as i}from"./app.config.4114fca6.js";import{f as o,h as n,q as c,x as m,ai as h,u}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as d}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const f=["src","alt","width","height"],p=o({__name:"ProseImg",props:{src:{type:String,default:""},alt:{type:String,default:""},width:{type:[String,Number],default:void 0},height:{type:[String,Number],default:void 0}},setup(t){const e=t,s=n(()=>{var r;return(r=e.src)!=null&&r.startsWith("/")&&!e.src.startsWith("//")?a(e.src,i().app.baseURL):e.src});return(r,l)=>(c(),m("img",h(r.$attrs,{src:u(s),alt:t.alt,width:t.width,height:t.height}),null,16,f))}}),y=d(p,[["__scopeId","data-v-2ef15301"]]);export{y as default}; diff --git a/docs/.output/public/_nuxt/ReadMore.bd9c6b06.js b/docs/.output/public/_nuxt/ReadMore.4d40ce3f.js similarity index 66% rename from docs/.output/public/_nuxt/ReadMore.bd9c6b06.js rename to docs/.output/public/_nuxt/ReadMore.4d40ce3f.js index 0fa9f8d8..a5ebeda1 100644 --- a/docs/.output/public/_nuxt/ReadMore.bd9c6b06.js +++ b/docs/.output/public/_nuxt/ReadMore.4d40ce3f.js @@ -1 +1 @@ -import{_ as l}from"./DocsAsideTree.08d70919.js";import{_ as u}from"./app.config.4114fca6.js";import d from"./Alert.443f6167.js";import{s as f,u as x}from"./index.d2b0cb5e.js";import{f as k,h as B,q as h,B as y,C as p,G as s,L as o,J as C,u as g}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./ContentSlot.7e1a494f.js";/* empty css */const V=k({__name:"ReadMore",props:{link:{type:String,required:!0},title:{type:String,required:!1,default:void 0}},setup(n){const r=n,m=(i,a)=>i||a.split("/").filter(Boolean).map(t=>f(t).map(e=>x(e)).join(" ")).join(" > ").replace("Api","API"),c=B(()=>m(r.title,r.link));return(i,a)=>{const t=l,e=u,_=d;return h(),y(_,null,{default:p(()=>[s(t,{name:"heroicons-outline:window"}),o(" Read more in "),s(e,{to:n.link},{default:p(()=>[o(C(g(c)),1)]),_:1},8,["to"]),o(". ")]),_:1})}}});export{V as default}; +import{_ as l}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import d from"./Alert.41cb256b.js";import{s as f,u as x}from"./index.d2b0cb5e.js";import{f as k,h as B,q as h,B as y,C as p,G as s,L as o,J as C,u as g}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./ContentSlot.c5067a4f.js";/* empty css */const V=k({__name:"ReadMore",props:{link:{type:String,required:!0},title:{type:String,required:!1,default:void 0}},setup(n){const r=n,m=(i,a)=>i||a.split("/").filter(Boolean).map(t=>f(t).map(e=>x(e)).join(" ")).join(" > ").replace("Api","API"),c=B(()=>m(r.title,r.link));return(i,a)=>{const t=l,e=u,_=d;return h(),y(_,null,{default:p(()=>[s(t,{name:"heroicons-outline:window"}),o(" Read more in "),s(e,{to:n.link},{default:p(()=>[o(C(g(c)),1)]),_:1},8,["to"]),o(". ")]),_:1})}}});export{V as default}; diff --git a/docs/.output/public/_nuxt/Sandbox.21a025fb.js b/docs/.output/public/_nuxt/Sandbox.b8bdb0c7.js similarity index 89% rename from docs/.output/public/_nuxt/Sandbox.21a025fb.js rename to docs/.output/public/_nuxt/Sandbox.b8bdb0c7.js index 117244ba..792986c9 100644 --- a/docs/.output/public/_nuxt/Sandbox.21a025fb.js +++ b/docs/.output/public/_nuxt/Sandbox.b8bdb0c7.js @@ -1 +1 @@ -import _ from"./TabsHeader.f80c17f8.js";import{u as x}from"./entry.2d43dc03.js";import{f as h,r as s,h as g,O as S,q as n,x as l,B as k,u as c,D as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as $}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./query.c3f7607a.js";const w={class:"sandbox"},B=["src"],C={key:2},I=h({__name:"Sandbox",props:{src:{type:String,default:""},repo:{type:String,default:""},branch:{type:String,default:""},dir:{type:String,default:""},file:{type:String,default:"app.vue"}},setup(i){const t=i,p=x(),r={CodeSandBox:()=>`https://codesandbox.io/embed/github/${t.repo}/tree/${t.branch}/${t.dir}?hidenavigation=1&theme=${p.value}`,StackBlitz:()=>`https://stackblitz.com/github/${t.repo}/tree/${t.branch}/${t.dir}?embed=1&file=${t.file}&theme=${p.value}`},m=Object.keys(r).map(e=>({label:e})),d=s(-1),u=s(),o=s(""),a=s(""),b=e=>{a.value=e,o.value=t.src||r[a.value](),localStorage.setItem("docus_sandbox",e)};g(()=>{var e;return(e=o.value)==null?void 0:e.replace("?embed=1&","?").replace("/embed/","/s/")});const f=e=>{d.value=e,b(m[e].label)};return S(()=>{a.value=window.localStorage.getItem("docus_sandbox")||"CodeSandBox",o.value=t.src||r[a.value](),d.value=Object.keys(r).indexOf(a.value)}),(e,T)=>{const v=_;return n(),l("div",w,[i.src?y("",!0):(n(),k(v,{key:0,ref_key:"tabs",ref:u,"active-tab-index":c(d),tabs:c(m),"onUpdate:activeTabIndex":f},null,8,["active-tab-index","tabs"])),c(o)?(n(),l("iframe",{key:1,src:c(o),title:"Sandbox editor",sandbox:"allow-modals allow-forms allow-popups allow-scripts allow-same-origin"},null,8,B)):(n(),l("span",C,"Loading Sandbox..."))])}}}),U=$(I,[["__scopeId","data-v-90b7615f"]]);export{U as default}; +import _ from"./TabsHeader.f80c17f8.js";import{u as x}from"./entry.f3791b9c.js";import{f as h,r as s,h as g,O as S,q as n,x as l,B as k,u as c,D as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as $}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const w={class:"sandbox"},B=["src"],C={key:2},I=h({__name:"Sandbox",props:{src:{type:String,default:""},repo:{type:String,default:""},branch:{type:String,default:""},dir:{type:String,default:""},file:{type:String,default:"app.vue"}},setup(i){const t=i,p=x(),r={CodeSandBox:()=>`https://codesandbox.io/embed/github/${t.repo}/tree/${t.branch}/${t.dir}?hidenavigation=1&theme=${p.value}`,StackBlitz:()=>`https://stackblitz.com/github/${t.repo}/tree/${t.branch}/${t.dir}?embed=1&file=${t.file}&theme=${p.value}`},m=Object.keys(r).map(e=>({label:e})),d=s(-1),u=s(),o=s(""),a=s(""),b=e=>{a.value=e,o.value=t.src||r[a.value](),localStorage.setItem("docus_sandbox",e)};g(()=>{var e;return(e=o.value)==null?void 0:e.replace("?embed=1&","?").replace("/embed/","/s/")});const f=e=>{d.value=e,b(m[e].label)};return S(()=>{a.value=window.localStorage.getItem("docus_sandbox")||"CodeSandBox",o.value=t.src||r[a.value](),d.value=Object.keys(r).indexOf(a.value)}),(e,T)=>{const v=_;return n(),l("div",w,[i.src?y("",!0):(n(),k(v,{key:0,ref_key:"tabs",ref:u,"active-tab-index":c(d),tabs:c(m),"onUpdate:activeTabIndex":f},null,8,["active-tab-index","tabs"])),c(o)?(n(),l("iframe",{key:1,src:c(o),title:"Sandbox editor",sandbox:"allow-modals allow-forms allow-popups allow-scripts allow-same-origin"},null,8,B)):(n(),l("span",C,"Loading Sandbox..."))])}}}),U=$(I,[["__scopeId","data-v-90b7615f"]]);export{U as default}; diff --git a/docs/.output/public/_nuxt/VideoPlayer.4efd76f7.js b/docs/.output/public/_nuxt/VideoPlayer.065c6aeb.js similarity index 93% rename from docs/.output/public/_nuxt/VideoPlayer.4efd76f7.js rename to docs/.output/public/_nuxt/VideoPlayer.065c6aeb.js index d5ed58b8..20489988 100644 --- a/docs/.output/public/_nuxt/VideoPlayer.4efd76f7.js +++ b/docs/.output/public/_nuxt/VideoPlayer.065c6aeb.js @@ -1 +1 @@ -import{_ as m}from"./NuxtImg.vue.594abc77.js";import{f,h as i,r as _,q as s,x as a,u as e,B as h,D as u,F as v,A as k,y as w,M as g,N as b,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as x}from"./Container.f1017aa2.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";const I=t=>(g("data-v-3c798ec4"),t=t(),b(),t),S={key:1,class:"loaded"},V=["poster"],C=["src"],N=["src","type"],$=["autoplay","src"],E=I(()=>B("button",null,null,-1)),P=[E],q=f({__name:"VideoPlayer",props:{poster:{type:String,default:""},src:{type:String,default:""},sources:{type:Array,default:()=>[]},autoplay:{type:Boolean,default:!1}},setup(t){const r=t,c=i(()=>{if(r.src&&r.src.includes("youtube.com/watch")){const o=r.src.match(/\?v=([^&]*)/);return{name:"youtube",src:`https://www.youtube-nocookie.com/embed/${(o==null?void 0:o[1])||""}?autoplay=1`,poster:r.poster||`https://i3.ytimg.com/vi/${(o==null?void 0:o[1])||""}/hqdefault.jpg`}}}),p=_(!1);if(!r.src&&!r.sources.length)throw new Error("VideoPlayer: you need to provide either `src` or `sources` props");const d=i(()=>{var o,n;return r.src||((n=(o=r.sources)==null?void 0:o[0])==null?void 0:n.src)||!1});return(o,n)=>{const y=m;return s(),a("div",{class:w(["video-player",{loaded:e(p)}])},[(e(c)?e(c).poster:t.poster)?(s(),h(y,{key:0,src:e(c)?e(c).poster:t.poster},null,8,["src"])):u("",!0),e(p)?(s(),a("div",S,[e(c)?e(c).name==="youtube"?(s(),a("iframe",{key:1,allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:"true",autoplay:t.autoplay,src:e(c).src},null,8,$)):u("",!0):(s(),a("video",{key:0,poster:t.poster,controls:"",autoplay:""},[e(d)?(s(),a("source",{key:0,src:e(d)},null,8,C)):u("",!0),(s(!0),a(v,null,k(t.sources,l=>(s(),a("source",{key:l.src||l,src:l.src||l,type:l.type},null,8,N))),128))],8,V))])):u("",!0),e(p)?u("",!0):(s(),a("div",{key:2,class:"play-button",onClick:n[0]||(n[0]=l=>p.value=!0)},P))],2)}}}),M=x(q,[["__scopeId","data-v-3c798ec4"]]);export{M as default}; +import{_ as m}from"./NuxtImg.vue.a13022c3.js";import{f,h as i,r as _,q as s,x as a,u as e,B as h,D as u,F as v,A as k,y as w,M as g,N as b,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as x}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";const I=t=>(g("data-v-3c798ec4"),t=t(),b(),t),S={key:1,class:"loaded"},V=["poster"],C=["src"],N=["src","type"],$=["autoplay","src"],E=I(()=>B("button",null,null,-1)),P=[E],q=f({__name:"VideoPlayer",props:{poster:{type:String,default:""},src:{type:String,default:""},sources:{type:Array,default:()=>[]},autoplay:{type:Boolean,default:!1}},setup(t){const r=t,c=i(()=>{if(r.src&&r.src.includes("youtube.com/watch")){const o=r.src.match(/\?v=([^&]*)/);return{name:"youtube",src:`https://www.youtube-nocookie.com/embed/${(o==null?void 0:o[1])||""}?autoplay=1`,poster:r.poster||`https://i3.ytimg.com/vi/${(o==null?void 0:o[1])||""}/hqdefault.jpg`}}}),p=_(!1);if(!r.src&&!r.sources.length)throw new Error("VideoPlayer: you need to provide either `src` or `sources` props");const d=i(()=>{var o,n;return r.src||((n=(o=r.sources)==null?void 0:o[0])==null?void 0:n.src)||!1});return(o,n)=>{const y=m;return s(),a("div",{class:w(["video-player",{loaded:e(p)}])},[(e(c)?e(c).poster:t.poster)?(s(),h(y,{key:0,src:e(c)?e(c).poster:t.poster},null,8,["src"])):u("",!0),e(p)?(s(),a("div",S,[e(c)?e(c).name==="youtube"?(s(),a("iframe",{key:1,allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:"true",autoplay:t.autoplay,src:e(c).src},null,8,$)):u("",!0):(s(),a("video",{key:0,poster:t.poster,controls:"",autoplay:""},[e(d)?(s(),a("source",{key:0,src:e(d)},null,8,C)):u("",!0),(s(!0),a(v,null,k(t.sources,l=>(s(),a("source",{key:l.src||l,src:l.src||l,type:l.type},null,8,N))),128))],8,V))])):u("",!0),e(p)?u("",!0):(s(),a("div",{key:2,class:"play-button",onClick:n[0]||(n[0]=l=>p.value=!0)},P))],2)}}}),M=x(q,[["__scopeId","data-v-3c798ec4"]]);export{M as default}; diff --git a/docs/.output/public/_nuxt/app.config.4114fca6.js b/docs/.output/public/_nuxt/app.config.f41ab05d.js similarity index 98% rename from docs/.output/public/_nuxt/app.config.4114fca6.js rename to docs/.output/public/_nuxt/app.config.f41ab05d.js index 97b44184..cbbd6142 100644 --- a/docs/.output/public/_nuxt/app.config.4114fca6.js +++ b/docs/.output/public/_nuxt/app.config.f41ab05d.js @@ -1 +1 @@ -import{a as V}from"./index.d2b0cb5e.js";import{k as H,g as I,i as K,f as z,h as N,r as L,O as F,o as G,j as T,aa as X}from"./runtime-core.esm-bundler.6894272a.js";const Y=/#/g,Z=/&/g,J=/=/g,U=/\+/g,ee=/%5b/gi,te=/%5d/gi,oe=/%5e/gi,ne=/%60/gi,re=/%7b/gi,se=/%7c/gi,ie=/%7d/gi,ae=/%20/gi;function ce(e){return encodeURI(""+e).replace(se,"|").replace(ee,"[").replace(te,"]")}function x(e){return ce(e).replace(U,"%2B").replace(ae,"+").replace(Y,"%23").replace(Z,"%26").replace(ne,"`").replace(re,"{").replace(ie,"}").replace(oe,"^")}function k(e){return x(e).replace(J,"%3D")}function $(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function le(e){return $(e.replace(U," "))}function ue(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const o of e.split("&")){const n=o.match(/([^=]+)=?(.*)/)||[];if(n.length<2)continue;const r=$(n[1]);if(r==="__proto__"||r==="constructor")continue;const s=le(n[2]||"");typeof t[r]<"u"?Array.isArray(t[r])?t[r].push(s):t[r]=[t[r],s]:t[r]=s}return t}function fe(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(o=>`${k(e)}=${x(o)}`).join("&"):`${k(e)}=${x(t)}`:k(e)}function de(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>fe(t,e[t])).join("&")}const he=/^\w{2,}:(\/\/)?/,pe=/^\/\/[^/]+/;function y(e,t=!1){return he.test(e)||t&&pe.test(e)}const ge=/\/$|\/\?/;function C(e="",t=!1){return t?ge.test(e):e.endsWith("/")}function B(e="",t=!1){if(!t)return(C(e)?e.slice(0,-1):e)||"/";if(!C(e,!0))return e||"/";const[o,...n]=e.split("?");return(o.slice(0,-1)||"/")+(n.length>0?`?${n.join("?")}`:"")}function _e(e="",t=!1){if(!t)return e.endsWith("/")?e:e+"/";if(C(e,!0))return e||"/";const[o,...n]=e.split("?");return o+"/"+(n.length>0?`?${n.join("?")}`:"")}function q(e=""){return e.startsWith("/")}function ve(e=""){return(q(e)?e.slice(1):e)||"/"}function Fe(e=""){return q(e)?e:"/"+e}function Ge(e,t){if(M(t)||y(e))return e;const o=B(t);return e.startsWith(o)?e:be(o,e)}function Xe(e,t){if(M(t))return e;const o=B(t);if(!e.startsWith(o))return e;const n=e.slice(o.length);return n[0]==="/"?n:"/"+n}function Ye(e,t){const o=P(e),n={...ue(o.search),...t};return o.search=de(n),ke(o)}function M(e){return!e||e==="/"}function ye(e){return e&&e!=="/"}function be(e,...t){let o=e||"";for(const n of t.filter(r=>ye(r)))o=o?_e(o)+ve(n):n;return o}function P(e="",t){if(!y(e,!0))return t?P(t+e):O(e);const[o="",n,r=""]=(e.replace(/\\/g,"/").match(/([^/:]+:)?\/\/([^/@]+@)?(.*)/)||[]).splice(1),[s="",i=""]=(r.match(/([^#/?]*)(.*)?/)||[]).splice(1),{pathname:a,search:c,hash:l}=O(i.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:o,auth:n?n.slice(0,Math.max(0,n.length-1)):"",host:s,pathname:a,search:c,hash:l}}function O(e=""){const[t="",o="",n=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:o,hash:n}}function ke(e){const t=e.pathname+(e.search?(e.search.startsWith("?")?"":"?")+e.search:"")+e.hash;return e.protocol?e.protocol+"//"+(e.auth?e.auth+"@":"")+e.host+t:t}function w(e,t={},o){for(const n in e){const r=e[n],s=o?`${o}:${n}`:n;typeof r=="object"&&r!==null?w(r,t,s):typeof r=="function"&&(t[s]=r)}return t}function me(e,t){return e.reduce((o,n)=>o.then(()=>n.apply(void 0,t)),Promise.resolve())}function xe(e,t){return Promise.all(e.map(o=>o.apply(void 0,t)))}function m(e,t){for(const o of e)o(t)}class Ce{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,o,n={}){if(!t||typeof o!="function")return()=>{};const r=t;let s;for(;this._deprecatedHooks[t];)s=this._deprecatedHooks[t],t=s.to;if(s&&!n.allowDeprecated){let i=s.message;i||(i=`${r} hook has been deprecated`+(s.to?`, please use ${s.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(o),()=>{o&&(this.removeHook(t,o),o=void 0)}}hookOnce(t,o){let n,r=(...s)=>(typeof n=="function"&&n(),n=void 0,r=void 0,o(...s));return n=this.hook(t,r),n}removeHook(t,o){if(this._hooks[t]){const n=this._hooks[t].indexOf(o);n!==-1&&this._hooks[t].splice(n,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,o){this._deprecatedHooks[t]=typeof o=="string"?{to:o}:o;const n=this._hooks[t]||[];this._hooks[t]=void 0;for(const r of n)this.hook(t,r)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const o in t)this.deprecateHook(o,t[o])}addHooks(t){const o=w(t),n=Object.keys(o).map(r=>this.hook(r,o[r]));return()=>{for(const r of n.splice(0,n.length))r()}}removeHooks(t){const o=w(t);for(const n in o)this.removeHook(n,o[n])}callHook(t,...o){return this.callHookWith(me,t,...o)}callHookParallel(t,...o){return this.callHookWith(xe,t,...o)}callHookWith(t,o,...n){const r=this._before||this._after?{name:o,args:n,context:{}}:void 0;this._before&&m(this._before,r);const s=t(this._hooks[o]||[],n);return s instanceof Promise?s.finally(()=>{this._after&&r&&m(this._after,r)}):(this._after&&r&&m(this._after,r),s)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{const o=this._before.indexOf(t);o!==-1&&this._before.splice(o,1)}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{const o=this._after.indexOf(t);o!==-1&&this._after.splice(o,1)}}}function we(){return new Ce}function Ee(){let e,t=!1;const o=n=>{if(e&&e!==n)throw new Error("Context conflict")};return{use:()=>{if(e===void 0)throw new Error("Context is not available");return e},tryUse:()=>e,set:(n,r)=>{r||o(n),e=n,t=!0},unset:()=>{e=void 0,t=!1},call:(n,r)=>{o(n),e=n;try{return r()}finally{t||(e=void 0)}},async callAsync(n,r){e=n;const s=()=>{e=n},i=()=>e===n?s:void 0;E.add(i);try{const a=r();return t||(e=void 0),await a}finally{E.delete(i)}}}}function Re(){const e={};return{get(t){return e[t]||(e[t]=Ee()),e[t],e[t]}}}const v=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},S="__unctx__",Pe=v[S]||(v[S]=Re()),Ae=e=>Pe.get(e),j="__unctx_async_handlers__",E=v[j]||(v[j]=new Set);function Ze(e){const t=[];for(const r of E){const s=r();s&&t.push(s)}const o=()=>{for(const r of t)r()};let n=e();return n&&typeof n=="object"&&"catch"in n&&(n=n.catch(r=>{throw o(),r})),[n,o]}const W=Ae("nuxt-app"),He="__nuxt_plugin";function Je(e){let t=0;const o={provide:void 0,globalName:"nuxt",payload:H({data:{},state:{},_errors:{},...window.__NUXT__}),static:{data:{}},isHydrating:!0,deferHydration(){if(!o.isHydrating)return()=>{};t++;let s=!1;return()=>{if(!s&&(s=!0,t--,t===0))return o.isHydrating=!1,o.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},...e};o.hooks=we(),o.hook=o.hooks.hook,o.callHook=o.hooks.callHook,o.provide=(s,i)=>{const a="$"+s;_(o,a,i),_(o.vueApp.config.globalProperties,a,i)},_(o.vueApp,"$nuxt",o),_(o.vueApp.config.globalProperties,"$nuxt",o);const n=H(o.payload.config),r=new Proxy(n,{get(s,i){return i==="public"?s.public:s[i]??s.public[i]},set(s,i,a){return i==="public"||i==="app"?!1:(s[i]=a,s.public[i]=a,!0)}});return o.provide("config",r),o}async function Ne(e,t){if(typeof t!="function")return;const{provide:o}=await Le(e,t,[e])||{};if(o&&typeof o=="object")for(const n in o)e.provide(n,o[n])}async function et(e,t){for(const o of t)await Ne(e,o)}function tt(e){return e.map(o=>typeof o!="function"?null:o.length>1?n=>o(n,n.provide):o).filter(Boolean)}function ot(e){return e[He]=!0,e}function Le(e,t,o){const n=()=>o?t(...o):t();return W.set(e),n()}function f(){const e=W.tryUse();if(!e){const t=I();if(!t)throw new Error("nuxt instance unavailable");return t.appContext.app.$nuxt}return e}function nt(){return f().$config}function _(e,t,o){Object.defineProperty(e,t,{get:()=>o})}const A=()=>{var e;return(e=f())==null?void 0:e.$router},rt=()=>I()?K("_route",f()._route):f()._route,st=e=>e,it=(e,t,o={})=>{const n=f();o.global||typeof e=="function"?n._middleware.global.push(typeof e=="function"?e:t):n._middleware.named[e]=t},Te=()=>{try{if(f()._processingMiddleware)return!0}catch{return!0}return!1},Oe=(e,t)=>{e||(e="/");const o=typeof e=="string"?e:e.path||"/",n=y(o,!0);if(n&&!(t!=null&&t.external))throw new Error("Navigating to external URL is not allowed by default. Use `nagivateTo (url, { external: true })`.");if(n&&P(o).protocol==="script:")throw new Error("Cannot navigate to an URL with script protocol.");if(!n&&Te())return e;const r=A();return n?(t!=null&&t.replace?location.replace(o):location.href=o,Promise.resolve()):t!=null&&t.replace?r.replace(e):r.push(e)},R=globalThis.requestIdleCallback||(e=>{const t=Date.now(),o={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(o)},1)}),Se=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),je=e=>{const t=f();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{R(e)}):R(e)};async function D(e,t=A()){if(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(e))return;t._routePreloaded.add(e);const o=t._preloadPromises=t._preloadPromises||[];if(o.length>4)return Promise.all(o).then(()=>D(e,t));const n=t.resolve(e).matched.map(r=>{var s;return(s=r.components)==null?void 0:s.default}).filter(r=>typeof r=="function");for(const r of n){const s=Promise.resolve(r()).catch(()=>{}).finally(()=>o.splice(o.indexOf(s)));o.push(s)}await Promise.all(o)}const Ie=(...e)=>e.find(t=>t!==void 0),Ue="noopener noreferrer";function Q(e){const t=e.componentName||"NuxtLink";return z({name:t,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(o,{slots:n}){const r=A(),s=N(()=>o.to||o.href||""),i=N(()=>o.external||o.target&&o.target!=="_self"?!0:typeof s.value=="object"?!1:s.value===""||y(s.value,!0)),a=L(!1),c=L(null);if(o.prefetch!==!1&&o.noPrefetch!==!0&&typeof s.value=="string"&&o.target!=="_blank"&&!qe()){const h=f();let d,u=null;F(()=>{const g=Be();je(()=>{d=R(()=>{var p;(p=c==null?void 0:c.value)!=null&&p.tagName&&(u=g.observe(c.value,async()=>{u==null||u(),u=null,await Promise.all([h.hooks.callHook("link:prefetch",s.value).catch(()=>{}),!i.value&&D(s.value,r).catch(()=>{})]),a.value=!0}))})})}),G(()=>{d&&Se(d),u==null||u(),u=null})}return()=>{var g,p;if(!i.value)return T(X("RouterLink"),{ref:b=>{c.value=b==null?void 0:b.$el},to:s.value,...a.value&&!o.custom?{class:o.prefetchedClass||e.prefetchedClass}:{},activeClass:o.activeClass||e.activeClass,exactActiveClass:o.exactActiveClass||e.exactActiveClass,replace:o.replace,ariaCurrentValue:o.ariaCurrentValue,custom:o.custom},n.default);const l=typeof s.value=="object"?((g=r.resolve(s.value))==null?void 0:g.href)??null:s.value||null,h=o.target||null,d=o.noRel?null:Ie(o.rel,e.externalRelAttribute,l?Ue:"")||null,u=()=>Oe(l,{replace:o.replace});return o.custom?n.default?n.default({href:l,navigate:u,route:r.resolve(l),rel:d,target:h,isExternal:i.value,isActive:!1,isExactActive:!1}):null:T("a",{ref:c,href:l,rel:d,target:h},(p=n.default)==null?void 0:p.call(n))}}})}const $e=Q({componentName:"NuxtLink"});function Be(){const e=f();if(e._observer)return e._observer;let t=null;const o=new Map,n=(s,i)=>(t||(t=new IntersectionObserver(a=>{for(const c of a){const l=o.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&l&&l()}})),o.set(s,i),t.observe(s),()=>{o.delete(s),t.unobserve(s),o.size===0&&(t.disconnect(),t=null)});return e._observer={observe:n}}function qe(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const at=Object.freeze(Object.defineProperty({__proto__:null,default:$e,defineNuxtLink:Q},Symbol.toStringTag,{value:"Module"})),Me={github:{owner:"realdecoy",repo:"frontier",branch:"main"},docus:{title:"Frontier",description:"Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.",image:"https://content.nuxtjs.org/preview.png",url:"https://realdecoy.com",socials:{github:"realdecoy/frontier"},github:{dir:"",root:"",edit:!0,releases:!0,owner:"realdecoy",repo:"frontier",branch:"main"},cover:{src:"/cover.jpg",alt:"Tooling maded easy for developers"},aside:{level:1},layout:{fluid:!0},header:{logo:"Logo"},footer:{iconLinks:[{label:"Realdecoy",href:"https://realdecoy.com",icon:"IconNuxt"}]}}},We={docus:{title:"Docus",description:"The best place to start your documentation.",image:"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png",socials:{twitter:"",github:"",facebook:"",instagram:"",youtube:"",medium:""},layout:"default",header:{title:"",logo:!1,showLinkIcon:!1,fluid:!1,exclude:[]},aside:{level:0,collapsed:!1,exclude:[]},footer:{credits:{icon:"IconDocus",text:"Powered by Docus",href:"https://docus.dev"},textLinks:[],iconLinks:[],fluid:!1},github:{dir:void 0,branch:void 0,repo:void 0,owner:void 0,edit:!1}}},De={prose:{copyButton:{iconCopy:"ph:copy",iconCopied:"ph:check"},headings:{icon:"ph:link"}}},Qe={},Ve={},ct=V(Me,We,De,Qe,Ve);export{$e as _,Ye as a,nt as b,we as c,ot as d,st as e,Ze as f,Le as g,Xe as h,A as i,be as j,y as k,rt as l,B as m,Fe as n,it as o,Oe as p,P as q,tt as r,Je as s,et as t,f as u,ct as v,Ge as w,_e as x,at as y}; +import{a as V}from"./index.d2b0cb5e.js";import{k as H,g as I,i as K,f as z,h as N,r as L,O as F,o as G,j as T,aa as X}from"./runtime-core.esm-bundler.6894272a.js";const Y=/#/g,Z=/&/g,J=/=/g,U=/\+/g,ee=/%5b/gi,te=/%5d/gi,oe=/%5e/gi,ne=/%60/gi,re=/%7b/gi,se=/%7c/gi,ie=/%7d/gi,ae=/%20/gi;function ce(e){return encodeURI(""+e).replace(se,"|").replace(ee,"[").replace(te,"]")}function x(e){return ce(e).replace(U,"%2B").replace(ae,"+").replace(Y,"%23").replace(Z,"%26").replace(ne,"`").replace(re,"{").replace(ie,"}").replace(oe,"^")}function k(e){return x(e).replace(J,"%3D")}function $(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function le(e){return $(e.replace(U," "))}function ue(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const o of e.split("&")){const n=o.match(/([^=]+)=?(.*)/)||[];if(n.length<2)continue;const r=$(n[1]);if(r==="__proto__"||r==="constructor")continue;const s=le(n[2]||"");typeof t[r]<"u"?Array.isArray(t[r])?t[r].push(s):t[r]=[t[r],s]:t[r]=s}return t}function fe(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(o=>`${k(e)}=${x(o)}`).join("&"):`${k(e)}=${x(t)}`:k(e)}function de(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>fe(t,e[t])).join("&")}const he=/^\w{2,}:(\/\/)?/,pe=/^\/\/[^/]+/;function y(e,t=!1){return he.test(e)||t&&pe.test(e)}const ge=/\/$|\/\?/;function C(e="",t=!1){return t?ge.test(e):e.endsWith("/")}function B(e="",t=!1){if(!t)return(C(e)?e.slice(0,-1):e)||"/";if(!C(e,!0))return e||"/";const[o,...n]=e.split("?");return(o.slice(0,-1)||"/")+(n.length>0?`?${n.join("?")}`:"")}function _e(e="",t=!1){if(!t)return e.endsWith("/")?e:e+"/";if(C(e,!0))return e||"/";const[o,...n]=e.split("?");return o+"/"+(n.length>0?`?${n.join("?")}`:"")}function q(e=""){return e.startsWith("/")}function ve(e=""){return(q(e)?e.slice(1):e)||"/"}function Fe(e=""){return q(e)?e:"/"+e}function Ge(e,t){if(M(t)||y(e))return e;const o=B(t);return e.startsWith(o)?e:be(o,e)}function Xe(e,t){if(M(t))return e;const o=B(t);if(!e.startsWith(o))return e;const n=e.slice(o.length);return n[0]==="/"?n:"/"+n}function Ye(e,t){const o=P(e),n={...ue(o.search),...t};return o.search=de(n),ke(o)}function M(e){return!e||e==="/"}function ye(e){return e&&e!=="/"}function be(e,...t){let o=e||"";for(const n of t.filter(r=>ye(r)))o=o?_e(o)+ve(n):n;return o}function P(e="",t){if(!y(e,!0))return t?P(t+e):O(e);const[o="",n,r=""]=(e.replace(/\\/g,"/").match(/([^/:]+:)?\/\/([^/@]+@)?(.*)/)||[]).splice(1),[s="",i=""]=(r.match(/([^#/?]*)(.*)?/)||[]).splice(1),{pathname:a,search:c,hash:l}=O(i.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:o,auth:n?n.slice(0,Math.max(0,n.length-1)):"",host:s,pathname:a,search:c,hash:l}}function O(e=""){const[t="",o="",n=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:o,hash:n}}function ke(e){const t=e.pathname+(e.search?(e.search.startsWith("?")?"":"?")+e.search:"")+e.hash;return e.protocol?e.protocol+"//"+(e.auth?e.auth+"@":"")+e.host+t:t}function w(e,t={},o){for(const n in e){const r=e[n],s=o?`${o}:${n}`:n;typeof r=="object"&&r!==null?w(r,t,s):typeof r=="function"&&(t[s]=r)}return t}function me(e,t){return e.reduce((o,n)=>o.then(()=>n.apply(void 0,t)),Promise.resolve())}function xe(e,t){return Promise.all(e.map(o=>o.apply(void 0,t)))}function m(e,t){for(const o of e)o(t)}class Ce{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,o,n={}){if(!t||typeof o!="function")return()=>{};const r=t;let s;for(;this._deprecatedHooks[t];)s=this._deprecatedHooks[t],t=s.to;if(s&&!n.allowDeprecated){let i=s.message;i||(i=`${r} hook has been deprecated`+(s.to?`, please use ${s.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(o),()=>{o&&(this.removeHook(t,o),o=void 0)}}hookOnce(t,o){let n,r=(...s)=>(typeof n=="function"&&n(),n=void 0,r=void 0,o(...s));return n=this.hook(t,r),n}removeHook(t,o){if(this._hooks[t]){const n=this._hooks[t].indexOf(o);n!==-1&&this._hooks[t].splice(n,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,o){this._deprecatedHooks[t]=typeof o=="string"?{to:o}:o;const n=this._hooks[t]||[];this._hooks[t]=void 0;for(const r of n)this.hook(t,r)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const o in t)this.deprecateHook(o,t[o])}addHooks(t){const o=w(t),n=Object.keys(o).map(r=>this.hook(r,o[r]));return()=>{for(const r of n.splice(0,n.length))r()}}removeHooks(t){const o=w(t);for(const n in o)this.removeHook(n,o[n])}callHook(t,...o){return this.callHookWith(me,t,...o)}callHookParallel(t,...o){return this.callHookWith(xe,t,...o)}callHookWith(t,o,...n){const r=this._before||this._after?{name:o,args:n,context:{}}:void 0;this._before&&m(this._before,r);const s=t(this._hooks[o]||[],n);return s instanceof Promise?s.finally(()=>{this._after&&r&&m(this._after,r)}):(this._after&&r&&m(this._after,r),s)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{const o=this._before.indexOf(t);o!==-1&&this._before.splice(o,1)}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{const o=this._after.indexOf(t);o!==-1&&this._after.splice(o,1)}}}function we(){return new Ce}function Ee(){let e,t=!1;const o=n=>{if(e&&e!==n)throw new Error("Context conflict")};return{use:()=>{if(e===void 0)throw new Error("Context is not available");return e},tryUse:()=>e,set:(n,r)=>{r||o(n),e=n,t=!0},unset:()=>{e=void 0,t=!1},call:(n,r)=>{o(n),e=n;try{return r()}finally{t||(e=void 0)}},async callAsync(n,r){e=n;const s=()=>{e=n},i=()=>e===n?s:void 0;E.add(i);try{const a=r();return t||(e=void 0),await a}finally{E.delete(i)}}}}function Re(){const e={};return{get(t){return e[t]||(e[t]=Ee()),e[t],e[t]}}}const v=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},S="__unctx__",Pe=v[S]||(v[S]=Re()),Ae=e=>Pe.get(e),j="__unctx_async_handlers__",E=v[j]||(v[j]=new Set);function Ze(e){const t=[];for(const r of E){const s=r();s&&t.push(s)}const o=()=>{for(const r of t)r()};let n=e();return n&&typeof n=="object"&&"catch"in n&&(n=n.catch(r=>{throw o(),r})),[n,o]}const W=Ae("nuxt-app"),He="__nuxt_plugin";function Je(e){let t=0;const o={provide:void 0,globalName:"nuxt",payload:H({data:{},state:{},_errors:{},...window.__NUXT__}),static:{data:{}},isHydrating:!0,deferHydration(){if(!o.isHydrating)return()=>{};t++;let s=!1;return()=>{if(!s&&(s=!0,t--,t===0))return o.isHydrating=!1,o.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},...e};o.hooks=we(),o.hook=o.hooks.hook,o.callHook=o.hooks.callHook,o.provide=(s,i)=>{const a="$"+s;_(o,a,i),_(o.vueApp.config.globalProperties,a,i)},_(o.vueApp,"$nuxt",o),_(o.vueApp.config.globalProperties,"$nuxt",o);const n=H(o.payload.config),r=new Proxy(n,{get(s,i){return i==="public"?s.public:s[i]??s.public[i]},set(s,i,a){return i==="public"||i==="app"?!1:(s[i]=a,s.public[i]=a,!0)}});return o.provide("config",r),o}async function Ne(e,t){if(typeof t!="function")return;const{provide:o}=await Le(e,t,[e])||{};if(o&&typeof o=="object")for(const n in o)e.provide(n,o[n])}async function et(e,t){for(const o of t)await Ne(e,o)}function tt(e){return e.map(o=>typeof o!="function"?null:o.length>1?n=>o(n,n.provide):o).filter(Boolean)}function ot(e){return e[He]=!0,e}function Le(e,t,o){const n=()=>o?t(...o):t();return W.set(e),n()}function f(){const e=W.tryUse();if(!e){const t=I();if(!t)throw new Error("nuxt instance unavailable");return t.appContext.app.$nuxt}return e}function nt(){return f().$config}function _(e,t,o){Object.defineProperty(e,t,{get:()=>o})}const A=()=>{var e;return(e=f())==null?void 0:e.$router},rt=()=>I()?K("_route",f()._route):f()._route,st=e=>e,it=(e,t,o={})=>{const n=f();o.global||typeof e=="function"?n._middleware.global.push(typeof e=="function"?e:t):n._middleware.named[e]=t},Te=()=>{try{if(f()._processingMiddleware)return!0}catch{return!0}return!1},Oe=(e,t)=>{e||(e="/");const o=typeof e=="string"?e:e.path||"/",n=y(o,!0);if(n&&!(t!=null&&t.external))throw new Error("Navigating to external URL is not allowed by default. Use `nagivateTo (url, { external: true })`.");if(n&&P(o).protocol==="script:")throw new Error("Cannot navigate to an URL with script protocol.");if(!n&&Te())return e;const r=A();return n?(t!=null&&t.replace?location.replace(o):location.href=o,Promise.resolve()):t!=null&&t.replace?r.replace(e):r.push(e)},R=globalThis.requestIdleCallback||(e=>{const t=Date.now(),o={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(o)},1)}),Se=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),je=e=>{const t=f();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{R(e)}):R(e)};async function D(e,t=A()){if(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(e))return;t._routePreloaded.add(e);const o=t._preloadPromises=t._preloadPromises||[];if(o.length>4)return Promise.all(o).then(()=>D(e,t));const n=t.resolve(e).matched.map(r=>{var s;return(s=r.components)==null?void 0:s.default}).filter(r=>typeof r=="function");for(const r of n){const s=Promise.resolve(r()).catch(()=>{}).finally(()=>o.splice(o.indexOf(s)));o.push(s)}await Promise.all(o)}const Ie=(...e)=>e.find(t=>t!==void 0),Ue="noopener noreferrer";function Q(e){const t=e.componentName||"NuxtLink";return z({name:t,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(o,{slots:n}){const r=A(),s=N(()=>o.to||o.href||""),i=N(()=>o.external||o.target&&o.target!=="_self"?!0:typeof s.value=="object"?!1:s.value===""||y(s.value,!0)),a=L(!1),c=L(null);if(o.prefetch!==!1&&o.noPrefetch!==!0&&typeof s.value=="string"&&o.target!=="_blank"&&!qe()){const h=f();let d,u=null;F(()=>{const g=Be();je(()=>{d=R(()=>{var p;(p=c==null?void 0:c.value)!=null&&p.tagName&&(u=g.observe(c.value,async()=>{u==null||u(),u=null,await Promise.all([h.hooks.callHook("link:prefetch",s.value).catch(()=>{}),!i.value&&D(s.value,r).catch(()=>{})]),a.value=!0}))})})}),G(()=>{d&&Se(d),u==null||u(),u=null})}return()=>{var g,p;if(!i.value)return T(X("RouterLink"),{ref:b=>{c.value=b==null?void 0:b.$el},to:s.value,...a.value&&!o.custom?{class:o.prefetchedClass||e.prefetchedClass}:{},activeClass:o.activeClass||e.activeClass,exactActiveClass:o.exactActiveClass||e.exactActiveClass,replace:o.replace,ariaCurrentValue:o.ariaCurrentValue,custom:o.custom},n.default);const l=typeof s.value=="object"?((g=r.resolve(s.value))==null?void 0:g.href)??null:s.value||null,h=o.target||null,d=o.noRel?null:Ie(o.rel,e.externalRelAttribute,l?Ue:"")||null,u=()=>Oe(l,{replace:o.replace});return o.custom?n.default?n.default({href:l,navigate:u,route:r.resolve(l),rel:d,target:h,isExternal:i.value,isActive:!1,isExactActive:!1}):null:T("a",{ref:c,href:l,rel:d,target:h},(p=n.default)==null?void 0:p.call(n))}}})}const $e=Q({componentName:"NuxtLink"});function Be(){const e=f();if(e._observer)return e._observer;let t=null;const o=new Map,n=(s,i)=>(t||(t=new IntersectionObserver(a=>{for(const c of a){const l=o.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&l&&l()}})),o.set(s,i),t.observe(s),()=>{o.delete(s),t.unobserve(s),o.size===0&&(t.disconnect(),t=null)});return e._observer={observe:n}}function qe(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const at=Object.freeze(Object.defineProperty({__proto__:null,default:$e,defineNuxtLink:Q},Symbol.toStringTag,{value:"Module"})),Me={github:{owner:"realdecoy",repo:"frontier",branch:"main"},docus:{title:"Frontier",description:"Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.",image:"https://content.nuxtjs.org/preview.png",url:"https://realdecoy.com",socials:{github:"realdecoy/frontier"},github:{dir:"",root:"",edit:!0,releases:!0,owner:"realdecoy",repo:"frontier",branch:"main"},cover:{src:"/cover.jpg",alt:"Tooling maded easy for developers"},aside:{level:1},layout:{fluid:!0},header:{logo:"Logo"},footer:{iconLinks:[{label:"Realdecoy",href:"https://realdecoy.com",icon:"IconNuxt"}]}}},We={docus:{title:"Docus",description:"The best place to start your documentation.",image:"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png",socials:{twitter:"",github:"",facebook:"",instagram:"",youtube:"",medium:""},layout:"default",header:{title:"",logo:!1,showLinkIcon:!1,fluid:!1,exclude:[]},aside:{level:0,collapsed:!1,exclude:[]},footer:{credits:{icon:"IconDocus",text:"Powered by Docus",href:"https://docus.dev"},textLinks:[],iconLinks:[],fluid:!1},github:{dir:void 0,branch:void 0,repo:void 0,owner:void 0,edit:!1}}},De={prose:{copyButton:{iconCopy:"ph:copy",iconCopied:"ph:check"},headings:{icon:"ph:link"}}},Qe={},Ve={},ct=V(Me,We,De,Qe,Ve);export{$e as _,Ye as a,st as b,we as c,ot as d,Ze as e,nt as f,Le as g,Xe as h,A as i,be as j,y as k,rt as l,B as m,Fe as n,it as o,Oe as p,tt as q,Je as r,et as s,ct as t,f as u,_e as v,Ge as w,at as x}; diff --git a/docs/.output/public/_nuxt/asyncData.2775b491.js b/docs/.output/public/_nuxt/asyncData.7c06b2d5.js similarity index 94% rename from docs/.output/public/_nuxt/asyncData.2775b491.js rename to docs/.output/public/_nuxt/asyncData.7c06b2d5.js index b1d2a09a..d1ce3603 100644 --- a/docs/.output/public/_nuxt/asyncData.2775b491.js +++ b/docs/.output/public/_nuxt/asyncData.7c06b2d5.js @@ -1 +1 @@ -import{u as v}from"./app.config.4114fca6.js";import{c as _}from"./entry.2d43dc03.js";import{r as y,af as x,aj as D,a as w,u as b,g as C}from"./runtime-core.esm-bundler.6894272a.js";const O=()=>null;function E(...s){var h;const f=typeof s[s.length-1]=="string"?s.pop():void 0;typeof s[0]!="string"&&s.unshift(f);let[r,l,a={}]=s;if(typeof r!="string")throw new TypeError("[nuxt] [asyncData] key must be a string.");if(typeof l!="function")throw new TypeError("[nuxt] [asyncData] handler must be a function.");a.server=a.server??!0,a.default=a.default??O,a.lazy=a.lazy??!1,a.immediate=a.immediate??!0;const e=v(),u=()=>e.isHydrating?e.payload.data[r]:e.static.data[r],d=()=>u()!==void 0;e._asyncData[r]||(e._asyncData[r]={data:y(u()??((h=a.default)==null?void 0:h.call(a))??null),pending:y(!d()),error:y(e.payload._errors[r]?_(e.payload._errors[r]):null)});const n={...e._asyncData[r]};n.refresh=n.execute=(o={})=>{if(e._asyncDataPromises[r]){if(o.dedupe===!1)return e._asyncDataPromises[r];e._asyncDataPromises[r].cancelled=!0}if(o._initial&&d())return u();n.pending.value=!0;const i=new Promise((t,c)=>{try{t(l(e))}catch(P){c(P)}}).then(t=>{if(i.cancelled)return e._asyncDataPromises[r];a.transform&&(t=a.transform(t)),a.pick&&(t=k(t,a.pick)),n.data.value=t,n.error.value=null}).catch(t=>{var c;if(i.cancelled)return e._asyncDataPromises[r];n.error.value=t,n.data.value=b(((c=a.default)==null?void 0:c.call(a))??null)}).finally(()=>{i.cancelled||(n.pending.value=!1,e.payload.data[r]=n.data.value,n.error.value&&(e.payload._errors[r]=_(n.error.value)),delete e._asyncDataPromises[r])});return e._asyncDataPromises[r]=i,e._asyncDataPromises[r]};const p=()=>n.refresh({_initial:!0}),g=a.server!==!1&&e.payload.serverRendered;{const o=C();if(o&&!o._nuxtOnBeforeMountCbs){o._nuxtOnBeforeMountCbs=[];const t=o._nuxtOnBeforeMountCbs;o&&(x(()=>{t.forEach(c=>{c()}),t.splice(0,t.length)}),D(()=>t.splice(0,t.length)))}g&&e.isHydrating&&d()?n.pending.value=!1:o&&(e.payload.serverRendered&&e.isHydrating||a.lazy)&&a.immediate?o._nuxtOnBeforeMountCbs.push(p):a.immediate&&p(),a.watch&&w(a.watch,()=>n.refresh());const i=e.hook("app:data:refresh",t=>{if(!t||t.includes(r))return n.refresh()});o&&D(i)}const m=Promise.resolve(e._asyncDataPromises[r]).then(()=>n);return Object.assign(m,n),m}async function H(s){const f=s?Array.isArray(s)?s:[s]:void 0;await v().hooks.callHookParallel("app:data:refresh",f)}function k(s,f){const r={};for(const l of f)r[l]=s[l];return r}export{H as r,E as u}; +import{u as v}from"./app.config.f41ab05d.js";import{c as _}from"./entry.f3791b9c.js";import{r as y,af as x,aj as D,a as w,u as b,g as C}from"./runtime-core.esm-bundler.6894272a.js";const O=()=>null;function E(...s){var h;const f=typeof s[s.length-1]=="string"?s.pop():void 0;typeof s[0]!="string"&&s.unshift(f);let[r,l,a={}]=s;if(typeof r!="string")throw new TypeError("[nuxt] [asyncData] key must be a string.");if(typeof l!="function")throw new TypeError("[nuxt] [asyncData] handler must be a function.");a.server=a.server??!0,a.default=a.default??O,a.lazy=a.lazy??!1,a.immediate=a.immediate??!0;const e=v(),u=()=>e.isHydrating?e.payload.data[r]:e.static.data[r],d=()=>u()!==void 0;e._asyncData[r]||(e._asyncData[r]={data:y(u()??((h=a.default)==null?void 0:h.call(a))??null),pending:y(!d()),error:y(e.payload._errors[r]?_(e.payload._errors[r]):null)});const n={...e._asyncData[r]};n.refresh=n.execute=(o={})=>{if(e._asyncDataPromises[r]){if(o.dedupe===!1)return e._asyncDataPromises[r];e._asyncDataPromises[r].cancelled=!0}if(o._initial&&d())return u();n.pending.value=!0;const i=new Promise((t,c)=>{try{t(l(e))}catch(P){c(P)}}).then(t=>{if(i.cancelled)return e._asyncDataPromises[r];a.transform&&(t=a.transform(t)),a.pick&&(t=k(t,a.pick)),n.data.value=t,n.error.value=null}).catch(t=>{var c;if(i.cancelled)return e._asyncDataPromises[r];n.error.value=t,n.data.value=b(((c=a.default)==null?void 0:c.call(a))??null)}).finally(()=>{i.cancelled||(n.pending.value=!1,e.payload.data[r]=n.data.value,n.error.value&&(e.payload._errors[r]=_(n.error.value)),delete e._asyncDataPromises[r])});return e._asyncDataPromises[r]=i,e._asyncDataPromises[r]};const p=()=>n.refresh({_initial:!0}),g=a.server!==!1&&e.payload.serverRendered;{const o=C();if(o&&!o._nuxtOnBeforeMountCbs){o._nuxtOnBeforeMountCbs=[];const t=o._nuxtOnBeforeMountCbs;o&&(x(()=>{t.forEach(c=>{c()}),t.splice(0,t.length)}),D(()=>t.splice(0,t.length)))}g&&e.isHydrating&&d()?n.pending.value=!1:o&&(e.payload.serverRendered&&e.isHydrating||a.lazy)&&a.immediate?o._nuxtOnBeforeMountCbs.push(p):a.immediate&&p(),a.watch&&w(a.watch,()=>n.refresh());const i=e.hook("app:data:refresh",t=>{if(!t||t.includes(r))return n.refresh()});o&&D(i)}const m=Promise.resolve(e._asyncDataPromises[r]).then(()=>n);return Object.assign(m,n),m}async function H(s){const f=s?Array.isArray(s)?s:[s]:void 0;await v().hooks.callHookParallel("app:data:refresh",f)}function k(s,f){const r={};for(const l of f)r[l]=s[l];return r}export{H as r,E as u}; diff --git a/docs/.output/public/_nuxt/client-db.a6af4843.js b/docs/.output/public/_nuxt/client-db.514bef37.js similarity index 98% rename from docs/.output/public/_nuxt/client-db.a6af4843.js rename to docs/.output/public/_nuxt/client-db.514bef37.js index 55e72222..6e5a448c 100644 --- a/docs/.output/public/_nuxt/client-db.a6af4843.js +++ b/docs/.output/public/_nuxt/client-db.514bef37.js @@ -1 +1 @@ -import{d as j,u as M}from"./cookie.5bbb58d5.js";import{b as K,u as T,w as W}from"./app.config.4114fca6.js";import{g as B,a as $,e as A,s as J,b as x,w as b,d as H,c as q}from"./query.c3f7607a.js";import{p as G}from"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";const Z=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}};function F(t){return!t||typeof t.then!="function"?Promise.resolve(t):t}function p(t,...e){try{return F(t(...e))}catch(n){return Promise.reject(n)}}function k(t){const e=typeof t;return t===null||e!=="object"&&e!=="function"}function Q(t){const e=Object.getPrototypeOf(t);return!e||e.isPrototypeOf(Object)}function z(t){if(k(t))return String(t);if(Q(t)||Array.isArray(t))return JSON.stringify(t);if(typeof t.toJSON=="function")return z(t.toJSON());throw new Error("[unstorage] Cannot stringify value!")}function D(){if(typeof Buffer===void 0)throw new TypeError("[unstorage] Buffer is not supported!")}const _="base64:";function V(t){if(typeof t=="string")return t;D();const e=Buffer.from(t).toString("base64");return _+e}function X(t){return typeof t!="string"||!t.startsWith(_)?t:(D(),Buffer.from(t.slice(_.length),"base64"))}const ee=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}},te=["hasItem","getItem","setItem","removeItem","getMeta","setMeta","removeMeta","getKeys","clear","mount","unmount"];function re(t,e){if(e=I(e),!e)return t;const n={...t};for(const i of te)n[i]=(a="",...s)=>t[i](e+a,...s);return n.getKeys=(i="",...a)=>t.getKeys(e+i,...a).then(s=>s.map(c=>c.slice(e.length))),n}function g(t){return t?t.split("?")[0].replace(/[/\\]/g,":").replace(/:+/g,":").replace(/^:|:$/g,""):""}function I(t){return t=g(t),t?t+":":""}function ne(t={}){const e={mounts:{"":t.driver||ee()},mountpoints:[""],watching:!1,watchListeners:[],unwatch:{}},n=r=>{for(const u of e.mountpoints)if(r.startsWith(u))return{relativeKey:r.slice(u.length),driver:e.mounts[u]};return{relativeKey:r,driver:e.mounts[""]}},i=(r,u)=>e.mountpoints.filter(o=>o.startsWith(r)||u&&r.startsWith(o)).map(o=>({relativeBase:r.length>o.length?r.slice(o.length):void 0,mountpoint:o,driver:e.mounts[o]})),a=(r,u)=>{if(e.watching){u=g(u);for(const o of e.watchListeners)o(r,u)}},s=async()=>{if(!e.watching){e.watching=!0;for(const r in e.mounts)e.unwatch[r]=await C(e.mounts[r],a,r)}},c=async()=>{if(e.watching){for(const r in e.unwatch)await e.unwatch[r]();e.unwatch={},e.watching=!1}},m={hasItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.hasItem,u)},getItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.getItem,u).then(l=>j(l))},getItemRaw(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return o.getItemRaw?p(o.getItemRaw,u):p(o.getItem,u).then(l=>X(l))},async setItem(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);l.setItem&&(await p(l.setItem,o,z(u)),l.watch||a("update",r))},async setItemRaw(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);if(l.setItemRaw)await p(l.setItemRaw,o,u);else if(l.setItem)await p(l.setItem,o,V(u));else return;l.watch||a("update",r)},async removeItem(r,u=!0){r=g(r);const{relativeKey:o,driver:l}=n(r);l.removeItem&&(await p(l.removeItem,o),u&&await p(l.removeItem,o+"$"),l.watch||a("remove",r))},async getMeta(r,u){r=g(r);const{relativeKey:o,driver:l}=n(r),h=Object.create(null);if(l.getMeta&&Object.assign(h,await p(l.getMeta,o)),!u){const f=await p(l.getItem,o+"$").then(d=>j(d));f&&typeof f=="object"&&(typeof f.atime=="string"&&(f.atime=new Date(f.atime)),typeof f.mtime=="string"&&(f.mtime=new Date(f.mtime)),Object.assign(h,f))}return h},setMeta(r,u){return this.setItem(r+"$",u)},removeMeta(r){return this.removeItem(r+"$")},async getKeys(r){r=I(r);const u=i(r,!0);let o=[];const l=[];for(const h of u){const d=(await p(h.driver.getKeys,h.relativeBase)).map(y=>h.mountpoint+g(y)).filter(y=>!o.some(w=>y.startsWith(w)));l.push(...d),o=[h.mountpoint,...o.filter(y=>!y.startsWith(h.mountpoint))]}return r?l.filter(h=>h.startsWith(r)&&!h.endsWith("$")):l.filter(h=>!h.endsWith("$"))},async clear(r){r=I(r),await Promise.all(i(r,!1).map(async u=>{if(u.driver.clear)return p(u.driver.clear);if(u.driver.removeItem){const o=await u.driver.getKeys();return Promise.all(o.map(l=>u.driver.removeItem(l)))}}))},async dispose(){await Promise.all(Object.values(e.mounts).map(r=>P(r)))},async watch(r){return await s(),e.watchListeners.push(r),async()=>{e.watchListeners=e.watchListeners.filter(u=>u!==r),e.watchListeners.length===0&&await c()}},async unwatch(){e.watchListeners=[],await c()},mount(r,u){if(r=I(r),r&&e.mounts[r])throw new Error(`already mounted at ${r}`);return r&&(e.mountpoints.push(r),e.mountpoints.sort((o,l)=>l.length-o.length)),e.mounts[r]=u,e.watching&&Promise.resolve(C(u,a,r)).then(o=>{e.unwatch[r]=o}).catch(console.error),m},async unmount(r,u=!0){r=I(r),!(!r||!e.mounts[r])&&(e.watching&&r in e.unwatch&&(e.unwatch[r](),delete e.unwatch[r]),u&&await P(e.mounts[r]),e.mountpoints=e.mountpoints.filter(o=>o!==r),delete e.mounts[r])}};return m}function C(t,e,n){return t.watch?t.watch((i,a)=>e(i,n+a)):()=>{}}async function P(t){typeof t.dispose=="function"&&await p(t.dispose)}function ie(t={}){const e=ae(n,t.operators);function n(i,a){return typeof a!="object"||a instanceof RegExp?e.$eq(i,a):Object.keys(a||{}).every(s=>{const c=a[s];if(s.startsWith("$")&&e[s]){const m=e[s];return typeof m=="function"?m(i,c):!1}return n(B(i,s),c)})}return n}function ae(t,e={}){return{$match:(n,i)=>t(n,i),$eq:(n,i)=>i instanceof RegExp?i.test(n):n===i,$ne:(n,i)=>i instanceof RegExp?!i.test(n):n!==i,$not:(n,i)=>!t(n,i),$and:(n,i)=>($(i,"$and requires an array as condition"),i.every(a=>t(n,a))),$or:(n,i)=>($(i,"$or requires an array as condition"),i.some(a=>t(n,a))),$in:(n,i)=>A(i).some(a=>Array.isArray(n)?t(n,{$contains:a}):t(n,a)),$contains:(n,i)=>(n=Array.isArray(n)?n:String(n),A(i).every(a=>n.includes(a))),$icontains:(n,i)=>{if(typeof i!="string")throw new TypeError("$icontains requires a string, use $contains instead");return n=String(n).toLocaleLowerCase(),A(i).every(a=>n.includes(a.toLocaleLowerCase()))},$containsAny:(n,i)=>($(i,"$containsAny requires an array as condition"),n=Array.isArray(n)?n:String(n),i.some(a=>n.includes(a))),$exists:(n,i)=>i?typeof n<"u":typeof n>"u",$type:(n,i)=>typeof n===String(i),$regex:(n,i)=>{if(!(i instanceof RegExp)){const a=String(i).match(/\/(.*)\/([dgimsuy]*)$/);i=a?new RegExp(a[1],a[2]||""):new RegExp(i)}return i.test(String(n||""))},$lt:(n,i)=>nn<=i,$gt:(n,i)=>n>i,$gte:(n,i)=>n>=i,...e||{}}}function R(t){const e=ie(),n=(a,{query:s,before:c,after:m})=>{const r=typeof s=="string"?{_path:s}:s,u=a.findIndex(l=>e(l,r));c=c||1,m=m||1;const o=new Array(c+m).fill(null,0);return u===-1?o:o.map((l,h)=>a[u-c+h+Number(h>=c)]||null)},i=[(a,s)=>a.filter(c=>A(s.where).every(m=>e(c,m))),(a,s)=>A(s.sort).forEach(c=>J(a,c)),(a,s)=>s.surround?n(a,s.surround):a,(a,s)=>s.skip?a.slice(s.skip):a,(a,s)=>s.limit?a.slice(0,s.limit):a,(a,s)=>x(b(s.without))(a),(a,s)=>x(H(s.only))(a)];return async a=>{const s=await t(),c=a.params(),m=i.reduce((r,u)=>u(r,c)||r,s);return c.first?m[0]:m}}var se=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},L={},oe={get exports(){return L},set exports(t){L=t}};(function(t,e){(function(n,i,a){t.exports=a(),t.exports.default=a()})("slugify",se,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),i=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function a(s,c){if(typeof s!="string")throw new Error("slugify: string argument expected");c=typeof c=="string"?{replacement:c}:c||{};var m=i[c.locale]||{},r=c.replacement===void 0?"-":c.replacement,u=c.trim===void 0?!0:c.trim,o=s.normalize().split("").reduce(function(l,h){var f=m[h]||n[h]||h;return f===r&&(f=" "),l+f.replace(c.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return c.strict&&(o=o.replace(/[^A-Za-z0-9\s]/g,"")),u&&(o=o.trim()),o=o.replace(/\s+/g,r),c.lower&&(o=o.toLowerCase()),o}return a.extend=function(s){Object.assign(n,s)},a})})(oe);const ce=t=>t.split(/[\s-]/g).map(G).join(" ");function ue(t,e){const{navigation:n}=K().content,i=s=>({...fe(["title",...n.fields])(s),...me(s==null?void 0:s.navigation)?s.navigation:{}}),a=t.sort((s,c)=>s._path.localeCompare(c._path)).reduce((s,c)=>{const m=c._path.substring(1).split("/"),r=c._id.split(":").slice(1),u=!!r[r.length-1].match(/([1-9][0-9]*\.)?index.md/g),o=f=>({title:f.title,_path:f._path,_file:f._file,children:[],...i(f),...f._draft?{_draft:!0}:{}}),l=o(c);if(u){const f=e[l._path];if(typeof(f==null?void 0:f.navigation)<"u"&&!(f!=null&&f.navigation))return s;if(c._path!=="/"){const d=o(c);l.children.push(d)}Object.assign(l,i(f))}return m.length===1?(s.push(l),s):(m.slice(0,-1).reduce((f,d,y)=>{const w="/"+m.slice(0,y+1).join("/"),v=e[w];if(typeof(v==null?void 0:v.navigation)<"u"&&!v.navigation)return[];let O=f.find(N=>N._path===w);return O||(O={title:ce(d),_path:w,_file:c._file,children:[],...i(v)},f.push(O)),O.children},s).push(l),s)},[]);return U(a)}const le=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"});function U(t){const e=t.sort((n,i)=>le.compare(n._file,i._file));for(const n of e)n.children.length?U(n.children):delete n.children,delete n._file;return t}function fe(t){return e=>(e=e||{},t&&t.length?t.filter(n=>typeof e[n]<"u").reduce((n,i)=>Object.assign(n,{[i]:e[i]}),{}):e)}function me(t){return Object.prototype.toString.call(t)==="[object Object]"}const he=t=>W(t,K().public.content.api.baseURL),pe=re(ne({driver:Z()}),"@content"),Y=()=>M("previewToken").value;function ge(t){async function e(){const n=new Set(await t.getKeys("cache:")),i=Y();if(i){(await t.getItem(`${i}$`).then(r=>r||{})).ignoreBuiltContents&&n.clear();const c=await t.getKeys(`${i}:`),m=await Promise.all(c.map(r=>t.getItem(r)));for(const r of m)n.delete(`cache:${r._id}`),r.__deleted||n.add(`${i}:${r._id}`)}return await Promise.all(Array.from(n).map(s=>t.getItem(s)))}return{storage:t,fetch:R(e),query:n=>q(R(e),n)}}let S=null,E=null;async function de(){return E?await E:S||(E=ye(),S=await E),S}async function ye(){const t=T(),{content:e}=K().public,n=ge(pe),i=await n.storage.getItem("integrity");if(e.integrity!==+(i||0)){const{contents:a,navigation:s}=await $fetch(he(e.integrity?`cache.${e.integrity}.json`:"cache.json"));await Promise.all(a.map(c=>n.storage.setItem(`cache:${c._id}`,c))),await n.storage.setItem("navigation",s),await n.storage.setItem("integrity",e.integrity)}return await t.callHook("content:storage",n.storage),n}async function Ee(t){const e=await de();if(!Y()&&Object.keys(t||{}).length===0)return e.storage.getItem("navigation");const n=await e.query(t).where({_partial:!1,navigation:{$ne:!1}}).find(),a=(await e.query().where({_path:/\/_dir$/i,_partial:!0}).find()).reduce((s,c)=>{var r;((r=c.title)==null?void 0:r.toLowerCase())==="dir"&&(c.title=void 0);const m=c._path.split("/").slice(0,-1).join("/")||"/";return s[m]={...c,...c.body},s},{});return ue(n,a)}export{pe as contentStorage,ge as createDB,Ee as generateNavigation,Y as getPreview,de as useContentDatabase}; +import{d as j,u as M}from"./cookie.b9cff64d.js";import{f as K,u as T,w as W}from"./app.config.f41ab05d.js";import{g as B,a as $,e as A,s as J,b as x,w as H,d as b,c as q}from"./query.c3f7607a.js";import{p as G}from"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";const Z=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}};function F(t){return!t||typeof t.then!="function"?Promise.resolve(t):t}function p(t,...e){try{return F(t(...e))}catch(n){return Promise.reject(n)}}function k(t){const e=typeof t;return t===null||e!=="object"&&e!=="function"}function Q(t){const e=Object.getPrototypeOf(t);return!e||e.isPrototypeOf(Object)}function z(t){if(k(t))return String(t);if(Q(t)||Array.isArray(t))return JSON.stringify(t);if(typeof t.toJSON=="function")return z(t.toJSON());throw new Error("[unstorage] Cannot stringify value!")}function D(){if(typeof Buffer===void 0)throw new TypeError("[unstorage] Buffer is not supported!")}const _="base64:";function V(t){if(typeof t=="string")return t;D();const e=Buffer.from(t).toString("base64");return _+e}function X(t){return typeof t!="string"||!t.startsWith(_)?t:(D(),Buffer.from(t.slice(_.length),"base64"))}const ee=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}},te=["hasItem","getItem","setItem","removeItem","getMeta","setMeta","removeMeta","getKeys","clear","mount","unmount"];function re(t,e){if(e=I(e),!e)return t;const n={...t};for(const i of te)n[i]=(a="",...s)=>t[i](e+a,...s);return n.getKeys=(i="",...a)=>t.getKeys(e+i,...a).then(s=>s.map(c=>c.slice(e.length))),n}function g(t){return t?t.split("?")[0].replace(/[/\\]/g,":").replace(/:+/g,":").replace(/^:|:$/g,""):""}function I(t){return t=g(t),t?t+":":""}function ne(t={}){const e={mounts:{"":t.driver||ee()},mountpoints:[""],watching:!1,watchListeners:[],unwatch:{}},n=r=>{for(const u of e.mountpoints)if(r.startsWith(u))return{relativeKey:r.slice(u.length),driver:e.mounts[u]};return{relativeKey:r,driver:e.mounts[""]}},i=(r,u)=>e.mountpoints.filter(o=>o.startsWith(r)||u&&r.startsWith(o)).map(o=>({relativeBase:r.length>o.length?r.slice(o.length):void 0,mountpoint:o,driver:e.mounts[o]})),a=(r,u)=>{if(e.watching){u=g(u);for(const o of e.watchListeners)o(r,u)}},s=async()=>{if(!e.watching){e.watching=!0;for(const r in e.mounts)e.unwatch[r]=await C(e.mounts[r],a,r)}},c=async()=>{if(e.watching){for(const r in e.unwatch)await e.unwatch[r]();e.unwatch={},e.watching=!1}},m={hasItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.hasItem,u)},getItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.getItem,u).then(l=>j(l))},getItemRaw(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return o.getItemRaw?p(o.getItemRaw,u):p(o.getItem,u).then(l=>X(l))},async setItem(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);l.setItem&&(await p(l.setItem,o,z(u)),l.watch||a("update",r))},async setItemRaw(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);if(l.setItemRaw)await p(l.setItemRaw,o,u);else if(l.setItem)await p(l.setItem,o,V(u));else return;l.watch||a("update",r)},async removeItem(r,u=!0){r=g(r);const{relativeKey:o,driver:l}=n(r);l.removeItem&&(await p(l.removeItem,o),u&&await p(l.removeItem,o+"$"),l.watch||a("remove",r))},async getMeta(r,u){r=g(r);const{relativeKey:o,driver:l}=n(r),h=Object.create(null);if(l.getMeta&&Object.assign(h,await p(l.getMeta,o)),!u){const f=await p(l.getItem,o+"$").then(d=>j(d));f&&typeof f=="object"&&(typeof f.atime=="string"&&(f.atime=new Date(f.atime)),typeof f.mtime=="string"&&(f.mtime=new Date(f.mtime)),Object.assign(h,f))}return h},setMeta(r,u){return this.setItem(r+"$",u)},removeMeta(r){return this.removeItem(r+"$")},async getKeys(r){r=I(r);const u=i(r,!0);let o=[];const l=[];for(const h of u){const d=(await p(h.driver.getKeys,h.relativeBase)).map(y=>h.mountpoint+g(y)).filter(y=>!o.some(w=>y.startsWith(w)));l.push(...d),o=[h.mountpoint,...o.filter(y=>!y.startsWith(h.mountpoint))]}return r?l.filter(h=>h.startsWith(r)&&!h.endsWith("$")):l.filter(h=>!h.endsWith("$"))},async clear(r){r=I(r),await Promise.all(i(r,!1).map(async u=>{if(u.driver.clear)return p(u.driver.clear);if(u.driver.removeItem){const o=await u.driver.getKeys();return Promise.all(o.map(l=>u.driver.removeItem(l)))}}))},async dispose(){await Promise.all(Object.values(e.mounts).map(r=>P(r)))},async watch(r){return await s(),e.watchListeners.push(r),async()=>{e.watchListeners=e.watchListeners.filter(u=>u!==r),e.watchListeners.length===0&&await c()}},async unwatch(){e.watchListeners=[],await c()},mount(r,u){if(r=I(r),r&&e.mounts[r])throw new Error(`already mounted at ${r}`);return r&&(e.mountpoints.push(r),e.mountpoints.sort((o,l)=>l.length-o.length)),e.mounts[r]=u,e.watching&&Promise.resolve(C(u,a,r)).then(o=>{e.unwatch[r]=o}).catch(console.error),m},async unmount(r,u=!0){r=I(r),!(!r||!e.mounts[r])&&(e.watching&&r in e.unwatch&&(e.unwatch[r](),delete e.unwatch[r]),u&&await P(e.mounts[r]),e.mountpoints=e.mountpoints.filter(o=>o!==r),delete e.mounts[r])}};return m}function C(t,e,n){return t.watch?t.watch((i,a)=>e(i,n+a)):()=>{}}async function P(t){typeof t.dispose=="function"&&await p(t.dispose)}function ie(t={}){const e=ae(n,t.operators);function n(i,a){return typeof a!="object"||a instanceof RegExp?e.$eq(i,a):Object.keys(a||{}).every(s=>{const c=a[s];if(s.startsWith("$")&&e[s]){const m=e[s];return typeof m=="function"?m(i,c):!1}return n(B(i,s),c)})}return n}function ae(t,e={}){return{$match:(n,i)=>t(n,i),$eq:(n,i)=>i instanceof RegExp?i.test(n):n===i,$ne:(n,i)=>i instanceof RegExp?!i.test(n):n!==i,$not:(n,i)=>!t(n,i),$and:(n,i)=>($(i,"$and requires an array as condition"),i.every(a=>t(n,a))),$or:(n,i)=>($(i,"$or requires an array as condition"),i.some(a=>t(n,a))),$in:(n,i)=>A(i).some(a=>Array.isArray(n)?t(n,{$contains:a}):t(n,a)),$contains:(n,i)=>(n=Array.isArray(n)?n:String(n),A(i).every(a=>n.includes(a))),$icontains:(n,i)=>{if(typeof i!="string")throw new TypeError("$icontains requires a string, use $contains instead");return n=String(n).toLocaleLowerCase(),A(i).every(a=>n.includes(a.toLocaleLowerCase()))},$containsAny:(n,i)=>($(i,"$containsAny requires an array as condition"),n=Array.isArray(n)?n:String(n),i.some(a=>n.includes(a))),$exists:(n,i)=>i?typeof n<"u":typeof n>"u",$type:(n,i)=>typeof n===String(i),$regex:(n,i)=>{if(!(i instanceof RegExp)){const a=String(i).match(/\/(.*)\/([dgimsuy]*)$/);i=a?new RegExp(a[1],a[2]||""):new RegExp(i)}return i.test(String(n||""))},$lt:(n,i)=>nn<=i,$gt:(n,i)=>n>i,$gte:(n,i)=>n>=i,...e||{}}}function R(t){const e=ie(),n=(a,{query:s,before:c,after:m})=>{const r=typeof s=="string"?{_path:s}:s,u=a.findIndex(l=>e(l,r));c=c||1,m=m||1;const o=new Array(c+m).fill(null,0);return u===-1?o:o.map((l,h)=>a[u-c+h+Number(h>=c)]||null)},i=[(a,s)=>a.filter(c=>A(s.where).every(m=>e(c,m))),(a,s)=>A(s.sort).forEach(c=>J(a,c)),(a,s)=>s.surround?n(a,s.surround):a,(a,s)=>s.skip?a.slice(s.skip):a,(a,s)=>s.limit?a.slice(0,s.limit):a,(a,s)=>x(H(s.without))(a),(a,s)=>x(b(s.only))(a)];return async a=>{const s=await t(),c=a.params(),m=i.reduce((r,u)=>u(r,c)||r,s);return c.first?m[0]:m}}var se=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},L={},oe={get exports(){return L},set exports(t){L=t}};(function(t,e){(function(n,i,a){t.exports=a(),t.exports.default=a()})("slugify",se,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),i=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function a(s,c){if(typeof s!="string")throw new Error("slugify: string argument expected");c=typeof c=="string"?{replacement:c}:c||{};var m=i[c.locale]||{},r=c.replacement===void 0?"-":c.replacement,u=c.trim===void 0?!0:c.trim,o=s.normalize().split("").reduce(function(l,h){var f=m[h]||n[h]||h;return f===r&&(f=" "),l+f.replace(c.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return c.strict&&(o=o.replace(/[^A-Za-z0-9\s]/g,"")),u&&(o=o.trim()),o=o.replace(/\s+/g,r),c.lower&&(o=o.toLowerCase()),o}return a.extend=function(s){Object.assign(n,s)},a})})(oe);const ce=t=>t.split(/[\s-]/g).map(G).join(" ");function ue(t,e){const{navigation:n}=K().content,i=s=>({...fe(["title",...n.fields])(s),...me(s==null?void 0:s.navigation)?s.navigation:{}}),a=t.sort((s,c)=>s._path.localeCompare(c._path)).reduce((s,c)=>{const m=c._path.substring(1).split("/"),r=c._id.split(":").slice(1),u=!!r[r.length-1].match(/([1-9][0-9]*\.)?index.md/g),o=f=>({title:f.title,_path:f._path,_file:f._file,children:[],...i(f),...f._draft?{_draft:!0}:{}}),l=o(c);if(u){const f=e[l._path];if(typeof(f==null?void 0:f.navigation)<"u"&&!(f!=null&&f.navigation))return s;if(c._path!=="/"){const d=o(c);l.children.push(d)}Object.assign(l,i(f))}return m.length===1?(s.push(l),s):(m.slice(0,-1).reduce((f,d,y)=>{const w="/"+m.slice(0,y+1).join("/"),v=e[w];if(typeof(v==null?void 0:v.navigation)<"u"&&!v.navigation)return[];let O=f.find(N=>N._path===w);return O||(O={title:ce(d),_path:w,_file:c._file,children:[],...i(v)},f.push(O)),O.children},s).push(l),s)},[]);return U(a)}const le=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"});function U(t){const e=t.sort((n,i)=>le.compare(n._file,i._file));for(const n of e)n.children.length?U(n.children):delete n.children,delete n._file;return t}function fe(t){return e=>(e=e||{},t&&t.length?t.filter(n=>typeof e[n]<"u").reduce((n,i)=>Object.assign(n,{[i]:e[i]}),{}):e)}function me(t){return Object.prototype.toString.call(t)==="[object Object]"}const he=t=>W(t,K().public.content.api.baseURL),pe=re(ne({driver:Z()}),"@content"),Y=()=>M("previewToken").value;function ge(t){async function e(){const n=new Set(await t.getKeys("cache:")),i=Y();if(i){(await t.getItem(`${i}$`).then(r=>r||{})).ignoreBuiltContents&&n.clear();const c=await t.getKeys(`${i}:`),m=await Promise.all(c.map(r=>t.getItem(r)));for(const r of m)n.delete(`cache:${r._id}`),r.__deleted||n.add(`${i}:${r._id}`)}return await Promise.all(Array.from(n).map(s=>t.getItem(s)))}return{storage:t,fetch:R(e),query:n=>q(R(e),n)}}let S=null,E=null;async function de(){return E?await E:S||(E=ye(),S=await E),S}async function ye(){const t=T(),{content:e}=K().public,n=ge(pe),i=await n.storage.getItem("integrity");if(e.integrity!==+(i||0)){const{contents:a,navigation:s}=await $fetch(he(e.integrity?`cache.${e.integrity}.json`:"cache.json"));await Promise.all(a.map(c=>n.storage.setItem(`cache:${c._id}`,c))),await n.storage.setItem("navigation",s),await n.storage.setItem("integrity",e.integrity)}return await t.callHook("content:storage",n.storage),n}async function Ee(t){const e=await de();if(!Y()&&Object.keys(t||{}).length===0)return e.storage.getItem("navigation");const n=await e.query(t).where({_partial:!1,navigation:{$ne:!1}}).find(),a=(await e.query().where({_path:/\/_dir$/i,_partial:!0}).find()).reduce((s,c)=>{var r;((r=c.title)==null?void 0:r.toLowerCase())==="dir"&&(c.title=void 0);const m=c._path.split("/").slice(0,-1).join("/")||"/";return s[m]={...c,...c.body},s},{});return ue(n,a)}export{pe as contentStorage,ge as createDB,Ee as generateNavigation,Y as getPreview,de as useContentDatabase}; diff --git a/docs/.output/public/_nuxt/cookie.5bbb58d5.js b/docs/.output/public/_nuxt/cookie.b9cff64d.js similarity index 97% rename from docs/.output/public/_nuxt/cookie.5bbb58d5.js rename to docs/.output/public/_nuxt/cookie.b9cff64d.js index cd81047f..80de4cbc 100644 --- a/docs/.output/public/_nuxt/cookie.5bbb58d5.js +++ b/docs/.output/public/_nuxt/cookie.b9cff64d.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";import{r as l,a as m}from"./runtime-core.esm-bundler.6894272a.js";const w=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,h=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,S=/^\s*["[{]|^\s*-?\d[\d.]{0,14}\s*$/;function y(e,i){if(e!=="__proto__"&&!(e==="constructor"&&i&&typeof i=="object"&&"prototype"in i))return i}function g(e,i={}){if(typeof e!="string")return e;const t=e.toLowerCase().trim();if(t==="true")return!0;if(t==="false")return!1;if(t==="null")return null;if(t==="nan")return Number.NaN;if(t==="infinity")return Number.POSITIVE_INFINITY;if(t!=="undefined"){if(!S.test(e)){if(i.strict)throw new SyntaxError("Invalid JSON");return e}try{return w.test(e)||h.test(e)?JSON.parse(e,y):JSON.parse(e)}catch(r){if(i.strict)throw r;return e}}}const x=decodeURIComponent,C=encodeURIComponent,E=/; */,u=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function k(e,i){if(typeof e!="string")throw new TypeError("argument str must be a string");let t={},r=i||{},n=e.split(E),c=r.decode||x;for(let o=0;og(decodeURIComponent(e)),encode:e=>encodeURIComponent(typeof e=="string"?e:JSON.stringify(e))};function O(e,i){var c;const t={...N,...i},r=b(t)||{},n=l(r[e]??((c=t.default)==null?void 0:c.call(t)));{const o=()=>{R(e,n.value,t)};t.watch?m(n,o,{deep:t.watch!=="shallow"}):o()}return n}function b(e={}){return k(document.cookie,e)}function I(e,i,t={}){return i==null?d(e,i,{...t,maxAge:-1}):d(e,i,t)}function R(e,i,t={}){document.cookie=I(e,i,t)}export{g as d,O as u}; +import"./app.config.f41ab05d.js";import{r as l,a as m}from"./runtime-core.esm-bundler.6894272a.js";const w=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,h=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,S=/^\s*["[{]|^\s*-?\d[\d.]{0,14}\s*$/;function y(e,i){if(e!=="__proto__"&&!(e==="constructor"&&i&&typeof i=="object"&&"prototype"in i))return i}function g(e,i={}){if(typeof e!="string")return e;const t=e.toLowerCase().trim();if(t==="true")return!0;if(t==="false")return!1;if(t==="null")return null;if(t==="nan")return Number.NaN;if(t==="infinity")return Number.POSITIVE_INFINITY;if(t!=="undefined"){if(!S.test(e)){if(i.strict)throw new SyntaxError("Invalid JSON");return e}try{return w.test(e)||h.test(e)?JSON.parse(e,y):JSON.parse(e)}catch(r){if(i.strict)throw r;return e}}}const x=decodeURIComponent,C=encodeURIComponent,E=/; */,u=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function k(e,i){if(typeof e!="string")throw new TypeError("argument str must be a string");let t={},r=i||{},n=e.split(E),c=r.decode||x;for(let o=0;og(decodeURIComponent(e)),encode:e=>encodeURIComponent(typeof e=="string"?e:JSON.stringify(e))};function O(e,i){var c;const t={...N,...i},r=b(t)||{},n=l(r[e]??((c=t.default)==null?void 0:c.call(t)));{const o=()=>{R(e,n.value,t)};t.watch?m(n,o,{deep:t.watch!=="shallow"}):o()}return n}function b(e={}){return k(document.cookie,e)}function I(e,i,t={}){return i==null?d(e,i,{...t,maxAge:-1}):d(e,i,t)}function R(e,i,t={}){document.cookie=I(e,i,t)}export{g as d,O as u}; diff --git a/docs/.output/public/_nuxt/default.440db00d.js b/docs/.output/public/_nuxt/default.440db00d.js deleted file mode 100644 index 8c8f4f20..00000000 --- a/docs/.output/public/_nuxt/default.440db00d.js +++ /dev/null @@ -1 +0,0 @@ -import r from"./DocsPageLayout.8e541ec6.js";import{a as m}from"./Container.f1017aa2.js";import{q as p,B as i,C as e,P as n}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAside.44ffd29b.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";/* empty css */import"./ProseCodeInline.dca1a534.js";import"./Alert.443f6167.js";import"./ContentSlot.7e1a494f.js";/* empty css */import"./DocsPageBottom.a96d3867.js";import"./ProseA.c8de8b63.js";/* empty css */import"./EditOnLink.vue.21b8aa9d.js";/* empty css */import"./DocsPrevNext.adb795e8.js";/* empty css */import"./DocsToc.03cf2013.js";import"./DocsTocLinks.c11364e4.js";/* empty css *//* empty css *//* empty css */const a={};function c(o,s){const t=r;return p(),i(t,null,{default:e(()=>[n(o.$slots,"default")]),_:3})}const G=m(a,[["render",c]]);export{G as default}; diff --git a/docs/.output/public/_nuxt/default.aab8fc36.js b/docs/.output/public/_nuxt/default.aab8fc36.js new file mode 100644 index 00000000..63385ff4 --- /dev/null +++ b/docs/.output/public/_nuxt/default.aab8fc36.js @@ -0,0 +1 @@ +import r from"./DocsPageLayout.d352cf62.js";import{a as m}from"./Container.f1017aa2.js";import{q as p,B as i,C as e,P as n}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAside.08a0955d.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";/* empty css */import"./ProseCodeInline.dca1a534.js";import"./Alert.41cb256b.js";import"./ContentSlot.c5067a4f.js";/* empty css */import"./DocsPageBottom.b38ecc43.js";import"./ProseA.a4d07cc8.js";/* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css */import"./DocsPrevNext.2b9ea48f.js";/* empty css */import"./DocsToc.55846f28.js";import"./DocsTocLinks.644c91ee.js";/* empty css *//* empty css *//* empty css */const a={};function c(o,s){const t=r;return p(),i(t,null,{default:e(()=>[n(o.$slots,"default")]),_:3})}const G=m(a,[["render",c]]);export{G as default}; diff --git a/docs/.output/public/_nuxt/document-driven.07c16582.js b/docs/.output/public/_nuxt/document-driven.2bce7a6e.js similarity index 50% rename from docs/.output/public/_nuxt/document-driven.07c16582.js rename to docs/.output/public/_nuxt/document-driven.2bce7a6e.js index 4f4c0c75..8060f911 100644 --- a/docs/.output/public/_nuxt/document-driven.07c16582.js +++ b/docs/.output/public/_nuxt/document-driven.2bce7a6e.js @@ -1 +1 @@ -import f from"./DocumentDrivenEmpty.7ceddd7c.js";import d from"./ContentRenderer.51874b59.js";import l from"./DocumentDrivenNotFound.25e8b3dc.js";import v from"./layout.732d57d1.js";import{d as x}from"./useDocus.edcbeab5.js";import{a as C}from"./entry.2d43dc03.js";import{u as A}from"./app.config.4114fca6.js";import{f as y,q as o,x as k,G as n,C as m,u as e,B as r}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentRendererMarkdown.1da6a628.js";import"./cookie.5bbb58d5.js";import"./index.d2b0cb5e.js";import"./ButtonLink.2789431f.js";import"./DocsAsideTree.08d70919.js";import"./Container.f1017aa2.js";import"./ContentSlot.7e1a494f.js";/* empty css *//* empty css */import"./query.c3f7607a.js";const B={class:"document-driven-page"},M=y({__name:"document-driven",setup(D){const{page:t,layout:s}=x();return t.value,C(t),(a,E)=>{const p=f,u=d,_=l,c=v;return o(),k("div",B,[n(c,{name:e(s)||"default"},{default:m(()=>[e(t)?(o(),r(u,{key:e(t)._id,value:e(t)},{empty:m(({value:i})=>[n(p,{value:i},null,8,["value"])]),_:1},8,["value"])):(o(),r(_,{key:1}))]),_:1},8,["name"])])}}});export{M as default}; +import f from"./DocumentDrivenEmpty.7ceddd7c.js";import d from"./ContentRenderer.b7732722.js";import l from"./DocumentDrivenNotFound.66d77c6e.js";import v from"./layout.0a22fa4a.js";import{d as x}from"./useDocus.41ab1ca5.js";import{a as C}from"./entry.f3791b9c.js";import{u as A}from"./app.config.f41ab05d.js";import{f as y,q as o,x as k,G as n,C as m,u as e,B as r}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentRendererMarkdown.e52b62de.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";import"./ButtonLink.91883881.js";import"./DocsAsideTree.b95e55e0.js";import"./Container.f1017aa2.js";import"./ContentSlot.c5067a4f.js";/* empty css *//* empty css */import"./query.c3f7607a.js";const B={class:"document-driven-page"},M=y({__name:"document-driven",setup(D){const{page:t,layout:s}=x();return t.value,C(t),(a,E)=>{const p=f,u=d,_=l,c=v;return o(),k("div",B,[n(c,{name:e(s)||"default"},{default:m(()=>[e(t)?(o(),r(u,{key:e(t)._id,value:e(t)},{empty:m(({value:i})=>[n(p,{value:i},null,8,["value"])]),_:1},8,["value"])):(o(),r(_,{key:1}))]),_:1},8,["name"])])}}});export{M as default}; diff --git a/docs/.output/public/_nuxt/entry.2d43dc03.js b/docs/.output/public/_nuxt/entry.2d43dc03.js deleted file mode 100644 index d81f3b76..00000000 --- a/docs/.output/public/_nuxt/entry.2d43dc03.js +++ /dev/null @@ -1,10 +0,0 @@ -import{w as ze,s as fr,T as un,_ as we,a as dn,b as fn,c as pn,d as hn}from"./DocsAsideTree.08d70919.js";import{d as _n,u as Tt}from"./cookie.5bbb58d5.js";import{w as mn,a as gn,j as et,u as G,c as yn,b as te,d as Q,e as vn,f as qe,g as ue,h as jt,i as je,k as pr,l as ae,m as Ct,n as En,o as bn,p as wn,q as Pn,_ as tt,r as Rn,s as Tn,t as Cn}from"./app.config.4114fca6.js";import{_,p as An,a as X,b as hr}from"./Container.f1017aa2.js";import{t as kn,n as Pe,g as _r,i as he,r as J,w as Ln,a as fe,o as mr,b as Sn,c as On,u as R,d as In,v as gr,e as g,s as yt,f as K,h as D,p as Ie,j as W,k as _e,l as $n,m as dt,K as Dn,S as yr,q as L,x as j,y as At,z as Hn,A as We,F as Ve,B as x,C as re,D as ee,E as V,G as U,T as Mn,H as Vn,I as vr,J as Ge,L as Er,M as xn,N as jn,O as br,P as wr,Q as Bn}from"./runtime-core.esm-bundler.6894272a.js";import{u as kt,a as ke,b as Pr,c as me,d as Lt}from"./useDocus.edcbeab5.js";import{c as Nn}from"./query.c3f7607a.js";import{d as Un}from"./index.d2b0cb5e.js";class Kn extends Error{constructor(){super(...arguments),this.name="FetchError"}}function Fn(e,t,n){let r="";e&&n&&(r=`${n.status} ${n.statusText} (${e.toString()})`),t&&(r=`${t.message} (${r})`);const o=new Kn(r);return Object.defineProperty(o,"request",{get(){return e}}),Object.defineProperty(o,"response",{get(){return n}}),Object.defineProperty(o,"data",{get(){return n&&n._data}}),Object.defineProperty(o,"status",{get(){return n&&n.status}}),Object.defineProperty(o,"statusText",{get(){return n&&n.statusText}}),Object.defineProperty(o,"statusCode",{get(){return n&&n.status}}),Object.defineProperty(o,"statusMessage",{get(){return n&&n.statusText}}),o}const zn=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Bt(e="GET"){return zn.has(e.toUpperCase())}function qn(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const Wn=new Set(["image/svg","application/xml","application/xhtml","application/html"]),Gn=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Qn(e=""){if(!e)return"json";const t=e.split(";").shift();return Gn.test(t)?"json":Wn.has(t)||t.startsWith("text/")?"text":"blob"}const Zn=new Set([408,409,425,429,500,502,503,504]);function Rr(e){const{fetch:t,Headers:n}=e;function r(i){const c=i.error&&i.error.name==="AbortError"||!1;if(i.options.retry!==!1&&!c){const a=typeof i.options.retry=="number"?i.options.retry:Bt(i.options.method)?0:1,u=i.response&&i.response.status||500;if(a>0&&Zn.has(u))return o(i.request,{...i.options,retry:a-1})}const l=Fn(i.request,i.error,i.response);throw Error.captureStackTrace&&Error.captureStackTrace(l,o),l}const o=async function(c,l={}){const a={request:c,options:{...e.defaults,...l},response:void 0,error:void 0};a.options.onRequest&&await a.options.onRequest(a),typeof a.request=="string"&&(a.options.baseURL&&(a.request=mn(a.request,a.options.baseURL)),(a.options.query||a.options.params)&&(a.request=gn(a.request,{...a.options.params,...a.options.query})),a.options.body&&Bt(a.options.method)&&qn(a.options.body)&&(a.options.body=typeof a.options.body=="string"?a.options.body:JSON.stringify(a.options.body),a.options.headers=new n(a.options.headers),a.options.headers.has("content-type")||a.options.headers.set("content-type","application/json"),a.options.headers.has("accept")||a.options.headers.set("accept","application/json"))),a.response=await t(a.request,a.options).catch(async h=>(a.error=h,a.options.onRequestError&&await a.options.onRequestError(a),r(a)));const u=(a.options.parseResponse?"json":a.options.responseType)||Qn(a.response.headers.get("content-type")||"");if(u==="json"){const h=await a.response.text(),d=a.options.parseResponse||_n;a.response._data=d(h)}else u==="stream"?a.response._data=a.response.body:a.response._data=await a.response[u]();return a.options.onResponse&&await a.options.onResponse(a),a.response.status>=400&&a.response.status<600?(a.options.onResponseError&&await a.options.onResponseError(a),r(a)):a.response},s=function(c,l){return o(c,l).then(a=>a._data)};return s.raw=o,s.native=t,s.create=(i={})=>Rr({...e,defaults:{...e.defaults,...i}}),s}const Tr=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),Jn=Tr.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),Yn=Tr.Headers,Xn=Rr({fetch:Jn,Headers:Yn}),eo=Xn,to=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},Qe=to().app,ro=()=>Qe.baseURL,no=()=>Qe.buildAssetsDir,oo=(...e)=>et(Cr(),no(),...e),Cr=(...e)=>{const t=Qe.cdnURL||Qe.baseURL;return e.length?et(t,...e):t};globalThis.__buildAssetsURL=oo,globalThis.__publicAssetsURL=Cr;class vt extends Error{constructor(){super(...arguments),this.statusCode=500,this.fatal=!1,this.unhandled=!1,this.statusMessage=void 0}toJSON(){const t={message:this.message,statusCode:this.statusCode};return this.statusMessage&&(t.statusMessage=this.statusMessage),this.data!==void 0&&(t.data=this.data),t}}vt.__h3_error__=!0;function Et(e){if(typeof e=="string")return new vt(e);if(so(e))return e;const t=new vt(e.message??e.statusMessage,e.cause?{cause:e.cause}:void 0);if("stack"in e)try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}return e.data&&(t.data=e.data),e.statusCode?t.statusCode=e.statusCode:e.status&&(t.statusCode=e.status),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function so(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const rt=()=>kn(G().payload,"error"),Se=e=>{const t=lo(e);try{G().callHook("app:error",t);const r=rt();r.value=r.value||t}catch{throw t}return t},ao=async(e={})=>{const t=G(),n=rt();t.callHook("app:error:cleared",e),e.redirect&&await t.$router.replace(e.redirect),n.value=null},io=e=>!!(e&&typeof e=="object"&&"__nuxt_error"in e),lo=e=>{const t=Et(e);return t.__nuxt_error=!0,t},co=["script","style","noscript"],uo=["base","meta","link","style","script","noscript"],fo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function po(e,t){const{props:n,tag:r}=e;if(fo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ne=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),co.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function St(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function Ar(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||St(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Ne(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Ne(f),a(f);continue}f.$el=r.createElement(p.tag),Ne(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!uo.includes(v))continue;const E=po({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Ne(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let Fe=null;async function ho(e,t={}){function n(){return Fe=null,Ar(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return Fe=Fe||new Promise(o=>r(()=>o(n())))}const _o={__proto__:null,debouncedRenderDOMHead:ho,get domUpdatePromise(){return Fe},hashCode:St,renderDOMHead:Ar},mo=["title","titleTemplate","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],go=["tagPosition","tagPriority","tagDuplicateStrategy"];async function yo(e,t){const n={tag:e,props:{}};return e==="title"||e==="titleTemplate"?(n.children=t instanceof Promise?await t:t,n):(n.props=await vo({...t}),["children","innerHtml","innerHTML"].forEach(r=>{typeof n.props[r]<"u"&&(n.children=n.props[r],typeof n.children=="object"&&(n.children=JSON.stringify(n.children)),delete n.props[r])}),Object.keys(n.props).filter(r=>go.includes(r)).forEach(r=>{n[r]=n.props[r],delete n.props[r]}),typeof n.props.class=="object"&&!Array.isArray(n.props.class)&&(n.props.class=Object.keys(n.props.class).filter(r=>n.props.class[r])),Array.isArray(n.props.class)&&(n.props.class=n.props.class.join(" ")),n.props.content&&Array.isArray(n.props.content)?n.props.content.map((r,o)=>{const s={...n,props:{...n.props}};return s.props.content=r,s.key=`${n.props.name||n.props.property}:${o}`,s}):n)}async function vo(e){for(const t of Object.keys(e))e[t]instanceof Promise&&(e[t]=await e[t]),String(e[t])==="true"?e[t]="":String(e[t])==="false"&&delete e[t];return e}const Nt=e=>{if(typeof e.tagPriority=="number")return e.tagPriority;switch(e.tagPriority){case"critical":return 2;case"high":return 9;case"low":return 12}switch(e.tag){case"base":return-1;case"title":return 1;case"meta":return e.props.charset?-2:e.props["http-equiv"]==="content-security-policy"?0:10;default:return 10}},Eo=(e,t)=>Nt(e)-Nt(t),bo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function wo(e,t){const{props:n,tag:r}=e;if(bo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ut=(e,t)=>e==null?t||null:typeof e=="function"?e(t):e.replace("%s",t??"");function Po(e){let t=e.findIndex(r=>r.tag==="titleTemplate");const n=e.findIndex(r=>r.tag==="title");if(n!==-1&&t!==-1){const r=Ut(e[t].children,e[n].children);r!==null?e[n].children=r||e[n].children:delete e[n]}else if(t!==-1){const r=Ut(e[t].children);r!==null&&(e[t].children=r,e[t].tag="title",t=-1)}return t!==-1&&delete e[t],e.filter(Boolean)}const Ro=e=>{e=e||{};const t=e.dedupeKeys||["hid","vmid","key"];return{hooks:{"tag:normalise":function({tag:n}){t.forEach(o=>{n.props[o]&&(n.key=n.props[o],delete n.props[o])});const r=n.key?`${n.tag}:${n.key}`:wo(n);r&&(n._d=r)},"tags:resolve":function(n){const r={};n.tags.forEach(o=>{let s=o._d||o._p;const i=r[s];if(i){let c=o==null?void 0:o.tagDuplicateStrategy;if(!c&&(o.tag==="htmlAttrs"||o.tag==="bodyAttrs")&&(c="merge"),c==="merge"){const a=i.props;["class","style"].forEach(u=>{o.props[u]&&a[u]&&(u==="style"&&!a[u].endsWith(";")&&(a[u]+=";"),o.props[u]=`${a[u]} ${o.props[u]}`)}),r[s].props={...a,...o.props};return}else o._e===i._e&&(s=o._d=`${s}:${o._p}`);const l=Object.keys(o.props).length;if((l===0||l===1&&typeof o.props["data-h-key"]<"u")&&!o.children){delete r[s];return}}r[s]=o}),n.tags=Object.values(r)}}}},To=()=>({hooks:{"tags:resolve":e=>{const t=n=>{var r;return(r=e.tags.find(o=>o._d===n))==null?void 0:r._p};for(const n of e.tags){if(!n.tagPriority||typeof n.tagPriority=="number")continue;const r=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}];for(const{prefix:o,offset:s}of r)if(n.tagPriority.startsWith(o)){const i=n.tagPriority.replace(o,""),c=t(i);typeof c<"u"&&(n._p=c+s)}}e.tags.sort((n,r)=>n._p-r._p).sort(Eo)}}}),Co=()=>({hooks:{"tags:resolve":e=>{e.tags=Po(e.tags)}}}),Ao=()=>({hooks:{"tag:normalise":function({tag:e}){typeof e.props.body<"u"&&(e.tagPosition="bodyClose",delete e.props.body)}}}),ko=typeof window<"u",Lo=()=>({hooks:{"tag:normalise":e=>{var o,s;const{tag:t,entry:n}=e,r=typeof t.props._dynamic<"u";!kr.includes(t.tag)||!t.key||(t._hash=St(JSON.stringify({tag:t.tag,key:t.key})),!(ko||(s=(o=Sr())==null?void 0:o.resolvedOptions)!=null&&s.document)&&(n._m==="server"||r)&&(t.props[`data-h-${t._hash}`]=""))},"tags:resolve":e=>{e.tags=e.tags.map(t=>(delete t.props._dynamic,t))}}}),So=e=>({hooks:{"entries:updated":function(t){if(typeof(e==null?void 0:e.document)>"u"&&typeof window>"u")return;let n=e==null?void 0:e.delayFn;!n&&typeof requestAnimationFrame<"u"&&(n=requestAnimationFrame),Promise.resolve().then(function(){return _o}).then(({debouncedRenderDOMHead:r})=>{r(t,{document:(e==null?void 0:e.document)||window.document,delayFn:n})})}}}),Oo=()=>{const e=(t,n)=>{const r={},o={};Object.entries(n.props).forEach(([i,c])=>{i.startsWith("on")&&typeof c=="function"?o[i]=c:r[i]=c});let s;return t==="dom"&&n.tag==="script"&&typeof r.src=="string"&&typeof o.onload<"u"&&(s=r.src,delete r.src),{props:r,eventHandlers:o,delayedSrc:s}};return{hooks:{"ssr:render":function(t){t.tags=t.tags.map(n=>(n.props=e("ssr",n).props,n))},"dom:beforeRenderTag":function(t){const{props:n,eventHandlers:r,delayedSrc:o}=e("dom",t.tag);Object.keys(r).length&&(t.tag.props=n,t.tag._eventHandlers=r,t.tag._delayedSrc=o)},"dom:renderTag":function(t){const n=t.$el;if(!t.tag._eventHandlers||!n)return;const r=t.tag.tag==="bodyAttrs"&&typeof window<"u"?window:n;Object.entries(t.tag._eventHandlers).forEach(([o,s])=>{const i=`${t.tag._d||t.tag._p}:${o}`,c=o.slice(2).toLowerCase(),l=`data-h-${c}`;if(delete t.staleSideEffects[i],n.hasAttribute(l))return;const a=s;n.setAttribute(l,""),r.addEventListener(c,a),t.entry&&(t.entry._sde[i]=()=>{r.removeEventListener(c,a),n.removeAttribute(l)})}),t.tag._delayedSrc&&n.setAttribute("src",t.tag._delayedSrc)}}}};function Io(e){return Array.isArray(e)?e:[e]}const kr=["base","meta","link","style","script","noscript"];let Lr;const $o=e=>Lr=e,Sr=()=>Lr,Do=10;async function Ho(e){const t=[];return Object.entries(e.resolvedInput||e.input).filter(([n,r])=>typeof r<"u"&&mo.includes(n)).forEach(([n,r])=>{const o=Io(r);t.push(...o.map(s=>yo(n,s)).flat())}),(await Promise.all(t)).flat().map((n,r)=>(n._e=e._i,n._p=(e._i<[Ro(),To(),Co(),Lo(),Oo(),Ao()],Vo=(e={})=>[So({document:e==null?void 0:e.document,delayFn:e==null?void 0:e.domDelayFn})];function xo(e={}){const t=jo({...e,plugins:[...Vo(e),...(e==null?void 0:e.plugins)||[]]});return $o(t),t}function jo(e={}){let t=[],n={},r=0;const o=yn();e!=null&&e.hooks&&o.addHooks(e.hooks),e.plugins=[...Mo(),...(e==null?void 0:e.plugins)||[]],e.plugins.forEach(c=>c.hooks&&o.addHooks(c.hooks));const s=()=>o.callHook("entries:updated",i),i={resolvedOptions:e,headEntries(){return t},get hooks(){return o},use(c){c.hooks&&o.addHooks(c.hooks)},push(c,l){const a={_i:r++,input:c,_sde:{}};return l!=null&&l.mode&&(a._m=l==null?void 0:l.mode),t.push(a),s(),{dispose(){t=t.filter(u=>u._i!==a._i?!0:(n={...n,...u._sde||{}},u._sde={},s(),!1))},patch(u){t=t.map(h=>(h._i===a._i&&(a.input=h.input=u,s()),h))}}},async resolveTags(){const c={tags:[],entries:[...t]};await o.callHook("entries:resolve",c);for(const l of c.entries)for(const a of await Ho(l)){const u={tag:a,entry:l};await o.callHook("tag:normalise",u),c.tags.push(u.tag)}return await o.callHook("tags:resolve",c),c.tags},_elMap:{},_popSideEffectQueue(){const c={...n};return n={},c}};return i.hooks.callHook("init",i),i}function Bo(e){return typeof e=="function"?e():R(e)}function Ze(e,t=""){if(e instanceof Promise)return e;const n=Bo(e);if(!e||!n)return n;if(Array.isArray(n))return n.map(r=>Ze(r,t));if(typeof n=="object"){let r=!1;const o=Object.fromEntries(Object.entries(n).map(([s,i])=>s==="titleTemplate"||s.startsWith("on")?[s,R(i)]:((typeof i=="function"||In(i))&&(r=!0),[s,Ze(i,s)])));return r&&kr.includes(String(t))&&(o._dynamic=!0),o}return n}const No=gr.startsWith("3"),Uo=typeof window<"u",Or="usehead";function Ot(){return _r()&&he(Or)||Sr()}function Ko(e={}){const t=xo({...e,domDelayFn:r=>setTimeout(()=>Pe(()=>r()),10),plugins:[Fo(),...(e==null?void 0:e.plugins)||[]]}),n={install(r){No&&(r.config.globalProperties.$unhead=t,r.provide(Or,t))}};return t.install=n.install,t}const Fo=()=>({hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=Ze(t.input)}}});function zo(e,t={}){const n=Ot(),r=J(!1),o=J({});Ln(()=>{o.value=Ze(e)});const s=n.push(o.value,t);return fe([o,r],([c,l])=>{l||s.patch(c)}),_r()&&(mr(()=>{s.dispose()}),Sn(()=>{r.value=!0}),On(()=>{r.value=!1})),s}function qo(e,t={}){return Ot().push(e,t)}function Ir(e,t={}){var r;const n=Ot();if(n){const o=Uo||!!((r=n.resolvedOptions)!=null&&r.document);return t.mode==="server"&&o||t.mode==="client"&&!o?void 0:o?zo(e,t):qo(e,t)}}const Wo=["script","style","noscript"],Go=["base","meta","link","style","script","noscript"],Qo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function Zo(e,t){const{props:n,tag:r}=e;if(Qo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ue=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),Wo.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function Jo(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function $r(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||Jo(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Ue(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Ue(f),a(f);continue}f.$el=r.createElement(p.tag),Ue(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!Go.includes(v))continue;const E=Zo({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Ue(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let ft=null;async function Yo(e,t={}){function n(){return ft=null,$r(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return ft=ft||new Promise(o=>r(()=>o(n())))}function Xo(e){const t=Ko(),n={unhead:t,install(r){gr.startsWith("3")&&(r.config.globalProperties.$head=t,r.provide("usehead",t))},use(r){t.use(r)},resolveTags(){return t.resolveTags()},headEntries(){return t.headEntries()},headTags(){return t.resolveTags()},push(r,o){return t.push(r,o)},addEntry(r,o){return t.push(r,o)},addHeadObjs(r,o){return t.push(r,o)},addReactiveEntry(r,o){const s=Ir(r,o);return typeof s<"u"?s.dispose:()=>{}},removeHeadObjs(){},updateDOM(r,o){o?$r(t,{document:r}):Yo(t,{delayFn:s=>setTimeout(()=>s(),50),document:r})},internalHooks:t.hooks,hooks:{"before:dom":[],"resolved:tags":[],"resolved:entries":[]}};return t.addHeadObjs=n.addHeadObjs,t.updateDOM=n.updateDOM,t.hooks.hook("dom:beforeRender",r=>{for(const o of n.hooks["before:dom"])o()===!1&&(r.shouldRender=!1)}),e&&n.addHeadObjs(e),n}function Je(e,t){return G()._useHead(e,t)}const es={ignoreUnknown:!1,respectType:!1,respectFunctionNames:!1,respectFunctionProperties:!1,unorderedObjects:!0,unorderedArrays:!1,unorderedSets:!1};function ts(e,t={}){t={...es,...t};const n=Dr(t);return n.dispatch(e),n.toString()}function Dr(e){const t=[];let n=[];const r=o=>{t.push(o)};return{toString(){return t.join("")},getContext(){return n},dispatch(o){return e.replacer&&(o=e.replacer(o)),this["_"+(o===null?"null":typeof o)](o)},_object(o){const s=/\[object (.*)]/i,i=Object.prototype.toString.call(o),c=s.exec(i),l=c?c[1].toLowerCase():"unknown:["+i.toLowerCase()+"]";let a=null;if((a=n.indexOf(o))>=0)return this.dispatch("[CIRCULAR:"+a+"]");if(n.push(o),typeof Buffer<"u"&&Buffer.isBuffer&&Buffer.isBuffer(o))return r("buffer:"),r(o.toString("utf8"));if(l!=="object"&&l!=="function"&&l!=="asyncfunction")if(this["_"+l])this["_"+l](o);else{if(e.ignoreUnknown)return r("["+l+"]");throw new Error('Unknown object type "'+l+'"')}else{let u=Object.keys(o);e.unorderedObjects&&(u=u.sort()),e.respectType!==!1&&!Kt(o)&&u.splice(0,0,"prototype","__proto__","letructor"),e.excludeKeys&&(u=u.filter(function(h){return!e.excludeKeys(h)})),r("object:"+u.length+":");for(const h of u)this.dispatch(h),r(":"),e.excludeValues||this.dispatch(o[h]),r(",")}},_array(o,s){if(s=typeof s<"u"?s:e.unorderedArrays!==!1,r("array:"+o.length+":"),!s||o.length<=1){for(const l of o)this.dispatch(l);return}const i=[],c=o.map(l=>{const a=Dr(e);return a.dispatch(l),i.push(a.getContext()),a.toString()});return n=[...n,...i],c.sort(),this._array(c,!1)},_date(o){return r("date:"+o.toJSON())},_symbol(o){return r("symbol:"+o.toString())},_error(o){return r("error:"+o.toString())},_boolean(o){return r("bool:"+o.toString())},_string(o){r("string:"+o.length+":"),r(o.toString())},_function(o){r("fn:"),Kt(o)?this.dispatch("[native]"):this.dispatch(o.toString()),e.respectFunctionNames!==!1&&this.dispatch("function-name:"+String(o.name)),e.respectFunctionProperties&&this._object(o)},_number(o){return r("number:"+o.toString())},_xml(o){return r("xml:"+o.toString())},_null(){return r("Null")},_undefined(){return r("Undefined")},_regexp(o){return r("regex:"+o.toString())},_uint8array(o){return r("uint8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint8clampedarray(o){return r("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(o))},_int8array(o){return r("int8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint16array(o){return r("uint16array:"),this.dispatch(Array.prototype.slice.call(o))},_int16array(o){return r("int16array:"),this.dispatch(Array.prototype.slice.call(o))},_uint32array(o){return r("uint32array:"),this.dispatch(Array.prototype.slice.call(o))},_int32array(o){return r("int32array:"),this.dispatch(Array.prototype.slice.call(o))},_float32array(o){return r("float32array:"),this.dispatch(Array.prototype.slice.call(o))},_float64array(o){return r("float64array:"),this.dispatch(Array.prototype.slice.call(o))},_arraybuffer(o){return r("arraybuffer:"),this.dispatch(new Uint8Array(o))},_url(o){return r("url:"+o.toString())},_map(o){r("map:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_set(o){r("set:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_file(o){return r("file:"),this.dispatch([o.name,o.size,o.type,o.lastModfied])},_blob(){if(e.ignoreUnknown)return r("[blob]");throw new Error(`Hashing Blob objects is currently not supported -Use "options.replacer" or "options.ignoreUnknown" -`)},_domwindow(){return r("domwindow")},_bigint(o){return r("bigint:"+o.toString())},_process(){return r("process")},_timer(){return r("timer")},_pipe(){return r("pipe")},_tcp(){return r("tcp")},_udp(){return r("udp")},_tty(){return r("tty")},_statwatcher(){return r("statwatcher")},_securecontext(){return r("securecontext")},_connection(){return r("connection")},_zlib(){return r("zlib")},_context(){return r("context")},_nodescript(){return r("nodescript")},_httpparser(){return r("httpparser")},_dataview(){return r("dataview")},_signal(){return r("signal")},_fsevent(){return r("fsevent")},_tlswrap(){return r("tlswrap")}}}function Kt(e){return typeof e!="function"?!1:/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code]\s+}$/i.exec(Function.prototype.toString.call(e))!=null}class ve{constructor(t,n){t=this.words=t||[],this.sigBytes=n!==void 0?n:t.length*4}toString(t){return(t||rs).stringify(this)}concat(t){if(this.clamp(),this.sigBytes%4)for(let n=0;n>>2]>>>24-n%4*8&255;this.words[this.sigBytes+n>>>2]|=r<<24-(this.sigBytes+n)%4*8}else for(let n=0;n>>2]=t.words[n>>>2];return this.sigBytes+=t.sigBytes,this}clamp(){this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4)}clone(){return new ve([...this.words])}}const rs={stringify(e){const t=[];for(let n=0;n>>2]>>>24-n%4*8&255;t.push((r>>>4).toString(16),(r&15).toString(16))}return t.join("")}},ns={stringify(e){const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=[];for(let r=0;r>>2]>>>24-r%4*8&255,s=e.words[r+1>>>2]>>>24-(r+1)%4*8&255,i=e.words[r+2>>>2]>>>24-(r+2)%4*8&255,c=o<<16|s<<8|i;for(let l=0;l<4&&r*8+l*6>>6*(3-l)&63))}return n.join("")}},os={parse(e){const t=e.length,n=[];for(let r=0;r>>2]|=(e.charCodeAt(r)&255)<<24-r%4*8;return new ve(n,t)}},ss={parse(e){return os.parse(unescape(encodeURIComponent(e)))}};class as{constructor(){this._minBufferSize=0,this.blockSize=512/32,this.reset()}reset(){this._data=new ve,this._nDataBytes=0}_append(t){typeof t=="string"&&(t=ss.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes}_doProcessBlock(t,n){}_process(t){let n,r=this._data.sigBytes/(this.blockSize*4);t?r=Math.ceil(r):r=Math.max((r|0)-this._minBufferSize,0);const o=r*this.blockSize,s=Math.min(o*4,this._data.sigBytes);if(o){for(let i=0;i>>7)^(P<<14|P>>>18)^P>>>3,k=pe[d-2],I=(k<<15|k>>>17)^(k<<13|k>>>19)^k>>>10;pe[d]=C+pe[d-7]+I+pe[d-16]}const f=l&a^~l&u,p=o&s^o&i^s&i,b=(o<<30|o>>>2)^(o<<19|o>>>13)^(o<<10|o>>>22),m=(l<<26|l>>>6)^(l<<21|l>>>11)^(l<<7|l>>>25),v=h+m+f+cs[d]+pe[d],E=b+p;h=u,u=a,a=l,l=c+v|0,c=i,i=s,s=o,o=v+E|0}r[0]=r[0]+o|0,r[1]=r[1]+s|0,r[2]=r[2]+i|0,r[3]=r[3]+c|0,r[4]=r[4]+l|0,r[5]=r[5]+a|0,r[6]=r[6]+u|0,r[7]=r[7]+h|0}finalize(t){super.finalize(t);const n=this._nDataBytes*8,r=this._data.sigBytes*8;return this._data.words[r>>>5]|=128<<24-r%32,this._data.words[(r+64>>>9<<4)+14]=Math.floor(n/4294967296),this._data.words[(r+64>>>9<<4)+15]=n,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}}function ds(e){return new us().finalize(e).toString(ns)}function Ye(e,t={}){const n=typeof e=="string"?e:ts(e,t);return ds(n).slice(0,10)}function Ft(e,t={}){const n=fs(e,t),r=G(),o=r._payloadCache=r._payloadCache||{};return o[e]||(o[e]=ps(n).then(s=>s||(delete o[e],null))),o[e]}function fs(e,t={}){const n=new URL(e,"http://localhost");if(n.search)throw new Error("Payload URL cannot contain search params: "+e);if(n.host!=="localhost")throw new Error("Payload URL cannot contain host: "+e);const r=t.hash||(t.fresh?Date.now():"");return et(te().app.baseURL,n.pathname,r?`_payload.${r}.js`:"_payload.js")}async function ps(e){const t=await _(()=>import(e),[],import.meta.url).catch(n=>{console.warn("[nuxt] Cannot load payload ",e,n)});return(t==null?void 0:t.default)||null}function hs(){return!!G().payload.prerenderedAt}const pt={ExampleCard:g(()=>_(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleHero:g(()=>_(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleIconCard:g(()=>_(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ExampleMultiselect:g(()=>_(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleTheTitle:g(()=>_(()=>import("./ExampleTheTitle.e4b43830.js"),["./ExampleTheTitle.e4b43830.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),HeroAnnouncement:g(()=>_(()=>import("./HeroAnnouncement.32859cbb.js"),["./HeroAnnouncement.32859cbb.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(e=>e.default||e)),IconMarkdown:g(()=>_(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),Logo:g(()=>_(()=>Promise.resolve().then(()=>Ci),void 0,import.meta.url).then(e=>e.default||e)),MyButton:g(()=>_(()=>import("./MyButton.d8f00b03.js"),["./MyButton.d8f00b03.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(e=>e.default||e)),PropInspector:g(()=>_(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(e=>e.default||e)),ReadMore:g(()=>_(()=>import("./ReadMore.bd9c6b06.js"),["./ReadMore.bd9c6b06.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),AppFooter:g(()=>_(()=>Promise.resolve().then(()=>ol),void 0,import.meta.url).then(e=>e.default||e)),AppHeader:g(()=>_(()=>Promise.resolve().then(()=>Zi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderDialog:g(()=>_(()=>Promise.resolve().then(()=>Ei),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderLogo:g(()=>_(()=>Promise.resolve().then(()=>Li),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderNavigation:g(()=>_(()=>Promise.resolve().then(()=>Ii),void 0,import.meta.url).then(e=>e.default||e)),AppLayout:g(()=>_(()=>import("./AppLayout.bec693ec.js"),["./AppLayout.bec693ec.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),AppLoadingBar:g(()=>_(()=>Promise.resolve().then(()=>pi),void 0,import.meta.url).then(e=>e.default||e)),AppSearch:g(()=>_(()=>Promise.resolve().then(()=>xi),void 0,import.meta.url).then(e=>e.default||e)),AppSocialIcons:g(()=>_(()=>Promise.resolve().then(()=>_i),void 0,import.meta.url).then(e=>e.default||e)),DocumentDrivenNotFound:g(()=>_(()=>import("./DocumentDrivenNotFound.25e8b3dc.js"),["./DocumentDrivenNotFound.25e8b3dc.js","./ButtonLink.2789431f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(e=>e.default||e)),ThemeSelect:g(()=>_(()=>Promise.resolve().then(()=>Fi),void 0,import.meta.url).then(e=>e.default||e)),DocsAside:g(()=>_(()=>import("./DocsAside.44ffd29b.js"),["./DocsAside.44ffd29b.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(e=>e.default||e)),DocsAsideTree:g(()=>_(()=>import("./DocsAsideTree.08d70919.js").then(e=>e.D),["./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocsPageBottom:g(()=>_(()=>import("./DocsPageBottom.a96d3867.js"),["./DocsPageBottom.a96d3867.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.c8de8b63.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.21b8aa9d.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(e=>e.default||e)),DocsPageLayout:g(()=>_(()=>import("./DocsPageLayout.8e541ec6.js"),["./DocsPageLayout.8e541ec6.js","./DocsAside.44ffd29b.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./Alert.f24f4058.css","./DocsPageBottom.a96d3867.js","./ProseA.c8de8b63.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.21b8aa9d.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.adb795e8.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.03cf2013.js","./DocsTocLinks.c11364e4.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e)),DocsPrevNext:g(()=>_(()=>import("./DocsPrevNext.adb795e8.js"),["./DocsPrevNext.adb795e8.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(e=>e.default||e)),DocsToc:g(()=>_(()=>import("./DocsToc.03cf2013.js"),["./DocsToc.03cf2013.js","./DocsTocLinks.c11364e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.4114fca6.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(e=>e.default||e)),DocsTocLinks:g(()=>_(()=>import("./DocsTocLinks.c11364e4.js"),["./DocsTocLinks.c11364e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.4114fca6.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(e=>e.default||e)),EditOnLink:g(()=>_(()=>import("./EditOnLink.f0fb05c8.js"),["./EditOnLink.f0fb05c8.js","./EditOnLink.vue.21b8aa9d.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.edcbeab5.js"],import.meta.url).then(e=>e.default||e)),ProseA:g(()=>_(()=>import("./ProseA.c8de8b63.js"),["./ProseA.c8de8b63.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(e=>e.default||e)),ProseBlockquote:g(()=>_(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(e=>e.default||e)),ProseCode:g(()=>_(()=>import("./ProseCode.2adf04d1.js"),["./ProseCode.2adf04d1.js","./ProseCodeCopyButton.1eec7dbb.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(e=>e.default||e)),ProseCodeInline:g(()=>_(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(e=>e.default||e)),ProseEm:g(()=>_(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(e=>e.default||e)),ProseH1:g(()=>_(()=>import("./ProseH1.ee507e45.js"),["./ProseH1.ee507e45.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(e=>e.default||e)),ProseH2:g(()=>_(()=>import("./ProseH2.36291d6d.js"),["./ProseH2.36291d6d.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(e=>e.default||e)),ProseH3:g(()=>_(()=>import("./ProseH3.0209a6ec.js"),["./ProseH3.0209a6ec.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(e=>e.default||e)),ProseH4:g(()=>_(()=>import("./ProseH4.4ddfc0da.js"),["./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(e=>e.default||e)),ProseH5:g(()=>_(()=>import("./ProseH5.fd3b0c88.js"),["./ProseH5.fd3b0c88.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(e=>e.default||e)),ProseH6:g(()=>_(()=>import("./ProseH6.c2012c78.js"),["./ProseH6.c2012c78.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(e=>e.default||e)),ProseHr:g(()=>_(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(e=>e.default||e)),ProseImg:g(()=>_(()=>import("./ProseImg.ff3b8d7e.js"),["./ProseImg.ff3b8d7e.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(e=>e.default||e)),ProseLi:g(()=>_(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(e=>e.default||e)),ProseOl:g(()=>_(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(e=>e.default||e)),ProseP:g(()=>_(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),ProseStrong:g(()=>_(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(e=>e.default||e)),ProseTable:g(()=>_(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(e=>e.default||e)),ProseTbody:g(()=>_(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ProseTd:g(()=>_(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(e=>e.default||e)),ProseTh:g(()=>_(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(e=>e.default||e)),ProseThead:g(()=>_(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(e=>e.default||e)),ProseTr:g(()=>_(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(e=>e.default||e)),ProseUl:g(()=>_(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(e=>e.default||e)),Alert:g(()=>_(()=>import("./Alert.443f6167.js"),["./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),Badge:g(()=>_(()=>import("./Badge.a4f5598b.js"),["./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(e=>e.default||e)),ButtonLink:g(()=>_(()=>import("./ButtonLink.2789431f.js"),["./ButtonLink.2789431f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./ButtonLink.1b73392c.css"],import.meta.url).then(e=>e.default||e)),Callout:g(()=>_(()=>import("./Callout.e09a04aa.js"),["./Callout.e09a04aa.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(e=>e.default||e)),CodeBlock:g(()=>_(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(e=>e.default||e)),CodeGroup:g(()=>_(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(e=>e.default||e)),Container:g(()=>_(()=>import("./Container.f1017aa2.js").then(e=>e.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),CopyButton:g(()=>_(()=>import("./CopyButton.c9acc792.js"),["./CopyButton.c9acc792.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(e=>e.default||e)),Ellipsis:g(()=>_(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(e=>e.default||e)),List:g(()=>_(()=>import("./List.0c42b342.js"),["./List.0c42b342.js","./List.vue.d5bae865.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./List.a65f0e81.css"],import.meta.url).then(e=>e.default||e)),NuxtImg:g(()=>_(()=>import("./NuxtImg.3bab810e.js"),["./NuxtImg.3bab810e.js","./NuxtImg.vue.594abc77.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Props:g(()=>_(()=>import("./Props.80a76d3d.js"),["./Props.80a76d3d.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.4114fca6.js","./asyncData.2775b491.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Sandbox:g(()=>_(()=>import("./Sandbox.21a025fb.js"),["./Sandbox.21a025fb.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./Sandbox.68fd6c5d.css"],import.meta.url).then(e=>e.default||e)),SourceLink:g(()=>_(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),TabsHeader:g(()=>_(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(e=>e.default||e)),Terminal:g(()=>_(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(e=>e.default||e)),VideoPlayer:g(()=>_(()=>import("./VideoPlayer.4efd76f7.js"),["./VideoPlayer.4efd76f7.js","./NuxtImg.vue.594abc77.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(e=>e.default||e)),IconCodeSandBox:g(()=>_(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconDocus:g(()=>_(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxt:g(()=>_(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtContent:g(()=>_(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtLabs:g(()=>_(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtStudio:g(()=>_(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(e=>e.default||e)),IconStackBlitz:g(()=>_(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconVueTelescope:g(()=>_(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),BlockHero:g(()=>_(()=>import("./BlockHero.81a09280.js"),["./BlockHero.81a09280.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.2789431f.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(e=>e.default||e)),Card:g(()=>_(()=>import("./Card.24a8ff8f.js"),["./Card.24a8ff8f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./Card.5dfb7f30.css"],import.meta.url).then(e=>e.default||e)),CardGrid:g(()=>_(()=>import("./CardGrid.362959de.js"),["./CardGrid.362959de.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(e=>e.default||e)),VoltaBoard:g(()=>_(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(e=>e.default||e)),ComponentPlayground:g(()=>_(()=>import("./ComponentPlayground.00658939.js"),["./ComponentPlayground.00658939.js","./ComponentPlayground.vue.db6a2f57.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.c394e239.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.59058ddd.js","./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundData:g(()=>_(()=>import("./ComponentPlaygroundData.c394e239.js"),["./ComponentPlaygroundData.c394e239.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.59058ddd.js","./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundProps:g(()=>_(()=>import("./ComponentPlaygroundProps.59058ddd.js"),["./ComponentPlaygroundProps.59058ddd.js","./ProseH4.4ddfc0da.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.a4f5598b.js","./ContentSlot.7e1a494f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundSlots:g(()=>_(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundTokens:g(()=>_(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),TokensPlayground:g(()=>_(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ContentDoc:g(()=>_(()=>import("./ContentDoc.08489604.js"),["./ContentDoc.08489604.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./cookie.5bbb58d5.js","./ContentQuery.7a036327.js","./asyncData.2775b491.js","./DocsAsideTree.08d70919.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentList:g(()=>_(()=>import("./ContentList.394febbe.js"),["./ContentList.394febbe.js","./ContentQuery.7a036327.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentNavigation:g(()=>_(()=>import("./ContentNavigation.d592cbe0.js"),["./ContentNavigation.d592cbe0.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./DocsAsideTree.b13c5d2f.css","./EditOnLink.vue.21b8aa9d.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.4ddfc0da.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.a4f5598b.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.d5bae865.js","./List.a65f0e81.css","./NuxtImg.vue.594abc77.js","./Props.80a76d3d.js","./ProseTbody.37a7db42.js","./query.c3f7607a.js","./ComponentPlayground.vue.db6a2f57.js","./ComponentPlaygroundData.c394e239.js","./ComponentPlaygroundProps.59058ddd.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.08489604.js","./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./ContentQuery.7a036327.js","./ContentList.394febbe.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.eb6ef861.js","./layout.732d57d1.js","./GithubRepository.bbd436c6.js","./useGithub.916c5979.js","./GithubLink.6e1f1ea3.js","./GithubReadme.3309f143.js","./GithubReleases.54c416e9.js","./GithubLastRelease.7ffc61aa.js","./GithubRelease.fea5f747.js","./GithubContributors.35cdb9ac.js","./GithubFileContributors.2287b161.js","./GithubCommits.e43b30d0.js","./ContentNavigation.df5077be.css","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(e=>e.default||e)),ContentQuery:g(()=>_(()=>import("./ContentQuery.7a036327.js"),["./ContentQuery.7a036327.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentRenderer:g(()=>_(()=>import("./ContentRenderer.51874b59.js"),["./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentRendererMarkdown:g(()=>_(()=>import("./ContentRendererMarkdown.1da6a628.js"),["./ContentRendererMarkdown.1da6a628.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentSlot:g(()=>_(()=>import("./ContentSlot.7e1a494f.js"),["./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocumentDrivenEmpty:g(()=>_(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Markdown:g(()=>_(()=>import("./Markdown.eb6ef861.js"),["./Markdown.eb6ef861.js","./ContentSlot.7e1a494f.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),GithubRepository:g(()=>_(()=>import("./GithubRepository.bbd436c6.js"),["./GithubRepository.bbd436c6.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLink:g(()=>_(()=>import("./GithubLink.6e1f1ea3.js"),["./GithubLink.6e1f1ea3.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),GithubReadme:g(()=>_(()=>import("./GithubReadme.3309f143.js"),["./GithubReadme.3309f143.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubReleases:g(()=>_(()=>import("./GithubReleases.54c416e9.js"),["./GithubReleases.54c416e9.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLastRelease:g(()=>_(()=>import("./GithubLastRelease.7ffc61aa.js"),["./GithubLastRelease.7ffc61aa.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubRelease:g(()=>_(()=>import("./GithubRelease.fea5f747.js"),["./GithubRelease.fea5f747.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubContributors:g(()=>_(()=>import("./GithubContributors.35cdb9ac.js"),["./GithubContributors.35cdb9ac.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubFileContributors:g(()=>_(()=>import("./GithubFileContributors.2287b161.js"),["./GithubFileContributors.2287b161.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubCommits:g(()=>_(()=>import("./GithubCommits.e43b30d0.js"),["./GithubCommits.e43b30d0.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.2775b491.js","./useGithub.916c5979.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Icon:g(()=>_(()=>import("./DocsAsideTree.08d70919.js").then(e=>e.I),["./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e))},_s=Q(e=>{for(const t in pt)e.vueApp.component(t,pt[t]),e.vueApp.component("Lazy"+t,pt[t])}),ms={meta:[{name:"viewport",content:"width=device-width, initial-scale=1"},{charset:"utf-8"}],link:[],style:[],script:[{defer:!0,"data-domain":"frontier.realdecoy.com",src:"https://plausible.io/js/script.js"}],noscript:[]},vl=!1,bt=!1,gs=!1,ys="__nuxt",vs=Q(e=>{const t=Xo();t.push(ms),e.vueApp.use(t);{let n=!0;const r=()=>{n=!1,t.internalHooks.callHook("entries:updated",t.unhead)};t.internalHooks.hook("dom:beforeRender",o=>{o.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",r),e.hooks.hook("app:mounted",r)}e._useHead=Ir});/*! - * vue-router v4.1.6 - * (c) 2022 Eduardo San Martin Morote - * @license MIT - */const ye=typeof window<"u";function Es(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const $=Object.assign;function ht(e,t){const n={};for(const r in t){const o=t[r];n[r]=Y(o)?o.map(e):e(o)}return n}const $e=()=>{},Y=Array.isArray,bs=/\/$/,ws=e=>e.replace(bs,"");function _t(e,t,n="/"){let r,o={},s="",i="";const c=t.indexOf("#");let l=t.indexOf("?");return c=0&&(l=-1),l>-1&&(r=t.slice(0,l),s=t.slice(l+1,c>-1?c:t.length),o=e(s)),c>-1&&(r=r||t.slice(0,c),i=t.slice(c,t.length)),r=Cs(r??t,n),{fullPath:r+(s&&"?")+s+i,path:r,query:o,hash:i}}function Ps(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function zt(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Rs(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&Ee(t.matched[r],n.matched[o])&&Hr(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ee(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Hr(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Ts(e[n],t[n]))return!1;return!0}function Ts(e,t){return Y(e)?qt(e,t):Y(t)?qt(t,e):e===t}function qt(e,t){return Y(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Cs(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let o=n.length-1,s,i;for(s=0;s1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(s-(s===r.length?1:0)).join("/")}var xe;(function(e){e.pop="pop",e.push="push"})(xe||(xe={}));var De;(function(e){e.back="back",e.forward="forward",e.unknown=""})(De||(De={}));function As(e){if(!e)if(ye){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),ws(e)}const ks=/^[^#]+#/;function Ls(e,t){return e.replace(ks,"#")+t}function Ss(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const nt=()=>({left:window.pageXOffset,top:window.pageYOffset});function Os(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Ss(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function Wt(e,t){return(history.state?history.state.position-t:-1)+e}const wt=new Map;function Is(e,t){wt.set(e,t)}function $s(e){const t=wt.get(e);return wt.delete(e),t}let Ds=()=>location.protocol+"//"+location.host;function Mr(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let c=o.includes(e.slice(s))?e.slice(s).length:1,l=o.slice(c);return l[0]!=="/"&&(l="/"+l),zt(l,"")}return zt(n,e)+r+o}function Hs(e,t,n,r){let o=[],s=[],i=null;const c=({state:d})=>{const f=Mr(e,location),p=n.value,b=t.value;let m=0;if(d){if(n.value=f,t.value=d,i&&i===p){i=null;return}m=b?d.position-b.position:0}else r(f);o.forEach(v=>{v(n.value,p,{delta:m,type:xe.pop,direction:m?m>0?De.forward:De.back:De.unknown})})};function l(){i=n.value}function a(d){o.push(d);const f=()=>{const p=o.indexOf(d);p>-1&&o.splice(p,1)};return s.push(f),f}function u(){const{history:d}=window;d.state&&d.replaceState($({},d.state,{scroll:nt()}),"")}function h(){for(const d of s)d();s=[],window.removeEventListener("popstate",c),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",c),window.addEventListener("beforeunload",u),{pauseListeners:l,listen:a,destroy:h}}function Gt(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?nt():null}}function Ms(e){const{history:t,location:n}=window,r={value:Mr(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(l,a,u){const h=e.indexOf("#"),d=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+l:Ds()+e+l;try{t[u?"replaceState":"pushState"](a,"",d),o.value=a}catch(f){console.error(f),n[u?"replace":"assign"](d)}}function i(l,a){const u=$({},t.state,Gt(o.value.back,l,o.value.forward,!0),a,{position:o.value.position});s(l,u,!0),r.value=l}function c(l,a){const u=$({},o.value,t.state,{forward:l,scroll:nt()});s(u.current,u,!0);const h=$({},Gt(r.value,l,null),{position:u.position+1},a);s(l,h,!1),r.value=l}return{location:r,state:o,push:c,replace:i}}function Vr(e){e=As(e);const t=Ms(e),n=Hs(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=$({location:"",base:e,go:r,createHref:Ls.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}function Vs(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Vr(e)}function xs(e){return typeof e=="string"||e&&typeof e=="object"}function xr(e){return typeof e=="string"||typeof e=="symbol"}const ce={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},jr=Symbol("");var Qt;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Qt||(Qt={}));function be(e,t){return $(new Error,{type:e,[jr]:!0},t)}function ne(e,t){return e instanceof Error&&jr in e&&(t==null||!!(e.type&t))}const Zt="[^/]+?",js={sensitive:!1,strict:!1,start:!0,end:!0},Bs=/[.+*?^${}()[\]/\\]/g;function Ns(e,t){const n=$({},js,t),r=[];let o=n.start?"^":"";const s=[];for(const a of e){const u=a.length?[]:[90];n.strict&&!a.length&&(o+="/");for(let h=0;ht.length?t.length===1&&t[0]===40+40?1:-1:0}function Ks(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const Fs={type:0,value:""},zs=/[a-zA-Z0-9_]/;function qs(e){if(!e)return[[]];if(e==="/")return[[Fs]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(f){throw new Error(`ERR (${n})/"${a}": ${f}`)}let n=0,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let c=0,l,a="",u="";function h(){a&&(n===0?s.push({type:0,value:a}):n===1||n===2||n===3?(s.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),s.push({type:1,value:a,regexp:u,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),a="")}function d(){a+=l}for(;c{i(E)}:$e}function i(u){if(xr(u)){const h=r.get(u);h&&(r.delete(u),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(u);h>-1&&(n.splice(h,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function c(){return n}function l(u){let h=0;for(;h=0&&(u.record.path!==n[h].record.path||!Br(u,n[h]));)h++;n.splice(h,0,u),u.record.name&&!Xt(u)&&r.set(u.record.name,u)}function a(u,h){let d,f={},p,b;if("name"in u&&u.name){if(d=r.get(u.name),!d)throw be(1,{location:u});b=d.record.name,f=$(Yt(h.params,d.keys.filter(E=>!E.optional).map(E=>E.name)),u.params&&Yt(u.params,d.keys.map(E=>E.name))),p=d.stringify(f)}else if("path"in u)p=u.path,d=n.find(E=>E.re.test(p)),d&&(f=d.parse(p),b=d.record.name);else{if(d=h.name?r.get(h.name):n.find(E=>E.re.test(h.path)),!d)throw be(1,{location:u,currentLocation:h});b=d.record.name,f=$({},h.params,u.params),p=d.stringify(f)}const m=[];let v=d;for(;v;)m.unshift(v.record),v=v.parent;return{name:b,path:p,params:f,matched:m,meta:Js(m)}}return e.forEach(u=>s(u)),{addRoute:s,resolve:a,removeRoute:i,getRoutes:c,getRecordMatcher:o}}function Yt(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Qs(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:Zs(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function Zs(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="boolean"?n:n[r];return t}function Xt(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Js(e){return e.reduce((t,n)=>$(t,n.meta),{})}function er(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function Br(e,t){return t.children.some(n=>n===e||Br(e,n))}const Nr=/#/g,Ys=/&/g,Xs=/\//g,ea=/=/g,ta=/\?/g,Ur=/\+/g,ra=/%5B/g,na=/%5D/g,Kr=/%5E/g,oa=/%60/g,Fr=/%7B/g,sa=/%7C/g,zr=/%7D/g,aa=/%20/g;function It(e){return encodeURI(""+e).replace(sa,"|").replace(ra,"[").replace(na,"]")}function ia(e){return It(e).replace(Fr,"{").replace(zr,"}").replace(Kr,"^")}function Pt(e){return It(e).replace(Ur,"%2B").replace(aa,"+").replace(Nr,"%23").replace(Ys,"%26").replace(oa,"`").replace(Fr,"{").replace(zr,"}").replace(Kr,"^")}function la(e){return Pt(e).replace(ea,"%3D")}function ca(e){return It(e).replace(Nr,"%23").replace(ta,"%3F")}function ua(e){return e==null?"":ca(e).replace(Xs,"%2F")}function Xe(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function da(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let o=0;os&&Pt(s)):[r&&Pt(r)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function fa(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=Y(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const pa=Symbol(""),rr=Symbol(""),$t=Symbol(""),Dt=Symbol(""),Rt=Symbol("");function Le(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function de(e,t,n,r,o){const s=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((i,c)=>{const l=h=>{h===!1?c(be(4,{from:n,to:t})):h instanceof Error?c(h):xs(h)?c(be(2,{from:t,to:h})):(s&&r.enterCallbacks[o]===s&&typeof h=="function"&&s.push(h),i())},a=e.call(r&&r.instances[o],t,n,l);let u=Promise.resolve(a);e.length<3&&(u=u.then(l)),u.catch(h=>c(h))})}function mt(e,t,n,r){const o=[];for(const s of e)for(const i in s.components){let c=s.components[i];if(!(t!=="beforeRouteEnter"&&!s.instances[i]))if(ha(c)){const a=(c.__vccOpts||c)[t];a&&o.push(de(a,n,r,s,i))}else{let l=c();o.push(()=>l.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${s.path}"`));const u=Es(a)?a.default:a;s.components[i]=u;const d=(u.__vccOpts||u)[t];return d&&de(d,n,r,s,i)()}))}}return o}function ha(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function nr(e){const t=he($t),n=he(Dt),r=D(()=>t.resolve(R(e.to))),o=D(()=>{const{matched:l}=r.value,{length:a}=l,u=l[a-1],h=n.matched;if(!u||!h.length)return-1;const d=h.findIndex(Ee.bind(null,u));if(d>-1)return d;const f=or(l[a-2]);return a>1&&or(u)===f&&h[h.length-1].path!==f?h.findIndex(Ee.bind(null,l[a-2])):d}),s=D(()=>o.value>-1&&ya(n.params,r.value.params)),i=D(()=>o.value>-1&&o.value===n.matched.length-1&&Hr(n.params,r.value.params));function c(l={}){return ga(l)?t[R(e.replace)?"replace":"push"](R(e.to)).catch($e):Promise.resolve()}return{route:r,href:D(()=>r.value.href),isActive:s,isExactActive:i,navigate:c}}const _a=K({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:nr,setup(e,{slots:t}){const n=_e(nr(e)),{options:r}=he($t),o=D(()=>({[sr(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[sr(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&t.default(n);return e.custom?s:W("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),ma=_a;function ga(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function ya(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!Y(o)||o.length!==r.length||r.some((s,i)=>s!==o[i]))return!1}return!0}function or(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const sr=(e,t,n)=>e??t??n,va=K({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=he(Rt),o=D(()=>e.route||r.value),s=he(rr,0),i=D(()=>{let a=R(s);const{matched:u}=o.value;let h;for(;(h=u[a])&&!h.components;)a++;return a}),c=D(()=>o.value.matched[i.value]);Ie(rr,D(()=>i.value+1)),Ie(pa,c),Ie(Rt,o);const l=J();return fe(()=>[l.value,c.value,e.name],([a,u,h],[d,f,p])=>{u&&(u.instances[h]=a,f&&f!==u&&a&&a===d&&(u.leaveGuards.size||(u.leaveGuards=f.leaveGuards),u.updateGuards.size||(u.updateGuards=f.updateGuards))),a&&u&&(!f||!Ee(u,f)||!d)&&(u.enterCallbacks[h]||[]).forEach(b=>b(a))},{flush:"post"}),()=>{const a=o.value,u=e.name,h=c.value,d=h&&h.components[u];if(!d)return ar(n.default,{Component:d,route:a});const f=h.props[u],p=f?f===!0?a.params:typeof f=="function"?f(a):f:null,m=W(d,$({},p,t,{onVnodeUnmounted:v=>{v.component.isUnmounted&&(h.instances[u]=null)},ref:l}));return ar(n.default,{Component:m,route:a})||m}}});function ar(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const qr=va;function Ea(e){const t=Gs(e.routes,e),n=e.parseQuery||da,r=e.stringifyQuery||tr,o=e.history,s=Le(),i=Le(),c=Le(),l=yt(ce);let a=ce;ye&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=ht.bind(null,y=>""+y),h=ht.bind(null,ua),d=ht.bind(null,Xe);function f(y,T){let w,A;return xr(y)?(w=t.getRecordMatcher(y),A=T):A=y,t.addRoute(A,w)}function p(y){const T=t.getRecordMatcher(y);T&&t.removeRoute(T)}function b(){return t.getRoutes().map(y=>y.record)}function m(y){return!!t.getRecordMatcher(y)}function v(y,T){if(T=$({},T||l.value),typeof y=="string"){const S=_t(n,y,T.path),N=t.resolve({path:S.path},T),Ae=o.createHref(S.fullPath);return $(S,N,{params:d(N.params),hash:Xe(S.hash),redirectedFrom:void 0,href:Ae})}let w;if("path"in y)w=$({},y,{path:_t(n,y.path,T.path).path});else{const S=$({},y.params);for(const N in S)S[N]==null&&delete S[N];w=$({},y,{params:h(y.params)}),T.params=h(T.params)}const A=t.resolve(w,T),H=y.hash||"";A.params=u(d(A.params));const B=Ps(r,$({},y,{hash:ia(H),path:A.path})),O=o.createHref(B);return $({fullPath:B,hash:H,query:r===tr?fa(y.query):y.query||{}},A,{redirectedFrom:void 0,href:O})}function E(y){return typeof y=="string"?_t(n,y,l.value.path):$({},y)}function P(y,T){if(a!==y)return be(8,{from:T,to:y})}function C(y){return M(y)}function k(y){return C($(E(y),{replace:!0}))}function I(y){const T=y.matched[y.matched.length-1];if(T&&T.redirect){const{redirect:w}=T;let A=typeof w=="function"?w(y):w;return typeof A=="string"&&(A=A.includes("?")||A.includes("#")?A=E(A):{path:A},A.params={}),$({query:y.query,hash:y.hash,params:"path"in A?{}:y.params},A)}}function M(y,T){const w=a=v(y),A=l.value,H=y.state,B=y.force,O=y.replace===!0,S=I(w);if(S)return M($(E(S),{state:typeof S=="object"?$({},H,S.state):H,force:B,replace:O}),T||w);const N=w;N.redirectedFrom=T;let Ae;return!B&&Rs(r,A,w)&&(Ae=be(16,{to:N,from:A}),Vt(A,A,!0,!1)),(Ae?Promise.resolve(Ae):Re(N,A)).catch(F=>ne(F)?ne(F,2)?F:it(F):at(F,N,A)).then(F=>{if(F){if(ne(F,2))return M($({replace:O},E(F.to),{state:typeof F.to=="object"?$({},H,F.to.state):H,force:B}),T||N)}else F=Ce(N,A,!0,O,H);return Te(N,A,F),F})}function ie(y,T){const w=P(y,T);return w?Promise.reject(w):Promise.resolve()}function Re(y,T){let w;const[A,H,B]=ba(y,T);w=mt(A.reverse(),"beforeRouteLeave",y,T);for(const S of A)S.leaveGuards.forEach(N=>{w.push(de(N,y,T))});const O=ie.bind(null,y,T);return w.push(O),ge(w).then(()=>{w=[];for(const S of s.list())w.push(de(S,y,T));return w.push(O),ge(w)}).then(()=>{w=mt(H,"beforeRouteUpdate",y,T);for(const S of H)S.updateGuards.forEach(N=>{w.push(de(N,y,T))});return w.push(O),ge(w)}).then(()=>{w=[];for(const S of y.matched)if(S.beforeEnter&&!T.matched.includes(S))if(Y(S.beforeEnter))for(const N of S.beforeEnter)w.push(de(N,y,T));else w.push(de(S.beforeEnter,y,T));return w.push(O),ge(w)}).then(()=>(y.matched.forEach(S=>S.enterCallbacks={}),w=mt(B,"beforeRouteEnter",y,T),w.push(O),ge(w))).then(()=>{w=[];for(const S of i.list())w.push(de(S,y,T));return w.push(O),ge(w)}).catch(S=>ne(S,8)?S:Promise.reject(S))}function Te(y,T,w){for(const A of c.list())A(y,T,w)}function Ce(y,T,w,A,H){const B=P(y,T);if(B)return B;const O=T===ce,S=ye?history.state:{};w&&(A||O?o.replace(y.fullPath,$({scroll:O&&S&&S.scroll},H)):o.push(y.fullPath,H)),l.value=y,Vt(y,T,w,O),it()}let le;function Z(){le||(le=o.listen((y,T,w)=>{if(!xt.listening)return;const A=v(y),H=I(A);if(H){M($(H,{replace:!0}),A).catch($e);return}a=A;const B=l.value;ye&&Is(Wt(B.fullPath,w.delta),nt()),Re(A,B).catch(O=>ne(O,12)?O:ne(O,2)?(M(O.to,A).then(S=>{ne(S,20)&&!w.delta&&w.type===xe.pop&&o.go(-1,!1)}).catch($e),Promise.reject()):(w.delta&&o.go(-w.delta,!1),at(O,A,B))).then(O=>{O=O||Ce(A,B,!1),O&&(w.delta&&!ne(O,8)?o.go(-w.delta,!1):w.type===xe.pop&&ne(O,20)&&o.go(-1,!1)),Te(A,B,O)}).catch($e)}))}let st=Le(),Mt=Le(),Be;function at(y,T,w){it(y);const A=Mt.list();return A.length?A.forEach(H=>H(y,T,w)):console.error(y),Promise.reject(y)}function cn(){return Be&&l.value!==ce?Promise.resolve():new Promise((y,T)=>{st.add([y,T])})}function it(y){return Be||(Be=!y,Z(),st.list().forEach(([T,w])=>y?w(y):T()),st.reset()),y}function Vt(y,T,w,A){const{scrollBehavior:H}=e;if(!ye||!H)return Promise.resolve();const B=!w&&$s(Wt(y.fullPath,0))||(A||!w)&&history.state&&history.state.scroll||null;return Pe().then(()=>H(y,T,B)).then(O=>O&&Os(O)).catch(O=>at(O,y,T))}const lt=y=>o.go(y);let ct;const ut=new Set,xt={currentRoute:l,listening:!0,addRoute:f,removeRoute:p,hasRoute:m,getRoutes:b,resolve:v,options:e,push:C,replace:k,go:lt,back:()=>lt(-1),forward:()=>lt(1),beforeEach:s.add,beforeResolve:i.add,afterEach:c.add,onError:Mt.add,isReady:cn,install(y){const T=this;y.component("RouterLink",ma),y.component("RouterView",qr),y.config.globalProperties.$router=T,Object.defineProperty(y.config.globalProperties,"$route",{enumerable:!0,get:()=>R(l)}),ye&&!ct&&l.value===ce&&(ct=!0,C(o.location).catch(H=>{}));const w={};for(const H in ce)w[H]=D(()=>l.value[H]);y.provide($t,T),y.provide(Dt,_e(w)),y.provide(Rt,l);const A=y.unmount;ut.add(y),y.unmount=function(){ut.delete(y),ut.size<1&&(a=ce,le&&le(),le=null,l.value=ce,ct=!1,Be=!1),A()}}};return xt}function ge(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function ba(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;iEe(a,c))?r.push(c):n.push(c));const l=e.matched[i];l&&(t.matched.find(a=>Ee(a,l))||o.push(l))}return[n,r,o]}function El(){return he(Dt)}const z={},q={},ir=[{name:(z==null?void 0:z.name)??"slug",path:(z==null?void 0:z.path)??"/:slug(.*)*",children:[],meta:z,alias:(z==null?void 0:z.alias)||[],redirect:(z==null?void 0:z.redirect)||void 0,component:()=>_(()=>import("./document-driven.07c16582.js"),["./document-driven.07c16582.js","./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.51874b59.js","./ContentRendererMarkdown.1da6a628.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./DocumentDrivenNotFound.25e8b3dc.js","./ButtonLink.2789431f.js","./DocsAsideTree.08d70919.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.7e1a494f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./layout.732d57d1.js","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)},{name:(q==null?void 0:q.name)??"__app_config.json",path:(q==null?void 0:q.path)??"/__app_config.json",children:[],meta:q,alias:(q==null?void 0:q.alias)||[],redirect:(q==null?void 0:q.redirect)||void 0,component:()=>_(()=>import("./empty.9bcab498.js"),["./empty.9bcab498.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)}],wa={scrollBehavior(e,t,n){if(!history.state.stop){if(history.state.smooth)return{el:history.state.smooth,behavior:"smooth"};if(e.hash){const r=document.querySelector(e.hash);if(!r)return;const{marginTop:o}=getComputedStyle(r),s=parseInt(o);return{top:document.querySelector(e.hash).offsetTop-s,behavior:"smooth"}}return n||{top:0}}}},Pa={scrollBehavior(e,t,n){const r=G();let o=n||void 0;if(!o&&t&&e&&e.meta.scrollToTop!==!1&&Ra(t,e)&&(o={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:lr(e.hash)}}const s=c=>!!(c.meta.pageTransition??bt),i=s(t)&&s(e)?"page:transition:finish":"page:finish";return new Promise(c=>{r.hooks.hookOnce(i,async()=>{await Pe(),e.hash&&(o={el:e.hash,top:lr(e.hash)}),c(o)})})}};function lr(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}function Ra(e,t){const n=e.matched[0]===t.matched[0];return!!(!n||n&&JSON.stringify(e.params)!==JSON.stringify(t.params))}const Ta={},oe={...Ta,...Pa,...wa},Ca=vn(async e=>{var o;let t,n;if(!((o=e.meta)!=null&&o.validate))return;const r=([t,n]=qe(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t);if(r!==!0)return r}),Aa=[Ca],He={};function ka(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){const c=o.includes(e.slice(s))?e.slice(s).length:1;let l=o.slice(c);return l[0]!=="/"&&(l="/"+l),jt(l,"")}return jt(n,e)+r+o}const La=Q(async e=>{var p,b;let t,n,r=te().app.baseURL;oe.hashMode&&!r.includes("#")&&(r+="#");const o=((p=oe.history)==null?void 0:p.call(oe,r))??(oe.hashMode?Vs(r):Vr(r)),s=((b=oe.routes)==null?void 0:b.call(oe,ir))??ir,i=ka(r,window.location),c=Ea({...oe,history:o,routes:s});e.vueApp.use(c);const l=yt(c.currentRoute.value);c.afterEach((m,v)=>{l.value=v}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>l.value});const a=yt(c.resolve(i)),u=()=>{a.value=c.currentRoute.value};e.hook("page:finish",u),c.afterEach((m,v)=>{var E,P,C,k;((P=(E=m.matched[0])==null?void 0:E.components)==null?void 0:P.default)===((k=(C=v.matched[0])==null?void 0:C.components)==null?void 0:k.default)&&u()});const h={};for(const m in a.value)h[m]=D(()=>a.value[m]);e._route=_e(h),e._middleware=e._middleware||{global:[],named:{}};const d=rt();try{[t,n]=qe(()=>c.isReady()),await t,n()}catch(m){[t,n]=qe(()=>ue(e,Se,[m])),await t,n()}const f=kt("_layout");return c.beforeEach(async(m,v)=>{var P;m.meta=_e(m.meta),e.isHydrating&&f.value&&!$n(m.meta.layout)&&(m.meta.layout=f.value),e._processingMiddleware=!0;const E=new Set([...Aa,...e._middleware.global]);for(const C of m.matched){const k=C.meta.middleware;if(k)if(Array.isArray(k))for(const I of k)E.add(I);else E.add(k)}for(const C of E){const k=typeof C=="string"?e._middleware.named[C]||await((P=He[C])==null?void 0:P.call(He).then(M=>M.default||M)):C;if(!k)throw new Error(`Unknown route middleware: '${C}'.`);const I=await ue(e,k,[m,v]);if(!e.payload.serverRendered&&e.isHydrating&&(I===!1||I instanceof Error)){const M=I||Et({statusCode:404,statusMessage:`Page Not Found: ${i}`});return await ue(e,Se,[M]),!1}if(I||I===!1)return I}}),c.afterEach(async m=>{delete e._processingMiddleware,!e.isHydrating&&d.value&&await ue(e,ao),m.matched.length===0&&await ue(e,Se,[Et({statusCode:404,fatal:!1,statusMessage:`Page not found: ${m.fullPath}`})])}),e.hooks.hookOnce("app:created",async()=>{try{await c.replace({...c.resolve(i),name:void 0,force:!0})}catch(m){await ue(e,Se,[m])}}),{provide:{router:c}}}),Oe={"docs-page":()=>_(()=>import("./docs-page.436b5c87.js"),["./docs-page.436b5c87.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./docs-page.5b0d6071.css"],import.meta.url).then(e=>e.default||e),default:()=>_(()=>import("./default.440db00d.js"),["./default.440db00d.js","./DocsPageLayout.8e541ec6.js","./DocsAside.44ffd29b.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.443f6167.js","./ContentSlot.7e1a494f.js","./Alert.f24f4058.css","./DocsPageBottom.a96d3867.js","./ProseA.c8de8b63.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.21b8aa9d.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.adb795e8.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.03cf2013.js","./DocsTocLinks.c11364e4.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e),page:()=>_(()=>import("./page.57ff23a3.js"),["./page.57ff23a3.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./useDocus.edcbeab5.js","./app.config.4114fca6.js","./page.70291227.css"],import.meta.url).then(e=>e.default||e)},Sa=Q(()=>{const e=G(),t=je();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{var o;const r=(o=n==null?void 0:n.meta)==null?void 0:o.layout;r&&typeof Oe[r]=="function"&&await Oe[r]()})}),e.hooks.hook("link:prefetch",n=>{var i,c,l,a;if(pr(n))return;const r=t.resolve(n);if(!r)return;const o=(i=r==null?void 0:r.meta)==null?void 0:i.layout;let s=Array.isArray((c=r==null?void 0:r.meta)==null?void 0:c.middleware)?(l=r==null?void 0:r.meta)==null?void 0:l.middleware:[(a=r==null?void 0:r.meta)==null?void 0:a.middleware];s=s.filter(u=>typeof u=="string");for(const u of s)typeof He[u]=="function"&&He[u]();o&&typeof Oe[o]=="function"&&Oe[o]()})}),Oa=Q(()=>{const e=te(),t=J(),n=D(()=>{var r,o;return(o=(r=e==null?void 0:e.public)==null?void 0:r.algolia)==null?void 0:o.docSearch});if(n.value){const r=ae(),o=je(),s=D(()=>{const{algolia:a}=te();return a&&a.docSearch?a:{}}),i=a=>a.button===1||a.altKey||a.ctrlKey||a.metaKey||a.shiftKey,c=a=>{const{pathname:u,hash:h}=new URL(a),d=window.location.origin,f=u.replace(d,"/");return Ct(f)+h};(async a=>{const u=document.createElement("div");u.id="#docsearch-container",u.style.width="0",u.style.height="0",u.style.display="none",document.body.appendChild(u),t.value=u;const h=await Promise.all([_(()=>import("./index.ade63bb5.js"),[],import.meta.url),_(()=>Promise.resolve({}),["./style.6a49f87f.css"],import.meta.url)]).then(([b])=>b.default),d=(a==null?void 0:a.lang)||"en",f=`${a.langAttribute||"language"}:${d}`,p=a.docSearch.facetFilters||[];h({container:u,appId:a.applicationId,apiKey:a.apiKey,indexName:a.docSearch.indexName,searchParameters:{...d?{facetFilters:[f].concat(p)}:{facetFilters:p},...a.searchParameters},transformItems:a.transformItems?a.transformItems:b=>b.map(m=>({...m,url:c(m.url)})),navigator:a.navigator?a.navigator:{navigate:({itemUrl:b})=>{const{pathname:m}=new URL(window.location.origin+b);r.path===m?window.location.assign(window.location.origin+b):o.push(b)}},hitComponent:a.hitComponent?a.hitComponent:({hit:b,children:m})=>({type:"a",constructor:void 0,__v:1,props:{href:b.url,children:m,onClick:v=>{if(i(v)||r.fullPath===b.url)return;const{pathname:E}=new URL(window.location.origin+b.url);r.path!==E&&v.preventDefault(),o.push(b.url)}}}),...Object.entries(a).filter(([b])=>!["applicationId","apiKey","indexName","transformItems","navigator","hitComponent","facetFilters","langAttribute","lang"].includes(b)).reduce((b,[m,v])=>(b[m]=v,b),{})})})(s.value)}return{provide:{docSearch:{element:t,hasDocSearch:n}}}});function Ht(e){return JSON.stringify(e,Ia)}function Ia(e,t){return t instanceof RegExp?`--REGEX ${t.toString()}`:t}const Wr=e=>{let t=Ht(e);return t=typeof Buffer<"u"?Buffer.from(t).toString("base64"):btoa(t),t=t.replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,""),(t.match(/.{1,100}/g)||[]).join("/")},$a=()=>async e=>{const{content:t}=te().public,n=e.params(),r=t.experimental.stripQueryParameters?ze(`/query/${`${Ye(n)}.${t.integrity}`}/${Wr(n)}.json`):ze(`/query/${Ye(n)}.${t.integrity}.json`);if(fr())return(await _(()=>import("./client-db.a6af4843.js"),["./client-db.a6af4843.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.useContentDatabase())).fetch(e);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Tt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o};function Me(e,...t){const{content:n}=te().public,r=Nn($a(),typeof e!="string"?e:{});let o;typeof e=="string"&&(o=En(et(e,...t)));const s=r.params;return r.params=()=>{var c,l,a;const i=s();return o&&(i.where=i.where||[],i.first&&(i.where||[]).length===0?i.where.push({_path:Ct(o)}):i.where.push({_path:new RegExp(`^${o.replace(/[-[\]{}()*+.,^$\s/]/g,"\\$&")}`)})),(c=i.sort)!=null&&c.length||(i.sort=[{_file:1,$numeric:!0}]),n.locales.length&&((a=(l=i.where)==null?void 0:l.find(h=>h._locale))!=null&&a._locale||(i.where=i.where||[],i.where.push({_locale:n.defaultLocale}))),i},r}const Da=async e=>{const{content:t}=te().public;typeof(e==null?void 0:e.params)!="function"&&(e=Me(e));const n=e.params(),r=t.experimental.stripQueryParameters?ze(`/navigation/${`${Ye(n)}.${t.integrity}`}/${Wr(n)}.json`):ze(`/navigation/${Ye(n)}.${t.integrity}.json`);if(fr())return(await _(()=>import("./client-db.a6af4843.js"),["./client-db.a6af4843.js","./cookie.5bbb58d5.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.generateNavigation))(n);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Tt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o},Ha=Q(e=>{var s,i;const{documentDriven:t,experimental:n}=(i=(s=te())==null?void 0:s.public)==null?void 0:i.content,r=(c,l,a,u)=>{var h;if(l&&(l!=null&&l.layout))return l.layout;if(c.matched.length&&((h=c.matched[0].meta)!=null&&h.layout))return c.matched[0].meta.layout;if(a&&l){const{navKeyFromPath:d}=Pr(),f=d(l._path,"layout",a);if(f)return f}if(t.layoutFallbacks&&u){let d;for(const f of t.layoutFallbacks)if(u[f]&&u[f].layout){d=u[f].layout;break}if(d)return d}return"default"},o=async(c,l=!1)=>{e.callHook("content:document-driven:start",{route:c,dedup:l});const a=c.meta.documentDriven||{};if(c.meta.documentDriven===!1)return;const{navigation:u,pages:h,globals:d,surrounds:f}=ke(),p=Ct(c.path),b=[];if(t.navigation&&a.navigation!==!1){const m=()=>{const{navigation:v}=ke();return v.value&&!l?v.value:Da().then(E=>(v.value=E,E)).catch(()=>null)};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.globals){const m=()=>{const{globals:v}=ke();if(typeof t.globals=="object"&&Array.isArray(t.globals)){console.log("Globals must be a list of keys with QueryBuilderParams as a value.");return}return Promise.all(Object.entries(t.globals).map(([E,P])=>{if(!l&&v.value[E])return v.value[E];let C="findOne";return P!=null&&P.type&&(C=P.type),Me(P)[C]().catch(()=>null)})).then(E=>E.reduce((P,C,k)=>{const I=Object.keys(t.globals)[k];return P[I]=C,P},{}))};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.page&&a.page!==!1){let m={_path:p};typeof a.page=="string"&&(m={_path:a.page}),typeof a.page=="object"&&(m=a.page);const v=()=>{const{pages:E}=ke();return!l&&E.value[p]&&E.value[p]._path===p?E.value[p]:Me().where(m).findOne().catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));if(t.surround&&a.surround!==!1){let m=p;["string","object"].includes(typeof a.page)&&(m=a.page),["string","object"].includes(typeof a.surround)&&(m=a.surround);const v=()=>{const{surrounds:E}=ke();return!l&&E.value[p]?E.value[p]:Me().where({_partial:{$not:!0},navigation:{$not:!1}}).without(["body"]).findSurround(m).catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));return await Promise.all(b.map(m=>m())).then(async([m,v,E,P])=>{var k,I;m&&(u.value=m),v&&(d.value=v),P&&(f.value[p]=P);const C=(E==null?void 0:E.redirect)||((I=(k=E==null?void 0:E._dir)==null?void 0:k.navigation)==null?void 0:I.redirect);if(C)return h.value[p]=E,C;if(E){const M=r(c,E,m,v),ie=Oe[M];ie&&typeof ie=="function"&&await ie(),c.meta.layout=M,E.layout=M,h.value[p]=E}await e.callHook("content:document-driven:finish",{route:c,dedup:l,page:E,navigation:m,globals:v,surround:P})})};bn(async(c,l)=>{if(c.path.includes("favicon.ico")||!n.clientDB&&c.path===l.path)return;const a=await o(c,!1);if(a)return pr(a)?ue(e,wn,[a,{external:!0}]):a}),e.hook("app:data:refresh",async()=>await o(ae(),!0))});const Ma=e=>({color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`,borderColor:`{elements.state.${e}.borderColor.primary} !important`,":deep(p code)":{color:`{elements.state.${e}.color.secondary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(code)":{color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(a code)":{borderColor:`{elements.state.${e}.borderColor.primary} !important`},":deep(a)":{borderColor:"currentColor",code:{backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`},"&:hover":{color:`{elements.state.${e}.color.secondary} !important`,borderColor:"currentColor !important",code:{backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`,color:`{elements.state.${e}.color.secondary} !important`,borderColor:`{elements.state.${e}.borderColor.secondary} !important`}}}}),Va=e=>({marginTop:e,marginBottom:e}),xa=e=>({marginLeft:e,marginRight:e}),ja=e=>({paddingTop:e,paddingBottom:e}),Ba=e=>({paddingLeft:e,paddingRight:e}),Na={overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},Ua=e=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":e}),Ka=e=>({fontSize:`{text.${e}.fontSize}`,lineHeight:`{text.${e}.lineHeight}`}),Fa={stateColors:Ma,my:Va,mx:xa,py:ja,px:Ba,truncate:Na,lineClamp:Ua,text:Ka},za=Q(async e=>{e.vueApp.use(An,{colorSchemeMode:"class",utils:Fa})}),qa="__NUXT_COLOR_MODE__",Wa="ColorScheme",Ga="theme",Qa="nuxt-color-mode",se=window[qa],Za=Q(e=>{const t=kt("color-mode",()=>_e({preference:se.preference,value:se.value,unknown:!1,forced:!1})).value;Je({htmlAttrs:{[`data-${Ga}`]:D(()=>t.value)}}),je().afterEach(o=>{const s=o.meta.colorMode;s&&s!=="system"?(t.value=s,t.forced=!0):(s==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?se.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=se.getColorScheme())}))}fe(()=>t.preference,o=>{var s;t.forced||(o==="system"?(t.value=se.getColorScheme(),r()):t.value=o,(s=window.localStorage)==null||s.setItem(Qa,o))},{immediate:!0}),fe(()=>t.value,(o,s)=>{se.removeColorScheme(s),se.addColorScheme(o)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=se.preference,t.value=se.value,t.unknown=!1)}),e.provide("colorMode",t)}),cr=".studio",Ke={appConfig:`${cr}/app.config.json`,tokensConfig:`${cr}/tokens.config.json`},bl=e=>{let t;return(...n)=>(t||(t=e()),t)};function Ja(e,t){for(const n in e){const r=t[n];n in t||delete e[n],r!==null&&typeof r=="object"&&Ja(e[n],t[n])}}function Ya(e,t){for(const n in t){const r=t[n];r!==null&&typeof r=="object"?(e[n]=e[n]||{},Ya(e[n],r)):e[n]=r}}const Xa=Q(async e=>{let t,n;if(!window.parent||window.self===window.parent)return;const r=je(),o=J(""),s=J(!0),i=p=>({path:p.path,query:dt(p.query),params:dt(p.params),fullPath:p.fullPath,meta:dt(p.meta)}),c=([t,n]=qe(()=>_(()=>import("./useStudio.a9d51910.js"),["./useStudio.a9d51910.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.2775b491.js","./ContentPreviewMode.0a29e9d3.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(p=>p.useStudio)),t=await t,n(),t),{findContentWithId:l,updateContent:a,removeContentWithId:u,requestRerender:h,syncPreviewAppConfig:d,syncPreviewTokensConfig:f}=c();window.addEventListener("keydown",p=>{(p.metaKey||p.ctrlKey||p.altKey||p.shiftKey)&&window.parent.postMessage({type:"nuxt-studio:preview:keydown",payload:{key:p.key,metaKey:p.metaKey,ctrlKey:p.ctrlKey,shiftKey:p.shiftKey,altKey:p.altKey}},"*")}),window.addEventListener("message",async p=>{const{type:b,payload:m={}}=p.data||{};switch(b){case"nuxt-studio:editor:file-selected":{const v=await l(m.path);v?v._partial||v._path!==ae().path&&(o.value=v._path,r.push(v._path)):(o.value="/",ae().path!=="/"&&r.push("/"));break}case"nuxt-studio:editor:file-changed":{const{additions:v=[],deletions:E=[]}=m;for(const P of v)await a(P);for(const P of E)await u(P.path);h();break}case"nuxt-studio:config:file-changed":{const{additions:v=[],deletions:E=[]}=m,P=v.find(M=>M.path===Ke.appConfig);P&&d(P==null?void 0:P.parsed),E.find(M=>M.path===Ke.appConfig)&&d(void 0);const k=v.find(M=>M.path===Ke.tokensConfig);k&&f(k==null?void 0:k.parsed),E.find(M=>M.path===Ke.tokensConfig)&&f(void 0);break}}}),e.hook("content:document-driven:finish",({route:p,page:b,dedup:m})=>{if(m||s.value){s.value=!1;return}if(b&&o.value===b._path){o.value="";return}window.parent.postMessage({type:"nuxt-studio:preview:document-driven:finish",payload:{...i(p),contentId:b==null?void 0:b._id}},"*")}),r==null||r.afterEach(p=>{window.parent.postMessage({type:"nuxt-studio:preview:route-changed",payload:i(p)},"*")}),e.hook("nuxt-studio:preview:ready",()=>{window.parent.postMessage({type:"nuxt-studio:preview:ready",payload:i(ae())},"*")})}),ei=Q(e=>{const t=te().public.studio||{},n=ae(),r=Tt("previewToken",{sameSite:"none",secure:!0});async function o(){const s=await _(()=>import("./useStudio.a9d51910.js"),["./useStudio.a9d51910.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.2775b491.js","./ContentPreviewMode.0a29e9d3.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(c=>c.useStudio),{mountPreviewUI:i}=s();i(),Me("/non-existing-path").findOne()}if(t.apiURL){if(Object.prototype.hasOwnProperty.call(n.query,"preview")&&!n.query.preview||!n.query.preview&&!r.value)return;n.query.preview&&r.value!==n.query.preview&&(r.value=String(n.query.preview)),e.hook("app:mounted",async()=>{await o()})}}),ti=Q(e=>{hs()&&(e.hooks.hook("link:prefetch",t=>{if(!Pn(t).protocol)return Ft(t)}),je().beforeResolve(async(t,n)=>{if(t.path===n.path)return;const r=await Ft(t.path);r&&Object.assign(e.static.data,r.data)}))}),ri=Q(e=>{const t=J(!1),n=()=>t.value=!0,r=()=>t.value=!1,o=()=>t.value=!t.value;return e.$router.afterEach(()=>setTimeout(r,50)),fe(t,s=>{const i=document.documentElement;s?i.style.overflow="hidden":setTimeout(()=>{i.style.overflow=""},100)},{immediate:!0}),{provide:{menu:{visible:t,close:r,open:n,toggle:o}}}}),ni=Q(()=>{navigator&&navigator.userAgent&&navigator.userAgent.match(/Win[a-z0-9]*;/)&&document.documentElement.classList.add("docus-scrollbars")}),oi=[_s,vs,La,Sa,Oa,Ha,za,Za,Xa,ei,ti,ri,ni],si=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""}),ai=(e,t)=>{const n=e.route.matched.find(o=>{var s;return((s=o.components)==null?void 0:s.default)===e.Component.type}),r=t??(n==null?void 0:n.meta.key)??(n&&si(e.route,n));return typeof r=="function"?r(e.route):r},ii=(e,t)=>({default:()=>e?W(Dn,e===!0?{}:e,t):t}),li=K({name:"FragmentWrapper",setup(e,{slots:t}){return()=>{var n;return(n=t.default)==null?void 0:n.call(t)}}}),ci=(e,t,n)=>({default:()=>t?W(e,t===!0?{}:t,n):W(li,{},n)}),Gr=K({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t}){const n=G();return()=>W(qr,{name:e.name,route:e.route,...t},{default:r=>{if(!r.Component)return;const o=ai(r,e.pageKey),s=n.deferHydration(),i=!!(e.transition??r.route.meta.pageTransition??bt),c=i&&di([e.transition,r.route.meta.pageTransition,bt,{onAfterLeave:()=>{n.callHook("page:transition:finish",r.Component)}}].filter(Boolean));return ci(un,i&&c,ii(e.keepalive??r.route.meta.keepalive??gs,W(yr,{onPending:()=>n.callHook("page:start",r.Component),onResolve:()=>{Pe(()=>n.callHook("page:finish",r.Component).finally(s))}},{default:()=>W(fi,{key:o,routeProps:r,pageKey:o,hasTransition:i})}))).default()}})}});function ui(e){return Array.isArray(e)?e:e?[e]:[]}function di(e){const t=e.map(n=>({...n,onAfterLeave:ui(n.onAfterLeave)}));return Un(...t)}const fi=K({name:"RouteProvider",props:["routeProps","pageKey","hasTransition"],setup(e){const t=e.pageKey,n=e.routeProps.route,r={};for(const o in e.routeProps.route)r[o]=D(()=>t===e.pageKey?e.routeProps.route[o]:n[o]);return Ie("_route",_e(r)),()=>W(e.routeProps.Component)}}),wl=Object.freeze(Object.defineProperty({__proto__:null,default:Gr},Symbol.toStringTag,{value:"Module"}));const Qr={__name:"AppLoadingBar",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3}},setup(e){const t=e,n=G(),r=_e({percent:0,show:!1,canSucceed:!0});let o=null,s=null,i;function c(){o&&clearInterval(o),s&&clearTimeout(s),o=null}function l(){r.show||(c(),r.percent=0,r.canSucceed=!0,t.throttle?s=setTimeout(d,t.throttle):d())}function a(f){r.percent=Math.min(100,Math.floor(r.percent+f))}function u(){r.percent=100,h()}function h(){c(),setTimeout(()=>{r.show=!1,setTimeout(()=>{r.percent=0},400)},500)}function d(){r.show=!0,i=1e4/Math.floor(t.duration),o=setInterval(()=>{a(i)},100)}return n.hook("content:middleware:start",l),n.hook("page:start",l),n.hook("page:finish",u),mr(()=>c),(f,p)=>(L(),j("div",{class:At(["nuxt-progress",{"nuxt-progress-failed":!R(r).canSucceed}]),style:Hn({width:`${R(r).percent}%`,left:R(r).left,opacity:R(r).show?1:0,backgroundSize:`${100/R(r).percent*100}% auto`})},null,6))}},pi=Object.freeze(Object.defineProperty({__proto__:null,default:Qr},Symbol.toStringTag,{value:"Module"})),hi=K({__name:"AppSocialIcons",setup(e){const t=["twitter","facebook","instagram","youtube","github","medium"],{config:n}=me(),r=D(()=>Object.entries(n.value.socials||{}).map(([o,s])=>typeof s=="object"?s:typeof s=="string"&&s&&t.includes(o)?{href:`https://${o}.com/${s}`,icon:`fa-brands:${o}`,label:s}:null).filter(Boolean));return(o,s)=>{const i=we,c=tt;return L(!0),j(Ve,null,We(R(r),l=>(L(),x(c,{key:l.label,rel:"noopener noreferrer",title:l.label,"aria-label":l.label,href:l.href,target:"_blank"},{default:re(()=>[l.icon?(L(),x(i,{key:0,name:l.icon},null,8,["name"])):ee("",!0)]),_:2},1032,["title","aria-label","href"]))),128)}}});const ot=X(hi,[["__scopeId","data-v-224b171c"]]),_i=Object.freeze(Object.defineProperty({__proto__:null,default:ot},Symbol.toStringTag,{value:"Module"})),mi=()=>{const{$menu:e}=G();return e},gi={class:"wrapper"},yi={class:"icons"},vi=K({__name:"AppHeaderDialog",setup(e){const{navigation:t}=Lt(),{config:n}=me(),r=D(()=>{var l;return((l=n.value.aside)==null?void 0:l.exclude)||[]}),o=D(()=>(t.value||[]).filter(l=>!r.value.includes(l._path))),{visible:s,open:i,close:c}=mi();return fe(s,l=>l?i():c()),(l,a)=>{const u=we,h=ot,d=fn;return L(),j(Ve,null,[V("button",{"aria-label":"Menu",onClick:a[0]||(a[0]=(...f)=>R(i)&&R(i)(...f))},[U(u,{name:"heroicons-outline:menu","aria-hidden":"”true”"})]),(L(),x(Mn,{to:"body"},[R(s)?(L(),j("nav",{key:0,class:"dialog",onClick:a[3]||(a[3]=(...f)=>R(c)&&R(c)(...f))},[V("div",{onClick:a[2]||(a[2]=dn(()=>{},["stop"]))},[V("div",gi,[V("button",{"aria-label":"Menu",onClick:a[1]||(a[1]=(...f)=>R(c)&&R(c)(...f))},[U(u,{name:"heroicons-outline:x","aria-hidden":"”true”"})]),V("div",yi,[U(h)])]),U(d,{links:R(o)},null,8,["links"])])])):ee("",!0)]))],64)}}});const Zr=X(vi,[["__scopeId","data-v-291983a4"]]),Ei=Object.freeze(Object.defineProperty({__proto__:null,default:Zr},Symbol.toStringTag,{value:"Module"})),bi={},wi={viewBox:"133.827 188.259 264.992 112.316",width:"100",height:"50",style:{height:"50px"}},Pi=Vn('',10),Ri=[Pi];function Ti(e,t){return L(),j("svg",wi,Ri)}const Jr=X(bi,[["render",Ti]]),Ci=Object.freeze(Object.defineProperty({__proto__:null,default:Jr},Symbol.toStringTag,{value:"Module"})),Ai={key:2},ki=K({__name:"AppHeaderLogo",setup(e){const{config:t}=me(),n=D(()=>{var o;return((o=t.value.header)==null?void 0:o.logo)||!1}),r=D(()=>{var o;return((o=t.value.header)==null?void 0:o.title)||t.value.title});return(o,s)=>{const i=Jr,c=tt;return L(),x(c,{class:"navbar-logo",to:"/","aria-label":R(r)},{default:re(()=>[R(n)&&typeof R(n)=="string"?(L(),x(vr(R(n)),{key:0})):R(n)?(L(),x(i,{key:1})):(L(),j("span",Ai,Ge(R(r)),1))]),_:1},8,["aria-label"])}}});const Yr=X(ki,[["__scopeId","data-v-0e437bbb"]]),Li=Object.freeze(Object.defineProperty({__proto__:null,default:Yr},Symbol.toStringTag,{value:"Module"})),Si={key:0},Oi=K({__name:"AppHeaderNavigation",setup(e){const t=ae(),{navBottomLink:n}=Pr(),{navigation:r}=Lt(),{config:o}=me(),s=D(()=>{var a;return!!((a=o.value.aside)!=null&&a.level)}),i=D(()=>{var a;return((a=o.value.header)==null?void 0:a.exclude)||[]}),c=D(()=>(r.value||[]).filter(a=>!i.value.includes(a._path))),l=a=>a.exact?t.fullPath===a._path:t.fullPath.startsWith(a._path);return(a,u)=>{const h=we,d=tt;return R(s)?(L(),j("nav",Si,[V("ul",null,[(L(!0),j(Ve,null,We(R(c),f=>(L(),j("li",{key:f._path},[U(d,{class:At(["link",{active:l(f)}]),to:f.redirect?f.redirect:R(n)(f)},{default:re(()=>{var p,b;return[f.icon&&((b=(p=R(o))==null?void 0:p.header)!=null&&b.showLinkIcon)?(L(),x(h,{key:0,name:f.icon},null,8,["name"])):ee("",!0),Er(" "+Ge(f.title),1)]}),_:2},1032,["to","class"])]))),128))])])):ee("",!0)}}});const Xr=X(Oi,[["__scopeId","data-v-01b60614"]]),Ii=Object.freeze(Object.defineProperty({__proto__:null,default:Xr},Symbol.toStringTag,{value:"Module"})),en=()=>{const{$docSearch:e}=G();return e||{hasDocSearch:J(!1)}},tn=e=>(xn("data-v-1e99f08b"),e=e(),jn(),e),$i={type:"button","aria-label":"Search"},Di={class:"content"},Hi=tn(()=>V("span",null,"Search",-1)),Mi=tn(()=>V("span",null,[V("kbd",null,"⌘"),V("kbd",null,"K")],-1)),Vi=K({__name:"AppSearch",setup(e){const{element:t}=en(),n=()=>t.value.querySelector("button").click();return(r,o)=>{const s=we;return L(),j("div",{class:"doc-search",onClick:n},[V("button",$i,[V("span",Di,[U(s,{name:"heroicons-outline:search"}),Hi,Mi])])])}}});const rn=X(Vi,[["__scopeId","data-v-1e99f08b"]]),xi=Object.freeze(Object.defineProperty({__proto__:null,default:rn},Symbol.toStringTag,{value:"Module"})),nn=K({name:"ClientOnly",inheritAttrs:!1,props:["fallback","placeholder","placeholderTag","fallbackTag"],setup(e,{slots:t,attrs:n}){const r=J(!1);return br(()=>{r.value=!0}),o=>{var l;if(r.value)return(l=t.default)==null?void 0:l.call(t);const s=t.fallback||t.placeholder;if(s)return s();const i=o.fallback||o.placeholder||"",c=o.fallbackTag||o.placeholderTag||"span";return j(c,n,i)}}}),gt=new WeakMap;function ji(e){if(gt.has(e))return gt.get(e);const t={...e};return t.render?t.render=(n,...r)=>{if(n.mounted$){const o=e.render(n,...r);return o.children===null||typeof o.children=="string"?V(o.type,o.props,o.children,o.patchFlag,o.dynamicProps,o.shapeFlag):W(o)}else return W("div",n.$attrs??n._.attrs)}:t.template&&(t.template=` - - - `),t.setup=(n,r)=>{var s;const o=J(!1);return br(()=>{o.value=!0}),Promise.resolve(((s=e.setup)==null?void 0:s.call(e,n,r))||{}).then(i=>typeof i!="function"?{...i,mounted$:o}:(...c)=>{if(o.value){const l=i(...c);return l.children===null||typeof l.children=="string"?V(l.type,l.props,l.children,l.patchFlag,l.dynamicProps,l.shapeFlag):W(l)}else return W("div",r.attrs)})},gt.set(e,t),t}const Pl=Object.freeze(Object.defineProperty({__proto__:null,createClientOnly:ji,default:nn},Symbol.toStringTag,{value:"Module"})),Bi={name:Wa,props:{placeholder:String,tag:{type:String,default:"span"}}};function Ni(e,t,n,r,o,s){const i=nn;return L(),x(i,{placeholder:n.placeholder,"placeholder-tag":n.tag},{default:re(()=>[wr(e.$slots,"default")]),_:3},8,["placeholder","placeholder-tag"])}const on=X(Bi,[["render",Ni]]),Rl=Object.freeze(Object.defineProperty({__proto__:null,default:on},Symbol.toStringTag,{value:"Module"})),Ui=()=>kt("color-mode").value,Ki=K({__name:"ThemeSelect",setup(e){const t=Ui(),n=()=>{const r=["system","light","dark"],s=(r.indexOf(t.preference)+1)%r.length;t.preference=r[s]};return(r,o)=>{const s=we,i=on;return L(),j("button",{"aria-label":"Color Mode",onClick:n},[U(i,{placeholder:"..."},{default:re(()=>[R(t).preference==="dark"?(L(),x(s,{key:0,name:"uil:moon"})):R(t).preference==="light"?(L(),x(s,{key:1,name:"uil:sun"})):(L(),x(s,{key:2,name:"uil:desktop"}))]),_:1})])}}});const sn=X(Ki,[["__scopeId","data-v-4a6c39b0"]]),Fi=Object.freeze(Object.defineProperty({__proto__:null,default:sn},Symbol.toStringTag,{value:"Module"})),zi={class:"section left"},qi={class:"section center"},Wi={class:"section right"},Gi={class:"social-icons"},Qi=K({__name:"AppHeader",props:{},setup(e){const{config:t}=me(),{navigation:n}=Lt(),{hasDocSearch:r}=en(),o=D(()=>{var s;return((s=n.value)==null?void 0:s.length)>1});return(s,i)=>{var p,b;const c=Zr,l=Yr,a=Xr,u=rn,h=sn,d=ot,f=hr;return L(),j("header",{class:At({"has-dialog":R(o),"has-doc-search":R(r)})},[U(f,{fluid:(b=(p=R(t))==null?void 0:p.header)==null?void 0:b.fluid},{default:re(()=>[V("div",zi,[R(o)?(L(),x(c,{key:0})):ee("",!0),U(l)]),V("div",qi,[R(o)?(L(),x(l,{key:0})):ee("",!0),U(a)]),V("div",Wi,[R(r)?(L(),x(u,{key:0})):ee("",!0),U(h),V("div",Gi,[U(d)])])]),_:1},8,["fluid"])],2)}}});const an=X(Qi,[["__scopeId","data-v-8375ebf7"]]),Zi=Object.freeze(Object.defineProperty({__proto__:null,default:an},Symbol.toStringTag,{value:"Module"})),Ji={class:"left"},Yi=["href"],Xi={key:1},el={class:"center"},tl={class:"right"},rl=["aria-label","href"],nl=K({__name:"AppFooter",setup(e){const{config:t}=me(),n=J(null),r=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.iconLinks)||[]}),o=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.textLinks)||[]}),s=D(()=>{var c;return Object.entries(((c=t.value)==null?void 0:c.socials)||{}).filter(([l,a])=>a).length}),i=D(()=>n.value?s.value:0);return(c,l)=>{var f,p;const a=tt,u=we,h=ot,d=hr;return L(),j("footer",null,[U(d,{fluid:(p=(f=R(t))==null?void 0:f.footer)==null?void 0:p.fluid,padded:"",class:"footer-container"},{default:re(()=>{var b,m,v,E,P,C,k,I,M,ie,Re,Te,Ce,le;return[V("div",Ji,[(m=(b=R(t))==null?void 0:b.footer)!=null&&m.credits?(L(),j("a",{key:0,href:((P=(E=(v=R(t))==null?void 0:v.footer)==null?void 0:E.credits)==null?void 0:P.href)||"#",rel:"noopener",target:"_blank"},[(I=(k=(C=R(t))==null?void 0:C.footer)==null?void 0:k.credits)!=null&&I.icon?(L(),x(vr((Re=(ie=(M=R(t))==null?void 0:M.footer)==null?void 0:ie.credits)==null?void 0:Re.icon),{key:0,class:"left-icon"})):ee("",!0),(le=(Ce=(Te=R(t))==null?void 0:Te.footer)==null?void 0:Ce.credits)!=null&&le.text?(L(),j("p",Xi,Ge(R(t).footer.credits.text),1)):ee("",!0)],8,Yi)):ee("",!0)]),V("div",el,[(L(!0),j(Ve,null,We(R(o),Z=>(L(),x(a,{key:Z.href,class:"text-link","aria-label":Z.text,href:Z.href,target:Z.target||"_self"},{default:re(()=>[Er(Ge(Z.text),1)]),_:2},1032,["aria-label","href","target"]))),128))]),V("div",tl,[(L(!0),j(Ve,null,We(R(r).slice(0,6-R(i)),Z=>(L(),j("a",{key:Z.label,class:"icon-link",rel:"noopener","aria-label":Z.label,href:Z.href,target:"_blank"},[U(u,{name:Z.icon},null,8,["name"])],8,rl))),128)),U(h,{ref_key:"socialIcons",ref:n},null,512)])]}),_:1},8,["fluid"])])}}});const ln=X(nl,[["__scopeId","data-v-eebf8ee0"]]),ol=Object.freeze(Object.defineProperty({__proto__:null,default:ln},Symbol.toStringTag,{value:"Module"})),sl=(e,t=ae())=>{const n=R(e),r=te();fe(()=>R(e),(s=n)=>{if(!t.path||!s)return;const i=Object.assign({},(s==null?void 0:s.head)||{});i.meta=[...i.meta||[]],i.link=[...i.link||[]];const c=i.title||(s==null?void 0:s.title);c&&(i.title=c),r.public.content.host;const l=(i==null?void 0:i.description)||(s==null?void 0:s.description);l&&i.meta.filter(a=>a.name==="description").length===0&&i.meta.push({name:"description",content:l}),i!=null&&i.image||(s==null||s.image),Pe(()=>Je(i))},{immediate:!0})},al=K({__name:"AppLayout",setup(e){const{config:t}=me();return Je({titleTemplate:t.value.titleTemplate,meta:[{name:"twitter:card",content:"summary_large_image"}]}),fe(()=>t.value.titleTemplate,()=>Je({titleTemplate:t.value.titleTemplate})),sl(t.value),(n,r)=>{const o=Qr,s=an,i=ln;return L(),j("div",null,[U(o),U(s),wr(n.$slots,"default"),U(i)])}}}),il={};function ll(e,t){const n=Gr,r=al;return L(),x(r,null,{default:re(()=>[U(n)]),_:1})}const cl=X(il,[["render",ll]]),ur={__name:"nuxt-root",setup(e){const t=g(()=>_(()=>import("./error-component.a846670f.js"),["./error-component.a846670f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(c=>c.default||c)),n=()=>null,r=G(),o=r.deferHydration();Ie("_route",ae()),r.hooks.callHookWith(c=>c.map(l=>l()),"vue:setup");const s=rt();Bn((c,l,a)=>{r.hooks.callHook("vue:error",c,l,a).catch(u=>console.error("[nuxt] Error in `vue:error` hook",u)),io(c)&&(c.fatal||c.unhandled)&&ue(r,Se,[c])});const{islandContext:i}=!1;return(c,l)=>(L(),x(yr,{onResolve:R(o)},{default:re(()=>[R(s)?(L(),x(R(t),{key:0,error:R(s)},null,8,["error"])):R(i)?(L(),x(R(n),{key:1,context:R(i)},null,8,["context"])):(L(),x(R(cl),{key:2}))]),_:1},8,["onResolve"]))}};globalThis.$fetch||(globalThis.$fetch=eo.create({baseURL:ro()}));let dr;const ul=Rn(oi);dr=async function(){var o;const n=Boolean((o=window.__NUXT__)==null?void 0:o.serverRendered)?pn(ur):hn(ur),r=Tn({vueApp:n});try{await Cn(r,ul)}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}try{await r.hooks.callHook("app:created",n),await r.hooks.callHook("app:beforeMount",n),n.mount("#"+ys),await r.hooks.callHook("app:mounted",n),await Pe()}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}},dr().catch(e=>{console.error("Error while mounting app:",e)});export{pi as A,Ci as L,cr as S,Fi as T,al as _,sl as a,Je as b,lo as c,El as d,vl as e,Da as f,ci as g,Ye as h,bl as i,Ya as j,Ja as k,Oe as l,Ke as m,_i as n,Ei as o,wl as p,Me as q,Li as r,Ii as s,xi as t,Ui as u,Pl as v,Rl as w,Zi as x,ol as y}; diff --git a/docs/.output/public/_nuxt/entry.f3791b9c.js b/docs/.output/public/_nuxt/entry.f3791b9c.js new file mode 100644 index 00000000..efaaf5d7 --- /dev/null +++ b/docs/.output/public/_nuxt/entry.f3791b9c.js @@ -0,0 +1,10 @@ +import{w as Fe,s as dr,T as cn,_ as we,a as un,b as dn,c as fn,d as pn}from"./DocsAsideTree.b95e55e0.js";import{d as hn,u as Rt}from"./cookie.b9cff64d.js";import{w as _n,a as mn,j as Tt,u as Y,c as gn,d as Q,b as yn,e as ze,f as ae,g as ue,h as jt,i as Xe,k as fr,l as se,m as Ct,n as vn,o as En,p as bn,_ as et,q as wn,r as Pn,s as Rn}from"./app.config.f41ab05d.js";import{_,p as Tn,a as X,b as pr}from"./Container.f1017aa2.js";import{t as Cn,n as Pe,g as hr,i as he,r as Z,w as An,a as fe,o as _r,b as kn,c as Ln,u as R,d as Sn,v as mr,e as g,s as gt,f as U,h as D,p as Ie,j as W,k as _e,l as On,m as ut,K as In,S as gr,q as L,x as j,y as At,z as $n,A as qe,F as Ve,B as x,C as te,D as ee,E as V,G as K,T as Dn,H as Hn,I as yr,J as We,L as vr,M as Mn,N as Vn,O as Er,P as br,Q as xn}from"./runtime-core.esm-bundler.6894272a.js";import{u as kt,a as ke,b as wr,c as me,d as Lt}from"./useDocus.41ab1ca5.js";import{c as jn}from"./query.c3f7607a.js";import{d as Bn}from"./index.d2b0cb5e.js";class Nn extends Error{constructor(){super(...arguments),this.name="FetchError"}}function Kn(e,t,n){let r="";e&&n&&(r=`${n.status} ${n.statusText} (${e.toString()})`),t&&(r=`${t.message} (${r})`);const o=new Nn(r);return Object.defineProperty(o,"request",{get(){return e}}),Object.defineProperty(o,"response",{get(){return n}}),Object.defineProperty(o,"data",{get(){return n&&n._data}}),Object.defineProperty(o,"status",{get(){return n&&n.status}}),Object.defineProperty(o,"statusText",{get(){return n&&n.statusText}}),Object.defineProperty(o,"statusCode",{get(){return n&&n.status}}),Object.defineProperty(o,"statusMessage",{get(){return n&&n.statusText}}),o}const Un=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Bt(e="GET"){return Un.has(e.toUpperCase())}function Fn(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const zn=new Set(["image/svg","application/xml","application/xhtml","application/html"]),qn=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Wn(e=""){if(!e)return"json";const t=e.split(";").shift();return qn.test(t)?"json":zn.has(t)||t.startsWith("text/")?"text":"blob"}const Gn=new Set([408,409,425,429,500,502,503,504]);function Pr(e){const{fetch:t,Headers:n}=e;function r(i){const c=i.error&&i.error.name==="AbortError"||!1;if(i.options.retry!==!1&&!c){const a=typeof i.options.retry=="number"?i.options.retry:Bt(i.options.method)?0:1,u=i.response&&i.response.status||500;if(a>0&&Gn.has(u))return o(i.request,{...i.options,retry:a-1})}const l=Kn(i.request,i.error,i.response);throw Error.captureStackTrace&&Error.captureStackTrace(l,o),l}const o=async function(c,l={}){const a={request:c,options:{...e.defaults,...l},response:void 0,error:void 0};a.options.onRequest&&await a.options.onRequest(a),typeof a.request=="string"&&(a.options.baseURL&&(a.request=_n(a.request,a.options.baseURL)),(a.options.query||a.options.params)&&(a.request=mn(a.request,{...a.options.params,...a.options.query})),a.options.body&&Bt(a.options.method)&&Fn(a.options.body)&&(a.options.body=typeof a.options.body=="string"?a.options.body:JSON.stringify(a.options.body),a.options.headers=new n(a.options.headers),a.options.headers.has("content-type")||a.options.headers.set("content-type","application/json"),a.options.headers.has("accept")||a.options.headers.set("accept","application/json"))),a.response=await t(a.request,a.options).catch(async h=>(a.error=h,a.options.onRequestError&&await a.options.onRequestError(a),r(a)));const u=(a.options.parseResponse?"json":a.options.responseType)||Wn(a.response.headers.get("content-type")||"");if(u==="json"){const h=await a.response.text(),d=a.options.parseResponse||hn;a.response._data=d(h)}else u==="stream"?a.response._data=a.response.body:a.response._data=await a.response[u]();return a.options.onResponse&&await a.options.onResponse(a),a.response.status>=400&&a.response.status<600?(a.options.onResponseError&&await a.options.onResponseError(a),r(a)):a.response},s=function(c,l){return o(c,l).then(a=>a._data)};return s.raw=o,s.native=t,s.create=(i={})=>Pr({...e,defaults:{...e.defaults,...i}}),s}const Rr=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),Qn=Rr.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),Zn=Rr.Headers,Jn=Pr({fetch:Qn,Headers:Zn}),Yn=Jn,Xn=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},Ge=Xn().app,eo=()=>Ge.baseURL,to=()=>Ge.buildAssetsDir,ro=(...e)=>Tt(Tr(),to(),...e),Tr=(...e)=>{const t=Ge.cdnURL||Ge.baseURL;return e.length?Tt(t,...e):t};globalThis.__buildAssetsURL=ro,globalThis.__publicAssetsURL=Tr;class yt extends Error{constructor(){super(...arguments),this.statusCode=500,this.fatal=!1,this.unhandled=!1,this.statusMessage=void 0}toJSON(){const t={message:this.message,statusCode:this.statusCode};return this.statusMessage&&(t.statusMessage=this.statusMessage),this.data!==void 0&&(t.data=this.data),t}}yt.__h3_error__=!0;function vt(e){if(typeof e=="string")return new yt(e);if(no(e))return e;const t=new yt(e.message??e.statusMessage,e.cause?{cause:e.cause}:void 0);if("stack"in e)try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}return e.data&&(t.data=e.data),e.statusCode?t.statusCode=e.statusCode:e.status&&(t.statusCode=e.status),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function no(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const tt=()=>Cn(Y().payload,"error"),Se=e=>{const t=ao(e);try{Y().callHook("app:error",t);const r=tt();r.value=r.value||t}catch{throw t}return t},oo=async(e={})=>{const t=Y(),n=tt();t.callHook("app:error:cleared",e),e.redirect&&await t.$router.replace(e.redirect),n.value=null},so=e=>!!(e&&typeof e=="object"&&"__nuxt_error"in e),ao=e=>{const t=vt(e);return t.__nuxt_error=!0,t},io=["script","style","noscript"],lo=["base","meta","link","style","script","noscript"],co=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function uo(e,t){const{props:n,tag:r}=e;if(co.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Be=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),io.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function St(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function Cr(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||St(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Be(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Be(f),a(f);continue}f.$el=r.createElement(p.tag),Be(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!lo.includes(v))continue;const E=uo({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Be(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let Ue=null;async function fo(e,t={}){function n(){return Ue=null,Cr(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return Ue=Ue||new Promise(o=>r(()=>o(n())))}const po={__proto__:null,debouncedRenderDOMHead:fo,get domUpdatePromise(){return Ue},hashCode:St,renderDOMHead:Cr},ho=["title","titleTemplate","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],_o=["tagPosition","tagPriority","tagDuplicateStrategy"];async function mo(e,t){const n={tag:e,props:{}};return e==="title"||e==="titleTemplate"?(n.children=t instanceof Promise?await t:t,n):(n.props=await go({...t}),["children","innerHtml","innerHTML"].forEach(r=>{typeof n.props[r]<"u"&&(n.children=n.props[r],typeof n.children=="object"&&(n.children=JSON.stringify(n.children)),delete n.props[r])}),Object.keys(n.props).filter(r=>_o.includes(r)).forEach(r=>{n[r]=n.props[r],delete n.props[r]}),typeof n.props.class=="object"&&!Array.isArray(n.props.class)&&(n.props.class=Object.keys(n.props.class).filter(r=>n.props.class[r])),Array.isArray(n.props.class)&&(n.props.class=n.props.class.join(" ")),n.props.content&&Array.isArray(n.props.content)?n.props.content.map((r,o)=>{const s={...n,props:{...n.props}};return s.props.content=r,s.key=`${n.props.name||n.props.property}:${o}`,s}):n)}async function go(e){for(const t of Object.keys(e))e[t]instanceof Promise&&(e[t]=await e[t]),String(e[t])==="true"?e[t]="":String(e[t])==="false"&&delete e[t];return e}const Nt=e=>{if(typeof e.tagPriority=="number")return e.tagPriority;switch(e.tagPriority){case"critical":return 2;case"high":return 9;case"low":return 12}switch(e.tag){case"base":return-1;case"title":return 1;case"meta":return e.props.charset?-2:e.props["http-equiv"]==="content-security-policy"?0:10;default:return 10}},yo=(e,t)=>Nt(e)-Nt(t),vo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function Eo(e,t){const{props:n,tag:r}=e;if(vo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Kt=(e,t)=>e==null?t||null:typeof e=="function"?e(t):e.replace("%s",t??"");function bo(e){let t=e.findIndex(r=>r.tag==="titleTemplate");const n=e.findIndex(r=>r.tag==="title");if(n!==-1&&t!==-1){const r=Kt(e[t].children,e[n].children);r!==null?e[n].children=r||e[n].children:delete e[n]}else if(t!==-1){const r=Kt(e[t].children);r!==null&&(e[t].children=r,e[t].tag="title",t=-1)}return t!==-1&&delete e[t],e.filter(Boolean)}const wo=e=>{e=e||{};const t=e.dedupeKeys||["hid","vmid","key"];return{hooks:{"tag:normalise":function({tag:n}){t.forEach(o=>{n.props[o]&&(n.key=n.props[o],delete n.props[o])});const r=n.key?`${n.tag}:${n.key}`:Eo(n);r&&(n._d=r)},"tags:resolve":function(n){const r={};n.tags.forEach(o=>{let s=o._d||o._p;const i=r[s];if(i){let c=o==null?void 0:o.tagDuplicateStrategy;if(!c&&(o.tag==="htmlAttrs"||o.tag==="bodyAttrs")&&(c="merge"),c==="merge"){const a=i.props;["class","style"].forEach(u=>{o.props[u]&&a[u]&&(u==="style"&&!a[u].endsWith(";")&&(a[u]+=";"),o.props[u]=`${a[u]} ${o.props[u]}`)}),r[s].props={...a,...o.props};return}else o._e===i._e&&(s=o._d=`${s}:${o._p}`);const l=Object.keys(o.props).length;if((l===0||l===1&&typeof o.props["data-h-key"]<"u")&&!o.children){delete r[s];return}}r[s]=o}),n.tags=Object.values(r)}}}},Po=()=>({hooks:{"tags:resolve":e=>{const t=n=>{var r;return(r=e.tags.find(o=>o._d===n))==null?void 0:r._p};for(const n of e.tags){if(!n.tagPriority||typeof n.tagPriority=="number")continue;const r=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}];for(const{prefix:o,offset:s}of r)if(n.tagPriority.startsWith(o)){const i=n.tagPriority.replace(o,""),c=t(i);typeof c<"u"&&(n._p=c+s)}}e.tags.sort((n,r)=>n._p-r._p).sort(yo)}}}),Ro=()=>({hooks:{"tags:resolve":e=>{e.tags=bo(e.tags)}}}),To=()=>({hooks:{"tag:normalise":function({tag:e}){typeof e.props.body<"u"&&(e.tagPosition="bodyClose",delete e.props.body)}}}),Co=typeof window<"u",Ao=()=>({hooks:{"tag:normalise":e=>{var o,s;const{tag:t,entry:n}=e,r=typeof t.props._dynamic<"u";!Ar.includes(t.tag)||!t.key||(t._hash=St(JSON.stringify({tag:t.tag,key:t.key})),!(Co||(s=(o=Lr())==null?void 0:o.resolvedOptions)!=null&&s.document)&&(n._m==="server"||r)&&(t.props[`data-h-${t._hash}`]=""))},"tags:resolve":e=>{e.tags=e.tags.map(t=>(delete t.props._dynamic,t))}}}),ko=e=>({hooks:{"entries:updated":function(t){if(typeof(e==null?void 0:e.document)>"u"&&typeof window>"u")return;let n=e==null?void 0:e.delayFn;!n&&typeof requestAnimationFrame<"u"&&(n=requestAnimationFrame),Promise.resolve().then(function(){return po}).then(({debouncedRenderDOMHead:r})=>{r(t,{document:(e==null?void 0:e.document)||window.document,delayFn:n})})}}}),Lo=()=>{const e=(t,n)=>{const r={},o={};Object.entries(n.props).forEach(([i,c])=>{i.startsWith("on")&&typeof c=="function"?o[i]=c:r[i]=c});let s;return t==="dom"&&n.tag==="script"&&typeof r.src=="string"&&typeof o.onload<"u"&&(s=r.src,delete r.src),{props:r,eventHandlers:o,delayedSrc:s}};return{hooks:{"ssr:render":function(t){t.tags=t.tags.map(n=>(n.props=e("ssr",n).props,n))},"dom:beforeRenderTag":function(t){const{props:n,eventHandlers:r,delayedSrc:o}=e("dom",t.tag);Object.keys(r).length&&(t.tag.props=n,t.tag._eventHandlers=r,t.tag._delayedSrc=o)},"dom:renderTag":function(t){const n=t.$el;if(!t.tag._eventHandlers||!n)return;const r=t.tag.tag==="bodyAttrs"&&typeof window<"u"?window:n;Object.entries(t.tag._eventHandlers).forEach(([o,s])=>{const i=`${t.tag._d||t.tag._p}:${o}`,c=o.slice(2).toLowerCase(),l=`data-h-${c}`;if(delete t.staleSideEffects[i],n.hasAttribute(l))return;const a=s;n.setAttribute(l,""),r.addEventListener(c,a),t.entry&&(t.entry._sde[i]=()=>{r.removeEventListener(c,a),n.removeAttribute(l)})}),t.tag._delayedSrc&&n.setAttribute("src",t.tag._delayedSrc)}}}};function So(e){return Array.isArray(e)?e:[e]}const Ar=["base","meta","link","style","script","noscript"];let kr;const Oo=e=>kr=e,Lr=()=>kr,Io=10;async function $o(e){const t=[];return Object.entries(e.resolvedInput||e.input).filter(([n,r])=>typeof r<"u"&&ho.includes(n)).forEach(([n,r])=>{const o=So(r);t.push(...o.map(s=>mo(n,s)).flat())}),(await Promise.all(t)).flat().map((n,r)=>(n._e=e._i,n._p=(e._i<[wo(),Po(),Ro(),Ao(),Lo(),To()],Ho=(e={})=>[ko({document:e==null?void 0:e.document,delayFn:e==null?void 0:e.domDelayFn})];function Mo(e={}){const t=Vo({...e,plugins:[...Ho(e),...(e==null?void 0:e.plugins)||[]]});return Oo(t),t}function Vo(e={}){let t=[],n={},r=0;const o=gn();e!=null&&e.hooks&&o.addHooks(e.hooks),e.plugins=[...Do(),...(e==null?void 0:e.plugins)||[]],e.plugins.forEach(c=>c.hooks&&o.addHooks(c.hooks));const s=()=>o.callHook("entries:updated",i),i={resolvedOptions:e,headEntries(){return t},get hooks(){return o},use(c){c.hooks&&o.addHooks(c.hooks)},push(c,l){const a={_i:r++,input:c,_sde:{}};return l!=null&&l.mode&&(a._m=l==null?void 0:l.mode),t.push(a),s(),{dispose(){t=t.filter(u=>u._i!==a._i?!0:(n={...n,...u._sde||{}},u._sde={},s(),!1))},patch(u){t=t.map(h=>(h._i===a._i&&(a.input=h.input=u,s()),h))}}},async resolveTags(){const c={tags:[],entries:[...t]};await o.callHook("entries:resolve",c);for(const l of c.entries)for(const a of await $o(l)){const u={tag:a,entry:l};await o.callHook("tag:normalise",u),c.tags.push(u.tag)}return await o.callHook("tags:resolve",c),c.tags},_elMap:{},_popSideEffectQueue(){const c={...n};return n={},c}};return i.hooks.callHook("init",i),i}function xo(e){return typeof e=="function"?e():R(e)}function Qe(e,t=""){if(e instanceof Promise)return e;const n=xo(e);if(!e||!n)return n;if(Array.isArray(n))return n.map(r=>Qe(r,t));if(typeof n=="object"){let r=!1;const o=Object.fromEntries(Object.entries(n).map(([s,i])=>s==="titleTemplate"||s.startsWith("on")?[s,R(i)]:((typeof i=="function"||Sn(i))&&(r=!0),[s,Qe(i,s)])));return r&&Ar.includes(String(t))&&(o._dynamic=!0),o}return n}const jo=mr.startsWith("3"),Bo=typeof window<"u",Sr="usehead";function Ot(){return hr()&&he(Sr)||Lr()}function No(e={}){const t=Mo({...e,domDelayFn:r=>setTimeout(()=>Pe(()=>r()),10),plugins:[Ko(),...(e==null?void 0:e.plugins)||[]]}),n={install(r){jo&&(r.config.globalProperties.$unhead=t,r.provide(Sr,t))}};return t.install=n.install,t}const Ko=()=>({hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=Qe(t.input)}}});function Uo(e,t={}){const n=Ot(),r=Z(!1),o=Z({});An(()=>{o.value=Qe(e)});const s=n.push(o.value,t);return fe([o,r],([c,l])=>{l||s.patch(c)}),hr()&&(_r(()=>{s.dispose()}),kn(()=>{r.value=!0}),Ln(()=>{r.value=!1})),s}function Fo(e,t={}){return Ot().push(e,t)}function Or(e,t={}){var r;const n=Ot();if(n){const o=Bo||!!((r=n.resolvedOptions)!=null&&r.document);return t.mode==="server"&&o||t.mode==="client"&&!o?void 0:o?Uo(e,t):Fo(e,t)}}const zo=["script","style","noscript"],qo=["base","meta","link","style","script","noscript"],Wo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function Go(e,t){const{props:n,tag:r}=e;if(Wo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ne=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),zo.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function Qo(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function Ir(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||Qo(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Ne(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Ne(f),a(f);continue}f.$el=r.createElement(p.tag),Ne(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!qo.includes(v))continue;const E=Go({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Ne(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let dt=null;async function Zo(e,t={}){function n(){return dt=null,Ir(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return dt=dt||new Promise(o=>r(()=>o(n())))}function Jo(e){const t=No(),n={unhead:t,install(r){mr.startsWith("3")&&(r.config.globalProperties.$head=t,r.provide("usehead",t))},use(r){t.use(r)},resolveTags(){return t.resolveTags()},headEntries(){return t.headEntries()},headTags(){return t.resolveTags()},push(r,o){return t.push(r,o)},addEntry(r,o){return t.push(r,o)},addHeadObjs(r,o){return t.push(r,o)},addReactiveEntry(r,o){const s=Or(r,o);return typeof s<"u"?s.dispose:()=>{}},removeHeadObjs(){},updateDOM(r,o){o?Ir(t,{document:r}):Zo(t,{delayFn:s=>setTimeout(()=>s(),50),document:r})},internalHooks:t.hooks,hooks:{"before:dom":[],"resolved:tags":[],"resolved:entries":[]}};return t.addHeadObjs=n.addHeadObjs,t.updateDOM=n.updateDOM,t.hooks.hook("dom:beforeRender",r=>{for(const o of n.hooks["before:dom"])o()===!1&&(r.shouldRender=!1)}),e&&n.addHeadObjs(e),n}function Ze(e,t){return Y()._useHead(e,t)}const Yo={ignoreUnknown:!1,respectType:!1,respectFunctionNames:!1,respectFunctionProperties:!1,unorderedObjects:!0,unorderedArrays:!1,unorderedSets:!1};function Xo(e,t={}){t={...Yo,...t};const n=$r(t);return n.dispatch(e),n.toString()}function $r(e){const t=[];let n=[];const r=o=>{t.push(o)};return{toString(){return t.join("")},getContext(){return n},dispatch(o){return e.replacer&&(o=e.replacer(o)),this["_"+(o===null?"null":typeof o)](o)},_object(o){const s=/\[object (.*)]/i,i=Object.prototype.toString.call(o),c=s.exec(i),l=c?c[1].toLowerCase():"unknown:["+i.toLowerCase()+"]";let a=null;if((a=n.indexOf(o))>=0)return this.dispatch("[CIRCULAR:"+a+"]");if(n.push(o),typeof Buffer<"u"&&Buffer.isBuffer&&Buffer.isBuffer(o))return r("buffer:"),r(o.toString("utf8"));if(l!=="object"&&l!=="function"&&l!=="asyncfunction")if(this["_"+l])this["_"+l](o);else{if(e.ignoreUnknown)return r("["+l+"]");throw new Error('Unknown object type "'+l+'"')}else{let u=Object.keys(o);e.unorderedObjects&&(u=u.sort()),e.respectType!==!1&&!Ut(o)&&u.splice(0,0,"prototype","__proto__","letructor"),e.excludeKeys&&(u=u.filter(function(h){return!e.excludeKeys(h)})),r("object:"+u.length+":");for(const h of u)this.dispatch(h),r(":"),e.excludeValues||this.dispatch(o[h]),r(",")}},_array(o,s){if(s=typeof s<"u"?s:e.unorderedArrays!==!1,r("array:"+o.length+":"),!s||o.length<=1){for(const l of o)this.dispatch(l);return}const i=[],c=o.map(l=>{const a=$r(e);return a.dispatch(l),i.push(a.getContext()),a.toString()});return n=[...n,...i],c.sort(),this._array(c,!1)},_date(o){return r("date:"+o.toJSON())},_symbol(o){return r("symbol:"+o.toString())},_error(o){return r("error:"+o.toString())},_boolean(o){return r("bool:"+o.toString())},_string(o){r("string:"+o.length+":"),r(o.toString())},_function(o){r("fn:"),Ut(o)?this.dispatch("[native]"):this.dispatch(o.toString()),e.respectFunctionNames!==!1&&this.dispatch("function-name:"+String(o.name)),e.respectFunctionProperties&&this._object(o)},_number(o){return r("number:"+o.toString())},_xml(o){return r("xml:"+o.toString())},_null(){return r("Null")},_undefined(){return r("Undefined")},_regexp(o){return r("regex:"+o.toString())},_uint8array(o){return r("uint8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint8clampedarray(o){return r("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(o))},_int8array(o){return r("int8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint16array(o){return r("uint16array:"),this.dispatch(Array.prototype.slice.call(o))},_int16array(o){return r("int16array:"),this.dispatch(Array.prototype.slice.call(o))},_uint32array(o){return r("uint32array:"),this.dispatch(Array.prototype.slice.call(o))},_int32array(o){return r("int32array:"),this.dispatch(Array.prototype.slice.call(o))},_float32array(o){return r("float32array:"),this.dispatch(Array.prototype.slice.call(o))},_float64array(o){return r("float64array:"),this.dispatch(Array.prototype.slice.call(o))},_arraybuffer(o){return r("arraybuffer:"),this.dispatch(new Uint8Array(o))},_url(o){return r("url:"+o.toString())},_map(o){r("map:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_set(o){r("set:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_file(o){return r("file:"),this.dispatch([o.name,o.size,o.type,o.lastModfied])},_blob(){if(e.ignoreUnknown)return r("[blob]");throw new Error(`Hashing Blob objects is currently not supported +Use "options.replacer" or "options.ignoreUnknown" +`)},_domwindow(){return r("domwindow")},_bigint(o){return r("bigint:"+o.toString())},_process(){return r("process")},_timer(){return r("timer")},_pipe(){return r("pipe")},_tcp(){return r("tcp")},_udp(){return r("udp")},_tty(){return r("tty")},_statwatcher(){return r("statwatcher")},_securecontext(){return r("securecontext")},_connection(){return r("connection")},_zlib(){return r("zlib")},_context(){return r("context")},_nodescript(){return r("nodescript")},_httpparser(){return r("httpparser")},_dataview(){return r("dataview")},_signal(){return r("signal")},_fsevent(){return r("fsevent")},_tlswrap(){return r("tlswrap")}}}function Ut(e){return typeof e!="function"?!1:/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code]\s+}$/i.exec(Function.prototype.toString.call(e))!=null}class ve{constructor(t,n){t=this.words=t||[],this.sigBytes=n!==void 0?n:t.length*4}toString(t){return(t||es).stringify(this)}concat(t){if(this.clamp(),this.sigBytes%4)for(let n=0;n>>2]>>>24-n%4*8&255;this.words[this.sigBytes+n>>>2]|=r<<24-(this.sigBytes+n)%4*8}else for(let n=0;n>>2]=t.words[n>>>2];return this.sigBytes+=t.sigBytes,this}clamp(){this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4)}clone(){return new ve([...this.words])}}const es={stringify(e){const t=[];for(let n=0;n>>2]>>>24-n%4*8&255;t.push((r>>>4).toString(16),(r&15).toString(16))}return t.join("")}},ts={stringify(e){const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=[];for(let r=0;r>>2]>>>24-r%4*8&255,s=e.words[r+1>>>2]>>>24-(r+1)%4*8&255,i=e.words[r+2>>>2]>>>24-(r+2)%4*8&255,c=o<<16|s<<8|i;for(let l=0;l<4&&r*8+l*6>>6*(3-l)&63))}return n.join("")}},rs={parse(e){const t=e.length,n=[];for(let r=0;r>>2]|=(e.charCodeAt(r)&255)<<24-r%4*8;return new ve(n,t)}},ns={parse(e){return rs.parse(unescape(encodeURIComponent(e)))}};class os{constructor(){this._minBufferSize=0,this.blockSize=512/32,this.reset()}reset(){this._data=new ve,this._nDataBytes=0}_append(t){typeof t=="string"&&(t=ns.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes}_doProcessBlock(t,n){}_process(t){let n,r=this._data.sigBytes/(this.blockSize*4);t?r=Math.ceil(r):r=Math.max((r|0)-this._minBufferSize,0);const o=r*this.blockSize,s=Math.min(o*4,this._data.sigBytes);if(o){for(let i=0;i>>7)^(P<<14|P>>>18)^P>>>3,k=pe[d-2],I=(k<<15|k>>>17)^(k<<13|k>>>19)^k>>>10;pe[d]=C+pe[d-7]+I+pe[d-16]}const f=l&a^~l&u,p=o&s^o&i^s&i,b=(o<<30|o>>>2)^(o<<19|o>>>13)^(o<<10|o>>>22),m=(l<<26|l>>>6)^(l<<21|l>>>11)^(l<<7|l>>>25),v=h+m+f+is[d]+pe[d],E=b+p;h=u,u=a,a=l,l=c+v|0,c=i,i=s,s=o,o=v+E|0}r[0]=r[0]+o|0,r[1]=r[1]+s|0,r[2]=r[2]+i|0,r[3]=r[3]+c|0,r[4]=r[4]+l|0,r[5]=r[5]+a|0,r[6]=r[6]+u|0,r[7]=r[7]+h|0}finalize(t){super.finalize(t);const n=this._nDataBytes*8,r=this._data.sigBytes*8;return this._data.words[r>>>5]|=128<<24-r%32,this._data.words[(r+64>>>9<<4)+14]=Math.floor(n/4294967296),this._data.words[(r+64>>>9<<4)+15]=n,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}}function cs(e){return new ls().finalize(e).toString(ts)}function Je(e,t={}){const n=typeof e=="string"?e:Xo(e,t);return cs(n).slice(0,10)}const ft={ExampleCard:g(()=>_(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleHero:g(()=>_(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleIconCard:g(()=>_(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ExampleMultiselect:g(()=>_(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleTheTitle:g(()=>_(()=>import("./ExampleTheTitle.f00d8fad.js"),["./ExampleTheTitle.f00d8fad.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),HeroAnnouncement:g(()=>_(()=>import("./HeroAnnouncement.15bcf84c.js"),["./HeroAnnouncement.15bcf84c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(e=>e.default||e)),IconMarkdown:g(()=>_(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),Logo:g(()=>_(()=>Promise.resolve().then(()=>Ei),void 0,import.meta.url).then(e=>e.default||e)),MyButton:g(()=>_(()=>import("./MyButton.67bdaa98.js"),["./MyButton.67bdaa98.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(e=>e.default||e)),PropInspector:g(()=>_(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(e=>e.default||e)),ReadMore:g(()=>_(()=>import("./ReadMore.4d40ce3f.js"),["./ReadMore.4d40ce3f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),AppFooter:g(()=>_(()=>Promise.resolve().then(()=>Yi),void 0,import.meta.url).then(e=>e.default||e)),AppHeader:g(()=>_(()=>Promise.resolve().then(()=>Fi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderDialog:g(()=>_(()=>Promise.resolve().then(()=>hi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderLogo:g(()=>_(()=>Promise.resolve().then(()=>Pi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderNavigation:g(()=>_(()=>Promise.resolve().then(()=>Ci),void 0,import.meta.url).then(e=>e.default||e)),AppLayout:g(()=>_(()=>import("./AppLayout.7354fe11.js"),["./AppLayout.7354fe11.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),AppLoadingBar:g(()=>_(()=>Promise.resolve().then(()=>ii),void 0,import.meta.url).then(e=>e.default||e)),AppSearch:g(()=>_(()=>Promise.resolve().then(()=>Ii),void 0,import.meta.url).then(e=>e.default||e)),AppSocialIcons:g(()=>_(()=>Promise.resolve().then(()=>ci),void 0,import.meta.url).then(e=>e.default||e)),DocumentDrivenNotFound:g(()=>_(()=>import("./DocumentDrivenNotFound.66d77c6e.js"),["./DocumentDrivenNotFound.66d77c6e.js","./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(e=>e.default||e)),ThemeSelect:g(()=>_(()=>Promise.resolve().then(()=>xi),void 0,import.meta.url).then(e=>e.default||e)),DocsAside:g(()=>_(()=>import("./DocsAside.08a0955d.js"),["./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(e=>e.default||e)),DocsAsideTree:g(()=>_(()=>import("./DocsAsideTree.b95e55e0.js").then(e=>e.D),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocsPageBottom:g(()=>_(()=>import("./DocsPageBottom.b38ecc43.js"),["./DocsPageBottom.b38ecc43.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(e=>e.default||e)),DocsPageLayout:g(()=>_(()=>import("./DocsPageLayout.d352cf62.js"),["./DocsPageLayout.d352cf62.js","./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css","./DocsPageBottom.b38ecc43.js","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2b9ea48f.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e)),DocsPrevNext:g(()=>_(()=>import("./DocsPrevNext.2b9ea48f.js"),["./DocsPrevNext.2b9ea48f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(e=>e.default||e)),DocsToc:g(()=>_(()=>import("./DocsToc.55846f28.js"),["./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(e=>e.default||e)),DocsTocLinks:g(()=>_(()=>import("./DocsTocLinks.644c91ee.js"),["./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(e=>e.default||e)),EditOnLink:g(()=>_(()=>import("./EditOnLink.77af6984.js"),["./EditOnLink.77af6984.js","./EditOnLink.vue.1d2292f2.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.41ab1ca5.js"],import.meta.url).then(e=>e.default||e)),ProseA:g(()=>_(()=>import("./ProseA.a4d07cc8.js"),["./ProseA.a4d07cc8.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(e=>e.default||e)),ProseBlockquote:g(()=>_(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(e=>e.default||e)),ProseCode:g(()=>_(()=>import("./ProseCode.0e5c7be6.js"),["./ProseCode.0e5c7be6.js","./ProseCodeCopyButton.29965c5a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(e=>e.default||e)),ProseCodeInline:g(()=>_(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(e=>e.default||e)),ProseEm:g(()=>_(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(e=>e.default||e)),ProseH1:g(()=>_(()=>import("./ProseH1.c24b90eb.js"),["./ProseH1.c24b90eb.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(e=>e.default||e)),ProseH2:g(()=>_(()=>import("./ProseH2.957cbe8e.js"),["./ProseH2.957cbe8e.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(e=>e.default||e)),ProseH3:g(()=>_(()=>import("./ProseH3.cb2444de.js"),["./ProseH3.cb2444de.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(e=>e.default||e)),ProseH4:g(()=>_(()=>import("./ProseH4.77a5278f.js"),["./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(e=>e.default||e)),ProseH5:g(()=>_(()=>import("./ProseH5.8dc93198.js"),["./ProseH5.8dc93198.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(e=>e.default||e)),ProseH6:g(()=>_(()=>import("./ProseH6.bdc78e01.js"),["./ProseH6.bdc78e01.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(e=>e.default||e)),ProseHr:g(()=>_(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(e=>e.default||e)),ProseImg:g(()=>_(()=>import("./ProseImg.16c4c81d.js"),["./ProseImg.16c4c81d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(e=>e.default||e)),ProseLi:g(()=>_(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(e=>e.default||e)),ProseOl:g(()=>_(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(e=>e.default||e)),ProseP:g(()=>_(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),ProseStrong:g(()=>_(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(e=>e.default||e)),ProseTable:g(()=>_(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(e=>e.default||e)),ProseTbody:g(()=>_(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ProseTd:g(()=>_(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(e=>e.default||e)),ProseTh:g(()=>_(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(e=>e.default||e)),ProseThead:g(()=>_(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(e=>e.default||e)),ProseTr:g(()=>_(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(e=>e.default||e)),ProseUl:g(()=>_(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(e=>e.default||e)),Alert:g(()=>_(()=>import("./Alert.41cb256b.js"),["./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),Badge:g(()=>_(()=>import("./Badge.af643d4e.js"),["./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(e=>e.default||e)),ButtonLink:g(()=>_(()=>import("./ButtonLink.91883881.js"),["./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css"],import.meta.url).then(e=>e.default||e)),Callout:g(()=>_(()=>import("./Callout.12d57ced.js"),["./Callout.12d57ced.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(e=>e.default||e)),CodeBlock:g(()=>_(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(e=>e.default||e)),CodeGroup:g(()=>_(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(e=>e.default||e)),Container:g(()=>_(()=>import("./Container.f1017aa2.js").then(e=>e.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),CopyButton:g(()=>_(()=>import("./CopyButton.f7858c79.js"),["./CopyButton.f7858c79.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(e=>e.default||e)),Ellipsis:g(()=>_(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(e=>e.default||e)),List:g(()=>_(()=>import("./List.63030545.js"),["./List.63030545.js","./List.vue.98cb48bf.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./List.a65f0e81.css"],import.meta.url).then(e=>e.default||e)),NuxtImg:g(()=>_(()=>import("./NuxtImg.66944f8e.js"),["./NuxtImg.66944f8e.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Props:g(()=>_(()=>import("./Props.876d937c.js"),["./Props.876d937c.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.f41ab05d.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Sandbox:g(()=>_(()=>import("./Sandbox.b8bdb0c7.js"),["./Sandbox.b8bdb0c7.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./Sandbox.68fd6c5d.css"],import.meta.url).then(e=>e.default||e)),SourceLink:g(()=>_(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),TabsHeader:g(()=>_(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(e=>e.default||e)),Terminal:g(()=>_(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(e=>e.default||e)),VideoPlayer:g(()=>_(()=>import("./VideoPlayer.065c6aeb.js"),["./VideoPlayer.065c6aeb.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(e=>e.default||e)),IconCodeSandBox:g(()=>_(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconDocus:g(()=>_(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxt:g(()=>_(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtContent:g(()=>_(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtLabs:g(()=>_(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtStudio:g(()=>_(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(e=>e.default||e)),IconStackBlitz:g(()=>_(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconVueTelescope:g(()=>_(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),BlockHero:g(()=>_(()=>import("./BlockHero.495ede00.js"),["./BlockHero.495ede00.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.91883881.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(e=>e.default||e)),Card:g(()=>_(()=>import("./Card.178cbb97.js"),["./Card.178cbb97.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./Card.5dfb7f30.css"],import.meta.url).then(e=>e.default||e)),CardGrid:g(()=>_(()=>import("./CardGrid.e3a9f75d.js"),["./CardGrid.e3a9f75d.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(e=>e.default||e)),VoltaBoard:g(()=>_(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(e=>e.default||e)),ComponentPlayground:g(()=>_(()=>import("./ComponentPlayground.3c424a18.js"),["./ComponentPlayground.3c424a18.js","./ComponentPlayground.vue.1e5cc557.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundData:g(()=>_(()=>import("./ComponentPlaygroundData.8cb96cd4.js"),["./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundProps:g(()=>_(()=>import("./ComponentPlaygroundProps.583c9bda.js"),["./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundSlots:g(()=>_(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundTokens:g(()=>_(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),TokensPlayground:g(()=>_(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ContentDoc:g(()=>_(()=>import("./ContentDoc.cbc50263.js"),["./ContentDoc.cbc50263.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./ContentQuery.9f33890e.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentList:g(()=>_(()=>import("./ContentList.e8a9fb87.js"),["./ContentList.e8a9fb87.js","./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentNavigation:g(()=>_(()=>import("./ContentNavigation.cefda237.js"),["./ContentNavigation.cefda237.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./DocsAsideTree.b13c5d2f.css","./EditOnLink.vue.1d2292f2.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.77a5278f.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.af643d4e.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.98cb48bf.js","./List.a65f0e81.css","./NuxtImg.vue.a13022c3.js","./Props.876d937c.js","./ProseTbody.37a7db42.js","./query.c3f7607a.js","./ComponentPlayground.vue.1e5cc557.js","./ComponentPlaygroundData.8cb96cd4.js","./ComponentPlaygroundProps.583c9bda.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.cbc50263.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./ContentQuery.9f33890e.js","./ContentList.e8a9fb87.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.7f24e431.js","./layout.0a22fa4a.js","./GithubRepository.345038c7.js","./useGithub.1972ce55.js","./GithubLink.6cd695ea.js","./GithubReadme.5eafd6e1.js","./GithubReleases.05c52708.js","./GithubLastRelease.a4aeb30e.js","./GithubRelease.d892113d.js","./GithubContributors.9ddddad6.js","./GithubFileContributors.1ad6f7bf.js","./GithubCommits.35c65eac.js","./ContentNavigation.df5077be.css","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(e=>e.default||e)),ContentQuery:g(()=>_(()=>import("./ContentQuery.9f33890e.js"),["./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentRenderer:g(()=>_(()=>import("./ContentRenderer.b7732722.js"),["./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentRendererMarkdown:g(()=>_(()=>import("./ContentRendererMarkdown.e52b62de.js"),["./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentSlot:g(()=>_(()=>import("./ContentSlot.c5067a4f.js"),["./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocumentDrivenEmpty:g(()=>_(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Markdown:g(()=>_(()=>import("./Markdown.7f24e431.js"),["./Markdown.7f24e431.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),GithubRepository:g(()=>_(()=>import("./GithubRepository.345038c7.js"),["./GithubRepository.345038c7.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLink:g(()=>_(()=>import("./GithubLink.6cd695ea.js"),["./GithubLink.6cd695ea.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),GithubReadme:g(()=>_(()=>import("./GithubReadme.5eafd6e1.js"),["./GithubReadme.5eafd6e1.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubReleases:g(()=>_(()=>import("./GithubReleases.05c52708.js"),["./GithubReleases.05c52708.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLastRelease:g(()=>_(()=>import("./GithubLastRelease.a4aeb30e.js"),["./GithubLastRelease.a4aeb30e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubRelease:g(()=>_(()=>import("./GithubRelease.d892113d.js"),["./GithubRelease.d892113d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubContributors:g(()=>_(()=>import("./GithubContributors.9ddddad6.js"),["./GithubContributors.9ddddad6.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubFileContributors:g(()=>_(()=>import("./GithubFileContributors.1ad6f7bf.js"),["./GithubFileContributors.1ad6f7bf.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubCommits:g(()=>_(()=>import("./GithubCommits.35c65eac.js"),["./GithubCommits.35c65eac.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Icon:g(()=>_(()=>import("./DocsAsideTree.b95e55e0.js").then(e=>e.I),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e))},us=Q(e=>{for(const t in ft)e.vueApp.component(t,ft[t]),e.vueApp.component("Lazy"+t,ft[t])}),ds={meta:[{name:"viewport",content:"width=device-width, initial-scale=1"},{charset:"utf-8"}],link:[],style:[],script:[{defer:!0,"data-domain":"frontier.realdecoy.com",src:"https://plausible.io/js/script.js"}],noscript:[]},pl=!1,Et=!1,fs=!1,ps="__nuxt",hs=Q(e=>{const t=Jo();t.push(ds),e.vueApp.use(t);{let n=!0;const r=()=>{n=!1,t.internalHooks.callHook("entries:updated",t.unhead)};t.internalHooks.hook("dom:beforeRender",o=>{o.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",r),e.hooks.hook("app:mounted",r)}e._useHead=Or});/*! + * vue-router v4.1.6 + * (c) 2022 Eduardo San Martin Morote + * @license MIT + */const ye=typeof window<"u";function _s(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const $=Object.assign;function pt(e,t){const n={};for(const r in t){const o=t[r];n[r]=J(o)?o.map(e):e(o)}return n}const $e=()=>{},J=Array.isArray,ms=/\/$/,gs=e=>e.replace(ms,"");function ht(e,t,n="/"){let r,o={},s="",i="";const c=t.indexOf("#");let l=t.indexOf("?");return c=0&&(l=-1),l>-1&&(r=t.slice(0,l),s=t.slice(l+1,c>-1?c:t.length),o=e(s)),c>-1&&(r=r||t.slice(0,c),i=t.slice(c,t.length)),r=bs(r??t,n),{fullPath:r+(s&&"?")+s+i,path:r,query:o,hash:i}}function ys(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Ft(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function vs(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&Ee(t.matched[r],n.matched[o])&&Dr(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ee(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Dr(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Es(e[n],t[n]))return!1;return!0}function Es(e,t){return J(e)?zt(e,t):J(t)?zt(t,e):e===t}function zt(e,t){return J(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function bs(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let o=n.length-1,s,i;for(s=0;s1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(s-(s===r.length?1:0)).join("/")}var xe;(function(e){e.pop="pop",e.push="push"})(xe||(xe={}));var De;(function(e){e.back="back",e.forward="forward",e.unknown=""})(De||(De={}));function ws(e){if(!e)if(ye){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),gs(e)}const Ps=/^[^#]+#/;function Rs(e,t){return e.replace(Ps,"#")+t}function Ts(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const rt=()=>({left:window.pageXOffset,top:window.pageYOffset});function Cs(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Ts(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function qt(e,t){return(history.state?history.state.position-t:-1)+e}const bt=new Map;function As(e,t){bt.set(e,t)}function ks(e){const t=bt.get(e);return bt.delete(e),t}let Ls=()=>location.protocol+"//"+location.host;function Hr(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let c=o.includes(e.slice(s))?e.slice(s).length:1,l=o.slice(c);return l[0]!=="/"&&(l="/"+l),Ft(l,"")}return Ft(n,e)+r+o}function Ss(e,t,n,r){let o=[],s=[],i=null;const c=({state:d})=>{const f=Hr(e,location),p=n.value,b=t.value;let m=0;if(d){if(n.value=f,t.value=d,i&&i===p){i=null;return}m=b?d.position-b.position:0}else r(f);o.forEach(v=>{v(n.value,p,{delta:m,type:xe.pop,direction:m?m>0?De.forward:De.back:De.unknown})})};function l(){i=n.value}function a(d){o.push(d);const f=()=>{const p=o.indexOf(d);p>-1&&o.splice(p,1)};return s.push(f),f}function u(){const{history:d}=window;d.state&&d.replaceState($({},d.state,{scroll:rt()}),"")}function h(){for(const d of s)d();s=[],window.removeEventListener("popstate",c),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",c),window.addEventListener("beforeunload",u),{pauseListeners:l,listen:a,destroy:h}}function Wt(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?rt():null}}function Os(e){const{history:t,location:n}=window,r={value:Hr(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(l,a,u){const h=e.indexOf("#"),d=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+l:Ls()+e+l;try{t[u?"replaceState":"pushState"](a,"",d),o.value=a}catch(f){console.error(f),n[u?"replace":"assign"](d)}}function i(l,a){const u=$({},t.state,Wt(o.value.back,l,o.value.forward,!0),a,{position:o.value.position});s(l,u,!0),r.value=l}function c(l,a){const u=$({},o.value,t.state,{forward:l,scroll:rt()});s(u.current,u,!0);const h=$({},Wt(r.value,l,null),{position:u.position+1},a);s(l,h,!1),r.value=l}return{location:r,state:o,push:c,replace:i}}function Mr(e){e=ws(e);const t=Os(e),n=Ss(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=$({location:"",base:e,go:r,createHref:Rs.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}function Is(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Mr(e)}function $s(e){return typeof e=="string"||e&&typeof e=="object"}function Vr(e){return typeof e=="string"||typeof e=="symbol"}const ce={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},xr=Symbol("");var Gt;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Gt||(Gt={}));function be(e,t){return $(new Error,{type:e,[xr]:!0},t)}function re(e,t){return e instanceof Error&&xr in e&&(t==null||!!(e.type&t))}const Qt="[^/]+?",Ds={sensitive:!1,strict:!1,start:!0,end:!0},Hs=/[.+*?^${}()[\]/\\]/g;function Ms(e,t){const n=$({},Ds,t),r=[];let o=n.start?"^":"";const s=[];for(const a of e){const u=a.length?[]:[90];n.strict&&!a.length&&(o+="/");for(let h=0;ht.length?t.length===1&&t[0]===40+40?1:-1:0}function xs(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const js={type:0,value:""},Bs=/[a-zA-Z0-9_]/;function Ns(e){if(!e)return[[]];if(e==="/")return[[js]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(f){throw new Error(`ERR (${n})/"${a}": ${f}`)}let n=0,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let c=0,l,a="",u="";function h(){a&&(n===0?s.push({type:0,value:a}):n===1||n===2||n===3?(s.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),s.push({type:1,value:a,regexp:u,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),a="")}function d(){a+=l}for(;c{i(E)}:$e}function i(u){if(Vr(u)){const h=r.get(u);h&&(r.delete(u),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(u);h>-1&&(n.splice(h,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function c(){return n}function l(u){let h=0;for(;h=0&&(u.record.path!==n[h].record.path||!jr(u,n[h]));)h++;n.splice(h,0,u),u.record.name&&!Yt(u)&&r.set(u.record.name,u)}function a(u,h){let d,f={},p,b;if("name"in u&&u.name){if(d=r.get(u.name),!d)throw be(1,{location:u});b=d.record.name,f=$(Jt(h.params,d.keys.filter(E=>!E.optional).map(E=>E.name)),u.params&&Jt(u.params,d.keys.map(E=>E.name))),p=d.stringify(f)}else if("path"in u)p=u.path,d=n.find(E=>E.re.test(p)),d&&(f=d.parse(p),b=d.record.name);else{if(d=h.name?r.get(h.name):n.find(E=>E.re.test(h.path)),!d)throw be(1,{location:u,currentLocation:h});b=d.record.name,f=$({},h.params,u.params),p=d.stringify(f)}const m=[];let v=d;for(;v;)m.unshift(v.record),v=v.parent;return{name:b,path:p,params:f,matched:m,meta:qs(m)}}return e.forEach(u=>s(u)),{addRoute:s,resolve:a,removeRoute:i,getRoutes:c,getRecordMatcher:o}}function Jt(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Fs(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:zs(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function zs(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="boolean"?n:n[r];return t}function Yt(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function qs(e){return e.reduce((t,n)=>$(t,n.meta),{})}function Xt(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function jr(e,t){return t.children.some(n=>n===e||jr(e,n))}const Br=/#/g,Ws=/&/g,Gs=/\//g,Qs=/=/g,Zs=/\?/g,Nr=/\+/g,Js=/%5B/g,Ys=/%5D/g,Kr=/%5E/g,Xs=/%60/g,Ur=/%7B/g,ea=/%7C/g,Fr=/%7D/g,ta=/%20/g;function It(e){return encodeURI(""+e).replace(ea,"|").replace(Js,"[").replace(Ys,"]")}function ra(e){return It(e).replace(Ur,"{").replace(Fr,"}").replace(Kr,"^")}function wt(e){return It(e).replace(Nr,"%2B").replace(ta,"+").replace(Br,"%23").replace(Ws,"%26").replace(Xs,"`").replace(Ur,"{").replace(Fr,"}").replace(Kr,"^")}function na(e){return wt(e).replace(Qs,"%3D")}function oa(e){return It(e).replace(Br,"%23").replace(Zs,"%3F")}function sa(e){return e==null?"":oa(e).replace(Gs,"%2F")}function Ye(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function aa(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let o=0;os&&wt(s)):[r&&wt(r)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function ia(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=J(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const la=Symbol(""),tr=Symbol(""),$t=Symbol(""),Dt=Symbol(""),Pt=Symbol("");function Le(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function de(e,t,n,r,o){const s=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((i,c)=>{const l=h=>{h===!1?c(be(4,{from:n,to:t})):h instanceof Error?c(h):$s(h)?c(be(2,{from:t,to:h})):(s&&r.enterCallbacks[o]===s&&typeof h=="function"&&s.push(h),i())},a=e.call(r&&r.instances[o],t,n,l);let u=Promise.resolve(a);e.length<3&&(u=u.then(l)),u.catch(h=>c(h))})}function _t(e,t,n,r){const o=[];for(const s of e)for(const i in s.components){let c=s.components[i];if(!(t!=="beforeRouteEnter"&&!s.instances[i]))if(ca(c)){const a=(c.__vccOpts||c)[t];a&&o.push(de(a,n,r,s,i))}else{let l=c();o.push(()=>l.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${s.path}"`));const u=_s(a)?a.default:a;s.components[i]=u;const d=(u.__vccOpts||u)[t];return d&&de(d,n,r,s,i)()}))}}return o}function ca(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function rr(e){const t=he($t),n=he(Dt),r=D(()=>t.resolve(R(e.to))),o=D(()=>{const{matched:l}=r.value,{length:a}=l,u=l[a-1],h=n.matched;if(!u||!h.length)return-1;const d=h.findIndex(Ee.bind(null,u));if(d>-1)return d;const f=nr(l[a-2]);return a>1&&nr(u)===f&&h[h.length-1].path!==f?h.findIndex(Ee.bind(null,l[a-2])):d}),s=D(()=>o.value>-1&&pa(n.params,r.value.params)),i=D(()=>o.value>-1&&o.value===n.matched.length-1&&Dr(n.params,r.value.params));function c(l={}){return fa(l)?t[R(e.replace)?"replace":"push"](R(e.to)).catch($e):Promise.resolve()}return{route:r,href:D(()=>r.value.href),isActive:s,isExactActive:i,navigate:c}}const ua=U({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:rr,setup(e,{slots:t}){const n=_e(rr(e)),{options:r}=he($t),o=D(()=>({[or(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[or(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&t.default(n);return e.custom?s:W("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),da=ua;function fa(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function pa(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!J(o)||o.length!==r.length||r.some((s,i)=>s!==o[i]))return!1}return!0}function nr(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const or=(e,t,n)=>e??t??n,ha=U({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=he(Pt),o=D(()=>e.route||r.value),s=he(tr,0),i=D(()=>{let a=R(s);const{matched:u}=o.value;let h;for(;(h=u[a])&&!h.components;)a++;return a}),c=D(()=>o.value.matched[i.value]);Ie(tr,D(()=>i.value+1)),Ie(la,c),Ie(Pt,o);const l=Z();return fe(()=>[l.value,c.value,e.name],([a,u,h],[d,f,p])=>{u&&(u.instances[h]=a,f&&f!==u&&a&&a===d&&(u.leaveGuards.size||(u.leaveGuards=f.leaveGuards),u.updateGuards.size||(u.updateGuards=f.updateGuards))),a&&u&&(!f||!Ee(u,f)||!d)&&(u.enterCallbacks[h]||[]).forEach(b=>b(a))},{flush:"post"}),()=>{const a=o.value,u=e.name,h=c.value,d=h&&h.components[u];if(!d)return sr(n.default,{Component:d,route:a});const f=h.props[u],p=f?f===!0?a.params:typeof f=="function"?f(a):f:null,m=W(d,$({},p,t,{onVnodeUnmounted:v=>{v.component.isUnmounted&&(h.instances[u]=null)},ref:l}));return sr(n.default,{Component:m,route:a})||m}}});function sr(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const zr=ha;function _a(e){const t=Us(e.routes,e),n=e.parseQuery||aa,r=e.stringifyQuery||er,o=e.history,s=Le(),i=Le(),c=Le(),l=gt(ce);let a=ce;ye&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=pt.bind(null,y=>""+y),h=pt.bind(null,sa),d=pt.bind(null,Ye);function f(y,T){let w,A;return Vr(y)?(w=t.getRecordMatcher(y),A=T):A=y,t.addRoute(A,w)}function p(y){const T=t.getRecordMatcher(y);T&&t.removeRoute(T)}function b(){return t.getRoutes().map(y=>y.record)}function m(y){return!!t.getRecordMatcher(y)}function v(y,T){if(T=$({},T||l.value),typeof y=="string"){const S=ht(n,y,T.path),N=t.resolve({path:S.path},T),Ae=o.createHref(S.fullPath);return $(S,N,{params:d(N.params),hash:Ye(S.hash),redirectedFrom:void 0,href:Ae})}let w;if("path"in y)w=$({},y,{path:ht(n,y.path,T.path).path});else{const S=$({},y.params);for(const N in S)S[N]==null&&delete S[N];w=$({},y,{params:h(y.params)}),T.params=h(T.params)}const A=t.resolve(w,T),H=y.hash||"";A.params=u(d(A.params));const B=ys(r,$({},y,{hash:ra(H),path:A.path})),O=o.createHref(B);return $({fullPath:B,hash:H,query:r===er?ia(y.query):y.query||{}},A,{redirectedFrom:void 0,href:O})}function E(y){return typeof y=="string"?ht(n,y,l.value.path):$({},y)}function P(y,T){if(a!==y)return be(8,{from:T,to:y})}function C(y){return M(y)}function k(y){return C($(E(y),{replace:!0}))}function I(y){const T=y.matched[y.matched.length-1];if(T&&T.redirect){const{redirect:w}=T;let A=typeof w=="function"?w(y):w;return typeof A=="string"&&(A=A.includes("?")||A.includes("#")?A=E(A):{path:A},A.params={}),$({query:y.query,hash:y.hash,params:"path"in A?{}:y.params},A)}}function M(y,T){const w=a=v(y),A=l.value,H=y.state,B=y.force,O=y.replace===!0,S=I(w);if(S)return M($(E(S),{state:typeof S=="object"?$({},H,S.state):H,force:B,replace:O}),T||w);const N=w;N.redirectedFrom=T;let Ae;return!B&&vs(r,A,w)&&(Ae=be(16,{to:N,from:A}),Vt(A,A,!0,!1)),(Ae?Promise.resolve(Ae):Re(N,A)).catch(F=>re(F)?re(F,2)?F:at(F):st(F,N,A)).then(F=>{if(F){if(re(F,2))return M($({replace:O},E(F.to),{state:typeof F.to=="object"?$({},H,F.to.state):H,force:B}),T||N)}else F=Ce(N,A,!0,O,H);return Te(N,A,F),F})}function ie(y,T){const w=P(y,T);return w?Promise.reject(w):Promise.resolve()}function Re(y,T){let w;const[A,H,B]=ma(y,T);w=_t(A.reverse(),"beforeRouteLeave",y,T);for(const S of A)S.leaveGuards.forEach(N=>{w.push(de(N,y,T))});const O=ie.bind(null,y,T);return w.push(O),ge(w).then(()=>{w=[];for(const S of s.list())w.push(de(S,y,T));return w.push(O),ge(w)}).then(()=>{w=_t(H,"beforeRouteUpdate",y,T);for(const S of H)S.updateGuards.forEach(N=>{w.push(de(N,y,T))});return w.push(O),ge(w)}).then(()=>{w=[];for(const S of y.matched)if(S.beforeEnter&&!T.matched.includes(S))if(J(S.beforeEnter))for(const N of S.beforeEnter)w.push(de(N,y,T));else w.push(de(S.beforeEnter,y,T));return w.push(O),ge(w)}).then(()=>(y.matched.forEach(S=>S.enterCallbacks={}),w=_t(B,"beforeRouteEnter",y,T),w.push(O),ge(w))).then(()=>{w=[];for(const S of i.list())w.push(de(S,y,T));return w.push(O),ge(w)}).catch(S=>re(S,8)?S:Promise.reject(S))}function Te(y,T,w){for(const A of c.list())A(y,T,w)}function Ce(y,T,w,A,H){const B=P(y,T);if(B)return B;const O=T===ce,S=ye?history.state:{};w&&(A||O?o.replace(y.fullPath,$({scroll:O&&S&&S.scroll},H)):o.push(y.fullPath,H)),l.value=y,Vt(y,T,w,O),at()}let le;function G(){le||(le=o.listen((y,T,w)=>{if(!xt.listening)return;const A=v(y),H=I(A);if(H){M($(H,{replace:!0}),A).catch($e);return}a=A;const B=l.value;ye&&As(qt(B.fullPath,w.delta),rt()),Re(A,B).catch(O=>re(O,12)?O:re(O,2)?(M(O.to,A).then(S=>{re(S,20)&&!w.delta&&w.type===xe.pop&&o.go(-1,!1)}).catch($e),Promise.reject()):(w.delta&&o.go(-w.delta,!1),st(O,A,B))).then(O=>{O=O||Ce(A,B,!1),O&&(w.delta&&!re(O,8)?o.go(-w.delta,!1):w.type===xe.pop&&re(O,20)&&o.go(-1,!1)),Te(A,B,O)}).catch($e)}))}let ot=Le(),Mt=Le(),je;function st(y,T,w){at(y);const A=Mt.list();return A.length?A.forEach(H=>H(y,T,w)):console.error(y),Promise.reject(y)}function ln(){return je&&l.value!==ce?Promise.resolve():new Promise((y,T)=>{ot.add([y,T])})}function at(y){return je||(je=!y,G(),ot.list().forEach(([T,w])=>y?w(y):T()),ot.reset()),y}function Vt(y,T,w,A){const{scrollBehavior:H}=e;if(!ye||!H)return Promise.resolve();const B=!w&&ks(qt(y.fullPath,0))||(A||!w)&&history.state&&history.state.scroll||null;return Pe().then(()=>H(y,T,B)).then(O=>O&&Cs(O)).catch(O=>st(O,y,T))}const it=y=>o.go(y);let lt;const ct=new Set,xt={currentRoute:l,listening:!0,addRoute:f,removeRoute:p,hasRoute:m,getRoutes:b,resolve:v,options:e,push:C,replace:k,go:it,back:()=>it(-1),forward:()=>it(1),beforeEach:s.add,beforeResolve:i.add,afterEach:c.add,onError:Mt.add,isReady:ln,install(y){const T=this;y.component("RouterLink",da),y.component("RouterView",zr),y.config.globalProperties.$router=T,Object.defineProperty(y.config.globalProperties,"$route",{enumerable:!0,get:()=>R(l)}),ye&&!lt&&l.value===ce&&(lt=!0,C(o.location).catch(H=>{}));const w={};for(const H in ce)w[H]=D(()=>l.value[H]);y.provide($t,T),y.provide(Dt,_e(w)),y.provide(Pt,l);const A=y.unmount;ct.add(y),y.unmount=function(){ct.delete(y),ct.size<1&&(a=ce,le&&le(),le=null,l.value=ce,lt=!1,je=!1),A()}}};return xt}function ge(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function ma(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;iEe(a,c))?r.push(c):n.push(c));const l=e.matched[i];l&&(t.matched.find(a=>Ee(a,l))||o.push(l))}return[n,r,o]}function hl(){return he(Dt)}const z={},q={},ar=[{name:(z==null?void 0:z.name)??"slug",path:(z==null?void 0:z.path)??"/:slug(.*)*",children:[],meta:z,alias:(z==null?void 0:z.alias)||[],redirect:(z==null?void 0:z.redirect)||void 0,component:()=>_(()=>import("./document-driven.2bce7a6e.js"),["./document-driven.2bce7a6e.js","./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./DocumentDrivenNotFound.66d77c6e.js","./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./layout.0a22fa4a.js","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)},{name:(q==null?void 0:q.name)??"__app_config.json",path:(q==null?void 0:q.path)??"/__app_config.json",children:[],meta:q,alias:(q==null?void 0:q.alias)||[],redirect:(q==null?void 0:q.redirect)||void 0,component:()=>_(()=>import("./empty.9bcab498.js"),["./empty.9bcab498.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)}],ga={scrollBehavior(e,t,n){if(!history.state.stop){if(history.state.smooth)return{el:history.state.smooth,behavior:"smooth"};if(e.hash){const r=document.querySelector(e.hash);if(!r)return;const{marginTop:o}=getComputedStyle(r),s=parseInt(o);return{top:document.querySelector(e.hash).offsetTop-s,behavior:"smooth"}}return n||{top:0}}}},ya={scrollBehavior(e,t,n){const r=Y();let o=n||void 0;if(!o&&t&&e&&e.meta.scrollToTop!==!1&&va(t,e)&&(o={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:ir(e.hash)}}const s=c=>!!(c.meta.pageTransition??Et),i=s(t)&&s(e)?"page:transition:finish":"page:finish";return new Promise(c=>{r.hooks.hookOnce(i,async()=>{await Pe(),e.hash&&(o={el:e.hash,top:ir(e.hash)}),c(o)})})}};function ir(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}function va(e,t){const n=e.matched[0]===t.matched[0];return!!(!n||n&&JSON.stringify(e.params)!==JSON.stringify(t.params))}const Ea={},ne={...Ea,...ya,...ga},ba=yn(async e=>{var o;let t,n;if(!((o=e.meta)!=null&&o.validate))return;const r=([t,n]=ze(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t);if(r!==!0)return r}),wa=[ba],He={};function Pa(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){const c=o.includes(e.slice(s))?e.slice(s).length:1;let l=o.slice(c);return l[0]!=="/"&&(l="/"+l),jt(l,"")}return jt(n,e)+r+o}const Ra=Q(async e=>{var p,b;let t,n,r=ae().app.baseURL;ne.hashMode&&!r.includes("#")&&(r+="#");const o=((p=ne.history)==null?void 0:p.call(ne,r))??(ne.hashMode?Is(r):Mr(r)),s=((b=ne.routes)==null?void 0:b.call(ne,ar))??ar,i=Pa(r,window.location),c=_a({...ne,history:o,routes:s});e.vueApp.use(c);const l=gt(c.currentRoute.value);c.afterEach((m,v)=>{l.value=v}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>l.value});const a=gt(c.resolve(i)),u=()=>{a.value=c.currentRoute.value};e.hook("page:finish",u),c.afterEach((m,v)=>{var E,P,C,k;((P=(E=m.matched[0])==null?void 0:E.components)==null?void 0:P.default)===((k=(C=v.matched[0])==null?void 0:C.components)==null?void 0:k.default)&&u()});const h={};for(const m in a.value)h[m]=D(()=>a.value[m]);e._route=_e(h),e._middleware=e._middleware||{global:[],named:{}};const d=tt();try{[t,n]=ze(()=>c.isReady()),await t,n()}catch(m){[t,n]=ze(()=>ue(e,Se,[m])),await t,n()}const f=kt("_layout");return c.beforeEach(async(m,v)=>{var P;m.meta=_e(m.meta),e.isHydrating&&f.value&&!On(m.meta.layout)&&(m.meta.layout=f.value),e._processingMiddleware=!0;const E=new Set([...wa,...e._middleware.global]);for(const C of m.matched){const k=C.meta.middleware;if(k)if(Array.isArray(k))for(const I of k)E.add(I);else E.add(k)}for(const C of E){const k=typeof C=="string"?e._middleware.named[C]||await((P=He[C])==null?void 0:P.call(He).then(M=>M.default||M)):C;if(!k)throw new Error(`Unknown route middleware: '${C}'.`);const I=await ue(e,k,[m,v]);if(!e.payload.serverRendered&&e.isHydrating&&(I===!1||I instanceof Error)){const M=I||vt({statusCode:404,statusMessage:`Page Not Found: ${i}`});return await ue(e,Se,[M]),!1}if(I||I===!1)return I}}),c.afterEach(async m=>{delete e._processingMiddleware,!e.isHydrating&&d.value&&await ue(e,oo),m.matched.length===0&&await ue(e,Se,[vt({statusCode:404,fatal:!1,statusMessage:`Page not found: ${m.fullPath}`})])}),e.hooks.hookOnce("app:created",async()=>{try{await c.replace({...c.resolve(i),name:void 0,force:!0})}catch(m){await ue(e,Se,[m])}}),{provide:{router:c}}}),Oe={"docs-page":()=>_(()=>import("./docs-page.436b5c87.js"),["./docs-page.436b5c87.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./docs-page.5b0d6071.css"],import.meta.url).then(e=>e.default||e),default:()=>_(()=>import("./default.aab8fc36.js"),["./default.aab8fc36.js","./DocsPageLayout.d352cf62.js","./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css","./DocsPageBottom.b38ecc43.js","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2b9ea48f.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e),page:()=>_(()=>import("./page.f33b5a13.js"),["./page.f33b5a13.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./useDocus.41ab1ca5.js","./app.config.f41ab05d.js","./page.70291227.css"],import.meta.url).then(e=>e.default||e)},Ta=Q(()=>{const e=Y(),t=Xe();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{var o;const r=(o=n==null?void 0:n.meta)==null?void 0:o.layout;r&&typeof Oe[r]=="function"&&await Oe[r]()})}),e.hooks.hook("link:prefetch",n=>{var i,c,l,a;if(fr(n))return;const r=t.resolve(n);if(!r)return;const o=(i=r==null?void 0:r.meta)==null?void 0:i.layout;let s=Array.isArray((c=r==null?void 0:r.meta)==null?void 0:c.middleware)?(l=r==null?void 0:r.meta)==null?void 0:l.middleware:[(a=r==null?void 0:r.meta)==null?void 0:a.middleware];s=s.filter(u=>typeof u=="string");for(const u of s)typeof He[u]=="function"&&He[u]();o&&typeof Oe[o]=="function"&&Oe[o]()})}),Ca=Q(()=>{const e=ae(),t=Z(),n=D(()=>{var r,o;return(o=(r=e==null?void 0:e.public)==null?void 0:r.algolia)==null?void 0:o.docSearch});if(n.value){const r=se(),o=Xe(),s=D(()=>{const{algolia:a}=ae();return a&&a.docSearch?a:{}}),i=a=>a.button===1||a.altKey||a.ctrlKey||a.metaKey||a.shiftKey,c=a=>{const{pathname:u,hash:h}=new URL(a),d=window.location.origin,f=u.replace(d,"/");return Ct(f)+h};(async a=>{const u=document.createElement("div");u.id="#docsearch-container",u.style.width="0",u.style.height="0",u.style.display="none",document.body.appendChild(u),t.value=u;const h=await Promise.all([_(()=>import("./index.ade63bb5.js"),[],import.meta.url),_(()=>Promise.resolve({}),["./style.6a49f87f.css"],import.meta.url)]).then(([b])=>b.default),d=(a==null?void 0:a.lang)||"en",f=`${a.langAttribute||"language"}:${d}`,p=a.docSearch.facetFilters||[];h({container:u,appId:a.applicationId,apiKey:a.apiKey,indexName:a.docSearch.indexName,searchParameters:{...d?{facetFilters:[f].concat(p)}:{facetFilters:p},...a.searchParameters},transformItems:a.transformItems?a.transformItems:b=>b.map(m=>({...m,url:c(m.url)})),navigator:a.navigator?a.navigator:{navigate:({itemUrl:b})=>{const{pathname:m}=new URL(window.location.origin+b);r.path===m?window.location.assign(window.location.origin+b):o.push(b)}},hitComponent:a.hitComponent?a.hitComponent:({hit:b,children:m})=>({type:"a",constructor:void 0,__v:1,props:{href:b.url,children:m,onClick:v=>{if(i(v)||r.fullPath===b.url)return;const{pathname:E}=new URL(window.location.origin+b.url);r.path!==E&&v.preventDefault(),o.push(b.url)}}}),...Object.entries(a).filter(([b])=>!["applicationId","apiKey","indexName","transformItems","navigator","hitComponent","facetFilters","langAttribute","lang"].includes(b)).reduce((b,[m,v])=>(b[m]=v,b),{})})})(s.value)}return{provide:{docSearch:{element:t,hasDocSearch:n}}}});function Ht(e){return JSON.stringify(e,Aa)}function Aa(e,t){return t instanceof RegExp?`--REGEX ${t.toString()}`:t}const qr=e=>{let t=Ht(e);return t=typeof Buffer<"u"?Buffer.from(t).toString("base64"):btoa(t),t=t.replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,""),(t.match(/.{1,100}/g)||[]).join("/")},ka=()=>async e=>{const{content:t}=ae().public,n=e.params(),r=t.experimental.stripQueryParameters?Fe(`/query/${`${Je(n)}.${t.integrity}`}/${qr(n)}.json`):Fe(`/query/${Je(n)}.${t.integrity}.json`);if(dr())return(await _(()=>import("./client-db.514bef37.js"),["./client-db.514bef37.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.useContentDatabase())).fetch(e);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Rt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o};function Me(e,...t){const{content:n}=ae().public,r=jn(ka(),typeof e!="string"?e:{});let o;typeof e=="string"&&(o=vn(Tt(e,...t)));const s=r.params;return r.params=()=>{var c,l,a;const i=s();return o&&(i.where=i.where||[],i.first&&(i.where||[]).length===0?i.where.push({_path:Ct(o)}):i.where.push({_path:new RegExp(`^${o.replace(/[-[\]{}()*+.,^$\s/]/g,"\\$&")}`)})),(c=i.sort)!=null&&c.length||(i.sort=[{_file:1,$numeric:!0}]),n.locales.length&&((a=(l=i.where)==null?void 0:l.find(h=>h._locale))!=null&&a._locale||(i.where=i.where||[],i.where.push({_locale:n.defaultLocale}))),i},r}const La=async e=>{const{content:t}=ae().public;typeof(e==null?void 0:e.params)!="function"&&(e=Me(e));const n=e.params(),r=t.experimental.stripQueryParameters?Fe(`/navigation/${`${Je(n)}.${t.integrity}`}/${qr(n)}.json`):Fe(`/navigation/${Je(n)}.${t.integrity}.json`);if(dr())return(await _(()=>import("./client-db.514bef37.js"),["./client-db.514bef37.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.generateNavigation))(n);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Rt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o},Sa=Q(e=>{var s,i;const{documentDriven:t,experimental:n}=(i=(s=ae())==null?void 0:s.public)==null?void 0:i.content,r=(c,l,a,u)=>{var h;if(l&&(l!=null&&l.layout))return l.layout;if(c.matched.length&&((h=c.matched[0].meta)!=null&&h.layout))return c.matched[0].meta.layout;if(a&&l){const{navKeyFromPath:d}=wr(),f=d(l._path,"layout",a);if(f)return f}if(t.layoutFallbacks&&u){let d;for(const f of t.layoutFallbacks)if(u[f]&&u[f].layout){d=u[f].layout;break}if(d)return d}return"default"},o=async(c,l=!1)=>{e.callHook("content:document-driven:start",{route:c,dedup:l});const a=c.meta.documentDriven||{};if(c.meta.documentDriven===!1)return;const{navigation:u,pages:h,globals:d,surrounds:f}=ke(),p=Ct(c.path),b=[];if(t.navigation&&a.navigation!==!1){const m=()=>{const{navigation:v}=ke();return v.value&&!l?v.value:La().then(E=>(v.value=E,E)).catch(()=>null)};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.globals){const m=()=>{const{globals:v}=ke();if(typeof t.globals=="object"&&Array.isArray(t.globals)){console.log("Globals must be a list of keys with QueryBuilderParams as a value.");return}return Promise.all(Object.entries(t.globals).map(([E,P])=>{if(!l&&v.value[E])return v.value[E];let C="findOne";return P!=null&&P.type&&(C=P.type),Me(P)[C]().catch(()=>null)})).then(E=>E.reduce((P,C,k)=>{const I=Object.keys(t.globals)[k];return P[I]=C,P},{}))};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.page&&a.page!==!1){let m={_path:p};typeof a.page=="string"&&(m={_path:a.page}),typeof a.page=="object"&&(m=a.page);const v=()=>{const{pages:E}=ke();return!l&&E.value[p]&&E.value[p]._path===p?E.value[p]:Me().where(m).findOne().catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));if(t.surround&&a.surround!==!1){let m=p;["string","object"].includes(typeof a.page)&&(m=a.page),["string","object"].includes(typeof a.surround)&&(m=a.surround);const v=()=>{const{surrounds:E}=ke();return!l&&E.value[p]?E.value[p]:Me().where({_partial:{$not:!0},navigation:{$not:!1}}).without(["body"]).findSurround(m).catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));return await Promise.all(b.map(m=>m())).then(async([m,v,E,P])=>{var k,I;m&&(u.value=m),v&&(d.value=v),P&&(f.value[p]=P);const C=(E==null?void 0:E.redirect)||((I=(k=E==null?void 0:E._dir)==null?void 0:k.navigation)==null?void 0:I.redirect);if(C)return h.value[p]=E,C;if(E){const M=r(c,E,m,v),ie=Oe[M];ie&&typeof ie=="function"&&await ie(),c.meta.layout=M,E.layout=M,h.value[p]=E}await e.callHook("content:document-driven:finish",{route:c,dedup:l,page:E,navigation:m,globals:v,surround:P})})};En(async(c,l)=>{if(c.path.includes("favicon.ico")||!n.clientDB&&c.path===l.path)return;const a=await o(c,!1);if(a)return fr(a)?ue(e,bn,[a,{external:!0}]):a}),e.hook("app:data:refresh",async()=>await o(se(),!0))});const Oa=e=>({color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`,borderColor:`{elements.state.${e}.borderColor.primary} !important`,":deep(p code)":{color:`{elements.state.${e}.color.secondary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(code)":{color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(a code)":{borderColor:`{elements.state.${e}.borderColor.primary} !important`},":deep(a)":{borderColor:"currentColor",code:{backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`},"&:hover":{color:`{elements.state.${e}.color.secondary} !important`,borderColor:"currentColor !important",code:{backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`,color:`{elements.state.${e}.color.secondary} !important`,borderColor:`{elements.state.${e}.borderColor.secondary} !important`}}}}),Ia=e=>({marginTop:e,marginBottom:e}),$a=e=>({marginLeft:e,marginRight:e}),Da=e=>({paddingTop:e,paddingBottom:e}),Ha=e=>({paddingLeft:e,paddingRight:e}),Ma={overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},Va=e=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":e}),xa=e=>({fontSize:`{text.${e}.fontSize}`,lineHeight:`{text.${e}.lineHeight}`}),ja={stateColors:Oa,my:Ia,mx:$a,py:Da,px:Ha,truncate:Ma,lineClamp:Va,text:xa},Ba=Q(async e=>{e.vueApp.use(Tn,{colorSchemeMode:"class",utils:ja})}),Na="__NUXT_COLOR_MODE__",Ka="ColorScheme",Ua="theme",Fa="nuxt-color-mode",oe=window[Na],za=Q(e=>{const t=kt("color-mode",()=>_e({preference:oe.preference,value:oe.value,unknown:!1,forced:!1})).value;Ze({htmlAttrs:{[`data-${Ua}`]:D(()=>t.value)}}),Xe().afterEach(o=>{const s=o.meta.colorMode;s&&s!=="system"?(t.value=s,t.forced=!0):(s==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?oe.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=oe.getColorScheme())}))}fe(()=>t.preference,o=>{var s;t.forced||(o==="system"?(t.value=oe.getColorScheme(),r()):t.value=o,(s=window.localStorage)==null||s.setItem(Fa,o))},{immediate:!0}),fe(()=>t.value,(o,s)=>{oe.removeColorScheme(s),oe.addColorScheme(o)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=oe.preference,t.value=oe.value,t.unknown=!1)}),e.provide("colorMode",t)}),lr=".studio",Ke={appConfig:`${lr}/app.config.json`,tokensConfig:`${lr}/tokens.config.json`},_l=e=>{let t;return(...n)=>(t||(t=e()),t)};function qa(e,t){for(const n in e){const r=t[n];n in t||delete e[n],r!==null&&typeof r=="object"&&qa(e[n],t[n])}}function Wa(e,t){for(const n in t){const r=t[n];r!==null&&typeof r=="object"?(e[n]=e[n]||{},Wa(e[n],r)):e[n]=r}}const Ga=Q(async e=>{let t,n;if(!window.parent||window.self===window.parent)return;const r=Xe(),o=Z(""),s=Z(!0),i=p=>({path:p.path,query:ut(p.query),params:ut(p.params),fullPath:p.fullPath,meta:ut(p.meta)}),c=([t,n]=ze(()=>_(()=>import("./useStudio.ef34e52b.js"),["./useStudio.ef34e52b.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.7c06b2d5.js","./ContentPreviewMode.ea418cb0.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(p=>p.useStudio)),t=await t,n(),t),{findContentWithId:l,updateContent:a,removeContentWithId:u,requestRerender:h,syncPreviewAppConfig:d,syncPreviewTokensConfig:f}=c();window.addEventListener("keydown",p=>{(p.metaKey||p.ctrlKey||p.altKey||p.shiftKey)&&window.parent.postMessage({type:"nuxt-studio:preview:keydown",payload:{key:p.key,metaKey:p.metaKey,ctrlKey:p.ctrlKey,shiftKey:p.shiftKey,altKey:p.altKey}},"*")}),window.addEventListener("message",async p=>{const{type:b,payload:m={}}=p.data||{};switch(b){case"nuxt-studio:editor:file-selected":{const v=await l(m.path);v?v._partial||v._path!==se().path&&(o.value=v._path,r.push(v._path)):(o.value="/",se().path!=="/"&&r.push("/"));break}case"nuxt-studio:editor:file-changed":{const{additions:v=[],deletions:E=[]}=m;for(const P of v)await a(P);for(const P of E)await u(P.path);h();break}case"nuxt-studio:config:file-changed":{const{additions:v=[],deletions:E=[]}=m,P=v.find(M=>M.path===Ke.appConfig);P&&d(P==null?void 0:P.parsed),E.find(M=>M.path===Ke.appConfig)&&d(void 0);const k=v.find(M=>M.path===Ke.tokensConfig);k&&f(k==null?void 0:k.parsed),E.find(M=>M.path===Ke.tokensConfig)&&f(void 0);break}}}),e.hook("content:document-driven:finish",({route:p,page:b,dedup:m})=>{if(m||s.value){s.value=!1;return}if(b&&o.value===b._path){o.value="";return}window.parent.postMessage({type:"nuxt-studio:preview:document-driven:finish",payload:{...i(p),contentId:b==null?void 0:b._id}},"*")}),r==null||r.afterEach(p=>{window.parent.postMessage({type:"nuxt-studio:preview:route-changed",payload:i(p)},"*")}),e.hook("nuxt-studio:preview:ready",()=>{window.parent.postMessage({type:"nuxt-studio:preview:ready",payload:i(se())},"*")})}),Qa=Q(e=>{const t=ae().public.studio||{},n=se(),r=Rt("previewToken",{sameSite:"none",secure:!0});async function o(){const s=await _(()=>import("./useStudio.ef34e52b.js"),["./useStudio.ef34e52b.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.7c06b2d5.js","./ContentPreviewMode.ea418cb0.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(c=>c.useStudio),{mountPreviewUI:i}=s();i(),Me("/non-existing-path").findOne()}if(t.apiURL){if(Object.prototype.hasOwnProperty.call(n.query,"preview")&&!n.query.preview||!n.query.preview&&!r.value)return;n.query.preview&&r.value!==n.query.preview&&(r.value=String(n.query.preview)),e.hook("app:mounted",async()=>{await o()})}}),Za=Q(e=>{const t=Z(!1),n=()=>t.value=!0,r=()=>t.value=!1,o=()=>t.value=!t.value;return e.$router.afterEach(()=>setTimeout(r,50)),fe(t,s=>{const i=document.documentElement;s?i.style.overflow="hidden":setTimeout(()=>{i.style.overflow=""},100)},{immediate:!0}),{provide:{menu:{visible:t,close:r,open:n,toggle:o}}}}),Ja=Q(()=>{navigator&&navigator.userAgent&&navigator.userAgent.match(/Win[a-z0-9]*;/)&&document.documentElement.classList.add("docus-scrollbars")}),Ya=[us,hs,Ra,Ta,Ca,Sa,Ba,za,Ga,Qa,Za,Ja],Xa=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""}),ei=(e,t)=>{const n=e.route.matched.find(o=>{var s;return((s=o.components)==null?void 0:s.default)===e.Component.type}),r=t??(n==null?void 0:n.meta.key)??(n&&Xa(e.route,n));return typeof r=="function"?r(e.route):r},ti=(e,t)=>({default:()=>e?W(In,e===!0?{}:e,t):t}),ri=U({name:"FragmentWrapper",setup(e,{slots:t}){return()=>{var n;return(n=t.default)==null?void 0:n.call(t)}}}),ni=(e,t,n)=>({default:()=>t?W(e,t===!0?{}:t,n):W(ri,{},n)}),Wr=U({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t}){const n=Y();return()=>W(zr,{name:e.name,route:e.route,...t},{default:r=>{if(!r.Component)return;const o=ei(r,e.pageKey),s=n.deferHydration(),i=!!(e.transition??r.route.meta.pageTransition??Et),c=i&&si([e.transition,r.route.meta.pageTransition,Et,{onAfterLeave:()=>{n.callHook("page:transition:finish",r.Component)}}].filter(Boolean));return ni(cn,i&&c,ti(e.keepalive??r.route.meta.keepalive??fs,W(gr,{onPending:()=>n.callHook("page:start",r.Component),onResolve:()=>{Pe(()=>n.callHook("page:finish",r.Component).finally(s))}},{default:()=>W(ai,{key:o,routeProps:r,pageKey:o,hasTransition:i})}))).default()}})}});function oi(e){return Array.isArray(e)?e:e?[e]:[]}function si(e){const t=e.map(n=>({...n,onAfterLeave:oi(n.onAfterLeave)}));return Bn(...t)}const ai=U({name:"RouteProvider",props:["routeProps","pageKey","hasTransition"],setup(e){const t=e.pageKey,n=e.routeProps.route,r={};for(const o in e.routeProps.route)r[o]=D(()=>t===e.pageKey?e.routeProps.route[o]:n[o]);return Ie("_route",_e(r)),()=>W(e.routeProps.Component)}}),ml=Object.freeze(Object.defineProperty({__proto__:null,default:Wr},Symbol.toStringTag,{value:"Module"}));const Gr={__name:"AppLoadingBar",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3}},setup(e){const t=e,n=Y(),r=_e({percent:0,show:!1,canSucceed:!0});let o=null,s=null,i;function c(){o&&clearInterval(o),s&&clearTimeout(s),o=null}function l(){r.show||(c(),r.percent=0,r.canSucceed=!0,t.throttle?s=setTimeout(d,t.throttle):d())}function a(f){r.percent=Math.min(100,Math.floor(r.percent+f))}function u(){r.percent=100,h()}function h(){c(),setTimeout(()=>{r.show=!1,setTimeout(()=>{r.percent=0},400)},500)}function d(){r.show=!0,i=1e4/Math.floor(t.duration),o=setInterval(()=>{a(i)},100)}return n.hook("content:middleware:start",l),n.hook("page:start",l),n.hook("page:finish",u),_r(()=>c),(f,p)=>(L(),j("div",{class:At(["nuxt-progress",{"nuxt-progress-failed":!R(r).canSucceed}]),style:$n({width:`${R(r).percent}%`,left:R(r).left,opacity:R(r).show?1:0,backgroundSize:`${100/R(r).percent*100}% auto`})},null,6))}},ii=Object.freeze(Object.defineProperty({__proto__:null,default:Gr},Symbol.toStringTag,{value:"Module"})),li=U({__name:"AppSocialIcons",setup(e){const t=["twitter","facebook","instagram","youtube","github","medium"],{config:n}=me(),r=D(()=>Object.entries(n.value.socials||{}).map(([o,s])=>typeof s=="object"?s:typeof s=="string"&&s&&t.includes(o)?{href:`https://${o}.com/${s}`,icon:`fa-brands:${o}`,label:s}:null).filter(Boolean));return(o,s)=>{const i=we,c=et;return L(!0),j(Ve,null,qe(R(r),l=>(L(),x(c,{key:l.label,rel:"noopener noreferrer",title:l.label,"aria-label":l.label,href:l.href,target:"_blank"},{default:te(()=>[l.icon?(L(),x(i,{key:0,name:l.icon},null,8,["name"])):ee("",!0)]),_:2},1032,["title","aria-label","href"]))),128)}}});const nt=X(li,[["__scopeId","data-v-224b171c"]]),ci=Object.freeze(Object.defineProperty({__proto__:null,default:nt},Symbol.toStringTag,{value:"Module"})),ui=()=>{const{$menu:e}=Y();return e},di={class:"wrapper"},fi={class:"icons"},pi=U({__name:"AppHeaderDialog",setup(e){const{navigation:t}=Lt(),{config:n}=me(),r=D(()=>{var l;return((l=n.value.aside)==null?void 0:l.exclude)||[]}),o=D(()=>(t.value||[]).filter(l=>!r.value.includes(l._path))),{visible:s,open:i,close:c}=ui();return fe(s,l=>l?i():c()),(l,a)=>{const u=we,h=nt,d=dn;return L(),j(Ve,null,[V("button",{"aria-label":"Menu",onClick:a[0]||(a[0]=(...f)=>R(i)&&R(i)(...f))},[K(u,{name:"heroicons-outline:menu","aria-hidden":"”true”"})]),(L(),x(Dn,{to:"body"},[R(s)?(L(),j("nav",{key:0,class:"dialog",onClick:a[3]||(a[3]=(...f)=>R(c)&&R(c)(...f))},[V("div",{onClick:a[2]||(a[2]=un(()=>{},["stop"]))},[V("div",di,[V("button",{"aria-label":"Menu",onClick:a[1]||(a[1]=(...f)=>R(c)&&R(c)(...f))},[K(u,{name:"heroicons-outline:x","aria-hidden":"”true”"})]),V("div",fi,[K(h)])]),K(d,{links:R(o)},null,8,["links"])])])):ee("",!0)]))],64)}}});const Qr=X(pi,[["__scopeId","data-v-291983a4"]]),hi=Object.freeze(Object.defineProperty({__proto__:null,default:Qr},Symbol.toStringTag,{value:"Module"})),_i={},mi={viewBox:"133.827 188.259 264.992 112.316",width:"100",height:"50",style:{height:"50px"}},gi=Hn('',10),yi=[gi];function vi(e,t){return L(),j("svg",mi,yi)}const Zr=X(_i,[["render",vi]]),Ei=Object.freeze(Object.defineProperty({__proto__:null,default:Zr},Symbol.toStringTag,{value:"Module"})),bi={key:2},wi=U({__name:"AppHeaderLogo",setup(e){const{config:t}=me(),n=D(()=>{var o;return((o=t.value.header)==null?void 0:o.logo)||!1}),r=D(()=>{var o;return((o=t.value.header)==null?void 0:o.title)||t.value.title});return(o,s)=>{const i=Zr,c=et;return L(),x(c,{class:"navbar-logo",to:"/","aria-label":R(r)},{default:te(()=>[R(n)&&typeof R(n)=="string"?(L(),x(yr(R(n)),{key:0})):R(n)?(L(),x(i,{key:1})):(L(),j("span",bi,We(R(r)),1))]),_:1},8,["aria-label"])}}});const Jr=X(wi,[["__scopeId","data-v-0e437bbb"]]),Pi=Object.freeze(Object.defineProperty({__proto__:null,default:Jr},Symbol.toStringTag,{value:"Module"})),Ri={key:0},Ti=U({__name:"AppHeaderNavigation",setup(e){const t=se(),{navBottomLink:n}=wr(),{navigation:r}=Lt(),{config:o}=me(),s=D(()=>{var a;return!!((a=o.value.aside)!=null&&a.level)}),i=D(()=>{var a;return((a=o.value.header)==null?void 0:a.exclude)||[]}),c=D(()=>(r.value||[]).filter(a=>!i.value.includes(a._path))),l=a=>a.exact?t.fullPath===a._path:t.fullPath.startsWith(a._path);return(a,u)=>{const h=we,d=et;return R(s)?(L(),j("nav",Ri,[V("ul",null,[(L(!0),j(Ve,null,qe(R(c),f=>(L(),j("li",{key:f._path},[K(d,{class:At(["link",{active:l(f)}]),to:f.redirect?f.redirect:R(n)(f)},{default:te(()=>{var p,b;return[f.icon&&((b=(p=R(o))==null?void 0:p.header)!=null&&b.showLinkIcon)?(L(),x(h,{key:0,name:f.icon},null,8,["name"])):ee("",!0),vr(" "+We(f.title),1)]}),_:2},1032,["to","class"])]))),128))])])):ee("",!0)}}});const Yr=X(Ti,[["__scopeId","data-v-01b60614"]]),Ci=Object.freeze(Object.defineProperty({__proto__:null,default:Yr},Symbol.toStringTag,{value:"Module"})),Xr=()=>{const{$docSearch:e}=Y();return e||{hasDocSearch:Z(!1)}},en=e=>(Mn("data-v-1e99f08b"),e=e(),Vn(),e),Ai={type:"button","aria-label":"Search"},ki={class:"content"},Li=en(()=>V("span",null,"Search",-1)),Si=en(()=>V("span",null,[V("kbd",null,"⌘"),V("kbd",null,"K")],-1)),Oi=U({__name:"AppSearch",setup(e){const{element:t}=Xr(),n=()=>t.value.querySelector("button").click();return(r,o)=>{const s=we;return L(),j("div",{class:"doc-search",onClick:n},[V("button",Ai,[V("span",ki,[K(s,{name:"heroicons-outline:search"}),Li,Si])])])}}});const tn=X(Oi,[["__scopeId","data-v-1e99f08b"]]),Ii=Object.freeze(Object.defineProperty({__proto__:null,default:tn},Symbol.toStringTag,{value:"Module"})),rn=U({name:"ClientOnly",inheritAttrs:!1,props:["fallback","placeholder","placeholderTag","fallbackTag"],setup(e,{slots:t,attrs:n}){const r=Z(!1);return Er(()=>{r.value=!0}),o=>{var l;if(r.value)return(l=t.default)==null?void 0:l.call(t);const s=t.fallback||t.placeholder;if(s)return s();const i=o.fallback||o.placeholder||"",c=o.fallbackTag||o.placeholderTag||"span";return j(c,n,i)}}}),mt=new WeakMap;function $i(e){if(mt.has(e))return mt.get(e);const t={...e};return t.render?t.render=(n,...r)=>{if(n.mounted$){const o=e.render(n,...r);return o.children===null||typeof o.children=="string"?V(o.type,o.props,o.children,o.patchFlag,o.dynamicProps,o.shapeFlag):W(o)}else return W("div",n.$attrs??n._.attrs)}:t.template&&(t.template=` + + + `),t.setup=(n,r)=>{var s;const o=Z(!1);return Er(()=>{o.value=!0}),Promise.resolve(((s=e.setup)==null?void 0:s.call(e,n,r))||{}).then(i=>typeof i!="function"?{...i,mounted$:o}:(...c)=>{if(o.value){const l=i(...c);return l.children===null||typeof l.children=="string"?V(l.type,l.props,l.children,l.patchFlag,l.dynamicProps,l.shapeFlag):W(l)}else return W("div",r.attrs)})},mt.set(e,t),t}const gl=Object.freeze(Object.defineProperty({__proto__:null,createClientOnly:$i,default:rn},Symbol.toStringTag,{value:"Module"})),Di={name:Ka,props:{placeholder:String,tag:{type:String,default:"span"}}};function Hi(e,t,n,r,o,s){const i=rn;return L(),x(i,{placeholder:n.placeholder,"placeholder-tag":n.tag},{default:te(()=>[br(e.$slots,"default")]),_:3},8,["placeholder","placeholder-tag"])}const nn=X(Di,[["render",Hi]]),yl=Object.freeze(Object.defineProperty({__proto__:null,default:nn},Symbol.toStringTag,{value:"Module"})),Mi=()=>kt("color-mode").value,Vi=U({__name:"ThemeSelect",setup(e){const t=Mi(),n=()=>{const r=["system","light","dark"],s=(r.indexOf(t.preference)+1)%r.length;t.preference=r[s]};return(r,o)=>{const s=we,i=nn;return L(),j("button",{"aria-label":"Color Mode",onClick:n},[K(i,{placeholder:"..."},{default:te(()=>[R(t).preference==="dark"?(L(),x(s,{key:0,name:"uil:moon"})):R(t).preference==="light"?(L(),x(s,{key:1,name:"uil:sun"})):(L(),x(s,{key:2,name:"uil:desktop"}))]),_:1})])}}});const on=X(Vi,[["__scopeId","data-v-4a6c39b0"]]),xi=Object.freeze(Object.defineProperty({__proto__:null,default:on},Symbol.toStringTag,{value:"Module"})),ji={class:"section left"},Bi={class:"section center"},Ni={class:"section right"},Ki={class:"social-icons"},Ui=U({__name:"AppHeader",props:{},setup(e){const{config:t}=me(),{navigation:n}=Lt(),{hasDocSearch:r}=Xr(),o=D(()=>{var s;return((s=n.value)==null?void 0:s.length)>1});return(s,i)=>{var p,b;const c=Qr,l=Jr,a=Yr,u=tn,h=on,d=nt,f=pr;return L(),j("header",{class:At({"has-dialog":R(o),"has-doc-search":R(r)})},[K(f,{fluid:(b=(p=R(t))==null?void 0:p.header)==null?void 0:b.fluid},{default:te(()=>[V("div",ji,[R(o)?(L(),x(c,{key:0})):ee("",!0),K(l)]),V("div",Bi,[R(o)?(L(),x(l,{key:0})):ee("",!0),K(a)]),V("div",Ni,[R(r)?(L(),x(u,{key:0})):ee("",!0),K(h),V("div",Ki,[K(d)])])]),_:1},8,["fluid"])],2)}}});const sn=X(Ui,[["__scopeId","data-v-8375ebf7"]]),Fi=Object.freeze(Object.defineProperty({__proto__:null,default:sn},Symbol.toStringTag,{value:"Module"})),zi={class:"left"},qi=["href"],Wi={key:1},Gi={class:"center"},Qi={class:"right"},Zi=["aria-label","href"],Ji=U({__name:"AppFooter",setup(e){const{config:t}=me(),n=Z(null),r=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.iconLinks)||[]}),o=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.textLinks)||[]}),s=D(()=>{var c;return Object.entries(((c=t.value)==null?void 0:c.socials)||{}).filter(([l,a])=>a).length}),i=D(()=>n.value?s.value:0);return(c,l)=>{var f,p;const a=et,u=we,h=nt,d=pr;return L(),j("footer",null,[K(d,{fluid:(p=(f=R(t))==null?void 0:f.footer)==null?void 0:p.fluid,padded:"",class:"footer-container"},{default:te(()=>{var b,m,v,E,P,C,k,I,M,ie,Re,Te,Ce,le;return[V("div",zi,[(m=(b=R(t))==null?void 0:b.footer)!=null&&m.credits?(L(),j("a",{key:0,href:((P=(E=(v=R(t))==null?void 0:v.footer)==null?void 0:E.credits)==null?void 0:P.href)||"#",rel:"noopener",target:"_blank"},[(I=(k=(C=R(t))==null?void 0:C.footer)==null?void 0:k.credits)!=null&&I.icon?(L(),x(yr((Re=(ie=(M=R(t))==null?void 0:M.footer)==null?void 0:ie.credits)==null?void 0:Re.icon),{key:0,class:"left-icon"})):ee("",!0),(le=(Ce=(Te=R(t))==null?void 0:Te.footer)==null?void 0:Ce.credits)!=null&&le.text?(L(),j("p",Wi,We(R(t).footer.credits.text),1)):ee("",!0)],8,qi)):ee("",!0)]),V("div",Gi,[(L(!0),j(Ve,null,qe(R(o),G=>(L(),x(a,{key:G.href,class:"text-link","aria-label":G.text,href:G.href,target:G.target||"_self"},{default:te(()=>[vr(We(G.text),1)]),_:2},1032,["aria-label","href","target"]))),128))]),V("div",Qi,[(L(!0),j(Ve,null,qe(R(r).slice(0,6-R(i)),G=>(L(),j("a",{key:G.label,class:"icon-link",rel:"noopener","aria-label":G.label,href:G.href,target:"_blank"},[K(u,{name:G.icon},null,8,["name"])],8,Zi))),128)),K(h,{ref_key:"socialIcons",ref:n},null,512)])]}),_:1},8,["fluid"])])}}});const an=X(Ji,[["__scopeId","data-v-eebf8ee0"]]),Yi=Object.freeze(Object.defineProperty({__proto__:null,default:an},Symbol.toStringTag,{value:"Module"})),Xi=(e,t=se())=>{const n=R(e),r=ae();fe(()=>R(e),(s=n)=>{if(!t.path||!s)return;const i=Object.assign({},(s==null?void 0:s.head)||{});i.meta=[...i.meta||[]],i.link=[...i.link||[]];const c=i.title||(s==null?void 0:s.title);c&&(i.title=c),r.public.content.host;const l=(i==null?void 0:i.description)||(s==null?void 0:s.description);l&&i.meta.filter(a=>a.name==="description").length===0&&i.meta.push({name:"description",content:l}),i!=null&&i.image||(s==null||s.image),Pe(()=>Ze(i))},{immediate:!0})},el=U({__name:"AppLayout",setup(e){const{config:t}=me();return Ze({titleTemplate:t.value.titleTemplate,meta:[{name:"twitter:card",content:"summary_large_image"}]}),fe(()=>t.value.titleTemplate,()=>Ze({titleTemplate:t.value.titleTemplate})),Xi(t.value),(n,r)=>{const o=Gr,s=sn,i=an;return L(),j("div",null,[K(o),K(s),br(n.$slots,"default"),K(i)])}}}),tl={};function rl(e,t){const n=Wr,r=el;return L(),x(r,null,{default:te(()=>[K(n)]),_:1})}const nl=X(tl,[["render",rl]]),cr={__name:"nuxt-root",setup(e){const t=g(()=>_(()=>import("./error-component.9c8606a2.js"),["./error-component.9c8606a2.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(c=>c.default||c)),n=()=>null,r=Y(),o=r.deferHydration();Ie("_route",se()),r.hooks.callHookWith(c=>c.map(l=>l()),"vue:setup");const s=tt();xn((c,l,a)=>{r.hooks.callHook("vue:error",c,l,a).catch(u=>console.error("[nuxt] Error in `vue:error` hook",u)),so(c)&&(c.fatal||c.unhandled)&&ue(r,Se,[c])});const{islandContext:i}=!1;return(c,l)=>(L(),x(gr,{onResolve:R(o)},{default:te(()=>[R(s)?(L(),x(R(t),{key:0,error:R(s)},null,8,["error"])):R(i)?(L(),x(R(n),{key:1,context:R(i)},null,8,["context"])):(L(),x(R(nl),{key:2}))]),_:1},8,["onResolve"]))}};globalThis.$fetch||(globalThis.$fetch=Yn.create({baseURL:eo()}));let ur;const ol=wn(Ya);ur=async function(){var o;const n=Boolean((o=window.__NUXT__)==null?void 0:o.serverRendered)?fn(cr):pn(cr),r=Pn({vueApp:n});try{await Rn(r,ol)}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}try{await r.hooks.callHook("app:created",n),await r.hooks.callHook("app:beforeMount",n),n.mount("#"+ps),await r.hooks.callHook("app:mounted",n),await Pe()}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}},ur().catch(e=>{console.error("Error while mounting app:",e)});export{ii as A,Ei as L,lr as S,xi as T,el as _,Xi as a,Ze as b,ao as c,hl as d,pl as e,La as f,ni as g,Je as h,_l as i,Wa as j,qa as k,Oe as l,Ke as m,ci as n,hi as o,ml as p,Me as q,Pi as r,Ci as s,Ii as t,Mi as u,gl as v,yl as w,Fi as x,Yi as y}; diff --git a/docs/.output/public/_nuxt/error-404.e92ccfb2.js b/docs/.output/public/_nuxt/error-404.1576ed15.js similarity index 89% rename from docs/.output/public/_nuxt/error-404.e92ccfb2.js rename to docs/.output/public/_nuxt/error-404.1576ed15.js index 6c2de511..69d067c3 100644 --- a/docs/.output/public/_nuxt/error-404.e92ccfb2.js +++ b/docs/.output/public/_nuxt/error-404.1576ed15.js @@ -1 +1 @@ -import{_ as r}from"./app.config.4114fca6.js";import{b as a}from"./entry.2d43dc03.js";import{a as n}from"./Container.f1017aa2.js";import{q as d,x as l,E as e,J as s,G as c,C as p,L as m,M as f,N as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.08d70919.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./query.c3f7607a.js";const h=t=>(f("data-v-30d2164e"),t=t(),x(),t),u={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},g=h(()=>e("div",{class:"fixed left-0 right-0 spotlight z-10"},null,-1)),_={class:"max-w-520px text-center z-20"},b=["textContent"],y=["textContent"],w={class:"w-full flex items-center justify-center"},S={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:404},statusMessage:{type:String,default:"Not Found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(t){const o=t;return a({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(k,N)=>{const i=r;return d(),l("div",u,[g,e("div",_,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,b),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,y),e("div",w,[c(i,{to:"/",class:"gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer"},{default:p(()=>[m(s(t.backHome),1)]),_:1})])])])}}},U=n(S,[["__scopeId","data-v-30d2164e"]]);export{U as default}; +import{_ as r}from"./app.config.f41ab05d.js";import{b as a}from"./entry.f3791b9c.js";import{a as n}from"./Container.f1017aa2.js";import{q as d,x as l,E as e,J as s,G as c,C as p,L as m,M as f,N as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const h=t=>(f("data-v-30d2164e"),t=t(),x(),t),u={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},g=h(()=>e("div",{class:"fixed left-0 right-0 spotlight z-10"},null,-1)),_={class:"max-w-520px text-center z-20"},b=["textContent"],y=["textContent"],w={class:"w-full flex items-center justify-center"},S={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:404},statusMessage:{type:String,default:"Not Found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(t){const o=t;return a({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(k,N)=>{const i=r;return d(),l("div",u,[g,e("div",_,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,b),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,y),e("div",w,[c(i,{to:"/",class:"gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer"},{default:p(()=>[m(s(t.backHome),1)]),_:1})])])])}}},U=n(S,[["__scopeId","data-v-30d2164e"]]);export{U as default}; diff --git a/docs/.output/public/_nuxt/error-500.e0cdca3b.js b/docs/.output/public/_nuxt/error-500.421dc5a9.js similarity index 88% rename from docs/.output/public/_nuxt/error-500.e0cdca3b.js rename to docs/.output/public/_nuxt/error-500.421dc5a9.js index b447aaab..7d05bc97 100644 --- a/docs/.output/public/_nuxt/error-500.e0cdca3b.js +++ b/docs/.output/public/_nuxt/error-500.421dc5a9.js @@ -1 +1 @@ -import{b as i}from"./entry.2d43dc03.js";import{a as r}from"./Container.f1017aa2.js";import{q as a,x as n,E as e,J as s,M as l,N as d}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./query.c3f7607a.js";const p=t=>(l("data-v-32388612"),t=t(),d(),t),c={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},m=p(()=>e("div",{class:"fixed -bottom-1/2 left-0 right-0 h-1/2 spotlight"},null,-1)),h={class:"max-w-520px text-center"},f=["textContent"],g=["textContent"],x={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Server error"},description:{type:String,default:"This page is temporarily unavailable."}},setup(t){const o=t;return i({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(b,u)=>(a(),n("div",c,[m,e("div",h,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,f),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,g)])]))}},I=r(x,[["__scopeId","data-v-32388612"]]);export{I as default}; +import{b as i}from"./entry.f3791b9c.js";import{a as r}from"./Container.f1017aa2.js";import{q as a,x as n,E as e,J as s,M as l,N as d}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const p=t=>(l("data-v-32388612"),t=t(),d(),t),c={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},m=p(()=>e("div",{class:"fixed -bottom-1/2 left-0 right-0 h-1/2 spotlight"},null,-1)),h={class:"max-w-520px text-center"},f=["textContent"],g=["textContent"],x={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Server error"},description:{type:String,default:"This page is temporarily unavailable."}},setup(t){const o=t;return i({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(b,u)=>(a(),n("div",c,[m,e("div",h,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,f),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,g)])]))}},I=r(x,[["__scopeId","data-v-32388612"]]);export{I as default}; diff --git a/docs/.output/public/_nuxt/error-component.a846670f.js b/docs/.output/public/_nuxt/error-component.9c8606a2.js similarity index 74% rename from docs/.output/public/_nuxt/error-component.a846670f.js rename to docs/.output/public/_nuxt/error-component.9c8606a2.js index 320b602d..f9a2fc38 100644 --- a/docs/.output/public/_nuxt/error-component.a846670f.js +++ b/docs/.output/public/_nuxt/error-component.9c8606a2.js @@ -1,3 +1,3 @@ import{_ as o}from"./Container.f1017aa2.js";import{e as n,q as f,B as g,ac as E,ad as k,u as s}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";const P={__name:"nuxt-error-page",props:{error:Object},setup(c){const{error:t}=c;(t.stack||"").split(` `).splice(1).map(e=>({text:e.replace("webpack:/","").replace(".vue",".js").trim(),internal:e.includes("node_modules")&&!e.includes(".cache")||e.includes("internal")||e.includes("new Promise")})).map(e=>`${e.text}`).join(` -`);const r=Number(t.statusCode||500),a=r===404,u=t.statusMessage??(a?"Page Not Found":"Internal Server Error"),i=t.message||t.toString(),p=void 0,m=n(()=>o(()=>import("./error-404.e92ccfb2.js"),["./error-404.e92ccfb2.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-404.97011ca1.css"],import.meta.url).then(e=>e.default||e)),_=n(()=>o(()=>import("./error-500.e0cdca3b.js"),["./error-500.e0cdca3b.js","./entry.2d43dc03.js","./DocsAsideTree.08d70919.js","./app.config.4114fca6.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.5bbb58d5.js","./useDocus.edcbeab5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-500.82e14f63.css"],import.meta.url).then(e=>e.default||e)),d=a?m:_;return(e,l)=>(f(),g(s(d),E(k({statusCode:s(r),statusMessage:s(u),description:s(i),stack:s(p)})),null,16))}},C=P;export{C as default}; +`);const r=Number(t.statusCode||500),a=r===404,u=t.statusMessage??(a?"Page Not Found":"Internal Server Error"),i=t.message||t.toString(),p=void 0,m=n(()=>o(()=>import("./error-404.1576ed15.js"),["./error-404.1576ed15.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-404.97011ca1.css"],import.meta.url).then(e=>e.default||e)),_=n(()=>o(()=>import("./error-500.421dc5a9.js"),["./error-500.421dc5a9.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-500.82e14f63.css"],import.meta.url).then(e=>e.default||e)),d=a?m:_;return(e,l)=>(f(),g(s(d),E(k({statusCode:s(r),statusMessage:s(u),description:s(i),stack:s(p)})),null,16))}},C=P;export{C as default}; diff --git a/docs/.output/public/_nuxt/layout.732d57d1.js b/docs/.output/public/_nuxt/layout.0a22fa4a.js similarity index 72% rename from docs/.output/public/_nuxt/layout.732d57d1.js rename to docs/.output/public/_nuxt/layout.0a22fa4a.js index 043ac1f7..8b4154cc 100644 --- a/docs/.output/public/_nuxt/layout.732d57d1.js +++ b/docs/.output/public/_nuxt/layout.0a22fa4a.js @@ -1 +1 @@ -import{T as p}from"./DocsAsideTree.08d70919.js";import{l as u,d as l,e as f,g as r}from"./entry.2d43dc03.js";import{l as d}from"./app.config.4114fca6.js";import{f as i,j as y,h as c,i as L,u as h}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./query.c3f7607a.js";const _=i({name:"LayoutLoader",inheritAttrs:!1,props:{name:String},async setup(n,t){const o=await u[n.name]().then(a=>a.default||a);return()=>y(o,t.attrs,t.slots)}}),b=i({name:"NuxtLayout",inheritAttrs:!1,props:{name:{type:[String,Boolean,Object],default:null}},setup(n,t){const o=L("_route"),a=o===d()?l():o,e=c(()=>h(n.name)??a.meta.layout??"default");return()=>{const s=e.value&&e.value in u,m=a.meta.layoutTransition??f;return r(p,s&&m,{default:()=>r(_,s&&{key:e.value,name:e.value,...t.attrs},t.slots).default()}).default()}}});export{b as default}; +import{T as p}from"./DocsAsideTree.b95e55e0.js";import{l as u,d as l,e as f,g as r}from"./entry.f3791b9c.js";import{l as d}from"./app.config.f41ab05d.js";import{f as i,j as y,h as c,i as L,u as h}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./query.c3f7607a.js";const _=i({name:"LayoutLoader",inheritAttrs:!1,props:{name:String},async setup(n,t){const o=await u[n.name]().then(a=>a.default||a);return()=>y(o,t.attrs,t.slots)}}),b=i({name:"NuxtLayout",inheritAttrs:!1,props:{name:{type:[String,Boolean,Object],default:null}},setup(n,t){const o=L("_route"),a=o===d()?l():o,e=c(()=>h(n.name)??a.meta.layout??"default");return()=>{const s=e.value&&e.value in u,m=a.meta.layoutTransition??f;return r(p,s&&m,{default:()=>r(_,s&&{key:e.value,name:e.value,...t.attrs},t.slots).default()}).default()}}});export{b as default}; diff --git a/docs/.output/public/_nuxt/page.57ff23a3.js b/docs/.output/public/_nuxt/page.f33b5a13.js similarity index 72% rename from docs/.output/public/_nuxt/page.57ff23a3.js rename to docs/.output/public/_nuxt/page.f33b5a13.js index 5ecb04d1..e552778b 100644 --- a/docs/.output/public/_nuxt/page.57ff23a3.js +++ b/docs/.output/public/_nuxt/page.f33b5a13.js @@ -1 +1 @@ -import{b as r,a as c}from"./Container.f1017aa2.js";import{c as p}from"./useDocus.edcbeab5.js";import{f as i,q as u,x as l,G as m,C as f,u as n,E as g,P as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./app.config.4114fca6.js";const v={class:"page-layout"},C=i({__name:"page",setup(b){const{config:e}=p();return(_,h)=>{var t,a,o,s;const d=r;return u(),l("div",v,[m(d,{fluid:(a=(t=n(e))==null?void 0:t.main)==null?void 0:a.fluid,padded:(s=(o=n(e))==null?void 0:o.main)==null?void 0:s.padded},{default:f(()=>[g("article",null,[x(_.$slots,"default",{},void 0,!0)])]),_:3},8,["fluid","padded"])])}}});const V=c(C,[["__scopeId","data-v-415bdc86"]]);export{V as default}; +import{b as r,a as c}from"./Container.f1017aa2.js";import{c as p}from"./useDocus.41ab1ca5.js";import{f as i,q as u,x as l,G as m,C as f,u as n,E as g,P as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./app.config.f41ab05d.js";const v={class:"page-layout"},C=i({__name:"page",setup(b){const{config:e}=p();return(_,h)=>{var t,a,o,s;const d=r;return u(),l("div",v,[m(d,{fluid:(a=(t=n(e))==null?void 0:t.main)==null?void 0:a.fluid,padded:(s=(o=n(e))==null?void 0:o.main)==null?void 0:s.padded},{default:f(()=>[g("article",null,[x(_.$slots,"default",{},void 0,!0)])]),_:3},8,["fluid","padded"])])}}});const V=c(C,[["__scopeId","data-v-415bdc86"]]);export{V as default}; diff --git a/docs/.output/public/_nuxt/useDocus.edcbeab5.js b/docs/.output/public/_nuxt/useDocus.41ab1ca5.js similarity index 98% rename from docs/.output/public/_nuxt/useDocus.edcbeab5.js rename to docs/.output/public/_nuxt/useDocus.41ab1ca5.js index 64a42db6..858cd676 100644 --- a/docs/.output/public/_nuxt/useDocus.edcbeab5.js +++ b/docs/.output/public/_nuxt/useDocus.41ab1ca5.js @@ -1 +1 @@ -import{u as D,v as E,m as $,l as S}from"./app.config.4114fca6.js";import{t as j,d as B,k as H,h as c}from"./runtime-core.esm-bundler.6894272a.js";function x(...t){const i=typeof t[t.length-1]=="string"?t.pop():void 0;typeof t[0]!="string"&&t.unshift(i);const[e,a]=t;if(!e||typeof e!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+e);if(a!==void 0&&typeof a!="function")throw new Error("[nuxt] [useState] init must be a function: "+a);const u="$s"+e,n=D(),l=j(n.payload.state,u);if(l.value===void 0&&a){const r=a();if(B(r))return n.payload.state[u]=r,r;l.value=r}return l}function L(){const t=D();return t._appConfig||(t._appConfig=H(E)),t._appConfig}const T=t=>{if(!t.children)return t._path;for(const i of(t==null?void 0:t.children)||[]){const e=T(i);if(e)return e}},K=(t,i)=>{for(const e of i){if(e._path===t&&!e._id)return e.children;if(e.children){const a=K(t,e.children);if(a)return a}}},R=(t,i)=>{for(const e of i){if(e._path===t)return e;if(e.children){const a=R(t,e.children);if(a)return a}}},N=(t,i,e)=>{let a;const u=(n,l)=>{for(const r of l){if(n!=null&&n.startsWith(r._path)&&r[i]&&(a=r[i]),r._path===n)return;r.children&&u(n,r.children)}};return u(t,e),a},V=()=>({navBottomLink:T,navDirFromPath:K,navPageFromPath:R,navKeyFromPath:N}),W=()=>{const t=x("dd-pages",()=>({})),i=x("dd-surrounds",()=>({})),e=x("dd-navigation"),a=x("dd-globals",()=>({}));return{pages:t,surrounds:i,navigation:e,globals:a}},q=()=>{const{navigation:t,pages:i,surrounds:e,globals:a}=W(),u=c(()=>$(S().path)),n=c(()=>i.value[u.value]),l=c(()=>e.value[u.value]),r=c(()=>{var o,f;return(f=(o=n==null?void 0:n.value)==null?void 0:o.body)==null?void 0:f.toc}),P=c(()=>{var o;return(o=n.value)==null?void 0:o.type}),s=c(()=>{var o;return(o=n.value)==null?void 0:o.excerpt}),p=c(()=>{var o;return(o=n.value)==null?void 0:o.layout}),v=c(()=>{var o;return(o=l.value)==null?void 0:o[1]}),h=c(()=>{var o;return(o=l.value)==null?void 0:o[0]});return{globals:a,navigation:t,surround:l,page:n,excerpt:s,toc:r,type:P,layout:p,next:v,prev:h}},I=()=>{const t=c(()=>{var s;return((s=L())==null?void 0:s.docus)||{}}),{navPageFromPath:i,navDirFromPath:e,navKeyFromPath:a}=V(),{navigation:u,page:n}=q(),l=S(),r=c(()=>{var f,d,m,y,_,g,C,b,A,F,w;const s=((f=t==null?void 0:t.value)==null?void 0:f.titleTemplate)||a((d=n==null?void 0:n.value)==null?void 0:d._path,"titleTemplate",u.value||[])||`%s · ${((m=t==null?void 0:t.value)==null?void 0:m.title)||"Docus"}`,p=((y=t==null?void 0:t.value)==null?void 0:y.main)||{},v=((_=t==null?void 0:t.value)==null?void 0:_.header)||{},h=((g=t==null?void 0:t.value)==null?void 0:g.aside)||{},o=((C=t==null?void 0:t.value)==null?void 0:C.footer)||{};return{...t.value,titleTemplate:s,main:{...p,...a(l.path,"main",u.value||[]),...(b=n.value)==null?void 0:b.main},header:{...v,...a(l.path,"header",u.value||[]),...(A=n.value)==null?void 0:A.header},aside:{...h,...a(l.path,"aside",u.value||[]),...(F=n.value)==null?void 0:F.aside},footer:{...o,...a(l.path,"footer",u.value||[]),...(w=n.value)==null?void 0:w.footer}}});return{tree:c(()=>{var o,f,d,m,y;let s=u.value||[];const p=l.path,v=((f=(o=r==null?void 0:r.value)==null?void 0:o.aside)==null?void 0:f.level)||0,h=((m=(d=r==null?void 0:r.value)==null?void 0:d.aside)==null?void 0:m.exclude)||[];if(v){const g=p.split("/").splice(0,1+v).join("/");s=e(g,s)||[],Array.isArray(s)||(s=[s])}if(s.length===0){if(s=i(((y=n.value)==null?void 0:y._path)||"/",u.value||[]),!s)return[];Array.isArray(s)||(s=[s])}return s.filter(_=>!h.includes(_._path))}),config:r}};export{W as a,V as b,I as c,q as d,L as e,x as u}; +import{u as D,t as E,m as $,l as S}from"./app.config.f41ab05d.js";import{t as j,d as B,k as H,h as c}from"./runtime-core.esm-bundler.6894272a.js";function x(...t){const i=typeof t[t.length-1]=="string"?t.pop():void 0;typeof t[0]!="string"&&t.unshift(i);const[e,a]=t;if(!e||typeof e!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+e);if(a!==void 0&&typeof a!="function")throw new Error("[nuxt] [useState] init must be a function: "+a);const u="$s"+e,n=D(),l=j(n.payload.state,u);if(l.value===void 0&&a){const r=a();if(B(r))return n.payload.state[u]=r,r;l.value=r}return l}function L(){const t=D();return t._appConfig||(t._appConfig=H(E)),t._appConfig}const T=t=>{if(!t.children)return t._path;for(const i of(t==null?void 0:t.children)||[]){const e=T(i);if(e)return e}},K=(t,i)=>{for(const e of i){if(e._path===t&&!e._id)return e.children;if(e.children){const a=K(t,e.children);if(a)return a}}},R=(t,i)=>{for(const e of i){if(e._path===t)return e;if(e.children){const a=R(t,e.children);if(a)return a}}},N=(t,i,e)=>{let a;const u=(n,l)=>{for(const r of l){if(n!=null&&n.startsWith(r._path)&&r[i]&&(a=r[i]),r._path===n)return;r.children&&u(n,r.children)}};return u(t,e),a},V=()=>({navBottomLink:T,navDirFromPath:K,navPageFromPath:R,navKeyFromPath:N}),W=()=>{const t=x("dd-pages",()=>({})),i=x("dd-surrounds",()=>({})),e=x("dd-navigation"),a=x("dd-globals",()=>({}));return{pages:t,surrounds:i,navigation:e,globals:a}},q=()=>{const{navigation:t,pages:i,surrounds:e,globals:a}=W(),u=c(()=>$(S().path)),n=c(()=>i.value[u.value]),l=c(()=>e.value[u.value]),r=c(()=>{var o,f;return(f=(o=n==null?void 0:n.value)==null?void 0:o.body)==null?void 0:f.toc}),P=c(()=>{var o;return(o=n.value)==null?void 0:o.type}),s=c(()=>{var o;return(o=n.value)==null?void 0:o.excerpt}),p=c(()=>{var o;return(o=n.value)==null?void 0:o.layout}),v=c(()=>{var o;return(o=l.value)==null?void 0:o[1]}),h=c(()=>{var o;return(o=l.value)==null?void 0:o[0]});return{globals:a,navigation:t,surround:l,page:n,excerpt:s,toc:r,type:P,layout:p,next:v,prev:h}},I=()=>{const t=c(()=>{var s;return((s=L())==null?void 0:s.docus)||{}}),{navPageFromPath:i,navDirFromPath:e,navKeyFromPath:a}=V(),{navigation:u,page:n}=q(),l=S(),r=c(()=>{var f,d,m,y,_,g,C,b,A,F,w;const s=((f=t==null?void 0:t.value)==null?void 0:f.titleTemplate)||a((d=n==null?void 0:n.value)==null?void 0:d._path,"titleTemplate",u.value||[])||`%s · ${((m=t==null?void 0:t.value)==null?void 0:m.title)||"Docus"}`,p=((y=t==null?void 0:t.value)==null?void 0:y.main)||{},v=((_=t==null?void 0:t.value)==null?void 0:_.header)||{},h=((g=t==null?void 0:t.value)==null?void 0:g.aside)||{},o=((C=t==null?void 0:t.value)==null?void 0:C.footer)||{};return{...t.value,titleTemplate:s,main:{...p,...a(l.path,"main",u.value||[]),...(b=n.value)==null?void 0:b.main},header:{...v,...a(l.path,"header",u.value||[]),...(A=n.value)==null?void 0:A.header},aside:{...h,...a(l.path,"aside",u.value||[]),...(F=n.value)==null?void 0:F.aside},footer:{...o,...a(l.path,"footer",u.value||[]),...(w=n.value)==null?void 0:w.footer}}});return{tree:c(()=>{var o,f,d,m,y;let s=u.value||[];const p=l.path,v=((f=(o=r==null?void 0:r.value)==null?void 0:o.aside)==null?void 0:f.level)||0,h=((m=(d=r==null?void 0:r.value)==null?void 0:d.aside)==null?void 0:m.exclude)||[];if(v){const g=p.split("/").splice(0,1+v).join("/");s=e(g,s)||[],Array.isArray(s)||(s=[s])}if(s.length===0){if(s=i(((y=n.value)==null?void 0:y._path)||"/",u.value||[]),!s)return[];Array.isArray(s)||(s=[s])}return s.filter(_=>!h.includes(_._path))}),config:r}};export{W as a,V as b,I as c,q as d,L as e,x as u}; diff --git a/docs/.output/public/_nuxt/useGithub.916c5979.js b/docs/.output/public/_nuxt/useGithub.1972ce55.js similarity index 93% rename from docs/.output/public/_nuxt/useGithub.916c5979.js rename to docs/.output/public/_nuxt/useGithub.1972ce55.js index 5ce2ffa6..e647f207 100644 --- a/docs/.output/public/_nuxt/useGithub.916c5979.js +++ b/docs/.output/public/_nuxt/useGithub.1972ce55.js @@ -1 +1 @@ -import"./app.config.4114fca6.js";const f=()=>({fetchRepository:e=>{const t=`/api/_github/repository/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReleases:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchRelease:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchLastRelease:e=>{const t=`/api/_github/releases/${s({...e,last:!0})}.json`;return $fetch(t,{responseType:"json"})},fetchContributors:e=>{const t=`/api/_github/contributors/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchFileContributors:e=>{const t=`/api/_github/contributors/file/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReadme:e=>{const t=`/api/_github/readme/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchCommits:e=>{const t=`/api/_github/commits/${s(e)}.json`;return $fetch(t,{responseType:"json"})}});function s(o){return Object.entries(o).map(([n,r])=>`${n}_${String(r)}`).join(":")}export{f as u}; +import"./app.config.f41ab05d.js";const f=()=>({fetchRepository:e=>{const t=`/api/_github/repository/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReleases:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchRelease:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchLastRelease:e=>{const t=`/api/_github/releases/${s({...e,last:!0})}.json`;return $fetch(t,{responseType:"json"})},fetchContributors:e=>{const t=`/api/_github/contributors/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchFileContributors:e=>{const t=`/api/_github/contributors/file/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReadme:e=>{const t=`/api/_github/readme/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchCommits:e=>{const t=`/api/_github/commits/${s(e)}.json`;return $fetch(t,{responseType:"json"})}});function s(o){return Object.entries(o).map(([n,r])=>`${n}_${String(r)}`).join(":")}export{f as u}; diff --git a/docs/.output/public/_nuxt/useStudio.a9d51910.js b/docs/.output/public/_nuxt/useStudio.ef34e52b.js similarity index 89% rename from docs/.output/public/_nuxt/useStudio.a9d51910.js rename to docs/.output/public/_nuxt/useStudio.ef34e52b.js index 286b902a..feaf5726 100644 --- a/docs/.output/public/_nuxt/useStudio.a9d51910.js +++ b/docs/.output/public/_nuxt/useStudio.ef34e52b.js @@ -1 +1 @@ -import{u as _,b as O,g}from"./app.config.4114fca6.js";import{d as b}from"./DocsAsideTree.08d70919.js";import{r as x}from"./asyncData.2775b491.js";import{u as P,e as k}from"./useDocus.edcbeab5.js";import{u as m}from"./cookie.5bbb58d5.js";import J from"./ContentPreviewMode.0a29e9d3.js";import{i as R,j as A,k as U,S as F,m as S}from"./entry.2d43dc03.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./Container.f1017aa2.js";/* empty css */import"./query.c3f7607a.js";const L=(u=[],v,h)=>{const f=[...v||[]],n=[...h||[]],p=JSON.parse(JSON.stringify(u));for(const i of f)if(i.oldPath)if(n.splice(n.findIndex(r=>r.path===i.oldPath),1),f.find(r=>r.path===i.oldPath))p.push({path:i.path,parsed:i.parsed});else{const r=p.find(d=>d.path===i.oldPath);r&&(r.path=i.path,i.parsed?r.parsed=i.parsed:i.pathMeta&&["_file","_path","_id","_locale"].forEach(d=>{r.parsed[d]=i.pathMeta[d]}))}else if(i.new)p.push({path:i.path,parsed:i.parsed});else{const l=p.find(r=>r.path===i.path);l&&Object.assign(l,{path:i.path,parsed:i.parsed})}for(const i of n)p.splice(p.findIndex(l=>l.path===i.path),1);const w=new Intl.Collator(void 0,{numeric:!0});return p.sort((i,l)=>w.compare(i.path,l.path)),p},D=R(()=>JSON.parse(JSON.stringify(k()))),X=()=>{const u=_(),v=O().public.studio||{},h=D();let f;const n=P("studio-client-db",()=>null),p=P("studio-preview-db-files",()=>[]);u.hook("content:storage",e=>{n.value=e});const w=async(e,t,s=!0)=>{const o=m("previewToken",{sameSite:"none",secure:!0}),c=await e.getKeys(`${o.value}:`);await Promise.all(c.map(a=>e.removeItem(a))),await e.setItem(`${o.value}$`,JSON.stringify({ignoreBuiltContents:s})),await Promise.all(t.map(a=>{var C;return e.setItem(`${o.value}:${(C=a.parsed)==null?void 0:C._id}`,JSON.stringify(a.parsed))}))},i=e=>{const t=g(u,k);A(t,e||h),e||U(t,h)},l=e=>{var s,o,c,a;const t=(a=(c=(o=(s=u==null?void 0:u.vueApp)==null?void 0:s._context)==null?void 0:o.config)==null?void 0:c.globalProperties)==null?void 0:a.$pinceauTheme;!t||!(t!=null&&t.updateTheme)||(f||(f=JSON.parse(JSON.stringify((t==null?void 0:t.theme.value)||{}))),g(u,t.updateTheme,[e||f]))},r=async e=>{if(p.value=e.files=e.files||p.value||[],!n.value)return!1;const t=L(e.files,e.additions,e.deletions),s=t.filter(a=>!a.path.startsWith(F));await w(n.value,s,(e.files||[]).length!==0);const o=t.find(a=>a.path===S.appConfig);i(o==null?void 0:o.parsed);const c=t.find(a=>a.path===S.tokensConfig);return l(c==null?void 0:c.parsed),y(),!0},d=async()=>{const e=m("previewToken",{sameSite:"none",secure:!0});await $fetch("api/projects/preview/sync",{baseURL:v.apiURL,method:"POST",params:{token:e.value}})},T=()=>{const e=m("previewToken",{sameSite:"none",secure:!0}),t=document.createElement("div");t.id="__nuxt_preview_wrapper",document.body.appendChild(t),b(J,{previewToken:e,apiURL:v.apiURL,syncPreview:r,requestPreviewSyncAPI:d}).mount(t)},I=async e=>{var o,c;const t=m("previewToken",{sameSite:"none",secure:!0});if(!e)return null;e=e.replace(/\/$/,"");let s=await((o=n.value)==null?void 0:o.getItem(`${t.value}:${e}`));return s||(s=await((c=n.value)==null?void 0:c.getItem(e))),s},$=e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});n.value&&n.value.setItem(`${t.value}:${(s=e.parsed)==null?void 0:s._id}`,JSON.stringify(e.parsed))},N=async e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});await((s=n.value)==null?void 0:s.removeItem(`${t.value}:${e}`))},y=()=>{g(u,x)};return{apiURL:v.apiURL,contentStorage:n,syncPreviewFiles:w,syncPreviewAppConfig:i,syncPreviewTokensConfig:l,requestPreviewSynchronization:d,mountPreviewUI:T,findContentWithId:I,updateContent:$,removeContentWithId:N,requestRerender:y}};export{X as useStudio}; +import{u as _,f as O,g}from"./app.config.f41ab05d.js";import{d as b}from"./DocsAsideTree.b95e55e0.js";import{r as x}from"./asyncData.7c06b2d5.js";import{u as P,e as k}from"./useDocus.41ab1ca5.js";import{u as m}from"./cookie.b9cff64d.js";import J from"./ContentPreviewMode.ea418cb0.js";import{i as R,j as A,k as U,S as F,m as S}from"./entry.f3791b9c.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./Container.f1017aa2.js";/* empty css */import"./query.c3f7607a.js";const L=(u=[],v,h)=>{const f=[...v||[]],n=[...h||[]],p=JSON.parse(JSON.stringify(u));for(const i of f)if(i.oldPath)if(n.splice(n.findIndex(r=>r.path===i.oldPath),1),f.find(r=>r.path===i.oldPath))p.push({path:i.path,parsed:i.parsed});else{const r=p.find(d=>d.path===i.oldPath);r&&(r.path=i.path,i.parsed?r.parsed=i.parsed:i.pathMeta&&["_file","_path","_id","_locale"].forEach(d=>{r.parsed[d]=i.pathMeta[d]}))}else if(i.new)p.push({path:i.path,parsed:i.parsed});else{const l=p.find(r=>r.path===i.path);l&&Object.assign(l,{path:i.path,parsed:i.parsed})}for(const i of n)p.splice(p.findIndex(l=>l.path===i.path),1);const w=new Intl.Collator(void 0,{numeric:!0});return p.sort((i,l)=>w.compare(i.path,l.path)),p},D=R(()=>JSON.parse(JSON.stringify(k()))),X=()=>{const u=_(),v=O().public.studio||{},h=D();let f;const n=P("studio-client-db",()=>null),p=P("studio-preview-db-files",()=>[]);u.hook("content:storage",e=>{n.value=e});const w=async(e,t,s=!0)=>{const o=m("previewToken",{sameSite:"none",secure:!0}),c=await e.getKeys(`${o.value}:`);await Promise.all(c.map(a=>e.removeItem(a))),await e.setItem(`${o.value}$`,JSON.stringify({ignoreBuiltContents:s})),await Promise.all(t.map(a=>{var C;return e.setItem(`${o.value}:${(C=a.parsed)==null?void 0:C._id}`,JSON.stringify(a.parsed))}))},i=e=>{const t=g(u,k);A(t,e||h),e||U(t,h)},l=e=>{var s,o,c,a;const t=(a=(c=(o=(s=u==null?void 0:u.vueApp)==null?void 0:s._context)==null?void 0:o.config)==null?void 0:c.globalProperties)==null?void 0:a.$pinceauTheme;!t||!(t!=null&&t.updateTheme)||(f||(f=JSON.parse(JSON.stringify((t==null?void 0:t.theme.value)||{}))),g(u,t.updateTheme,[e||f]))},r=async e=>{if(p.value=e.files=e.files||p.value||[],!n.value)return!1;const t=L(e.files,e.additions,e.deletions),s=t.filter(a=>!a.path.startsWith(F));await w(n.value,s,(e.files||[]).length!==0);const o=t.find(a=>a.path===S.appConfig);i(o==null?void 0:o.parsed);const c=t.find(a=>a.path===S.tokensConfig);return l(c==null?void 0:c.parsed),y(),!0},d=async()=>{const e=m("previewToken",{sameSite:"none",secure:!0});await $fetch("api/projects/preview/sync",{baseURL:v.apiURL,method:"POST",params:{token:e.value}})},T=()=>{const e=m("previewToken",{sameSite:"none",secure:!0}),t=document.createElement("div");t.id="__nuxt_preview_wrapper",document.body.appendChild(t),b(J,{previewToken:e,apiURL:v.apiURL,syncPreview:r,requestPreviewSyncAPI:d}).mount(t)},I=async e=>{var o,c;const t=m("previewToken",{sameSite:"none",secure:!0});if(!e)return null;e=e.replace(/\/$/,"");let s=await((o=n.value)==null?void 0:o.getItem(`${t.value}:${e}`));return s||(s=await((c=n.value)==null?void 0:c.getItem(e))),s},$=e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});n.value&&n.value.setItem(`${t.value}:${(s=e.parsed)==null?void 0:s._id}`,JSON.stringify(e.parsed))},N=async e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});await((s=n.value)==null?void 0:s.removeItem(`${t.value}:${e}`))},y=()=>{g(u,x)};return{apiURL:v.apiURL,contentStorage:n,syncPreviewFiles:w,syncPreviewAppConfig:i,syncPreviewTokensConfig:l,requestPreviewSynchronization:d,mountPreviewUI:T,findContentWithId:I,updateContent:$,removeContentWithId:N,requestRerender:y}};export{X as useStudio}; diff --git a/docs/.output/public/_nuxt/welcome.0953e899.js b/docs/.output/public/_nuxt/welcome.4086e1c1.js similarity index 98% rename from docs/.output/public/_nuxt/welcome.0953e899.js rename to docs/.output/public/_nuxt/welcome.4086e1c1.js index 4e940959..16934afb 100644 --- a/docs/.output/public/_nuxt/welcome.0953e899.js +++ b/docs/.output/public/_nuxt/welcome.4086e1c1.js @@ -1 +1 @@ -import{b as i}from"./entry.2d43dc03.js";import"./ContentNavigation.d592cbe0.js";import{a as r}from"./Container.f1017aa2.js";import{q as o,x as C,E as t,J as s,H as e}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.08d70919.js";import"./app.config.4114fca6.js";import"./index.d2b0cb5e.js";import"./cookie.5bbb58d5.js";import"./useDocus.edcbeab5.js";import"./query.c3f7607a.js";import"./asyncData.2775b491.js";import"./ContentSlot.7e1a494f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.21b8aa9d.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.4ddfc0da.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.a4f5598b.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./TabsHeader.f80c17f8.js";import"./Ellipsis.50580cd1.js";import"./List.vue.d5bae865.js";import"./NuxtImg.vue.594abc77.js";import"./Props.80a76d3d.js";import"./ProseTbody.37a7db42.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.db6a2f57.js";import"./ComponentPlaygroundData.c394e239.js";import"./ComponentPlaygroundProps.59058ddd.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";/* empty css */import"./ContentDoc.08489604.js";import"./ContentRenderer.51874b59.js";import"./ContentRendererMarkdown.1da6a628.js";import"./ContentQuery.7a036327.js";import"./ContentList.394febbe.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.eb6ef861.js";import"./layout.732d57d1.js";import"./GithubRepository.bbd436c6.js";import"./useGithub.916c5979.js";import"./GithubLink.6e1f1ea3.js";import"./GithubReadme.3309f143.js";import"./GithubReleases.54c416e9.js";import"./GithubLastRelease.7ffc61aa.js";import"./GithubRelease.fea5f747.js";import"./GithubContributors.35cdb9ac.js";import"./GithubFileContributors.2287b161.js";import"./GithubCommits.e43b30d0.js";const l={class:"antialiased bg-white dark:bg-black text-black dark:text-white min-h-screen place-content-center flex flex-col items-center justify-center text-sm sm:text-base"},D=e('',1),d={class:"relative border-t bg-white dark:bg-black border-gray-200 dark:border-gray-900 w-full h-[70px] flex items-center"},n=e('
',1),p={class:"mx-auto sm:px-6 lg:px-8 px-4 w-full"},c={class:"flex flex-col items-center gap-3 sm:flex-row sm:justify-between"},E={class:"flex flex-col-reverse items-center gap-3 sm:flex-row"},h={class:"text-sm text-gray-700 dark:text-gray-300"},A=e('
',1),f={__name:"welcome",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},title:{type:String,default:"Welcome to Nuxt!"},readDocs:{type:String,default:"We highly recommend you take a look at the Nuxt documentation, whether you are new or have previous experience with the framework."},followTwitter:{type:String,default:"Follow the Nuxt Twitter account to get latest news about releases, new modules, tutorials and tips."},starGitHub:{type:String,default:"Nuxt is open source and the code is available on GitHub, feel free to star it, participate in discussions or dive into the source."}},setup(a){return i({title:`${a.title}`,script:[],style:[{children:`@property --gradient-angle{syntax:'';inherits:false;initial-value:180deg}@keyframes gradient-rotate{0%{--gradient-angle:0deg}100%{--gradient-angle:360deg}}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p,h2,h3{margin:0}h1,h2,h3{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}svg,img{display:block;vertical-align:middle}ul{list-style:none;margin:0;padding:0}`}]}),(g,m)=>(o(),C("div",l,[D,t("footer",d,[n,t("div",p,[t("div",c,[t("div",E,[t("span",h,"© 2022-"+s(new Date().getFullYear())+" Nuxt - MIT License",1)]),A])])])]))}},r0=r(f,[["__scopeId","data-v-a75d3b4d"]]);export{r0 as default}; +import{b as i}from"./entry.f3791b9c.js";import"./ContentNavigation.cefda237.js";import{a as r}from"./Container.f1017aa2.js";import{q as o,x as C,E as t,J as s,H as e}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";import"./asyncData.7c06b2d5.js";import"./ContentSlot.c5067a4f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.77a5278f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.af643d4e.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./TabsHeader.f80c17f8.js";import"./Ellipsis.50580cd1.js";import"./List.vue.98cb48bf.js";import"./NuxtImg.vue.a13022c3.js";import"./Props.876d937c.js";import"./ProseTbody.37a7db42.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.1e5cc557.js";import"./ComponentPlaygroundData.8cb96cd4.js";import"./ComponentPlaygroundProps.583c9bda.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";/* empty css */import"./ContentDoc.cbc50263.js";import"./ContentRenderer.b7732722.js";import"./ContentRendererMarkdown.e52b62de.js";import"./ContentQuery.9f33890e.js";import"./ContentList.e8a9fb87.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.7f24e431.js";import"./layout.0a22fa4a.js";import"./GithubRepository.345038c7.js";import"./useGithub.1972ce55.js";import"./GithubLink.6cd695ea.js";import"./GithubReadme.5eafd6e1.js";import"./GithubReleases.05c52708.js";import"./GithubLastRelease.a4aeb30e.js";import"./GithubRelease.d892113d.js";import"./GithubContributors.9ddddad6.js";import"./GithubFileContributors.1ad6f7bf.js";import"./GithubCommits.35c65eac.js";const l={class:"antialiased bg-white dark:bg-black text-black dark:text-white min-h-screen place-content-center flex flex-col items-center justify-center text-sm sm:text-base"},D=e('',1),d={class:"relative border-t bg-white dark:bg-black border-gray-200 dark:border-gray-900 w-full h-[70px] flex items-center"},n=e('
',1),p={class:"mx-auto sm:px-6 lg:px-8 px-4 w-full"},c={class:"flex flex-col items-center gap-3 sm:flex-row sm:justify-between"},E={class:"flex flex-col-reverse items-center gap-3 sm:flex-row"},h={class:"text-sm text-gray-700 dark:text-gray-300"},A=e('
',1),f={__name:"welcome",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},title:{type:String,default:"Welcome to Nuxt!"},readDocs:{type:String,default:"We highly recommend you take a look at the Nuxt documentation, whether you are new or have previous experience with the framework."},followTwitter:{type:String,default:"Follow the Nuxt Twitter account to get latest news about releases, new modules, tutorials and tips."},starGitHub:{type:String,default:"Nuxt is open source and the code is available on GitHub, feel free to star it, participate in discussions or dive into the source."}},setup(a){return i({title:`${a.title}`,script:[],style:[{children:`@property --gradient-angle{syntax:'';inherits:false;initial-value:180deg}@keyframes gradient-rotate{0%{--gradient-angle:0deg}100%{--gradient-angle:360deg}}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p,h2,h3{margin:0}h1,h2,h3{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}svg,img{display:block;vertical-align:middle}ul{list-style:none;margin:0;padding:0}`}]}),(g,m)=>(o(),C("div",l,[D,t("footer",d,[n,t("div",p,[t("div",c,[t("div",E,[t("span",h,"© 2022-"+s(new Date().getFullYear())+" Nuxt - MIT License",1)]),A])])])]))}},r0=r(f,[["__scopeId","data-v-a75d3b4d"]]);export{r0 as default}; diff --git a/docs/.output/public/_payload.js b/docs/.output/public/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/api/_content/cache.1677768033312.json b/docs/.output/public/api/_content/cache.1677768033312.json deleted file mode 100644 index c3c59bbf..00000000 --- a/docs/.output/public/api/_content/cache.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"generatedAt":1677768075666,"generateTime":33,"contents":[{"_path":"/_partials/hello-world","_dir":"_partials","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"I am a partial","description":"With some Hello World text.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"i-am-a-partial"},"children":[{"type":"text","value":"I am a partial"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With some Hello World text."}]},{"type":"element","tag":"button-link","props":{":blank":"true","class":"mr-2","href":"https://stackblitz.com/github/nuxt/starter/tree/content"},"children":[{"type":"text","value":"Play on StackBlitz"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_partials:hello-world.md","_source":"content","_file":"_partials/hello-world.md","_extension":"md"},{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontier","description":"The file-based CMS for your Nuxt application, powered by Markdown and Vue components.","navigation":false,"layout":"page","body":{"type":"root","children":[{"type":"element","tag":"block-hero","props":{":cta":"[\"Get Started\",\"/frontier/introduction\"]",":secondary":"[\"Star on GitHub\",\"https://github.com/realdecoy/frontier\"]","snippet":"npm i -g @rdfrontier/cli"},"children":[{"type":"element","tag":"template","props":{"v-slot:announce":""},"children":[{"type":"element","tag":"hero-announcement","props":{"label":"Discover the all new ","to":"/frontier/introduction/whats-frontier"},"children":[]}]},{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier - by Realdecoy"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A full service toolset for building "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"web"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"mobile"}]},{"type":"text","value":" software products. With "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"templates"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"libraries"}]},{"type":"text","value":", Frontier delivers a designed development experience to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"10x"}]},{"type":"text","value":" your software development."}]}]},{"type":"element","tag":"template","props":{"v-slot:support":""},"children":[]}]},{"type":"element","tag":"card-grid","props":{},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Powerful Features"}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"CLI"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Standard Library"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage battle-hardened code from the standard library."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"TypeKit"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use Common type definition and data structures from the typekit."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A beautifully structured vue template and cli for authoring frontend applications."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Spectre"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Test your applications to the moon with the Spectre testing suite."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Mobile"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Build Mobile applications with ease with structures React Native foundation."}]}]}]},{"type":"element","tag":"template","props":{"v-slot:root":""},"children":[{"type":"element","tag":"ellipsis","props":{},"children":[]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},{"_path":"/frontier/_dir","_dir":"frontier","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:2.frontier:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/1.introduction/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"},{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"},{"_path":"/frontier/installation/_dir","_dir":"installation","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:2.frontier:2.installation:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/2.installation/_dir.yml","_extension":"yml"},{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"general-use"},"children":[{"type":"text","value":"General Use"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"},{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"},{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"navigation"},"children":[{"type":"text","value":"Navigation"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"},{"_path":"/frontier/cli/_dir","_dir":"cli","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:3.cli:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/3.cli/_dir.yml","_extension":"yml"},{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"},{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"},{"_path":"/frontier/plugins/_dir","_dir":"plugins","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:4.plugins:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/4.plugins/_dir.yml","_extension":"yml"},{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend"},"children":[{"type":"text","value":"Frontend"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"},{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"},{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"},{"_path":"/frontier/libraries/_dir","_dir":"libraries","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:5.libraries:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/5.libraries/_dir.yml","_extension":"yml"},{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"},{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"},{"_path":"/frontier/templates/_dir","_dir":"templates","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:6.templates:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/6.templates/_dir.yml","_extension":"yml"},{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"},{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"},{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"},{"_path":"/rdvue/_dir","_dir":"rdvue","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:3.rdvue:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue","rel":["nofollow"]},"children":[{"type":"text","value":"RDVue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services."}]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-38d936"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"vue:"}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global installation:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install vue\nfrontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-38d936"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"vue"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-38d936"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information\n\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can confirm the successful installation of RDvue in three simple steps:"}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:create-project "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generated folders are named in kebab-case."}]},{"type":"element","tag":"h3","props":{"id":"step-2-install-project-dependencies"},"children":[{"type":"text","value":"Step 2: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \nnpm install\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"cd \nnpm install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-3-serve-project"},"children":[{"type":"text","value":"Step 3: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npm run serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-page"},"children":[{"type":"text","value":"Generating a Page"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:add:page \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:add:page "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/ ."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:generate component \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:generate component "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-2d107e{color:#CF222E}\n.ct-f73c94{color:#0A3069}\n.ct-923ce8{color:#24292F}\n.ct-38d936{color:#953800}\n.dark .ct-38d936{color:#FFA657}\n.dark .ct-923ce8{color:#C9D1D9}\n.dark .ct-f73c94{color:#A5D6FF}\n.dark .ct-2d107e{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":2,"text":"Usage"},{"id":"options","depth":2,"text":"Options"},{"id":"validate-installation","depth":2,"text":"Validate Installation","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-install-project-dependencies","depth":3,"text":"Step 2: Install project dependencies"},{"id":"step-3-serve-project","depth":3,"text":"Step 3: Serve project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-page","depth":3,"text":"Generating a Page"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/rdvue/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:3.rdvue:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"README."}]}]},{"type":"element","tag":"h2","props":{"id":"how-to-use-rdvue-cli"},"children":[{"type":"text","value":"How to use rdvue-cli"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commands will follow the basic structure:"}]},{"type":"element","tag":"code","props":{"code":"npx rdvue \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npx rdvue "}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue create-project "}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue add: \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue add: "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:plugin:\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:plugin:"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#localization"},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:upgrade \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:upgrade "}]}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"how-to-use-rdvue-cli","depth":2,"text":"How to use rdvue-cli"},{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/rdvue/scaffilding/_dir","_dir":"scaffilding","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:3.scaffilding:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/3.scaffilding/_dir.yml","_extension":"yml"},{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\nimport { SitemapStream, streamToPromise } from 'sitemap'\n\nexport default defineEventHandler(async (event) => {\n // Fetch all documents\n const docs = await serverQueryContent(event).find()\n const sitemap = new SitemapStream({\n hostname: 'https://example.com'\n })\n\n for (const doc of docs) {\n sitemap.write({\n url: doc._path,\n changefreq: 'monthly'\n })\n }\n sitemap.end()\n\n return streamToPromise(sitemap)\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5d8bef"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\n // ...\n nitro: {\n prerender: {\n routes: ['/sitemap.xml']\n }\n }\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5d8bef"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-5d8bef{color:#6E7781}\n.ct-7b736c{color:#8250DF}\n.ct-8d792c{color:#CF222E}\n.ct-dfa0b0{color:#0550AE}\n.ct-4e09e8{color:#0A3069}\n.ct-e4e3aa{color:#24292F}\n.ct-a5892a{color:#953800}\n.dark .ct-a5892a{color:#FFA657}\n.dark .ct-e4e3aa{color:#C9D1D9}\n.dark .ct-4e09e8{color:#A5D6FF}\n.dark .ct-dfa0b0{color:#79C0FF}\n.dark .ct-8d792c{color:#FF7B72}\n.dark .ct-7b736c{color:#D2A8FF}\n.dark .ct-5d8bef{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"},{"_path":"/rdvue/template-schema/_dir","_dir":"template-schema","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:4.template-schema:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/4.template-schema/_dir.yml","_extension":"yml"},{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\n \"version\": 1\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\n \"sourceDirectory\": \"./\",\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\n {\n \"name\": \"config\",\n \"private\": true\n },\n {\n \"name\": \"store\",\n \"private\": true\n },\n {\n \"name\": \"component\",\n \"private\": false\n },\n {\n \"name\": \"service\",\n \"private\": false\n },\n {\n \"name\": \"model\",\n \"private\": false\n },\n {\n \"name\": \"page\",\n \"private\": false\n },\n {\n \"name\": \"sm\",\n \"private\": false\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\n \"auth\",\n \"localization\",\n \"storybook\"\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\n  \"version\": 1,\n  \"sourceDirectory\": \"./\",\n  \"features\": [\n    {\n      \"name\": \"config\",\n      \"private\": true\n    },\n    {\n      \"name\": \"store\",\n      \"private\": true\n    },\n    {\n      \"name\": \"component\",\n      \"private\": false\n    },\n    {\n      \"name\": \"service\",\n      \"private\": false\n    },\n    {\n      \"name\": \"model\",\n      \"private\": false\n    },\n    {\n      \"name\": \"page\",\n      \"private\": false\n    },\n    {\n      \"name\": \"sm\",\n      \"private\": false\n    }\n  ],\n  \"plugins\": [\n    \"auth\",\n    \"localization\",\n    \"storybook\"\n  ],\n  \"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  },\n  \"groups\": [\n    {\n      \"name\": \"authentication\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"auth\"\n      ],\n      \"question\": \"Which Authentication Library would you like to install?\"\n    },\n    {\n      \"name\": \"locale\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"localization\"\n      ],\n      \"question\": \"Which Localization Library would you like to install?\"\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ],\n  \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"store/auth.ts\",\n \"target\": \"store/auth.ts\"\n },\n {\n \"source\": \"services/auth.ts\",\n \"target\": \"services/auth.ts\"\n },\n {\n \"source\": \"model/user.ts\",\n \"target\": \"model/user.ts\"\n },\n {\n \"source\": \"pages/register/index.ts\",\n \"target\": \"pages/auth/register/index.ts\"\n },\n {\n \"source\": \"pages/register/register.ts\",\n \"target\": \"pages/auth/register/register.ts\"\n },\n {\n \"source\": \"pages/register/register.scss\",\n \"target\": \"pages/auth/register/register.scss\"\n },\n {\n \"source\": \"pages/register/register.vue\",\n \"target\": \"pages/auth/register/register.vue\"\n },\n {\n \"source\": \"pages/login/index.ts\",\n \"target\": \"pages/auth/login/index.ts\"\n },\n {\n \"source\": \"pages/login/login.ts\",\n \"target\": \"pages/auth/login/login.ts\"\n },\n {\n \"source\": \"pages/login/login.scss\",\n \"target\": \"pages/auth/login/login.scss\"\n },\n {\n \"source\": \"pages/login/login.vue\",\n \"target\": \"pages/auth/login/login.vue\"\n },\n {\n \"source\": \"pages/forget-password/index.ts\",\n \"target\": \"pages/auth/forget-password/index.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.ts\",\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.scss\",\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.vue\",\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"index.ts\",\n \"target\": \"index.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.scss\",\n \"target\": \"${componentNameKebab}.scss\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.ts\",\n \"target\": \"${componentNameKebab}.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.spec.js\",\n \"target\": \"${componentNameKebab}.spec.js\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.vue\",\n \"target\": \"${componentNameKebab}.vue\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n }\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\n path: '/buefy-sample',\n name: 'buefy-sample',\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3a2a22"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3a2a22"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-a08c72"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\n transpileDependencies: 'vuetify',\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\n transpileDependencies: 'vuetify',\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-a08c72{color:#8250DF}\n.ct-c403f1{color:#953800}\n.ct-3a2a22{color:#CF222E}\n.ct-0eab8f{color:#0A3069}\n.ct-194c67{color:#0550AE}\n.ct-dea269{color:#116329}\n.ct-0e4fc8{color:#24292F}\n.dark .ct-0e4fc8{color:#C9D1D9}\n.dark .ct-dea269{color:#7EE787}\n.dark .ct-194c67{color:#79C0FF}\n.dark .ct-0eab8f{color:#A5D6FF}\n.dark .ct-3a2a22{color:#FF7B72}\n.dark .ct-c403f1{color:#FFA657}\n.dark .ct-a08c72{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"},{"_path":"/rdvue/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:5.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/5.features/_dir.yml","_extension":"yml"},{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rdvue-features"},"children":[{"type":"text","value":"Rdvue Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
slots: {
header: ‘The header component goes here’,
...
}
"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"meta: {\n layout: '',\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]},{"type":"element","tag":"h2","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"mark","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"i18n language codes,"}]}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical-5"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n \"message\": \"hello i18n!!\"\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"document"}]},{"type":"text","value":" as follows:"}]},{"type":"element","tag":"code","props":{"code":"
\n

{{ $t(\"message\") }}

\n
\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"
\n

{{ $t(\"message\") }}

\n
"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"if the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":" is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"h2","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"services","depth":2,"text":"Services","children":[{"id":"technical","depth":3,"text":"Technical"}]},{"id":"pages","depth":2,"text":"Pages","children":[{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"components","depth":2,"text":"Components","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"layouts","depth":2,"text":"Layouts","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"stores","depth":2,"text":"Stores","children":[{"id":"technical-4","depth":3,"text":"Technical"}]},{"id":"localization","depth":2,"text":"Localization","children":[{"id":"technical-5","depth":3,"text":"Technical"}]},{"id":"bundle-analysis","depth":2,"text":"Bundle Analysis"}]}},"_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"},{"_path":"/rdvue/themeing/_dir","_dir":"themeing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:6.themeing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/6.themeing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Tailwind is the best practice approach for styling Components and Pages within RDVue."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"},{"_path":"/rdvue/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:7.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/7.testing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h2","props":{"id":"cypress"},"children":[{"type":"text","value":"Cypress"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on "},{"type":"element","tag":"a","props":{"href":"https://www.selenium.dev/projects/","rel":["nofollow"]},"children":[{"type":"text","value":"Selenium"}]},{"type":"text","value":", instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a "},{"type":"element","tag":"a","props":{"href":"https://docs.cypress.io/api/api/table-of-contents.html","rel":["nofollow"]},"children":[{"type":"text","value":"API"}]},{"type":"text","value":" that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Within a project generated by the CLI tool, the following folder structure will be created:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/cypress.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All the e2e tests created by Cypress will live in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"cypress/integration/specs"}]},{"type":"text","value":" directory. All these test files will have a .ts extension as they are written in TypeScript."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An example of a test file written in Cypress can be seen below:"}]},{"type":"element","tag":"code","props":{"code":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>When you are testing the connection between pages and user flows, a Cypress test should be created."}]},{"type":"element","tag":"h3","props":{"id":"running-tests"},"children":[{"type":"text","value":"Running tests"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to run your Cypress tests, execute "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"npm run test:e2e"}]},{"type":"text","value":" and the following dialog will open"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/inspection.png?raw=true"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here, you can click on the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Run all specs"}]},{"type":"text","value":" option and see all the tests execute or you can click on a specific test file and see that test execute."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests."}]},{"type":"element","tag":"h2","props":{"id":"unit-tests-with-jest"},"children":[{"type":"text","value":"Unit Tests with Jest"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you wish to automate your unit tests, "},{"type":"element","tag":"a","props":{"href":"https://jestjs.io/","rel":["nofollow"]},"children":[{"type":"text","value":"Jest"}]},{"type":"text","value":" can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each component generated by the RDVue CLI comes with a "},{"type":"element","tag":"component-name","props":{},"children":[{"type":"text","value":".spec.js file and the folder structure will look like the following:"}]}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The spec file generated will contain the following basic test by default:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest2.png?raw=true"},"children":[]},{"type":"text","value":"\n)\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘"},{"type":"element","tag":"a","props":{"href":"https://github.com/vue/test-utils","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@vue/test-utils"}]}]},{"type":"text","value":"' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cypress","depth":2,"text":"Cypress","children":[{"id":"technical","depth":3,"text":"Technical"},{"id":"running-tests","depth":3,"text":"Running tests"}]},{"id":"unit-tests-with-jest","depth":2,"text":"Unit Tests with Jest","children":[{"id":"technical-1","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"},{"_path":"/spectre/_dir","_dir":"spectre","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:bookmark-alt","_id":"content:4.Spectre:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:cube","_id":"content:4.Spectre:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"},{"_path":"/mobile/_dir","_dir":"mobile","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:5.mobile:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:5.mobile:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:1.getting-started:2.introduction.md","_source":"content","_file":"5.mobile/1.getting-started/2.introduction.md","_extension":"md"},{"_path":"/design/_dir","_dir":"design","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:6.design:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:6.design:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"},{"_path":"/iac/_dir","_dir":"iac","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:7.IAC:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:7.IAC:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"}],"navigation":[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Coming Soon","_path":"/mobile/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}]} \ No newline at end of file diff --git a/docs/.output/public/api/_content/cache.1678414054441.json b/docs/.output/public/api/_content/cache.1678414054441.json new file mode 100644 index 00000000..9904ee39 --- /dev/null +++ b/docs/.output/public/api/_content/cache.1678414054441.json @@ -0,0 +1 @@ +{"generatedAt":1678414074899,"generateTime":1018,"contents":[{"_path":"/_partials/hello-world","_dir":"_partials","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"I am a partial","description":"With some Hello World text.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"i-am-a-partial"},"children":[{"type":"text","value":"I am a partial"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With some Hello World text."}]},{"type":"element","tag":"button-link","props":{":blank":"true","class":"mr-2","href":"https://stackblitz.com/github/nuxt/starter/tree/content"},"children":[{"type":"text","value":"Play on StackBlitz"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_partials:hello-world.md","_source":"content","_file":"_partials/hello-world.md","_extension":"md"},{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontier","description":"The file-based CMS for your Nuxt application, powered by Markdown and Vue components.","navigation":false,"layout":"page","body":{"type":"root","children":[{"type":"element","tag":"block-hero","props":{":cta":"[\"Get Started\",\"/frontier/introduction\"]",":secondary":"[\"Star on GitHub\",\"https://github.com/realdecoy/frontier\"]","snippet":"npm i -g @rdfrontier/cli"},"children":[{"type":"element","tag":"template","props":{"v-slot:announce":""},"children":[{"type":"element","tag":"hero-announcement","props":{"label":"Discover the all new ","to":"/frontier/introduction/whats-frontier"},"children":[]}]},{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier - by Realdecoy"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A full service toolset for building "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"web"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"mobile"}]},{"type":"text","value":" software products. With "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"templates"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"libraries"}]},{"type":"text","value":", Frontier delivers a designed development experience to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"10x"}]},{"type":"text","value":" your software development."}]}]},{"type":"element","tag":"template","props":{"v-slot:support":""},"children":[]}]},{"type":"element","tag":"card-grid","props":{},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Powerful Features"}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"CLI"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Standard Library"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage battle-hardened code from the standard library."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"TypeKit"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use Common type definition and data structures from the typekit."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A beautifully structured vue template and cli for authoring frontend applications."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Spectre"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Test your applications to the moon with the Spectre testing suite."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Mobile"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Build Mobile applications with ease with structures React Native foundation."}]}]}]},{"type":"element","tag":"template","props":{"v-slot:root":""},"children":[{"type":"element","tag":"ellipsis","props":{},"children":[]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},{"_path":"/frontier/_dir","_dir":"frontier","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:2.frontier:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/1.introduction/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"},{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"},{"_path":"/frontier/installation/_dir","_dir":"installation","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:2.frontier:2.installation:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/2.installation/_dir.yml","_extension":"yml"},{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"general-use"},"children":[{"type":"text","value":"General Use"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"},{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"},{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"navigation"},"children":[{"type":"text","value":"Navigation"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"},{"_path":"/frontier/cli/_dir","_dir":"cli","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:3.cli:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/3.cli/_dir.yml","_extension":"yml"},{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"},{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"},{"_path":"/frontier/plugins/_dir","_dir":"plugins","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:4.plugins:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/4.plugins/_dir.yml","_extension":"yml"},{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend"},"children":[{"type":"text","value":"Frontend"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"},{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"},{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"},{"_path":"/frontier/libraries/_dir","_dir":"libraries","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:5.libraries:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/5.libraries/_dir.yml","_extension":"yml"},{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"},{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"},{"_path":"/frontier/templates/_dir","_dir":"templates","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:6.templates:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/6.templates/_dir.yml","_extension":"yml"},{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"},{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"},{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"},{"_path":"/rdvue/_dir","_dir":"rdvue","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:3.rdvue:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue","rel":["nofollow"]},"children":[{"type":"text","value":"RDVue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services."}]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6297f2"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"vue:"}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global installation:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install vue\nfrontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6297f2"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"vue"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6297f2"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information\n\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can confirm the successful installation of RDvue in three simple steps:"}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:create-project "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generated folders are named in kebab-case."}]},{"type":"element","tag":"h3","props":{"id":"step-2-install-project-dependencies"},"children":[{"type":"text","value":"Step 2: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \nnpm install\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"cd \nnpm install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-3-serve-project"},"children":[{"type":"text","value":"Step 3: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npm run serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-page"},"children":[{"type":"text","value":"Generating a Page"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:add:page \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:add:page "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/ ."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:generate component \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:generate component "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-9737ac{color:#CF222E}\n.ct-e95677{color:#0A3069}\n.ct-67d224{color:#24292F}\n.ct-6297f2{color:#953800}\n.dark .ct-6297f2{color:#FFA657}\n.dark .ct-67d224{color:#C9D1D9}\n.dark .ct-e95677{color:#A5D6FF}\n.dark .ct-9737ac{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":2,"text":"Usage"},{"id":"options","depth":2,"text":"Options"},{"id":"validate-installation","depth":2,"text":"Validate Installation","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-install-project-dependencies","depth":3,"text":"Step 2: Install project dependencies"},{"id":"step-3-serve-project","depth":3,"text":"Step 3: Serve project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-page","depth":3,"text":"Generating a Page"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/rdvue/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:3.rdvue:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"README."}]}]},{"type":"element","tag":"h2","props":{"id":"how-to-use-rdvue-cli"},"children":[{"type":"text","value":"How to use rdvue-cli"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commands will follow the basic structure:"}]},{"type":"element","tag":"code","props":{"code":"npx rdvue \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npx rdvue "}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue create-project "}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue add: \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue add: "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:plugin:\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:plugin:"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#localization"},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:upgrade \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:upgrade "}]}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"how-to-use-rdvue-cli","depth":2,"text":"How to use rdvue-cli"},{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/rdvue/scaffilding/_dir","_dir":"scaffilding","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:3.scaffilding:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/3.scaffilding/_dir.yml","_extension":"yml"},{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\nimport { SitemapStream, streamToPromise } from 'sitemap'\n\nexport default defineEventHandler(async (event) => {\n // Fetch all documents\n const docs = await serverQueryContent(event).find()\n const sitemap = new SitemapStream({\n hostname: 'https://example.com'\n })\n\n for (const doc of docs) {\n sitemap.write({\n url: doc._path,\n changefreq: 'monthly'\n })\n }\n sitemap.end()\n\n return streamToPromise(sitemap)\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f8a41"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\n // ...\n nitro: {\n prerender: {\n routes: ['/sitemap.xml']\n }\n }\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f8a41"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-8f8a41{color:#6E7781}\n.ct-c5e78b{color:#8250DF}\n.ct-9dc395{color:#CF222E}\n.ct-ec713f{color:#0550AE}\n.ct-ad512d{color:#0A3069}\n.ct-8f7939{color:#24292F}\n.ct-e57db5{color:#953800}\n.dark .ct-e57db5{color:#FFA657}\n.dark .ct-8f7939{color:#C9D1D9}\n.dark .ct-ad512d{color:#A5D6FF}\n.dark .ct-ec713f{color:#79C0FF}\n.dark .ct-9dc395{color:#FF7B72}\n.dark .ct-c5e78b{color:#D2A8FF}\n.dark .ct-8f8a41{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"},{"_path":"/rdvue/template-schema/_dir","_dir":"template-schema","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:4.template-schema:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/4.template-schema/_dir.yml","_extension":"yml"},{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\n \"version\": 1\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\n \"sourceDirectory\": \"./\",\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\n {\n \"name\": \"config\",\n \"private\": true\n },\n {\n \"name\": \"store\",\n \"private\": true\n },\n {\n \"name\": \"component\",\n \"private\": false\n },\n {\n \"name\": \"service\",\n \"private\": false\n },\n {\n \"name\": \"model\",\n \"private\": false\n },\n {\n \"name\": \"page\",\n \"private\": false\n },\n {\n \"name\": \"sm\",\n \"private\": false\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\n \"auth\",\n \"localization\",\n \"storybook\"\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\n  \"version\": 1,\n  \"sourceDirectory\": \"./\",\n  \"features\": [\n    {\n      \"name\": \"config\",\n      \"private\": true\n    },\n    {\n      \"name\": \"store\",\n      \"private\": true\n    },\n    {\n      \"name\": \"component\",\n      \"private\": false\n    },\n    {\n      \"name\": \"service\",\n      \"private\": false\n    },\n    {\n      \"name\": \"model\",\n      \"private\": false\n    },\n    {\n      \"name\": \"page\",\n      \"private\": false\n    },\n    {\n      \"name\": \"sm\",\n      \"private\": false\n    }\n  ],\n  \"plugins\": [\n    \"auth\",\n    \"localization\",\n    \"storybook\"\n  ],\n  \"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  },\n  \"groups\": [\n    {\n      \"name\": \"authentication\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"auth\"\n      ],\n      \"question\": \"Which Authentication Library would you like to install?\"\n    },\n    {\n      \"name\": \"locale\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"localization\"\n      ],\n      \"question\": \"Which Localization Library would you like to install?\"\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ],\n  \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"store/auth.ts\",\n \"target\": \"store/auth.ts\"\n },\n {\n \"source\": \"services/auth.ts\",\n \"target\": \"services/auth.ts\"\n },\n {\n \"source\": \"model/user.ts\",\n \"target\": \"model/user.ts\"\n },\n {\n \"source\": \"pages/register/index.ts\",\n \"target\": \"pages/auth/register/index.ts\"\n },\n {\n \"source\": \"pages/register/register.ts\",\n \"target\": \"pages/auth/register/register.ts\"\n },\n {\n \"source\": \"pages/register/register.scss\",\n \"target\": \"pages/auth/register/register.scss\"\n },\n {\n \"source\": \"pages/register/register.vue\",\n \"target\": \"pages/auth/register/register.vue\"\n },\n {\n \"source\": \"pages/login/index.ts\",\n \"target\": \"pages/auth/login/index.ts\"\n },\n {\n \"source\": \"pages/login/login.ts\",\n \"target\": \"pages/auth/login/login.ts\"\n },\n {\n \"source\": \"pages/login/login.scss\",\n \"target\": \"pages/auth/login/login.scss\"\n },\n {\n \"source\": \"pages/login/login.vue\",\n \"target\": \"pages/auth/login/login.vue\"\n },\n {\n \"source\": \"pages/forget-password/index.ts\",\n \"target\": \"pages/auth/forget-password/index.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.ts\",\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.scss\",\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.vue\",\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"index.ts\",\n \"target\": \"index.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.scss\",\n \"target\": \"${componentNameKebab}.scss\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.ts\",\n \"target\": \"${componentNameKebab}.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.spec.js\",\n \"target\": \"${componentNameKebab}.spec.js\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.vue\",\n \"target\": \"${componentNameKebab}.vue\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n }\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\n path: '/buefy-sample',\n name: 'buefy-sample',\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c0d9e8"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c0d9e8"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-9305ca"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\n transpileDependencies: 'vuetify',\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\n transpileDependencies: 'vuetify',\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-9305ca{color:#8250DF}\n.ct-668093{color:#953800}\n.ct-c0d9e8{color:#CF222E}\n.ct-3e85ea{color:#0A3069}\n.ct-fa167d{color:#0550AE}\n.ct-df5783{color:#116329}\n.ct-92c7b9{color:#24292F}\n.dark .ct-92c7b9{color:#C9D1D9}\n.dark .ct-df5783{color:#7EE787}\n.dark .ct-fa167d{color:#79C0FF}\n.dark .ct-3e85ea{color:#A5D6FF}\n.dark .ct-c0d9e8{color:#FF7B72}\n.dark .ct-668093{color:#FFA657}\n.dark .ct-9305ca{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"},{"_path":"/rdvue/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:5.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/5.features/_dir.yml","_extension":"yml"},{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rdvue-features"},"children":[{"type":"text","value":"Rdvue Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
slots: {
header: ‘The header component goes here’,
...
}
"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"meta: {\n layout: '',\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]},{"type":"element","tag":"h2","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"mark","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"i18n language codes,"}]}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical-5"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n \"message\": \"hello i18n!!\"\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"document"}]},{"type":"text","value":" as follows:"}]},{"type":"element","tag":"code","props":{"code":"
\n

{{ $t(\"message\") }}

\n
\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"
\n

{{ $t(\"message\") }}

\n
"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"if the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":" is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"h2","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"services","depth":2,"text":"Services","children":[{"id":"technical","depth":3,"text":"Technical"}]},{"id":"pages","depth":2,"text":"Pages","children":[{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"components","depth":2,"text":"Components","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"layouts","depth":2,"text":"Layouts","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"stores","depth":2,"text":"Stores","children":[{"id":"technical-4","depth":3,"text":"Technical"}]},{"id":"localization","depth":2,"text":"Localization","children":[{"id":"technical-5","depth":3,"text":"Technical"}]},{"id":"bundle-analysis","depth":2,"text":"Bundle Analysis"}]}},"_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"},{"_path":"/rdvue/themeing/_dir","_dir":"themeing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:6.themeing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/6.themeing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Tailwind is the best practice approach for styling Components and Pages within RDVue."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"},{"_path":"/rdvue/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:7.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/7.testing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h2","props":{"id":"cypress"},"children":[{"type":"text","value":"Cypress"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on "},{"type":"element","tag":"a","props":{"href":"https://www.selenium.dev/projects/","rel":["nofollow"]},"children":[{"type":"text","value":"Selenium"}]},{"type":"text","value":", instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a "},{"type":"element","tag":"a","props":{"href":"https://docs.cypress.io/api/api/table-of-contents.html","rel":["nofollow"]},"children":[{"type":"text","value":"API"}]},{"type":"text","value":" that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Within a project generated by the CLI tool, the following folder structure will be created:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/cypress.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All the e2e tests created by Cypress will live in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"cypress/integration/specs"}]},{"type":"text","value":" directory. All these test files will have a .ts extension as they are written in TypeScript."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An example of a test file written in Cypress can be seen below:"}]},{"type":"element","tag":"code","props":{"code":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>When you are testing the connection between pages and user flows, a Cypress test should be created."}]},{"type":"element","tag":"h3","props":{"id":"running-tests"},"children":[{"type":"text","value":"Running tests"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to run your Cypress tests, execute "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"npm run test:e2e"}]},{"type":"text","value":" and the following dialog will open"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/inspection.png?raw=true"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here, you can click on the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Run all specs"}]},{"type":"text","value":" option and see all the tests execute or you can click on a specific test file and see that test execute."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests."}]},{"type":"element","tag":"h2","props":{"id":"unit-tests-with-jest"},"children":[{"type":"text","value":"Unit Tests with Jest"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you wish to automate your unit tests, "},{"type":"element","tag":"a","props":{"href":"https://jestjs.io/","rel":["nofollow"]},"children":[{"type":"text","value":"Jest"}]},{"type":"text","value":" can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each component generated by the RDVue CLI comes with a "},{"type":"element","tag":"component-name","props":{},"children":[{"type":"text","value":".spec.js file and the folder structure will look like the following:"}]}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The spec file generated will contain the following basic test by default:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest2.png?raw=true"},"children":[]},{"type":"text","value":"\n)\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘"},{"type":"element","tag":"a","props":{"href":"https://github.com/vue/test-utils","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@vue/test-utils"}]}]},{"type":"text","value":"' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cypress","depth":2,"text":"Cypress","children":[{"id":"technical","depth":3,"text":"Technical"},{"id":"running-tests","depth":3,"text":"Running tests"}]},{"id":"unit-tests-with-jest","depth":2,"text":"Unit Tests with Jest","children":[{"id":"technical-1","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"},{"_path":"/spectre/_dir","_dir":"spectre","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:bookmark-alt","_id":"content:4.Spectre:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:cube","_id":"content:4.Spectre:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"},{"_path":"/mobile/_dir","_dir":"mobile","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:5.mobile:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:5.mobile:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the installation guide below to set up the Stripe CLI.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdmobile","rel":["nofollow"]},"children":[{"type":"text","value":"Mobile"}]},{"type":"text","value":" is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the "},{"type":"element","tag":"a","props":{"href":"#installation"},"children":[{"type":"text","value":"installation guide"}]},{"type":"text","value":" below to set up the Stripe CLI."}]},{"type":"element","tag":"h2","props":{"id":"system-requirements"},"children":[{"type":"text","value":"System Requirements"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You will need "},{"type":"element","tag":"a","props":{"href":"https://docs.expo.dev/get-started/installation/#expo-cli","rel":["nofollow"]},"children":[{"type":"text","value":"React Native Expo CLI"}]},{"type":"text","value":" and it dependencies in order to run the project."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Git"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"For macOS or Linux users: Watchman"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"MacOs to run on iOS simular."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Recommended tools"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual Studio Code Editor "},{"type":"element","tag":"a","props":{"href":"https://code.visualstudio.com/download","rel":["nofollow"]},"children":[{"type":"text","value":"VS Code"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Installing the mobile plugin can be done with the following command:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install @rdfrontier/plugin-mobile\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"@rdfrontier/plugin-mobile"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To check if the everything went will you can check the current version of mobile:"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile -v | --version\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-6e9309"},"children":[{"type":"text","value":"-v"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"|"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"--version"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now we can start using the CLI if the installation was successful."}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"project-name","props":{},"children":[{"type":"text","value":" with the actual name of your project. Preferrably written in snake case (eg. "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"my-awesome-project"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project my-awesome-project\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-2-run-project"},"children":[{"type":"text","value":"Step 2: Run project"}]},{"type":"element","tag":"code","props":{"code":"cd my-awesome-project\n","language":"shell","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6e9309"},"children":[{"type":"text","value":"cd"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac."}]},{"type":"element","tag":"code","props":{"code":"npm run ios \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"ios"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac or Windows."}]},{"type":"element","tag":"code","props":{"code":"npm run android\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"android"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here you can perform multiple other actions but a good next step is to "},{"type":"element","tag":"a","props":{"href":"usage.md#add"},"children":[{"type":"text","value":"learn to add features"}]},{"type":"text","value":". See examples below:"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-screen"},"children":[{"type":"text","value":"Generating a Screen"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:screen \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen gets its own dedicated folder. The folder will be given the name of the page. This folder is located at "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/src/screens/"}]},{"type":"text","value":"."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:component \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-54668f{color:#CF222E}\n.ct-6e9309{color:#0550AE}\n.ct-d8126f{color:#0A3069}\n.ct-4ff9f6{color:#24292F}\n.ct-040057{color:#953800}\n.dark .ct-040057{color:#FFA657}\n.dark .ct-4ff9f6{color:#C9D1D9}\n.dark .ct-d8126f{color:#A5D6FF}\n.dark .ct-6e9309{color:#79C0FF}\n.dark .ct-54668f{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"system-requirements","depth":2,"text":"System Requirements"},{"id":"installation","depth":2,"text":"Installation","children":[{"id":"validate-installation","depth":3,"text":"Validate installation"}]},{"id":"usage","depth":2,"text":"Usage","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-run-project","depth":3,"text":"Step 2: Run project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-screen","depth":3,"text":"Generating a Screen"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:5.mobile:1.getting-started:1.overview.md","_source":"content","_file":"5.mobile/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/mobile/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:5.mobile:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal."}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the CLI option below for a list of commands and options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile: --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1c96f9"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"mobile:"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-990783"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"cli-command"},"children":[{"type":"text","value":"CLI Command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]},{"type":"text","value":" will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile:create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1c96f9"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"mobile:create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--bundleIdenifier"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"The name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app)."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--verbose"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Show debug logs when creating the project."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile:add: \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1c96f9"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"mobile:add:"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"featur"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"nam"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Features"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Learn more below about each feature the CLI provides:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#components"},"children":[{"type":"text","value":"Component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#pages"},"children":[{"type":"text","value":"Page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#screens"},"children":[{"type":"text","value":"Screen"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#layouts"},"children":[{"type":"text","value":"Layout"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#services"},"children":[{"type":"text","value":"Service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#stores"},"children":[{"type":"text","value":"Store"}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-990783{color:#0550AE}\n.ct-042e1d{color:#CF222E}\n.ct-2ff843{color:#0A3069}\n.ct-ed64ce{color:#24292F}\n.ct-1c96f9{color:#953800}\n.dark .ct-1c96f9{color:#FFA657}\n.dark .ct-ed64ce{color:#C9D1D9}\n.dark .ct-2ff843{color:#A5D6FF}\n.dark .ct-042e1d{color:#FF7B72}\n.dark .ct-990783{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-command","depth":2,"text":"CLI Command","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"}]}]}},"_type":"markdown","_id":"content:5.mobile:2.cli-commands:1.usage.md","_source":"content","_file":"5.mobile/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/mobile/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:3.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/3.features/_dir.yml","_extension":"yml"},{"_path":"/mobile/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Features","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"features"},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"cli-reference.md#add"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"\n> It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document.\n"},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":". Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:component \n\n# Example\n$ frontier mobile:add:component fancy-text\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"fancy-text"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component folder consists of for two files. These file include:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".tsx"}]},{"type":"text","value":": This file holds actual functional logic and view hierarchy for the component you are trying to create.."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".styles.tsx"}]},{"type":"text","value":": This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See below for example of folder structure after creating a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text"}]},{"type":"text","value":":"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/frontier/tree/mobile-integration/packages/frontier-plugins/plugin-mobile/docs/images/component.png"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.tsx"}]}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.tsx\n\nimport { Component } from \"react\";\nimport styles from \"./fancy-text.styles\";\n\nclass FancyText extends Component {\n render() {\n return Some Fancy Text\n }\n}\n\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" { Component } "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"react\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" styles "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"./fancy-text.styles\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"class"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"FancyText"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"extends"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"Component"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-fec27d"},"children":[{"type":"text","value":"render"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"() {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-6c9842"},"children":[{"type":"text","value":"Text"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"style"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"styles.title"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":">Some Fancy Text"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is an example of the stylesheet "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.styles.tsx"}]},{"type":"text","value":"."}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.style.tsx\n\nimport { StyleSheet } from \"react-native\";\n\nexport StyleSheet.create({\n text: {\n color: \"red\",\n fontSize: 18,\n }\n });\n};\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.style.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" { StyleSheet } "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"react-native\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" StyleSheet."}]},{"type":"element","tag":"span","props":{"class":"ct-fec27d"},"children":[{"type":"text","value":"create"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" text: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" color: "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"red\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" fontSize: "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"18"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" });"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"choosing-between-class-and-function-components"},"children":[{"type":"text","value":"Choosing between Class and Function components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Class-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you want to work with components lifecycle functions - Even though react provides hooks like "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"useEffect()"}]},{"type":"text","value":", this can get quite cumbersome when the components grows."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screen"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#stores--context"},"children":[{"type":"text","value":"Context Provider"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"state"}]},{"type":"text","value":" variables - A general rule of thump is to keep state variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"props"}]},{"type":"text","value":" variables - A general rule of thump is to keep props variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you intend on making API calls from within the component."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Function-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If the component is mostly visual with little to no functional logic."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Screen, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#nagivation"},"children":[{"type":"text","value":"Navigator"}]},{"type":"text","value":" before it can be used within a mobile application."}]},{"type":"element","tag":"h3","props":{"id":"usage-1"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:screen \n\n# Example\n$ frontier mobile:add:screen login\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"login"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen is contained within it's own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/screens"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Screen:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tsx"}]},{"type":"text","value":": This is similar to a "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":" but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"styles.tsx"}]},{"type":"text","value":": All Stylesheet file are the same as the stylesheet used shown in "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:service \n\n# Example\n$ frontier mobile:add:service auth\n\n# Output File \n> src/services/auth.service.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"service-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" src/services/auth.service.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/services"}]},{"type":"text","value":" directory. The directory contains a file for each service that has been created:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[service-name]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"serivce.tsx"}]},{"type":"text","value":": The file will contain a related grouping of http functions."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage)."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"nagivation"},"children":[{"type":"text","value":"Nagivation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated context is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"\n \n\n","language":"jsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-6c9842"},"children":[{"type":"text","value":"Stack.Navigator"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"screenOptions"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"{ headerShwon: "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"initialRouteName"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"'Login'"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-6c9842"},"children":[{"type":"text","value":"Stack.Screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"Login\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"Login"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" />"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":""}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Screen component to load for the given name."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Navigation should be centralized within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/core/navigation"}]},{"type":"text","value":" directory. This is where the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" library is configured and where the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Stack"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For more details on the available options for configuring a Stack, please refer to the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" documentation, and more specifically, the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/#api-definition","rel":["nofollow"]},"children":[{"type":"text","value":"API Definition"}]},{"type":"text","value":"."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"stores-context"},"children":[{"type":"text","value":"Stores / Context"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"h3","props":{"id":"usage-2"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:store \n\n# Example\n$ frontier mobile:add:store auth\n\n# Output File \n> src/contexts/auth.context.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"store-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" src/contexts/auth.context.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Type"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"ContextProvider"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"Consumer"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Allows components to subscribe to changes in the global state endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"with"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when Class-based components would like to consume data from the a context"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"use"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when function-based components would like to consume data from the a contextresponse."}]}]}]}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":" - This is the provided name for the context when created using the CLI's "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"add"}]},{"type":"text","value":" command above."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"HOC (High-Order Component)"}]},{"type":"text","value":" - a higher-order component is a function that takes a component and returns a new enhanced component."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-6c9842{color:#116329}\n.ct-fec27d{color:#8250DF}\n.ct-d1e82d{color:#0550AE}\n.ct-ad15af{color:#6E7781}\n.ct-da3f8a{color:#CF222E}\n.ct-80f4c5{color:#0A3069}\n.ct-2dd33d{color:#24292F}\n.ct-4c468f{color:#953800}\n.dark .ct-4c468f{color:#FFA657}\n.dark .ct-2dd33d{color:#C9D1D9}\n.dark .ct-80f4c5{color:#A5D6FF}\n.dark .ct-da3f8a{color:#FF7B72}\n.dark .ct-ad15af{color:#8B949E}\n.dark .ct-d1e82d{color:#79C0FF}\n.dark .ct-fec27d{color:#D2A8FF}\n.dark .ct-6c9842{color:#7EE787}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"components","depth":2,"text":"Components","children":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"},{"id":"choosing-between-class-and-function-components","depth":3,"text":"Choosing between Class and Function components"}]},{"id":"screens","depth":2,"text":"Screens","children":[{"id":"usage-1","depth":3,"text":"Usage"},{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"services","depth":2,"text":"Services","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"nagivation","depth":2,"text":"Nagivation","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"stores-context","depth":2,"text":"Stores / Context","children":[{"id":"usage-2","depth":3,"text":"Usage"},{"id":"technical-4","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:5.mobile:3.features:1.features.md","_source":"content","_file":"5.mobile/3.features/1.features.md","_extension":"md"},{"_path":"/mobile/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:4.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/4.testing/_dir.yml","_extension":"yml"},{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing-wip"},"children":[{"type":"text","value":"Testing (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:4.testing:1.testing.md","_source":"content","_file":"5.mobile/4.testing/1.testing.md","_extension":"md"},{"_path":"/mobile/deployment/_dir","_dir":"deployment","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:5.deployment:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/5.deployment/_dir.yml","_extension":"yml"},{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Deployment (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"deployment-wip"},"children":[{"type":"text","value":"Deployment (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:5.deployment:1.deployment.md","_source":"content","_file":"5.mobile/5.deployment/1.deployment.md","_extension":"md"},{"_path":"/design/_dir","_dir":"design","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:6.design:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:6.design:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"},{"_path":"/iac/_dir","_dir":"iac","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:7.IAC:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:7.IAC:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"}],"navigation":[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Getting Started","_path":"/mobile/getting-started/overview"}],"icon":"heroicons-outline:flag"},{"title":"Cli Commands","_path":"/mobile/cli-commands","children":[{"title":"CLI Commands","_path":"/mobile/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Features","_path":"/mobile/features","children":[{"title":"Features","_path":"/mobile/features/features"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/mobile/testing","children":[{"title":"Testing (WIP)","_path":"/mobile/testing/testing"}],"icon":"heroicons-outline:code"},{"title":"Deployment","_path":"/mobile/deployment","children":[{"title":"Deployment (WIP)","_path":"/mobile/deployment/deployment"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}]} \ No newline at end of file diff --git a/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1677768033312.json b/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678414054441.json similarity index 71% rename from docs/.output/public/api/_content/navigation/u7BbTyuhiE.1677768033312.json rename to docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678414054441.json index 0555d536..3d8c7676 100644 --- a/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1677768033312.json +++ b/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678414054441.json @@ -1 +1 @@ -[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Coming Soon","_path":"/mobile/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}] \ No newline at end of file +[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Getting Started","_path":"/mobile/getting-started/overview"}],"icon":"heroicons-outline:flag"},{"title":"Cli Commands","_path":"/mobile/cli-commands","children":[{"title":"CLI Commands","_path":"/mobile/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Features","_path":"/mobile/features","children":[{"title":"Features","_path":"/mobile/features/features"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/mobile/testing","children":[{"title":"Testing (WIP)","_path":"/mobile/testing/testing"}],"icon":"heroicons-outline:code"},{"title":"Deployment","_path":"/mobile/deployment","children":[{"title":"Deployment (WIP)","_path":"/mobile/deployment/deployment"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/19ZwhtnBsu.1677768033312.json b/docs/.output/public/api/_content/query/19ZwhtnBsu.1677768033312.json deleted file mode 100644 index 33cb8420..00000000 --- a/docs/.output/public/api/_content/query/19ZwhtnBsu.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"},{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/429l0g1JsL.1677768033312.json b/docs/.output/public/api/_content/query/429l0g1JsL.1677768033312.json deleted file mode 100644 index ce30a0bf..00000000 --- a/docs/.output/public/api/_content/query/429l0g1JsL.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"},{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/47rOsvYKsq.1677768033312.json b/docs/.output/public/api/_content/query/47rOsvYKsq.1677768033312.json deleted file mode 100644 index 69c09008..00000000 --- a/docs/.output/public/api/_content/query/47rOsvYKsq.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"},{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/4yp2Okse4m.1677768033312.json b/docs/.output/public/api/_content/query/4yp2Okse4m.1677768033312.json deleted file mode 100644 index 52e757fd..00000000 --- a/docs/.output/public/api/_content/query/4yp2Okse4m.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"},{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/5CKmdxNney.1677768033312.json b/docs/.output/public/api/_content/query/5CKmdxNney.1677768033312.json deleted file mode 100644 index e99b593d..00000000 --- a/docs/.output/public/api/_content/query/5CKmdxNney.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/introduction","_dir":{"icon":"heroicons-outline:pencil-alt","title":"Dir"}} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/6p0u3YetMp.1677768033312.json b/docs/.output/public/api/_content/query/6p0u3YetMp.1677768033312.json deleted file mode 100644 index a982f349..00000000 --- a/docs/.output/public/api/_content/query/6p0u3YetMp.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rdvue-features"},"children":[{"type":"text","value":"Rdvue Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
slots: {
header: ‘The header component goes here’,
...
}
"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"meta: {\n layout: '',\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]},{"type":"element","tag":"h2","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"mark","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"i18n language codes,"}]}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical-5"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n \"message\": \"hello i18n!!\"\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"document"}]},{"type":"text","value":" as follows:"}]},{"type":"element","tag":"code","props":{"code":"
\n

{{ $t(\"message\") }}

\n
\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"
\n

{{ $t(\"message\") }}

\n
"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"if the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":" is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"h2","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"services","depth":2,"text":"Services","children":[{"id":"technical","depth":3,"text":"Technical"}]},{"id":"pages","depth":2,"text":"Pages","children":[{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"components","depth":2,"text":"Components","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"layouts","depth":2,"text":"Layouts","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"stores","depth":2,"text":"Stores","children":[{"id":"technical-4","depth":3,"text":"Technical"}]},{"id":"localization","depth":2,"text":"Localization","children":[{"id":"technical-5","depth":3,"text":"Technical"}]},{"id":"bundle-analysis","depth":2,"text":"Bundle Analysis"}]}},"_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/6pNGztrIpy.1677768033312.json b/docs/.output/public/api/_content/query/6pNGztrIpy.1677768033312.json deleted file mode 100644 index 087891df..00000000 --- a/docs/.output/public/api/_content/query/6pNGztrIpy.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"},{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/7Rwiic1Mfu.1677768033312.json b/docs/.output/public/api/_content/query/7Rwiic1Mfu.1677768033312.json deleted file mode 100644 index c920640f..00000000 --- a/docs/.output/public/api/_content/query/7Rwiic1Mfu.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"},{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/89g0dcy129.1677768033312.json b/docs/.output/public/api/_content/query/89g0dcy129.1677768033312.json deleted file mode 100644 index a578a8b1..00000000 --- a/docs/.output/public/api/_content/query/89g0dcy129.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"},{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ALdmBT6ADc.1677768033312.json b/docs/.output/public/api/_content/query/ALdmBT6ADc.1677768033312.json deleted file mode 100644 index 9ce03dd3..00000000 --- a/docs/.output/public/api/_content/query/ALdmBT6ADc.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Tailwind is the best practice approach for styling Components and Pages within RDVue."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/BLviYQQPJ7.1677768033312.json b/docs/.output/public/api/_content/query/BLviYQQPJ7.1677768033312.json deleted file mode 100644 index 995d759c..00000000 --- a/docs/.output/public/api/_content/query/BLviYQQPJ7.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"general-use"},"children":[{"type":"text","value":"General Use"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/BoNR1lKKhq.1677768033312.json b/docs/.output/public/api/_content/query/BoNR1lKKhq.1677768033312.json deleted file mode 100644 index cf7e569f..00000000 --- a/docs/.output/public/api/_content/query/BoNR1lKKhq.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/BrSZyfjf5T.1677768033312.json b/docs/.output/public/api/_content/query/BrSZyfjf5T.1677768033312.json deleted file mode 100644 index b21430cd..00000000 --- a/docs/.output/public/api/_content/query/BrSZyfjf5T.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"},{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Bwmd3WsD1s.1677768033312.json b/docs/.output/public/api/_content/query/Bwmd3WsD1s.1677768033312.json deleted file mode 100644 index 3937bfbf..00000000 --- a/docs/.output/public/api/_content/query/Bwmd3WsD1s.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h2","props":{"id":"cypress"},"children":[{"type":"text","value":"Cypress"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on "},{"type":"element","tag":"a","props":{"href":"https://www.selenium.dev/projects/","rel":["nofollow"]},"children":[{"type":"text","value":"Selenium"}]},{"type":"text","value":", instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a "},{"type":"element","tag":"a","props":{"href":"https://docs.cypress.io/api/api/table-of-contents.html","rel":["nofollow"]},"children":[{"type":"text","value":"API"}]},{"type":"text","value":" that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Within a project generated by the CLI tool, the following folder structure will be created:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/cypress.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All the e2e tests created by Cypress will live in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"cypress/integration/specs"}]},{"type":"text","value":" directory. All these test files will have a .ts extension as they are written in TypeScript."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An example of a test file written in Cypress can be seen below:"}]},{"type":"element","tag":"code","props":{"code":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>When you are testing the connection between pages and user flows, a Cypress test should be created."}]},{"type":"element","tag":"h3","props":{"id":"running-tests"},"children":[{"type":"text","value":"Running tests"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to run your Cypress tests, execute "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"npm run test:e2e"}]},{"type":"text","value":" and the following dialog will open"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/inspection.png?raw=true"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here, you can click on the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Run all specs"}]},{"type":"text","value":" option and see all the tests execute or you can click on a specific test file and see that test execute."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests."}]},{"type":"element","tag":"h2","props":{"id":"unit-tests-with-jest"},"children":[{"type":"text","value":"Unit Tests with Jest"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you wish to automate your unit tests, "},{"type":"element","tag":"a","props":{"href":"https://jestjs.io/","rel":["nofollow"]},"children":[{"type":"text","value":"Jest"}]},{"type":"text","value":" can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each component generated by the RDVue CLI comes with a "},{"type":"element","tag":"component-name","props":{},"children":[{"type":"text","value":".spec.js file and the folder structure will look like the following:"}]}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The spec file generated will contain the following basic test by default:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest2.png?raw=true"},"children":[]},{"type":"text","value":"\n)\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘"},{"type":"element","tag":"a","props":{"href":"https://github.com/vue/test-utils","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@vue/test-utils"}]}]},{"type":"text","value":"' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cypress","depth":2,"text":"Cypress","children":[{"id":"technical","depth":3,"text":"Technical"},{"id":"running-tests","depth":3,"text":"Running tests"}]},{"id":"unit-tests-with-jest","depth":2,"text":"Unit Tests with Jest","children":[{"id":"technical-1","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/CmzcyosjoR.1677768033312.json b/docs/.output/public/api/_content/query/CmzcyosjoR.1677768033312.json deleted file mode 100644 index 6dafde96..00000000 --- a/docs/.output/public/api/_content/query/CmzcyosjoR.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ESBtShW9sz.1677768033312.json b/docs/.output/public/api/_content/query/ESBtShW9sz.1677768033312.json deleted file mode 100644 index 04e1a3b9..00000000 --- a/docs/.output/public/api/_content/query/ESBtShW9sz.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"},{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/GkDGmUyz0M.1677768033312.json b/docs/.output/public/api/_content/query/GkDGmUyz0M.1677768033312.json deleted file mode 100644 index 22857215..00000000 --- a/docs/.output/public/api/_content/query/GkDGmUyz0M.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\n \"version\": 1\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\n \"sourceDirectory\": \"./\",\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\n {\n \"name\": \"config\",\n \"private\": true\n },\n {\n \"name\": \"store\",\n \"private\": true\n },\n {\n \"name\": \"component\",\n \"private\": false\n },\n {\n \"name\": \"service\",\n \"private\": false\n },\n {\n \"name\": \"model\",\n \"private\": false\n },\n {\n \"name\": \"page\",\n \"private\": false\n },\n {\n \"name\": \"sm\",\n \"private\": false\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\n \"auth\",\n \"localization\",\n \"storybook\"\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\n  \"version\": 1,\n  \"sourceDirectory\": \"./\",\n  \"features\": [\n    {\n      \"name\": \"config\",\n      \"private\": true\n    },\n    {\n      \"name\": \"store\",\n      \"private\": true\n    },\n    {\n      \"name\": \"component\",\n      \"private\": false\n    },\n    {\n      \"name\": \"service\",\n      \"private\": false\n    },\n    {\n      \"name\": \"model\",\n      \"private\": false\n    },\n    {\n      \"name\": \"page\",\n      \"private\": false\n    },\n    {\n      \"name\": \"sm\",\n      \"private\": false\n    }\n  ],\n  \"plugins\": [\n    \"auth\",\n    \"localization\",\n    \"storybook\"\n  ],\n  \"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  },\n  \"groups\": [\n    {\n      \"name\": \"authentication\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"auth\"\n      ],\n      \"question\": \"Which Authentication Library would you like to install?\"\n    },\n    {\n      \"name\": \"locale\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"localization\"\n      ],\n      \"question\": \"Which Localization Library would you like to install?\"\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ],\n  \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-194c67"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"  }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"store/auth.ts\",\n \"target\": \"store/auth.ts\"\n },\n {\n \"source\": \"services/auth.ts\",\n \"target\": \"services/auth.ts\"\n },\n {\n \"source\": \"model/user.ts\",\n \"target\": \"model/user.ts\"\n },\n {\n \"source\": \"pages/register/index.ts\",\n \"target\": \"pages/auth/register/index.ts\"\n },\n {\n \"source\": \"pages/register/register.ts\",\n \"target\": \"pages/auth/register/register.ts\"\n },\n {\n \"source\": \"pages/register/register.scss\",\n \"target\": \"pages/auth/register/register.scss\"\n },\n {\n \"source\": \"pages/register/register.vue\",\n \"target\": \"pages/auth/register/register.vue\"\n },\n {\n \"source\": \"pages/login/index.ts\",\n \"target\": \"pages/auth/login/index.ts\"\n },\n {\n \"source\": \"pages/login/login.ts\",\n \"target\": \"pages/auth/login/login.ts\"\n },\n {\n \"source\": \"pages/login/login.scss\",\n \"target\": \"pages/auth/login/login.scss\"\n },\n {\n \"source\": \"pages/login/login.vue\",\n \"target\": \"pages/auth/login/login.vue\"\n },\n {\n \"source\": \"pages/forget-password/index.ts\",\n \"target\": \"pages/auth/forget-password/index.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.ts\",\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.scss\",\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.vue\",\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"index.ts\",\n \"target\": \"index.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.scss\",\n \"target\": \"${componentNameKebab}.scss\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.ts\",\n \"target\": \"${componentNameKebab}.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.spec.js\",\n \"target\": \"${componentNameKebab}.spec.js\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.vue\",\n \"target\": \"${componentNameKebab}.vue\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n }\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dea269"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\n path: '/buefy-sample',\n name: 'buefy-sample',\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3a2a22"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3a2a22"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-a08c72"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-0eab8f"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c403f1"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-0e4fc8"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\n transpileDependencies: 'vuetify',\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\n transpileDependencies: 'vuetify',\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-a08c72{color:#8250DF}\n.ct-c403f1{color:#953800}\n.ct-3a2a22{color:#CF222E}\n.ct-0eab8f{color:#0A3069}\n.ct-194c67{color:#0550AE}\n.ct-dea269{color:#116329}\n.ct-0e4fc8{color:#24292F}\n.dark .ct-0e4fc8{color:#C9D1D9}\n.dark .ct-dea269{color:#7EE787}\n.dark .ct-194c67{color:#79C0FF}\n.dark .ct-0eab8f{color:#A5D6FF}\n.dark .ct-3a2a22{color:#FF7B72}\n.dark .ct-c403f1{color:#FFA657}\n.dark .ct-a08c72{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/HlvQ2CNI92.1677768033312.json b/docs/.output/public/api/_content/query/HlvQ2CNI92.1677768033312.json deleted file mode 100644 index 2e78ec20..00000000 --- a/docs/.output/public/api/_content/query/HlvQ2CNI92.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/J1BQKIMJrl.1677768033312.json b/docs/.output/public/api/_content/query/J1BQKIMJrl.1677768033312.json deleted file mode 100644 index 77409639..00000000 --- a/docs/.output/public/api/_content/query/J1BQKIMJrl.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"},{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/JlWpJOmqbt.1677768033312.json b/docs/.output/public/api/_content/query/JlWpJOmqbt.1677768033312.json deleted file mode 100644 index b9374dfd..00000000 --- a/docs/.output/public/api/_content/query/JlWpJOmqbt.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend"},"children":[{"type":"text","value":"Frontend"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/KGVfeDohnm.1677768033312.json b/docs/.output/public/api/_content/query/KGVfeDohnm.1677768033312.json deleted file mode 100644 index e9877b6c..00000000 --- a/docs/.output/public/api/_content/query/KGVfeDohnm.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"},{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Lt6BIToPNN.1677768033312.json b/docs/.output/public/api/_content/query/Lt6BIToPNN.1677768033312.json deleted file mode 100644 index a480a67d..00000000 --- a/docs/.output/public/api/_content/query/Lt6BIToPNN.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"},{"_path":"/mobile/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:5.mobile:1.getting-started:2.introduction.md","_source":"content","_file":"5.mobile/1.getting-started/2.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/MMGz34b8PH.1677768033312.json b/docs/.output/public/api/_content/query/MMGz34b8PH.1677768033312.json deleted file mode 100644 index a6caeba5..00000000 --- a/docs/.output/public/api/_content/query/MMGz34b8PH.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/O32KeiYrUa.1677768033312.json b/docs/.output/public/api/_content/query/O32KeiYrUa.1677768033312.json deleted file mode 100644 index 3c149415..00000000 --- a/docs/.output/public/api/_content/query/O32KeiYrUa.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/P314osc27P.1677768033312.json b/docs/.output/public/api/_content/query/P314osc27P.1677768033312.json deleted file mode 100644 index 47bce8fc..00000000 --- a/docs/.output/public/api/_content/query/P314osc27P.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"},{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/RoutJwnTpy.1677768033312.json b/docs/.output/public/api/_content/query/RoutJwnTpy.1677768033312.json deleted file mode 100644 index cff8f7ad..00000000 --- a/docs/.output/public/api/_content/query/RoutJwnTpy.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"},{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Smd1FvtVfQ.1677768033312.json b/docs/.output/public/api/_content/query/Smd1FvtVfQ.1677768033312.json deleted file mode 100644 index 97af2ad3..00000000 --- a/docs/.output/public/api/_content/query/Smd1FvtVfQ.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"},{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Su48x97rZI.1677768033312.json b/docs/.output/public/api/_content/query/Su48x97rZI.1677768033312.json deleted file mode 100644 index 748f4941..00000000 --- a/docs/.output/public/api/_content/query/Su48x97rZI.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/WXBaqghg8k.1677768033312.json b/docs/.output/public/api/_content/query/WXBaqghg8k.1677768033312.json deleted file mode 100644 index b923dc05..00000000 --- a/docs/.output/public/api/_content/query/WXBaqghg8k.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"},{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/WoZUvC9rqb.1677768033312.json b/docs/.output/public/api/_content/query/WoZUvC9rqb.1677768033312.json deleted file mode 100644 index b06bc62b..00000000 --- a/docs/.output/public/api/_content/query/WoZUvC9rqb.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/mobile/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:5.mobile:1.getting-started:2.introduction.md","_source":"content","_file":"5.mobile/1.getting-started/2.introduction.md","_extension":"md"},{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/XTOw4mgR3f.1677768033312.json b/docs/.output/public/api/_content/query/XTOw4mgR3f.1677768033312.json deleted file mode 100644 index b3caa436..00000000 --- a/docs/.output/public/api/_content/query/XTOw4mgR3f.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/XVPoId9nap.1677768033312.json b/docs/.output/public/api/_content/query/XVPoId9nap.1677768033312.json deleted file mode 100644 index 3e6c54a1..00000000 --- a/docs/.output/public/api/_content/query/XVPoId9nap.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/YKOPtCYulT.1677768033312.json b/docs/.output/public/api/_content/query/YKOPtCYulT.1677768033312.json deleted file mode 100644 index 8517817b..00000000 --- a/docs/.output/public/api/_content/query/YKOPtCYulT.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"},{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/a1Dgl9wshN.1677768033312.json b/docs/.output/public/api/_content/query/a1Dgl9wshN.1677768033312.json deleted file mode 100644 index 21a78c17..00000000 --- a/docs/.output/public/api/_content/query/a1Dgl9wshN.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/bjzyL7C69z.1677768033312.json b/docs/.output/public/api/_content/query/bjzyL7C69z.1677768033312.json deleted file mode 100644 index e16f7dda..00000000 --- a/docs/.output/public/api/_content/query/bjzyL7C69z.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/brX4CwCJoQ.1677768033312.json b/docs/.output/public/api/_content/query/brX4CwCJoQ.1678414054441.json similarity index 100% rename from docs/.output/public/api/_content/query/brX4CwCJoQ.1677768033312.json rename to docs/.output/public/api/_content/query/brX4CwCJoQ.1678414054441.json diff --git a/docs/.output/public/api/_content/query/cItbEHp6hX.1677768033312.json b/docs/.output/public/api/_content/query/cItbEHp6hX.1677768033312.json deleted file mode 100644 index 4efdda53..00000000 --- a/docs/.output/public/api/_content/query/cItbEHp6hX.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/eO9hzu7vu1.1677768033312.json b/docs/.output/public/api/_content/query/eO9hzu7vu1.1677768033312.json deleted file mode 100644 index 01ecbd7d..00000000 --- a/docs/.output/public/api/_content/query/eO9hzu7vu1.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/eytgjSbEVl.1677768033312.json b/docs/.output/public/api/_content/query/eytgjSbEVl.1677768033312.json deleted file mode 100644 index c2dbd428..00000000 --- a/docs/.output/public/api/_content/query/eytgjSbEVl.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"},{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/fis0WzoDt0.1677768033312.json b/docs/.output/public/api/_content/query/fis0WzoDt0.1677768033312.json deleted file mode 100644 index 5921c12a..00000000 --- a/docs/.output/public/api/_content/query/fis0WzoDt0.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"},{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/i1ZxWCIkJR.1677768033312.json b/docs/.output/public/api/_content/query/i1ZxWCIkJR.1677768033312.json deleted file mode 100644 index 2c05c62b..00000000 --- a/docs/.output/public/api/_content/query/i1ZxWCIkJR.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/mobile/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:1.getting-started:2.introduction.md","_source":"content","_file":"5.mobile/1.getting-started/2.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/jWALMeA07z.1677768033312.json b/docs/.output/public/api/_content/query/jWALMeA07z.1677768033312.json deleted file mode 100644 index 788881bf..00000000 --- a/docs/.output/public/api/_content/query/jWALMeA07z.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"},{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/kBgJSZjudv.1677768033312.json b/docs/.output/public/api/_content/query/kBgJSZjudv.1677768033312.json deleted file mode 100644 index 42654af8..00000000 --- a/docs/.output/public/api/_content/query/kBgJSZjudv.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/kP0lcPGw3r.1677768033312.json b/docs/.output/public/api/_content/query/kP0lcPGw3r.1677768033312.json deleted file mode 100644 index 0fba5c1b..00000000 --- a/docs/.output/public/api/_content/query/kP0lcPGw3r.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue","rel":["nofollow"]},"children":[{"type":"text","value":"RDVue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services."}]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-38d936"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"vue:"}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global installation:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install vue\nfrontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-38d936"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"vue"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-38d936"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-f73c94"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-923ce8"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-2d107e"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information\n\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can confirm the successful installation of RDvue in three simple steps:"}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:create-project "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generated folders are named in kebab-case."}]},{"type":"element","tag":"h3","props":{"id":"step-2-install-project-dependencies"},"children":[{"type":"text","value":"Step 2: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \nnpm install\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"cd \nnpm install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-3-serve-project"},"children":[{"type":"text","value":"Step 3: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npm run serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-page"},"children":[{"type":"text","value":"Generating a Page"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:add:page \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:add:page "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/ ."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:generate component \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:generate component "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-2d107e{color:#CF222E}\n.ct-f73c94{color:#0A3069}\n.ct-923ce8{color:#24292F}\n.ct-38d936{color:#953800}\n.dark .ct-38d936{color:#FFA657}\n.dark .ct-923ce8{color:#C9D1D9}\n.dark .ct-f73c94{color:#A5D6FF}\n.dark .ct-2d107e{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":2,"text":"Usage"},{"id":"options","depth":2,"text":"Options"},{"id":"validate-installation","depth":2,"text":"Validate Installation","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-install-project-dependencies","depth":3,"text":"Step 2: Install project dependencies"},{"id":"step-3-serve-project","depth":3,"text":"Step 3: Serve project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-page","depth":3,"text":"Generating a Page"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/khs8gA1FwT.1677768033312.json b/docs/.output/public/api/_content/query/khs8gA1FwT.1677768033312.json deleted file mode 100644 index 66587f03..00000000 --- a/docs/.output/public/api/_content/query/khs8gA1FwT.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[null,{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ozdJ1wICj3.1677768033312.json b/docs/.output/public/api/_content/query/ozdJ1wICj3.1677768033312.json deleted file mode 100644 index 78549ef6..00000000 --- a/docs/.output/public/api/_content/query/ozdJ1wICj3.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/qGEjvCtHGf.1677768033312.json b/docs/.output/public/api/_content/query/qGEjvCtHGf.1677768033312.json deleted file mode 100644 index de0b9523..00000000 --- a/docs/.output/public/api/_content/query/qGEjvCtHGf.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/s6oaJBqQEn.1677768033312.json b/docs/.output/public/api/_content/query/s6oaJBqQEn.1677768033312.json deleted file mode 100644 index 45171b79..00000000 --- a/docs/.output/public/api/_content/query/s6oaJBqQEn.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/tEt344hQrs.1677768033312.json b/docs/.output/public/api/_content/query/tEt344hQrs.1677768033312.json deleted file mode 100644 index c0ffed72..00000000 --- a/docs/.output/public/api/_content/query/tEt344hQrs.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"},null] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/tuGsv8hqtc.1677768033312.json b/docs/.output/public/api/_content/query/tuGsv8hqtc.1677768033312.json deleted file mode 100644 index ca75d4c8..00000000 --- a/docs/.output/public/api/_content/query/tuGsv8hqtc.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\nimport { SitemapStream, streamToPromise } from 'sitemap'\n\nexport default defineEventHandler(async (event) => {\n // Fetch all documents\n const docs = await serverQueryContent(event).find()\n const sitemap = new SitemapStream({\n hostname: 'https://example.com'\n })\n\n for (const doc of docs) {\n sitemap.write({\n url: doc._path,\n changefreq: 'monthly'\n })\n }\n sitemap.end()\n\n return streamToPromise(sitemap)\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5d8bef"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-dfa0b0"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\n // ...\n nitro: {\n prerender: {\n routes: ['/sitemap.xml']\n }\n }\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8d792c"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7b736c"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5d8bef"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-4e09e8"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e4e3aa"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a5892a"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-5d8bef{color:#6E7781}\n.ct-7b736c{color:#8250DF}\n.ct-8d792c{color:#CF222E}\n.ct-dfa0b0{color:#0550AE}\n.ct-4e09e8{color:#0A3069}\n.ct-e4e3aa{color:#24292F}\n.ct-a5892a{color:#953800}\n.dark .ct-a5892a{color:#FFA657}\n.dark .ct-e4e3aa{color:#C9D1D9}\n.dark .ct-4e09e8{color:#A5D6FF}\n.dark .ct-dfa0b0{color:#79C0FF}\n.dark .ct-8d792c{color:#FF7B72}\n.dark .ct-7b736c{color:#D2A8FF}\n.dark .ct-5d8bef{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/urUfuwuVJk.1677768033312.json b/docs/.output/public/api/_content/query/urUfuwuVJk.1677768033312.json deleted file mode 100644 index cc2b001a..00000000 --- a/docs/.output/public/api/_content/query/urUfuwuVJk.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"navigation"},"children":[{"type":"text","value":"Navigation"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/v3ScIppUqo.1677768033312.json b/docs/.output/public/api/_content/query/v3ScIppUqo.1677768033312.json deleted file mode 100644 index 449ada35..00000000 --- a/docs/.output/public/api/_content/query/v3ScIppUqo.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[null,null] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/wMeaP8hHUN.1677768033312.json b/docs/.output/public/api/_content/query/wMeaP8hHUN.1677768033312.json deleted file mode 100644 index 5d99c83b..00000000 --- a/docs/.output/public/api/_content/query/wMeaP8hHUN.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"},{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/wQeP3PjQcK.1677768033312.json b/docs/.output/public/api/_content/query/wQeP3PjQcK.1677768033312.json deleted file mode 100644 index 23e51df0..00000000 --- a/docs/.output/public/api/_content/query/wQeP3PjQcK.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/wscAfndYyi.1677768033312.json b/docs/.output/public/api/_content/query/wscAfndYyi.1677768033312.json deleted file mode 100644 index 921c7d6a..00000000 --- a/docs/.output/public/api/_content/query/wscAfndYyi.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/xWeY3NfYtX.1677768033312.json b/docs/.output/public/api/_content/query/xWeY3NfYtX.1677768033312.json deleted file mode 100644 index 449ada35..00000000 --- a/docs/.output/public/api/_content/query/xWeY3NfYtX.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -[null,null] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/RMnrvBawPn.1677768033312.json b/docs/.output/public/api/_content/query/xWeY3NfYtX.1678414054441.json similarity index 100% rename from docs/.output/public/api/_content/query/RMnrvBawPn.1677768033312.json rename to docs/.output/public/api/_content/query/xWeY3NfYtX.1678414054441.json diff --git a/docs/.output/public/api/_content/query/xYb2WcNJtQ.1677768033312.json b/docs/.output/public/api/_content/query/xYb2WcNJtQ.1677768033312.json deleted file mode 100644 index b982c61a..00000000 --- a/docs/.output/public/api/_content/query/xYb2WcNJtQ.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/xhTH8MZ8W5.1677768033312.json b/docs/.output/public/api/_content/query/xhTH8MZ8W5.1677768033312.json deleted file mode 100644 index d1907677..00000000 --- a/docs/.output/public/api/_content/query/xhTH8MZ8W5.1677768033312.json +++ /dev/null @@ -1 +0,0 @@ -{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"README."}]}]},{"type":"element","tag":"h2","props":{"id":"how-to-use-rdvue-cli"},"children":[{"type":"text","value":"How to use rdvue-cli"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commands will follow the basic structure:"}]},{"type":"element","tag":"code","props":{"code":"npx rdvue \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npx rdvue "}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue create-project "}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue add: \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue add: "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:plugin:\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:plugin:"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#localization"},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:upgrade \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:upgrade "}]}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"how-to-use-rdvue-cli","depth":2,"text":"How to use rdvue-cli"},{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_github/contributors b/docs/.output/public/api/_github/contributors index 928287df..f3b6626c 100644 --- a/docs/.output/public/api/_github/contributors +++ b/docs/.output/public/api/_github/contributors @@ -1 +1 @@ -[{"avatar_url":"https://avatars.githubusercontent.com/u/65830136?v=4","login":"JantaeLeckie"},{"avatar_url":"https://avatars.githubusercontent.com/u/48893563?v=4","login":"javeke"},{"avatar_url":"https://avatars.githubusercontent.com/u/11306782?v=4","login":"forevergareth"},{"avatar_url":"https://avatars.githubusercontent.com/u/17814665?v=4","login":"Davane"},{"avatar_url":"https://avatars.githubusercontent.com/u/32402220?v=4","login":"NathanDowner"}] \ No newline at end of file +[{"avatar_url":"https://avatars.githubusercontent.com/u/11306782?v=4","login":"forevergareth"},{"avatar_url":"https://avatars.githubusercontent.com/u/17814665?v=4","login":"Davane"},{"avatar_url":"https://avatars.githubusercontent.com/u/65830136?v=4","login":"JantaeLeckie"},{"avatar_url":"https://avatars.githubusercontent.com/u/48893563?v=4","login":"javeke"},{"avatar_url":"https://avatars.githubusercontent.com/u/32402220?v=4","login":"NathanDowner"}] \ No newline at end of file diff --git a/docs/.output/public/design/getting-started/introduction/_payload.js b/docs/.output/public/design/getting-started/introduction/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/design/getting-started/introduction/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/design/getting-started/introduction/index.html b/docs/.output/public/design/getting-started/introduction/index.html deleted file mode 100644 index f0d0328c..00000000 --- a/docs/.output/public/design/getting-started/introduction/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Coming Soon · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/development/_payload.js b/docs/.output/public/frontier/cli/development/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/cli/development/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/development/index.html b/docs/.output/public/frontier/cli/development/index.html deleted file mode 100644 index 5624d1b7..00000000 --- a/docs/.output/public/frontier/cli/development/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Development · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/usage/_payload.js b/docs/.output/public/frontier/cli/usage/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/cli/usage/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/usage/index.html b/docs/.output/public/frontier/cli/usage/index.html deleted file mode 100644 index 65eb5986..00000000 --- a/docs/.output/public/frontier/cli/usage/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Usage · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/development/_payload.js b/docs/.output/public/frontier/installation/development/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/installation/development/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/development/index.html b/docs/.output/public/frontier/installation/development/index.html deleted file mode 100644 index 6d88bf3e..00000000 --- a/docs/.output/public/frontier/installation/development/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Development · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/general/_payload.js b/docs/.output/public/frontier/installation/general/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/installation/general/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/general/index.html b/docs/.output/public/frontier/installation/general/index.html deleted file mode 100644 index f2269729..00000000 --- a/docs/.output/public/frontier/installation/general/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -General Use · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/navigation/_payload.js b/docs/.output/public/frontier/installation/navigation/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/installation/navigation/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/navigation/index.html b/docs/.output/public/frontier/installation/navigation/index.html deleted file mode 100644 index 90f22195..00000000 --- a/docs/.output/public/frontier/installation/navigation/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Navigation · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/_payload.js b/docs/.output/public/frontier/introduction/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/introduction/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/content-directory/_payload.js b/docs/.output/public/frontier/introduction/content-directory/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/introduction/content-directory/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/content-directory/index.html b/docs/.output/public/frontier/introduction/content-directory/index.html deleted file mode 100644 index 11c19d66..00000000 --- a/docs/.output/public/frontier/introduction/content-directory/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Content directory · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/index.html b/docs/.output/public/frontier/introduction/index.html deleted file mode 100644 index 47df9f06..00000000 --- a/docs/.output/public/frontier/introduction/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Frontier · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/philosophy/_payload.js b/docs/.output/public/frontier/introduction/philosophy/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/introduction/philosophy/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/philosophy/index.html b/docs/.output/public/frontier/introduction/philosophy/index.html deleted file mode 100644 index be6a1406..00000000 --- a/docs/.output/public/frontier/introduction/philosophy/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Philosophy · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/whats-frontier/_payload.js b/docs/.output/public/frontier/introduction/whats-frontier/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/introduction/whats-frontier/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/whats-frontier/index.html b/docs/.output/public/frontier/introduction/whats-frontier/index.html deleted file mode 100644 index 8294c28e..00000000 --- a/docs/.output/public/frontier/introduction/whats-frontier/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -What is Frontier? · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/standard-library/_payload.js b/docs/.output/public/frontier/libraries/standard-library/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/libraries/standard-library/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/standard-library/index.html b/docs/.output/public/frontier/libraries/standard-library/index.html deleted file mode 100644 index 0d0a0d7e..00000000 --- a/docs/.output/public/frontier/libraries/standard-library/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Standard Library · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/typekit/_payload.js b/docs/.output/public/frontier/libraries/typekit/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/libraries/typekit/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/typekit/index.html b/docs/.output/public/frontier/libraries/typekit/index.html deleted file mode 100644 index 18374754..00000000 --- a/docs/.output/public/frontier/libraries/typekit/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -TypeKit · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/frontend/_payload.js b/docs/.output/public/frontier/plugins/frontend/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/plugins/frontend/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/frontend/index.html b/docs/.output/public/frontier/plugins/frontend/index.html deleted file mode 100644 index 59b8adc2..00000000 --- a/docs/.output/public/frontier/plugins/frontend/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Frontend · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/mobile/_payload.js b/docs/.output/public/frontier/plugins/mobile/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/plugins/mobile/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/mobile/index.html b/docs/.output/public/frontier/plugins/mobile/index.html deleted file mode 100644 index 97ed8cd1..00000000 --- a/docs/.output/public/frontier/plugins/mobile/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Mobile · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/quality/_payload.js b/docs/.output/public/frontier/plugins/quality/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/plugins/quality/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/quality/index.html b/docs/.output/public/frontier/plugins/quality/index.html deleted file mode 100644 index bf9891c0..00000000 --- a/docs/.output/public/frontier/plugins/quality/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Quality · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/dotnet/_payload.js b/docs/.output/public/frontier/templates/dotnet/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/templates/dotnet/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/dotnet/index.html b/docs/.output/public/frontier/templates/dotnet/index.html deleted file mode 100644 index 4d082a55..00000000 --- a/docs/.output/public/frontier/templates/dotnet/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - Backend - Dot Net · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/nuxt/_payload.js b/docs/.output/public/frontier/templates/nuxt/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/templates/nuxt/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/nuxt/index.html b/docs/.output/public/frontier/templates/nuxt/index.html deleted file mode 100644 index 5b74efa3..00000000 --- a/docs/.output/public/frontier/templates/nuxt/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - Frontend - Nuxtjs · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/typescript/_payload.js b/docs/.output/public/frontier/templates/typescript/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/frontier/templates/typescript/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/typescript/index.html b/docs/.output/public/frontier/templates/typescript/index.html deleted file mode 100644 index fc1cda87..00000000 --- a/docs/.output/public/frontier/templates/typescript/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - - Backend - Typescript · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/iac/getting-started/introduction/_payload.js b/docs/.output/public/iac/getting-started/introduction/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/iac/getting-started/introduction/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/iac/getting-started/introduction/index.html b/docs/.output/public/iac/getting-started/introduction/index.html deleted file mode 100644 index ef901d72..00000000 --- a/docs/.output/public/iac/getting-started/introduction/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Coming Soon · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/index.html b/docs/.output/public/index.html index 6e5dfce9..db9e2629 100644 --- a/docs/.output/public/index.html +++ b/docs/.output/public/index.html @@ -8,11 +8,11 @@ - -

Discover the all new

Frontier - by Realdecoy

A full service toolset for building web and mobile software products. With templates and libraries, Frontier delivers a designed development experience to 10x your software development.

Bash
$npm i -g @rdfrontier/cli
Click to copy

Powerful Features

CLI

Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre.

Standard Library

Leverage battle-hardened code from the standard library.

TypeKit

Use Common type definition and data structures from the typekit.

RDVue

A beautifully structured vue template and cli for authoring frontend applications.

Spectre

Test your applications to the moon with the Spectre testing suite.

Mobile

Build Mobile applications with ease with structures React Native foundation.

+

Discover the all new

Frontier - by Realdecoy

A full service toolset for building web and mobile software products. With templates and libraries, Frontier delivers a designed development experience to 10x your software development.

Bash
$npm i -g @rdfrontier/cli
Click to copy

Powerful Features

CLI

Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre.

Standard Library

Leverage battle-hardened code from the standard library.

TypeKit

Use Common type definition and data structures from the typekit.

RDVue

A beautifully structured vue template and cli for authoring frontend applications.

Spectre

Test your applications to the moon with the Spectre testing suite.

Mobile

Build Mobile applications with ease with structures React Native foundation.

\ No newline at end of file diff --git a/docs/.output/public/mobile/getting-started/introduction/_payload.js b/docs/.output/public/mobile/getting-started/introduction/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/mobile/getting-started/introduction/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/getting-started/introduction/index.html b/docs/.output/public/mobile/getting-started/introduction/index.html deleted file mode 100644 index 37885678..00000000 --- a/docs/.output/public/mobile/getting-started/introduction/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Coming Soon · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/public/rdvue/cli-commands/usage/_payload.js b/docs/.output/public/rdvue/cli-commands/usage/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/cli-commands/usage/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/cli-commands/usage/index.html b/docs/.output/public/rdvue/cli-commands/usage/index.html deleted file mode 100644 index 69186d0b..00000000 --- a/docs/.output/public/rdvue/cli-commands/usage/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -CLI Commands · Frontier - - - - - - - -

CLI Commands


The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.

How to use rdvue-cli

All commands will follow the basic structure:

npx rdvue <action>

CLI Options

Run the cli option below for a list of commands and options

OptionDescription
--h, --helpDisplays the help menu.

CLI Commands

RDVue includes the following sub-commands:

CommandDescription
create-projectScaffold a new rdvue project
addAdd a feature to a project
pluginInject a utility to extend project functionality
upgradeSpecify the rdvue template version for a project

create-project

create-project will scaffold a new project for you, using one of the presets selected from its interactive shell.

Usage

$ npx rdvue create-project <project name>

add

Adds a feature to the project.

Usage

$ npx rdvue add:<feature> <name>

Features


plugin

Injects a utility to extend the project's functionality

Usage

$ frontier vue:plugin:<library>

Libraries


upgrade

Attempts to upgrade the project's rdvue template to the specified version

Usage

$ frontier vue:upgrade <version>
- \ No newline at end of file diff --git a/docs/.output/public/rdvue/features/features/_payload.js b/docs/.output/public/rdvue/features/features/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/features/features/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/features/features/index.html b/docs/.output/public/rdvue/features/features/index.html deleted file mode 100644 index 2883a351..00000000 --- a/docs/.output/public/rdvue/features/features/index.html +++ /dev/null @@ -1,35 +0,0 @@ - - - -Rdvue Features · Frontier - - - - - - - -

Rdvue Features

This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.

Reading through this section will get you comfortable with the CLI.

An in depth look at the command used in this section, along with all available commands, can be found in CLI Commands.

RDvue provides an elegant way for generating features.

Services

Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:

  • only interact with a single domain
  • only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation.

Technical

  • While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality.
  • Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage).
  • Each service has access to the following protected memebers:
MemberDescription
api (field)
type: Axios
Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain.
onRequest(request: AxiosRequestConfig) => voidInvoked before requests are sent to the web API endpoint.
onResponse(response: AxiosResponse) => voidInvoked before responses are handled by a Service’s methods.
onError(data: any)Invoked for errors during request or response.

Pages

A Page is a conceptual grouping for Vue Components used in routing. Pages are not to be imported by other Pages, Components or Layouts.

A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.

?> A Page needs to be added to the Router before it can be previewed within a web browser.

Technical

Each generated Page is contained within it’s own sub-folder within the src/pages directory. The directory contains the following files which each carry out a specific role in developing a Page:

  • [page].vue: This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation.
  • [page].ts: This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements.
  • [page].scss: This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file.

?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory.

  • [page].spec.ts: This contains the unit-level tests for the page. Read the testing section for more details about writing tests.

Routing

In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings.

Below is an example of a Route definition for a sample Login page:

{
-  path: '/login',
-  name: 'login',
-  meta: { layout: 'default' },
-  component: () => import(/* webpackChunkName: "login" */ '@/pages/login'),
-},

The path property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**.

The name field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency.

The meta property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a Layout to a page.

The component property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the import() function.

?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload.

The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page.

!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for webpackChunkName is unique for each route.

Components

A Component is a conceptual grouping for Vue components which are imported by Pages and other Components.

Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide.

Technical

A Component contains all the files present for Pages with the addition of:

  • [component].story.ts: This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool.

Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:

  • @StoryComponent: decorates the Component’s class, providing the same functionality as @Component (used in pages) with the addition of:
description
type: string; default: undefined
Describe the component’s overall purpose.
module
type: string; default: undefined
Text stating the module used in the import statement (eg. “@/components/foo”)
playground (optional)
type: boolean, default: true
Toggles the Playground feature for this component within the Storybook preview.
api (optional)
type: boolean, default: true
Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool.
slots (optional)
type: {[key: string]: string}, default: undefined
Describe the slots available within the component. Eg.

<br>slots: { <br> header: ‘The header component goes here’,<br> ... <br>}<br>
  • @StoryProp: decorates the Component’s Props, providing the same functionality as @Prop with the addition of:
description
type: string; default: undefined
Describe the prop's overall purpose.
values (optional)
[array; default: undefined
An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type.
  • @StoryEvent: decorates the Component’s Events, providing the same functionality as @Event with the addition of:
description
type: string; default: undefined
Describe the event’s overall purpose.

Layouts

A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same.

?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page.

Technical

To get a Page to use a Layout, edit it’s definition in the router.ts file and add the following option:

meta: {
-  layout: '<layout-name>',
-}

For example:

 routes: [
-    {
-      path: '/',
-      name: 'home',
-      component: [...],
-      meta: {
-        layout: 'two-column',
-      },
-    },
-  ]

Above, the Layout refers to a component within the src/layouts directory called two-column.

A Layout must contain a router-view to display the Page within the area designated for it’s content.

Each generated Layout is contained within it’s own sub-folder within the src/layouts directory. The directory contains the following files which each carry out a specific role in developing a Layout:

  • [layout].vue: This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation.
  • [layout].ts: This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements.
  • [layout].scss: This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file.

?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory.

  • [layout].spec.ts: This contains the unit-level tests for the Layout. Read the testing section for more details about writing tests.

Stores

A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:

  • Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them.
  • Stores enforce a strong process-control for mutating values. Every change within a store must go through a specially designed method, called a Mutation, in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the Vue DevTools).

An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them.

Data within a Store can be managed using 3 intrinsic functionalities of every Store:

  • Getters: Retrieve a value within the store.
  • Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations.
  • Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible.

Technical

A Store consists of a standard Class, with Decorators providing the special functionality:

  • The @Module Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store.
  • The @Action Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. @MultiParamAction is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled.

?>If multiple parameters are used in a base @Action, the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript.

  • The @MultiParamAction Decorator is the preferred alternative to @Action because it allows methods to receive multiple parameters.
  • The @Mutation Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods.

!>Attempting to modify a field outside of a method marked with @Mutation will result in a runtime error with the Vuex framework.

Localization

Localization refers to the adaptation of an application or website content to meet the language, cultural and other requirements of a specific target market (a locale). This feature has two parts that is required to work:

  1. A JSON file named as the respective i18n language codes, stored in the locales folder
  2. Function call with respective key

Based of the current locale, the matching JSON file would be searched for the matching key/s.

Technical

Examples:

  1. A JSON file named “en.json” with structure as follows:
{
-  "message": "hello i18n!!"
-}

2. Function called within document as follows:

<div>
-  <p>{{ $t("message") }}</p>
-</div>

The call above would print the value of the message key if the locale is set to English (en).

!>If no matching key was found, the key would be returned instead. In this case message

Bundle Analysis

Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time.

Bundle Analyzer allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles.

RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin

To generate build files for bundle analysis we run the following command

$ npm run build

This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:

Webpack Bundle Analyzer is started at http://127.0.0.1:8888

Expected terminal output:

Expected browser output Treemap:

This module will help you:

  1. Realize what's really inside your bundle
  2. Find out what modules make up the most of its size
  3. Find modules that got there by mistake
  4. Optimize it!

And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!

?>For additional plugin options and configurations please visit: https://www.npmjs.com/package/webpack-bundle-analyzer

- \ No newline at end of file diff --git a/docs/.output/public/rdvue/getting-started/overview/_payload.js b/docs/.output/public/rdvue/getting-started/overview/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/getting-started/overview/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/getting-started/overview/index.html b/docs/.output/public/rdvue/getting-started/overview/index.html deleted file mode 100644 index db8cc2d3..00000000 --- a/docs/.output/public/rdvue/getting-started/overview/index.html +++ /dev/null @@ -1,38 +0,0 @@ - - - -Getting Started · Frontier - - - - - - - -

Getting Started

RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting -a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models, -and a data-layer design promoting unified consumption through Stores and Services.

Usage

frontier vue:<action>

Global installation:

frontier plugins:install vuefrontier vue <action>

Options

frontier vue:<action>:<feature>
-
-Actions:
-  create-project   -  Scaffold a new rdvue project
-  add              -  Add a feature to a project
-  plugin           -  Inject a utility to extend project functionality
-  upgrade          -  Specify the rdvue template version for a project
-    
-Options:
-  --help | -h      -  Show help information

Validate Installation

We can confirm the successful installation of RDvue in three simple steps:

Step 1: Create a project

frontier vue:create-project <project-name>

Replace <project-name> with the actual name of your project.

Generated folders are named in kebab-case.

Step 2: Install project dependencies

cd <project-name>
-npm install

Step 3: Serve project

npm run serve

The project will be served at http://localhost:8080/ by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation.

Next Steps

Generating a Page

frontier vue:add:page <page-name>

Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/<page-name> .

Generating a Component

frontier vue:generate component <component-name>
- \ No newline at end of file diff --git a/docs/.output/public/rdvue/scaffilding/sitemap/_payload.js b/docs/.output/public/rdvue/scaffilding/sitemap/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/scaffilding/sitemap/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/scaffilding/sitemap/index.html b/docs/.output/public/rdvue/scaffilding/sitemap/index.html deleted file mode 100644 index c635064f..00000000 --- a/docs/.output/public/rdvue/scaffilding/sitemap/index.html +++ /dev/null @@ -1,28 +0,0 @@ - - - -Sitemap · Frontier - - - - - - - -

Sitemap

A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.

This can be created by utilising the sitemap library, which can be installed as follows:

pnpm
pnpm add --save-dev sitemap
yarn
yarn add --dev sitemap
npm
npm install --save-dev sitemap

Server Route

We will be utilising the server routes available within Nuxt, and to do so you'll need to create the server/ directory within your website's root directly.

Once this is done, create a routes/ directory inside this, and add a sitemap.xml.ts file, this will translate to /sitemap.xml.

You'll need to add the following:

server/routes/sitemap.xml.ts
import { serverQueryContent } from '#content/server'import { SitemapStream, streamToPromise } from 'sitemap'export default defineEventHandler(async (event) => {  // Fetch all documents  const docs = await serverQueryContent(event).find()  const sitemap = new SitemapStream({    hostname: 'https://example.com'  })  for (const doc of docs) {    sitemap.write({      url: doc._path,      changefreq: 'monthly'    })  }  sitemap.end()  return streamToPromise(sitemap)})

Now, once users go to https://example.com/sitemap.xml, you'll find the generated XML file with all your pages.

When using nuxt generate, you may want to pre-render the sitemap since the server route won't be able to run on a static hosting.

You can do this using the nitro.prerender option in your nuxt.config:

nuxt.config.ts
export default defineNuxtConfig({  // ...  nitro: {    prerender: {      routes: ['/sitemap.xml']    }  }})
- \ No newline at end of file diff --git a/docs/.output/public/rdvue/template-schema/schema/_payload.js b/docs/.output/public/rdvue/template-schema/schema/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/template-schema/schema/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/template-schema/schema/index.html b/docs/.output/public/rdvue/template-schema/schema/index.html deleted file mode 100644 index c18ababe..00000000 --- a/docs/.output/public/rdvue/template-schema/schema/index.html +++ /dev/null @@ -1,54 +0,0 @@ - - - -Template Schema · Frontier - - - - - - - -

Template Schema


This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.

template.json

The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json.

The template.json file includes the following properties:

version

A number representing the current version of the file.

{  "version": 1}

sourceDirectory

Source directory for module files that will be copied into a project. Normally points to the base folder of a module.

{  "sourceDirectory": "./",}

features

The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private.

The name property holds the name of a feature, this the name that you must use when running a command on any of these features.

The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user.

  "features": [      {        "name": "config",        "private": true      },      {        "name": "store",        "private": true      },      {        "name": "component",        "private": false      },      {        "name": "service",        "private": false      },      {        "name": "model",        "private": false      },      {        "name": "page",        "private": false      },      {        "name": "sm",        "private": false      }  ]

plugins

The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage.

"plugins": [  "auth",  "localization",  "storybook"]

project

The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin.

The features property/key is an array holding the name of all features which will be automatically generated at project creation.

The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation.

"project": {    "features": [      "config",      "store"    ],    "plugins": [      "storybook"    ]  }

groups

The groups section is used to group plugins that offer similar functionalities.

For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins.

Each group is represented as an object. Each object has the following properties:

  • name - the name of the group
  • isMultipleChoice - boolean indicating if more than one option can be selected from this group
  • plugins - a list of the names of the plugins that belong to the group
  • question - the question prompted to a user when they run the command to add a plugin from a group

Running rdvue add-group <group_name> would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from.

"project": {    "features": [      "config",      "store"    ],    "plugins": [      "storybook"    ]  }

presets

presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:

  • name - the name of the preset
  • description - description of the preset. Conventionally used to list out the plugins that comes with the preset
  • plugins- a list of the plugins which the preset will install
 "presets": [    {      "name""Sample Preset 1",      "description""Installs storybook, and localization",      "plugins": [        "storybook",        "localization"      ]    }  ]

customPreset

A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:

  • name - the name displayed to the user
  • groups - a list containing the names of the Feature Groups which the user will be able to choose from
 "customPreset": {    "groups": [      "authentication",      "locale"    ],    "name""custom"  }

Example template.json file

Here is a sample of what a complete template.json file would look like.

{  "version"1,  "sourceDirectory""./",  "features": [    {      "name""config",      "private"true    },    {      "name""store",      "private"true    },    {      "name""component",      "private"false    },    {      "name""service",      "private"false    },    {      "name""model",      "private"false    },    {      "name""page",      "private"false    },    {      "name""sm",      "private"false    }  ],  "plugins": [    "auth",    "localization",    "storybook"  ],  "project": {    "features": [      "config",      "store"    ],    "plugins": [      "storybook"    ]  },  "groups": [    {      "name""authentication",      "isMultipleChoice"false,      "plugins": [        "auth"      ],      "question""Which Authentication Library would you like to install?"    },    {      "name""locale",      "isMultipleChoice"false,      "plugins": [        "localization"      ],      "question""Which Localization Library would you like to install?"    }  ],  "presets": [    {      "name""Sample Preset 1",      "description""Installs storybook, and localization",      "plugins": [        "storybook",        "localization"      ]    }  ],  "customPreset": {    "groups": [      "authentication",      "locale"    ],    "name""custom"  }}

Template Module


Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file.

A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:

version

The current version of the file.

"version": 1

name

Name of the module (e.g component)

  "name": "component"

description

A description of the module. This is also displayed inside the CLI help menu for each Module.

"description": "Generate a basic components needed for basic authenticaton."

sourceDirectory

Source directory for module files that get copied into a project. Normally points to the base folder of a module.

  "sourceDirectory": "./"

installDirectory

the location that the module should be generated in the Vue project.

files

a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:

  • a string (if the file should be copied as-is)
"files": [    {      "source": "store/auth.ts",      "target": "store/auth.ts"    },    {      "source": "services/auth.ts",      "target": "services/auth.ts"    },    {      "source": "model/user.ts",      "target": "model/user.ts"    },    {      "source": "pages/register/index.ts",      "target": "pages/auth/register/index.ts"    },    {      "source": "pages/register/register.ts",      "target": "pages/auth/register/register.ts"    },    {      "source": "pages/register/register.scss",      "target": "pages/auth/register/register.scss"    },    {      "source": "pages/register/register.vue",      "target": "pages/auth/register/register.vue"    },    {      "source": "pages/login/index.ts",      "target": "pages/auth/login/index.ts"    },    {      "source": "pages/login/login.ts",      "target": "pages/auth/login/login.ts"    },    {      "source": "pages/login/login.scss",      "target": "pages/auth/login/login.scss"    },    {      "source": "pages/login/login.vue",      "target": "pages/auth/login/login.vue"    },    {      "source": "pages/forget-password/index.ts",      "target": "pages/auth/forget-password/index.ts"    },    {      "source": "pages/forget-password/forget-password.ts",      "target": "pages/auth/forget-password/forget-password.ts"    },    {      "source": "pages/forget-password/forget-password.scss",      "target": "pages/auth/forget-password/forget-password.scss"    },    {      "source": "pages/forget-password/forget-password.vue",      "target": "pages/auth/forget-password/forget-password.vue"    }  ]
  • object with required properties:
    • source and target (for change of name if necessary)
    • and an optional content list of objects for finding and replacing content within the file -
    "files": [  {    "source": "index.ts",    "target": "index.ts",    "content": [      {        "matchRegex": "__COMPONENT__KEBAB__",        "replace": "${componentNameKebab}"      }    ]  },  {    "source": "component.scss",    "target": "${componentNameKebab}.scss",    "content": [      {        "matchRegex": "__COMPONENT__",        "replace": "${componentNameKebab}"      }    ]  },  {    "source": "component.ts",    "target": "${componentNameKebab}.ts",    "content": [      {        "matchRegex": "__COMPONENT__KEBAB__",        "replace": "${componentNameKebab}"      },      {        "matchRegex": "__COMPONENT__",        "replace": "${componentName}"      }    ]  },  {    "source": "component.spec.js",    "target": "${componentNameKebab}.spec.js",    "content": [      {        "matchRegex": "__COMPONENT__KEBAB__",        "replace": "${componentNameKebab}"      },      {        "matchRegex": "__COMPONENT__",        "replace": "${componentName}"      }    ]  },  {    "source": "component.vue",    "target": "${componentNameKebab}.vue",    "content": [      {        "matchRegex": "__COMPONENT__",        "replace": "${componentNameKebab}"      }    ]  }]

-  _Note: files section can be a combination of both types mentioned above._
-
-### packages
-This section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.
-
-The dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.
-
-```json
- "packages": {
-    "dependencies": ["vue-i18n"],
-    "devDependencies": ["vue-cli-plugin-i18n"]
-  }

There’s currently no support for specifying package versions.

routes

You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it.

The routes section of the manifest.json allows you to define an array of routes. Here’s an example:

  "routes": [
-    {
-      "path": "'/buefy-sample'",
-      "name": "'buefy-sample'",
-      "component": "`require('@/pages/buefy-sample/buefy-sample.vue').default`"
-    }
-  ]
  • path: relative URL where module component (.vue file) can be viewed
  • name: name of the route
  • component: the sample component created as a part of your module

Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:

export default [{  path: '/buefy-sample',  name: 'buefy-sample',  component: require('@/pages/buefy-sample/buefy-sample.vue').default },];

vueOptions

Plugin options needed in vue.config for module to work

"vueOptions": {
-    "transpileDependencies": [
-      "'vuetify'"
-    ]
-  }

All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options.

module.exports = {
-  transpileDependencies: 'vuetify',
-};

modules

Configuration imports needed for your module to work. These configs are store in the src/config folder.

  "modules": {
-    "vuetify": "`require('@/config/vuetify').default`"
-  } 
- \ No newline at end of file diff --git a/docs/.output/public/rdvue/testing/testing/_payload.js b/docs/.output/public/rdvue/testing/testing/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/testing/testing/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/testing/testing/index.html b/docs/.output/public/rdvue/testing/testing/index.html deleted file mode 100644 index 844b8f44..00000000 --- a/docs/.output/public/rdvue/testing/testing/index.html +++ /dev/null @@ -1,77 +0,0 @@ - - - -Testing · Frontier - - - - - - - -

Testing

Cypress

Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on Selenium, instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a API that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity.

End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary.

Technical

Within a project generated by the CLI tool, the following folder structure will be created:

All the e2e tests created by Cypress will live in the cypress/integration/specs directory. All these test files will have a .ts extension as they are written in TypeScript.

An example of a test file written in Cypress can be seen below:

// Example spec file to see the different methods that can be used in Cypress to set the current viewport
-/// <reference types="Cypress" />
-
-context('Viewport Examples', () => {
-    beforeEach(() => {
-      cy.visit('https://example.cypress.io/commands/viewport');
-    });
-
-    it('cy.viewport() - set the viewport size and dimension', () => {
-      // https://on.cypress.io/viewport
-
-      cy.get('#navbar').should('be.visible');
-      cy.viewport(320, 480);
-
-      // the navbar should have collapse since our screen is smaller
-      cy.get('#navbar').should('not.be.visible');
-      cy.get('.navbar-toggle').should('be.visible').click();
-      cy.get('.nav').find('a').should('be.visible');
-
-      // lets see what our app looks like on a super large screen
-      cy.viewport(2999, 2999);
-
-      // cy.viewport() accepts a set of preset sizes
-      // to easily set the screen to a device's width and height
-
-      // We added a cy.wait() between each viewport change so you can see
-      // the change otherwise it is a little too fast to see :)
-
-      cy.viewport('macbook-15');
-      cy.wait(200);
-      cy.viewport('macbook-13');
-      cy.wait(200);
-      cy.viewport('macbook-11');
-      cy.wait(200);
-      cy.viewport('ipad-2');
-      cy.wait(200);
-      cy.viewport('ipad-mini');
-      cy.wait(200);
-      cy.viewport('iphone-6+');
-      cy.wait(200);
-      cy.viewport('iphone-6');
-      cy.wait(200);
-      cy.viewport('iphone-5');
-      cy.wait(200);
-      cy.viewport('iphone-4');
-      cy.wait(200);
-      cy.viewport('iphone-3');
-      cy.wait(200);
-
-      // cy.viewport() accepts an orientation for all presets
-      // the default orientation is 'portrait'
-      cy.viewport('ipad-2', 'portrait');
-      cy.wait(200);
-      cy.viewport('iphone-4', 'landscape');
-      cy.wait(200);
-
-      // The viewport will be reset back to the default dimensions
-      // in between tests (the  default can be set in cypress.json)
-    });
-  });

By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests.

?>When you are testing the connection between pages and user flows, a Cypress test should be created.

Running tests

In order to run your Cypress tests, execute npm run test:e2e and the following dialog will open

-

From here, you can click on the Run all specs option and see all the tests execute or you can click on a specific test file and see that test execute.

?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests.

Unit Tests with Jest

Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken.

If you wish to automate your unit tests, Jest can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases.

Technical

Each component generated by the RDVue CLI comes with a .spec.js file and the folder structure will look like the following:

The spec file generated will contain the following basic test by default:

-) -

This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘@vue/test-utils' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively.

shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM.

- \ No newline at end of file diff --git a/docs/.output/public/rdvue/themeing/theming/_payload.js b/docs/.output/public/rdvue/themeing/theming/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/rdvue/themeing/theming/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/themeing/theming/index.html b/docs/.output/public/rdvue/themeing/theming/index.html deleted file mode 100644 index fc725b86..00000000 --- a/docs/.output/public/rdvue/themeing/theming/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Theming · Frontier - - - - - - - -

Theming

Global Styles

Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults.

?>Global styles can be added to the src/theme directory.

Do’s and Don’t

  • Do use global styles to apply application level defaults to HTML elements
  • Do not use global styles to customize the imperative look/feel of specific Components. (Use Component-level styles and Tailwind for that).
  • Do use global styles to override imported UI components' look and feel (Eg. to customize Buefy).
  • Do import global styles within the main.ts app bootstrap file. This will allow unused selectors to be tree-shaken.
  • Do import global styles from a CDN within the public/index.html file.

Tailwind

Tailwind is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design.

?>Tailwind is the best practice approach for styling Components and Pages within RDVue.

Technical

  • The tailwind.config.js file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values.
  • Tailwind utilities can be combined within your custom CSS selectors using the @apply directive.
  • New utility classes can implemented using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities.

?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead.

- \ No newline at end of file diff --git a/docs/.output/public/spectre/getting-started/introduction/_payload.js b/docs/.output/public/spectre/getting-started/introduction/_payload.js deleted file mode 100644 index c459731d..00000000 --- a/docs/.output/public/spectre/getting-started/introduction/_payload.js +++ /dev/null @@ -1 +0,0 @@ -export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/spectre/getting-started/introduction/index.html b/docs/.output/public/spectre/getting-started/introduction/index.html deleted file mode 100644 index 11ac3460..00000000 --- a/docs/.output/public/spectre/getting-started/introduction/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - -Coming Soon · Frontier - - - - - - - - - \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs b/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs new file mode 100644 index 00000000..d8539560 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs @@ -0,0 +1,56 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, defineComponent, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Alert", + __ssrInlineRender: true, + props: { + /** + * @values info, success, warning, danger + */ + type: { + type: String, + default: "info", + validator(value) { + return ["info", "success", "warning", "danger", "primary"].includes(value); + } + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_ContentSlot = ContentSlot; + _push(`
`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.default, + unwrap: "p" + }, null, _parent)); + _push(`
`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Alert.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-95a79b90"]]); + +export { __nuxt_component_2 as default }; +//# sourceMappingURL=Alert-2b29f746.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map b/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map new file mode 100644 index 00000000..ec774472 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Alert-2b29f746.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Alert-2b29f746.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,OAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,MACT,UAAU,KAAO,EAAA;AACf,QAAO,OAAA,CAAC,QAAQ,SAAW,EAAA,SAAA,EAAW,UAAU,SAAS,CAAA,CAAE,SAAS,KAAK,CAAA,CAAA;AAAA,OAC3E;AAAA,KACF;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,QACrC,OAAO,CAAC,OAAA,EAAS,CAAC,OAAA,CAAQ,IAAI,CAAC,CAAA;AAAA,OACjC,EAAG,MAAM,CAAC,CAA+D,CAAA,4DAAA,CAAA,CAAA,CAAA;AACzE,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAc,YAAA,CAAA,CAAA,CAAA;AAAA,KACtB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iEAAiE,CAAA,CAAA;AAC9I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs b/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs new file mode 100644 index 00000000..e79ae8bf --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs @@ -0,0 +1,6 @@ +const Alert_vue_vue_type_style_index_0_scoped_95a79b90_transformed_true_lang = ".alert[data-v-95a79b90]{border:1px solid;border-radius:var(--radii-md);font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);margin-bottom:var(--space-8);margin-top:var(--space-8);padding:var(--space-3) var(--space-4)}.alert.primary[data-v-95a79b90]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.alert.primary[data-v-95a79b90] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.alert.primary[data-v-95a79b90] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.alert.primary[data-v-95a79b90] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.alert.primary[data-v-95a79b90] a{border-color:currentColor}.alert.primary[data-v-95a79b90] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.alert.primary[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.alert.primary[data-v-95a79b90] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.alert.info[data-v-95a79b90]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.alert.info[data-v-95a79b90] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.alert.info[data-v-95a79b90] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.alert.info[data-v-95a79b90] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.alert.info[data-v-95a79b90] a{border-color:currentColor}.alert.info[data-v-95a79b90] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.alert.info[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.alert.info[data-v-95a79b90] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.alert.success[data-v-95a79b90]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.alert.success[data-v-95a79b90] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.alert.success[data-v-95a79b90] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.alert.success[data-v-95a79b90] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.alert.success[data-v-95a79b90] a{border-color:currentColor}.alert.success[data-v-95a79b90] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.alert.success[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.alert.success[data-v-95a79b90] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.alert.warning[data-v-95a79b90]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.alert.warning[data-v-95a79b90] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.alert.warning[data-v-95a79b90] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.alert.warning[data-v-95a79b90] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.alert.warning[data-v-95a79b90] a{border-color:currentColor}.alert.warning[data-v-95a79b90] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.alert.warning[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.alert.warning[data-v-95a79b90] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.alert.danger[data-v-95a79b90]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.alert.danger[data-v-95a79b90] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.alert.danger[data-v-95a79b90] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.alert.danger[data-v-95a79b90] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.alert.danger[data-v-95a79b90] a{border-color:currentColor}.alert.danger[data-v-95a79b90] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.alert.danger[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.alert.danger[data-v-95a79b90] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}"; + +const AlertStyles_484d4e78 = [Alert_vue_vue_type_style_index_0_scoped_95a79b90_transformed_true_lang]; + +export { AlertStyles_484d4e78 as default }; +//# sourceMappingURL=Alert-styles.484d4e78.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map b/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map new file mode 100644 index 00000000..13865647 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Alert-styles.484d4e78.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Alert-styles-1.mjs-4b916eaf.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Alert-styles.484d4e78.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,sEAAyE,GAAA,uhNAAA;;ACC/E,6BAAe,CAACA,sEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs b/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs new file mode 100644 index 00000000..069b0995 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs @@ -0,0 +1,6 @@ +const AppFooter_vue_vue_type_style_index_0_scoped_eebf8ee0_transformed_true_lang = "footer[data-v-eebf8ee0]{border-top:1px solid var(--elements-border-primary-static);padding:var(--docus-footer-padding)}footer .footer-container[data-v-eebf8ee0]{display:grid;gap:var(--space-2);grid-template-columns:repeat(12,minmax(0,1fr));justify-items:center}@media (min-width:640px){footer .footer-container[data-v-eebf8ee0]{justify-items:legacy}}footer .footer-container[data-v-eebf8ee0] .icon{height:var(--space-4);width:var(--space-4)}footer .footer-container a[data-v-eebf8ee0]{color:var(--color-gray-500)}:root.dark footer .footer-container a[data-v-eebf8ee0]{color:var(--color-gray-400)}footer .footer-container a[data-v-eebf8ee0]:hover{color:var(--color-gray-700)}:root.dark footer .footer-container a[data-v-eebf8ee0]:hover{color:var(--color-gray-200)}footer .footer-container .left[data-v-eebf8ee0]{display:flex;grid-column:span 12/span 12;order:1;padding-bottom:var(--space-4);padding-top:var(--space-4)}@media (min-width:640px){footer .footer-container .left[data-v-eebf8ee0]{grid-column:span 3/span 3;order:0}}footer .footer-container .left a[data-v-eebf8ee0]{align-items:center;display:flex}footer .footer-container .left p[data-v-eebf8ee0]{font-size:var(--text-xs-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-xs-lineHeight)}footer .footer-container .left-icon[data-v-eebf8ee0]{fill:currentcolor;flex-shrink:0;height:var(--space-4);margin-right:var(--space-2);width:var(--space-4)}footer .footer-container .center[data-v-eebf8ee0]{align-items:center;display:flex;flex-direction:column;grid-column:span 12/span 12}@media (min-width:640px){footer .footer-container .center[data-v-eebf8ee0]{flex-direction:row;grid-column:span 6/span 6;justify-content:center}}footer .footer-container .center .text-link[data-v-eebf8ee0]{font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-sm-lineHeight);padding:var(--space-2)}footer .footer-container .right[data-v-eebf8ee0]{align-items:center;display:flex;grid-column:span 12/span 12;justify-content:flex-end}@media (min-width:640px){footer .footer-container .right[data-v-eebf8ee0]{grid-column:span 3/span 3;margin-right:calc(0px - var(--space-4))}}footer .footer-container .right .icon-link[data-v-eebf8ee0]{display:flex;padding:var(--space-4)}"; + +const AppFooterStyles_775a1c05 = [AppFooter_vue_vue_type_style_index_0_scoped_eebf8ee0_transformed_true_lang]; + +export { AppFooterStyles_775a1c05 as default }; +//# sourceMappingURL=AppFooter-styles.775a1c05.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map new file mode 100644 index 00000000..693ea61b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppFooter-styles.775a1c05.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppFooter-styles-1.mjs-5f61bee6.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppFooter-styles.775a1c05.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,wtEAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs new file mode 100644 index 00000000..958c1525 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs @@ -0,0 +1,6 @@ +const AppHeader_vue_vue_type_style_index_0_scoped_8375ebf7_transformed_true_lang = "[data-v-8375ebf7] .icon{height:var(--space-4);width:var(--space-4)}.has-dialog .left .navbar-logo[data-v-8375ebf7]{display:none}@media (min-width:1024px){.has-dialog .left .navbar-logo[data-v-8375ebf7]{display:block}}.center .navbar-logo[data-v-8375ebf7]{display:block}@media (min-width:1024px){.center .navbar-logo[data-v-8375ebf7]{display:none}}header[data-v-8375ebf7]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background-color:var(--elements-backdrop-background);border-bottom:1px solid var(--elements-border-primary-static);height:var(--docus-header-height);position:sticky;top:0;width:100%;z-index:10}header .container[data-v-8375ebf7]{display:grid;gap:var(--space-2);grid-template-columns:repeat(12,minmax(0,1fr));height:100%}header .section[data-v-8375ebf7]{align-items:center;display:flex;flex:none}header .section.left[data-v-8375ebf7]{grid-column:span 4/span 4}@media (min-width:1024px){header .section.left[data-v-8375ebf7]{margin-left:0}}header .section.center[data-v-8375ebf7]{flex:1;grid-column:span 4/span 4;justify-content:center}header .section.right[data-v-8375ebf7]{align-items:center;display:flex;flex:none;grid-column:span 4/span 4;justify-content:flex-end;margin-right:calc(0px - var(--space-4))}header .section.right .social-icons[data-v-8375ebf7]{display:none}@media (min-width:768px){header .section.right .social-icons[data-v-8375ebf7]{align-items:center;display:flex}}"; + +const AppHeaderStyles_5fd39c5b = [AppHeader_vue_vue_type_style_index_0_scoped_8375ebf7_transformed_true_lang]; + +export { AppHeaderStyles_5fd39c5b as default }; +//# sourceMappingURL=AppHeader-styles.5fd39c5b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map new file mode 100644 index 00000000..2bf520e2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppHeader-styles.5fd39c5b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeader-styles-1.mjs-25f77ee9.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeader-styles.5fd39c5b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,m7CAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs new file mode 100644 index 00000000..9656cd44 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs @@ -0,0 +1,6 @@ +const AppHeaderDialog_vue_vue_type_style_index_0_scoped_291983a4_transformed_true_lang = "button[data-v-291983a4]{display:flex;padding:var(--space-4) var(--space-4) var(--space-4) 0;position:relative;z-index:10}@media (min-width:1024px){button[data-v-291983a4]{display:none}}button[data-v-291983a4]{color:var(--color-gray-500)}:root.dark button[data-v-291983a4]{color:var(--color-gray-400)}button[data-v-291983a4]:hover{color:var(--color-gray-700)}:root.dark button[data-v-291983a4]:hover{color:var(--color-gray-200)}.dialog[data-v-291983a4]{align-items:flex-start;-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background-color:hsla(0,0%,100%,.5);display:flex;inset:0 0 0 0;overflow-y:auto;position:fixed;z-index:50}:root.dark .dialog[data-v-291983a4]{background-color:rgba(0,0,0,.5)}@media (min-width:1024px){.dialog[data-v-291983a4]{display:none}}.dialog .icons[data-v-291983a4]{overflow:auto}.dialog>div[data-v-291983a4]{background-color:var(--color-white);box-shadow:var(--shadow-md);max-width:var(--size-xs);min-height:100%;padding-left:var(--space-4);padding-right:var(--space-4);width:100%}:root.dark .dialog>div[data-v-291983a4]{background-color:var(--color-black)}@media (min-width:640px){.dialog>div[data-v-291983a4]{padding-left:var(--space-6);padding-right:var(--space-6)}}.dialog>div>div[data-v-291983a4]{border-bottom:1px solid transparent;gap:var(--space-2);height:var(--docus-header-height);justify-content:space-between}.dialog>div>div[data-v-291983a4],.dialog>div>div .icons[data-v-291983a4]{align-items:center;display:flex}[data-v-291983a4] .icon{height:var(--space-4);width:var(--space-4)}"; + +const AppHeaderDialogStyles_9903b5a9 = [AppHeaderDialog_vue_vue_type_style_index_0_scoped_291983a4_transformed_true_lang]; + +export { AppHeaderDialogStyles_9903b5a9 as default }; +//# sourceMappingURL=AppHeaderDialog-styles.9903b5a9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map new file mode 100644 index 00000000..62a25535 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppHeaderDialog-styles.9903b5a9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderDialog-styles-1.mjs-58634763.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,gFAAmF,GAAA,2iDAAA;;ACCzF,uCAAe,CAACA,gFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs new file mode 100644 index 00000000..823d80ac --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs @@ -0,0 +1,6 @@ +const AppHeaderLogo_vue_vue_type_style_index_0_scoped_0e437bbb_transformed_true_lang = "a[data-v-0e437bbb]{align-items:center;display:flex;flex:none}a span[data-v-0e437bbb]{color:var(--color-gray-900);font-size:var(--fontSize-xl);font-weight:var(--fontWeight-bold)}:root.dark a span[data-v-0e437bbb]{color:var(--color-gray-100)}a span[data-v-0e437bbb]:hover{color:var(--color-gray-500)}"; + +const AppHeaderLogoStyles_795405cc = [AppHeaderLogo_vue_vue_type_style_index_0_scoped_0e437bbb_transformed_true_lang]; + +export { AppHeaderLogoStyles_795405cc as default }; +//# sourceMappingURL=AppHeaderLogo-styles.795405cc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map new file mode 100644 index 00000000..18c7255d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppHeaderLogo-styles.795405cc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderLogo-styles-1.mjs-dea2839e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderLogo-styles.795405cc.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,8EAAiF,GAAA,4SAAA;;ACCvF,qCAAe,CAACA,8EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs new file mode 100644 index 00000000..245ae1d2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs @@ -0,0 +1,6 @@ +const AppHeaderNavigation_vue_vue_type_style_index_0_scoped_01b60614_transformed_true_lang = "nav[data-v-01b60614]{display:none}@media (min-width:1024px){nav[data-v-01b60614]{display:block}}nav ul[data-v-01b60614]{align-items:center;display:flex;flex:1;justify-content:center;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}nav ul>*+*[data-v-01b60614]{margin-left:var(--space-2)}nav ul li[data-v-01b60614]{display:inline-flex;gap:var(--space-1)}nav ul .link[data-v-01b60614]{align-items:center;border-radius:var(--radii-md);display:flex;font-size:var(--fontSize-sm);gap:var(--space-2);outline:none;padding:var(--space-2) var(--space-4);transition:background .2s ease}nav ul .link svg[data-v-01b60614]{display:inline-block}nav ul .link.active[data-v-01b60614],nav ul .link[data-v-01b60614]:active,nav ul .link[data-v-01b60614]:hover{background-color:var(--color-gray-100)}:root.dark nav ul .link.active[data-v-01b60614],:root.dark nav ul .link[data-v-01b60614]:active,:root.dark nav ul .link[data-v-01b60614]:hover{background-color:var(--color-gray-900)}nav ul .link.active[data-v-01b60614]{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);font-weight:var(--fontWeight-semibold)}"; + +const AppHeaderNavigationStyles_80a8cd0f = [AppHeaderNavigation_vue_vue_type_style_index_0_scoped_01b60614_transformed_true_lang]; + +export { AppHeaderNavigationStyles_80a8cd0f as default }; +//# sourceMappingURL=AppHeaderNavigation-styles.80a8cd0f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map new file mode 100644 index 00000000..47d5cdfe --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppHeaderNavigation-styles.80a8cd0f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderNavigation-styles-1.mjs-b9021962.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,oFAAuF,GAAA,mlCAAA;;ACC7F,2CAAe,CAACA,oFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs b/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs new file mode 100644 index 00000000..ddf7041c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs @@ -0,0 +1,6 @@ +const AppLoadingBar_vue_vue_type_style_index_0_transformed_true_lang = ".nuxt-progress{background:repeating-linear-gradient(to right,var(--docus-loadingBar-gradientColorStop1) 0,var(--docus-loadingBar-gradientColorStop2) 50%,var(--docus-loadingBar-gradientColorStop3) 100%);height:var(--docus-loadingBar-height);left:0;opacity:1;position:fixed;right:0;top:0;transition:width .1s,height .4s,opacity .4s;width:0;z-index:999999}"; + +const AppLoadingBarStyles_b242e2e9 = [AppLoadingBar_vue_vue_type_style_index_0_transformed_true_lang]; + +export { AppLoadingBarStyles_b242e2e9 as default }; +//# sourceMappingURL=AppLoadingBar-styles.b242e2e9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map new file mode 100644 index 00000000..805f6d84 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppLoadingBar-styles.b242e2e9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppLoadingBar-styles-1.mjs-0dbe330f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppLoadingBar-styles.b242e2e9.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,8DAAiE,GAAA,mWAAA;;ACCvE,qCAAe,CAACA,8DAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs b/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs new file mode 100644 index 00000000..f2c43186 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs @@ -0,0 +1,6 @@ +const AppSearch_vue_vue_type_style_index_0_scoped_1e99f08b_transformed_true_lang = ".doc-search:hover button[data-v-1e99f08b]{border-color:var(--color-gray-300)}.doc-search button[data-v-1e99f08b]{padding:var(--space-2) var(--space-4)}.doc-search button .content[data-v-1e99f08b]{align-items:center;border-color:var(--color-gray-100);border-radius:var(--radii-md);border-style:solid;border-width:1px;color:var(--color-gray-500);display:flex;font-size:var(--fontSize-xs);gap:var(--space-2);padding:var(--space-rem-375)}:root.dark .doc-search button .content[data-v-1e99f08b]{border-color:var(--color-gray-900);color:var(--color-gray-400)}.doc-search button .content[data-v-1e99f08b]:hover{border-color:var(--color-gray-400);color:var(--color-gray-700)}:root.dark .doc-search button .content[data-v-1e99f08b]:hover{border-color:var(--color-gray-700);color:var(--color-gray-200)}.doc-search button .content span[data-v-1e99f08b]:first-child{display:block;font-size:var(--fontSize-xs);font-weight:var(--fontWeight-medium)}.doc-search button .content span[data-v-1e99f08b]:nth-child(2){display:none;flex:none;font-size:var(--fontSize-xs);font-weight:var(--fontWeight-semibold)}@media (min-width:640px){.doc-search button .content span[data-v-1e99f08b]:nth-child(2){display:block}}"; + +const AppSearchStyles_36eea8dd = [AppSearch_vue_vue_type_style_index_0_scoped_1e99f08b_transformed_true_lang]; + +export { AppSearchStyles_36eea8dd as default }; +//# sourceMappingURL=AppSearch-styles.36eea8dd.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map new file mode 100644 index 00000000..433cd84d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppSearch-styles.36eea8dd.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSearch-styles-1.mjs-3ab7d1a8.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSearch-styles.36eea8dd.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,yqCAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs b/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs new file mode 100644 index 00000000..3ec6d733 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs @@ -0,0 +1,6 @@ +const AppSocialIcons_vue_vue_type_style_index_0_scoped_224b171c_transformed_true_lang = "a[data-v-224b171c]{color:var(--color-gray-500);display:flex;padding:var(--space-4)}:root.dark a[data-v-224b171c]{color:var(--color-gray-400)}a[data-v-224b171c]:hover{color:var(--color-gray-700)}:root.dark a[data-v-224b171c]:hover{color:var(--color-gray-200)}"; + +const AppSocialIconsStyles_994e800b = [AppSocialIcons_vue_vue_type_style_index_0_scoped_224b171c_transformed_true_lang]; + +export { AppSocialIconsStyles_994e800b as default }; +//# sourceMappingURL=AppSocialIcons-styles.994e800b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map new file mode 100644 index 00000000..2211bea5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"AppSocialIcons-styles.994e800b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSocialIcons-styles-1.mjs-65e85211.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSocialIcons-styles.994e800b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,oQAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs b/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs new file mode 100644 index 00000000..f3678a9c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs @@ -0,0 +1,56 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, defineComponent, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Badge", + __ssrInlineRender: true, + props: { + /** + * @values info, success, warning, danger + */ + type: { + type: String, + default: "info", + validator(value) { + return ["info", "success", "warning", "danger", "primary"].includes(value); + } + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_ContentSlot = ContentSlot; + _push(``); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.default, + unwrap: "p" + }, null, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Badge.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-69c7b84e"]]); + +export { __nuxt_component_2 as default }; +//# sourceMappingURL=Badge-5f9ab214.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map b/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map new file mode 100644 index 00000000..b45a62dc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Badge-5f9ab214.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Badge-5f9ab214.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,OAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,MACT,UAAU,KAAO,EAAA;AACf,QAAO,OAAA,CAAC,QAAQ,SAAW,EAAA,SAAA,EAAW,UAAU,SAAS,CAAA,CAAE,SAAS,KAAK,CAAA,CAAA;AAAA,OAC3E;AAAA,KACF;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,KAAA,EAAQ,eAAe,UAAW,CAAA;AAAA,QACtC,OAAO,CAAC,CAAC,OAAQ,CAAA,IAAI,GAAG,OAAO,CAAA;AAAA,OACjC,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9B,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,KACjB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iEAAiE,CAAA,CAAA;AAC9I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs b/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs new file mode 100644 index 00000000..b826acc8 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs @@ -0,0 +1,6 @@ +const Badge_vue_vue_type_style_index_0_scoped_69c7b84e_transformed_true_lang = ".badge[data-v-69c7b84e]{align-items:center;border:1px solid;border-radius:var(--radii-full);display:inline-flex;font-size:var(--text-base-fontSize);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-base-lineHeight);padding:var(--space-1) var(--space-3)}.badge.primary[data-v-69c7b84e]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.badge.primary[data-v-69c7b84e] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.badge.primary[data-v-69c7b84e] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.badge.primary[data-v-69c7b84e] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.badge.primary[data-v-69c7b84e] a{border-color:currentColor}.badge.primary[data-v-69c7b84e] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.badge.primary[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.badge.primary[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.badge.info[data-v-69c7b84e]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.badge.info[data-v-69c7b84e] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.badge.info[data-v-69c7b84e] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.badge.info[data-v-69c7b84e] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.badge.info[data-v-69c7b84e] a{border-color:currentColor}.badge.info[data-v-69c7b84e] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.badge.info[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.badge.info[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.badge.success[data-v-69c7b84e]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.badge.success[data-v-69c7b84e] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.badge.success[data-v-69c7b84e] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.badge.success[data-v-69c7b84e] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.badge.success[data-v-69c7b84e] a{border-color:currentColor}.badge.success[data-v-69c7b84e] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.badge.success[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.badge.success[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.badge.warning[data-v-69c7b84e]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.badge.warning[data-v-69c7b84e] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.badge.warning[data-v-69c7b84e] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.badge.warning[data-v-69c7b84e] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.badge.warning[data-v-69c7b84e] a{border-color:currentColor}.badge.warning[data-v-69c7b84e] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.badge.warning[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.badge.warning[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.badge.danger[data-v-69c7b84e]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.badge.danger[data-v-69c7b84e] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.badge.danger[data-v-69c7b84e] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.badge.danger[data-v-69c7b84e] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.badge.danger[data-v-69c7b84e] a{border-color:currentColor}.badge.danger[data-v-69c7b84e] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.badge.danger[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.badge.danger[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}"; + +const BadgeStyles_8af74ce4 = [Badge_vue_vue_type_style_index_0_scoped_69c7b84e_transformed_true_lang]; + +export { BadgeStyles_8af74ce4 as default }; +//# sourceMappingURL=Badge-styles.8af74ce4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map b/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map new file mode 100644 index 00000000..f1aee76a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Badge-styles.8af74ce4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Badge-styles-1.mjs-adb8211f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Badge-styles.8af74ce4.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,sEAAyE,GAAA,ujNAAA;;ACC/E,6BAAe,CAACA,sEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs b/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs new file mode 100644 index 00000000..64ab9a08 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs @@ -0,0 +1,145 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import __nuxt_component_1 from './ButtonLink-df4791d5.mjs'; +import __nuxt_component_2 from './Terminal-35e8f795.mjs'; +import { useSSRContext, defineComponent, mergeProps, withCtx, createTextVNode, toDisplayString } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate, ssrRenderAttr, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import './index-1624a23e.mjs'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "BlockHero", + __ssrInlineRender: true, + props: { + cta: { + type: Array, + required: false + }, + secondary: { + type: Array, + required: false + }, + snippet: { + type: String, + required: false + }, + video: { + type: Array, + required: false + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_ContentSlot = ContentSlot; + const _component_ButtonLink = __nuxt_component_1; + const _component_Terminal = __nuxt_component_2; + _push(`
`); + if (_ctx.$slots.announce) { + _push(`

`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.announce, + unwrap: "p" + }, null, _parent)); + _push(`

`); + } else { + _push(``); + } + if (_ctx.$slots.title) { + _push(`

`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.title, + unwrap: "p" + }, null, _parent)); + _push(`

`); + } else { + _push(``); + } + if (_ctx.$slots.description) { + _push(`

`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.description, + unwrap: "p" + }, null, _parent)); + _push(`

`); + } else { + _push(``); + } + if (_ctx.$slots.extra) { + _push(`
`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.extra, + unwrap: "p" + }, null, _parent)); + _push(`
`); + } else { + _push(``); + } + _push(`
`); + if (!_ctx.$slots.actions) { + _push(``); + if (__props.cta) { + _push(ssrRenderComponent(_component_ButtonLink, { + class: "cta", + bold: "", + size: "medium", + href: __props.cta[1] + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`${ssrInterpolate(__props.cta[0])}`); + } else { + return [ + createTextVNode(toDisplayString(__props.cta[0]), 1) + ]; + } + }), + _: 1 + }, _parent)); + } else { + _push(``); + } + if (__props.secondary) { + _push(`${ssrInterpolate(__props.secondary[0])}`); + } else { + _push(``); + } + _push(``); + } else { + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.actions, + unwrap: "p" + }, null, _parent)); + } + _push(`
`); + ssrRenderSlot(_ctx.$slots, "support", {}, () => { + if (__props.snippet) { + _push(ssrRenderComponent(_component_Terminal, { content: __props.snippet }, null, _parent)); + } else { + _push(``); + } + }, _push, _parent); + _push(`
`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const BlockHero = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-27211c58"]]); + +export { BlockHero as default }; +//# sourceMappingURL=BlockHero-f586796f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map b/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map new file mode 100644 index 00000000..9f406d5f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"BlockHero-f586796f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/BlockHero-f586796f.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs b/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs new file mode 100644 index 00000000..17275fae --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs @@ -0,0 +1,6 @@ +const BlockHero_vue_vue_type_style_index_0_scoped_27211c58_transformed_true_lang = ".block-hero[data-v-27211c58]{padding:var(--space-20) 0}@media (min-width:640px){.block-hero[data-v-27211c58]{padding:var(--space-24) 0}}@media (min-width:1024px){.block-hero[data-v-27211c58]{padding:var(--space-32) 0}}.block-hero .layout[data-v-27211c58]{display:grid;gap:var(--space-8)}@media (min-width:1024px){.block-hero .layout[data-v-27211c58]{grid-template-columns:repeat(3,minmax(0,1fr))}.block-hero .content[data-v-27211c58]{grid-column:span 2/span 2}}.block-hero .content .announce[data-v-27211c58]{margin-bottom:var(--space-2);text-align:center}@media (min-width:1024px){.block-hero .content .announce[data-v-27211c58]{text-align:left}}.block-hero .content .title[data-v-27211c58]{color:var(--elements-text-primary-color-static);font-size:var(--text-4xl-fontSize);font-weight:var(--fontWeight-bold);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-4xl-lineHeight);text-align:center}@media (min-width:640px){.block-hero .content .title[data-v-27211c58]{font-size:var(--text-5xl-fontSize);line-height:var(--text-5xl-lineHeight)}}@media (min-width:1024px){.block-hero .content .title[data-v-27211c58]{font-size:var(--text-6xl-fontSize);line-height:var(--text-6xl-lineHeight);text-align:left}}.block-hero .content .description[data-v-27211c58]{color:var(--elements-text-secondary-color-static);font-size:var(--text-lg-fontSize);line-height:var(--text-lg-lineHeight);margin-top:var(--space-4);text-align:center}@media (min-width:1024px){.block-hero .content .description[data-v-27211c58]{text-align:left}}.block-hero .content .extra[data-v-27211c58]{margin-top:var(--space-6)}.block-hero .content .actions[data-v-27211c58]{align-items:center;display:flex;flex-direction:column;gap:var(--space-4);justify-content:center;margin-top:var(--space-6)}@media (min-width:640px){.block-hero .content .actions[data-v-27211c58]{flex-direction:row;gap:var(--space-6);margin-top:var(--space-10)}}@media (min-width:1024px){.block-hero .content .actions[data-v-27211c58]{justify-content:flex-start}}.block-hero .content .actions .cta[data-v-27211c58]{margin-bottom:0}.block-hero .content .actions .secondary[data-v-27211c58]{color:var(--elements-text-secondary-color-static);font-weight:var(--fontWeight-medium)}.block-hero .content .actions .secondary[data-v-27211c58]:hover{color:var(--elements-text-secondary-color-hover)}"; + +const BlockHeroStyles_df4a0a32 = [BlockHero_vue_vue_type_style_index_0_scoped_27211c58_transformed_true_lang]; + +export { BlockHeroStyles_df4a0a32 as default }; +//# sourceMappingURL=BlockHero-styles.df4a0a32.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map b/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map new file mode 100644 index 00000000..0e603363 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"BlockHero-styles.df4a0a32.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/BlockHero-styles-1.mjs-70885d4e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/BlockHero-styles.df4a0a32.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,8xEAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs b/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs new file mode 100644 index 00000000..3510c85f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs @@ -0,0 +1,92 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, defineComponent, computed, ref, mergeProps, unref, withCtx, openBlock, createBlock, createCommentVNode, createVNode } from 'vue'; +import { ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc, c as computedStyle, u as utils, b as usePinceauRuntime } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ButtonLink", + __ssrInlineRender: true, + props: { + blank: { + type: Boolean, + required: false, + default: false + }, + color: computedStyle("primary"), + href: { + type: String, + default: "" + }, + icon: { + type: String, + default: "" + }, + ...{ "size": { "required": false, "type": [String, Object], "default": `medium` }, "transparent": { "required": false, "type": [Boolean, Object], "default": false } } + }, + setup(__props) { + const __$pProps = __props; + const _PBS_backgroundColor = computed(() => ((props = __$pProps, utils$1 = utils) => `{color.${props.color}.600}`)()); + const _m49_backgroundColor = computed(() => ((props = __$pProps, utils$1 = utils) => `{color.${props.color}.500}`)()); + const _BVG_border = computed(() => ((props = __$pProps, utils$1 = utils) => `1px solid {color.${props.color}.600}`)()); + const __$pVariants = ref({ "size": { "small": { "padding": "{space.2} {space.4}", "fontSize": "{text.sm.fontSize}", "lineHeight": "{text.sm.lineHeight}" }, "medium": { "padding": "{space.rem.625} {space.5}", "fontSize": "{text.base.fontSize}", "lineHeight": "{text.base.lineHeight}" }, "large": { "padding": "{space.3} {space.6}", "fontSize": "{text.lg.fontSize}", "lineHeight": "{text.lg.lineHeight}" }, "giant": { "padding": "{space.4} {space.8}", "fontSize": "{text.lg.fontSize}", "lineHeight": "{text.lg.lineHeight}" } }, "transparent": { "true": { "backgroundColor": "transparent" } } }); + const { $pinceau } = usePinceauRuntime(computed(() => __$pProps), __$pVariants, ref({ _PBS_backgroundColor, _m49_backgroundColor, _BVG_border })); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + const _component_ContentSlot = ContentSlot; + _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ + class: ["button-link", [unref($pinceau)]], + to: __props.href, + target: __props.blank ? "_blank" : void 0 + }, _attrs), { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + if (__props.icon) { + _push2(ssrRenderComponent(_component_Icon, { name: __props.icon }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + _push2(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.default, + unwrap: "p ul li" + }, null, _parent2, _scopeId)); + } else { + return [ + __props.icon ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: __props.icon + }, null, 8, ["name"])) : createCommentVNode("", true), + createVNode(_component_ContentSlot, { + use: _ctx.$slots.default, + unwrap: "p ul li" + }, null, 8, ["use"]) + ]; + } + }), + _: 1 + }, _parent)); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-02d3ca01"]]); + +export { __nuxt_component_1 as default }; +//# sourceMappingURL=ButtonLink-df4791d5.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map b/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map new file mode 100644 index 00000000..93acbe44 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ButtonLink-df4791d5.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ButtonLink-df4791d5.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs b/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs new file mode 100644 index 00000000..c2d4a478 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs @@ -0,0 +1,6 @@ +const ButtonLink_vue_vue_type_style_index_0_scoped_02d3ca01_transformed_true_lang = ".button-link[data-v-02d3ca01]{align-items:center;background-color:var(---pbs-background-color);border:1px solid transparent;border-radius:var(--radii-md);color:var(--color-white);display:inline-flex;flex:none;font-weight:var(--fontWeight-bold);transition:all .1s ease-in-out}.button-link[data-v-02d3ca01]:hover{background-color:var(---m49-background-color)}.button-link[data-v-02d3ca01]:focus{border:var(---bvg-border)}.button-link .icon[data-v-02d3ca01]{margin-right:var(--space-1)}"; + +const ButtonLinkStyles_2eab8dff = [ButtonLink_vue_vue_type_style_index_0_scoped_02d3ca01_transformed_true_lang]; + +export { ButtonLinkStyles_2eab8dff as default }; +//# sourceMappingURL=ButtonLink-styles.2eab8dff.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map b/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map new file mode 100644 index 00000000..bf4a3cbd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ButtonLink-styles.2eab8dff.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ButtonLink-styles-1.mjs-8bacce47.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ButtonLink-styles.2eab8dff.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,qeAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs b/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs new file mode 100644 index 00000000..91db9835 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs @@ -0,0 +1,72 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, ref, mergeProps, unref } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderStyle } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Callout", + __ssrInlineRender: true, + props: { + /** + * @values info, success, warning, danger + */ + type: { + type: String, + default: "info", + validator(value) { + return ["info", "success", "warning", "danger", "primary"].includes(value); + } + }, + modelValue: { + required: false, + default: () => ref(false) + } + }, + emits: ["update:modelValue"], + setup(__props, { emit }) { + const props = __props; + const isOpen = ref(props.modelValue); + return (_ctx, _push, _parent, _attrs) => { + const _component_ContentSlot = ContentSlot; + const _component_Icon = __nuxt_component_0$1; + _push(``); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.summary + }, null, _parent)); + _push(``); + _push(ssrRenderComponent(_component_Icon, { + name: "heroicons-outline:chevron-right", + class: ["icon", [unref(isOpen) && "rotate"]] + }, null, _parent)); + _push(`
`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.content + }, null, _parent)); + _push(`
`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Callout.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const Callout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-37e0bf51"]]); + +export { Callout as default }; +//# sourceMappingURL=Callout-fc92c8b7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map b/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map new file mode 100644 index 00000000..82f6efbb --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Callout-fc92c8b7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Callout-fc92c8b7.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,SAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,MACT,UAAU,KAAO,EAAA;AACf,QAAO,OAAA,CAAC,QAAQ,SAAW,EAAA,SAAA,EAAW,UAAU,SAAS,CAAA,CAAE,SAAS,KAAK,CAAA,CAAA;AAAA,OAC3E;AAAA,KACF;AAAA,IACA,UAAY,EAAA;AAAA,MACV,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,MAAM,GAAA,CAAI,KAAK,CAAA;AAAA,KAC1B;AAAA,GACF;AAAA,EACA,KAAA,EAAO,CAAC,mBAAmB,CAAA;AAAA,EAC3B,KAAM,CAAA,OAAA,EAAS,EAAE,IAAA,EAAQ,EAAA;AACvB,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAM,MAAA,MAAA,GAAS,GAAI,CAAA,KAAA,CAAM,UAAU,CAAA,CAAA;AACnC,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAA,MAAM,eAAkB,GAAAA,oBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,QACrC,OAAO,CAAC,SAAA,EAAW,CAAC,OAAA,CAAQ,IAAI,CAAC,CAAA;AAAA,OACnC,EAAG,MAAM,CAAC,CAAgG,CAAA,6FAAA,CAAA,CAAA,CAAA;AAC1G,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,OACnB,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AACf,MAAA,KAAA,CAAM,mBAAmB,eAAiB,EAAA;AAAA,QACxC,IAAM,EAAA,iCAAA;AAAA,QACN,KAAA,EAAO,CAAC,MAAQ,EAAA,CAAC,MAAM,MAAM,CAAA,IAAK,QAAQ,CAAC,CAAA;AAAA,OAC7C,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAM,KAAA,CAAA,CAAA,mBAAA,EAAsB,cAAe,CAAA,KAAA,CAAM,MAAM,CAAA,GAAI,OAAO,EAAE,OAAA,EAAS,MAAO,EAAC,CAAqC,CAAA,kCAAA,CAAA,CAAA,CAAA;AAC1H,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,OACnB,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAc,YAAA,CAAA,CAAA,CAAA;AAAA,KACtB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,OAAA,+BAAsC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs b/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs new file mode 100644 index 00000000..86c9fb52 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs @@ -0,0 +1,6 @@ +const Callout_vue_vue_type_style_index_0_scoped_37e0bf51_transformed_true_lang = ".callout[data-v-37e0bf51]{border:1px solid;border-radius:var(--radii-md);font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);margin-bottom:var(--space-8);margin-top:var(--space-8);padding:var(--space-3) var(--space-4);position:relative}.callout.primary[data-v-37e0bf51]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.callout.primary[data-v-37e0bf51] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.callout.primary[data-v-37e0bf51] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.callout.primary[data-v-37e0bf51] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.callout.primary[data-v-37e0bf51] a{border-color:currentColor}.callout.primary[data-v-37e0bf51] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.callout.primary[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.callout.primary[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.callout.info[data-v-37e0bf51]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.callout.info[data-v-37e0bf51] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.callout.info[data-v-37e0bf51] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.callout.info[data-v-37e0bf51] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.callout.info[data-v-37e0bf51] a{border-color:currentColor}.callout.info[data-v-37e0bf51] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.callout.info[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.callout.info[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.callout.success[data-v-37e0bf51]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.callout.success[data-v-37e0bf51] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.callout.success[data-v-37e0bf51] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.callout.success[data-v-37e0bf51] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.callout.success[data-v-37e0bf51] a{border-color:currentColor}.callout.success[data-v-37e0bf51] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.callout.success[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.callout.success[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.callout.warning[data-v-37e0bf51]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.callout.warning[data-v-37e0bf51] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.callout.warning[data-v-37e0bf51] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.callout.warning[data-v-37e0bf51] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.callout.warning[data-v-37e0bf51] a{border-color:currentColor}.callout.warning[data-v-37e0bf51] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.callout.warning[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.callout.warning[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.callout.danger[data-v-37e0bf51]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.callout.danger[data-v-37e0bf51] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.callout.danger[data-v-37e0bf51] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.callout.danger[data-v-37e0bf51] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.callout.danger[data-v-37e0bf51] a{border-color:currentColor}.callout.danger[data-v-37e0bf51] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.callout.danger[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.callout.danger[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.callout .preview[data-v-37e0bf51]{align-items:center;cursor:pointer;display:flex;justify-content:space-between}.callout .preview .summary[data-v-37e0bf51] p{margin:0}.callout .preview .summary[data-v-37e0bf51] p+p{margin-top:var(--space-2)}.callout .preview .icon[data-v-37e0bf51]{height:var(--space-5);transition:transform .1s;width:var(--space-5)}.callout .preview .icon.rotate[data-v-37e0bf51]{transform:rotate(90deg)}.callout .content[data-v-37e0bf51]{padding-top:var(--space-3)}.callout .content[data-v-37e0bf51] p{margin:0}.callout .content[data-v-37e0bf51] p+p{margin-top:var(--space-2)}"; + +const CalloutStyles_966d42ad = [Callout_vue_vue_type_style_index_0_scoped_37e0bf51_transformed_true_lang]; + +export { CalloutStyles_966d42ad as default }; +//# sourceMappingURL=Callout-styles.966d42ad.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map b/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map new file mode 100644 index 00000000..aa13bfc2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Callout-styles.966d42ad.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Callout-styles-1.mjs-7d5d6e6d.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Callout-styles.966d42ad.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,8sOAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs b/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs new file mode 100644 index 00000000..86ea20a9 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs @@ -0,0 +1,94 @@ +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, defineComponent, mergeProps, withCtx, createTextVNode } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Card", + __ssrInlineRender: true, + props: { + icon: { + type: String, + default: "" + }, + iconClass: { + type: String, + default: "" + }, + blurry: { + type: Boolean, + default: true, + required: false + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_Icon = __nuxt_component_0$1; + const _component_ContentSlot = ContentSlot; + _push(``); + if (__props.icon) { + _push(ssrRenderComponent(_component_Icon, { name: __props.icon }, null, _parent)); + } else { + _push(``); + } + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(`

`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.title, + unwrap: "p" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(` Card title `); + } else { + return [ + createTextVNode(" Card title ") + ]; + } + }), + _: 1 + }, _parent)); + _push(`

`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.description, + unwrap: "p" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(` Card description `); + } else { + return [ + createTextVNode(" Card description ") + ]; + } + }), + _: 1 + }, _parent)); + _push(`

`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/landing/Card.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const Card = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-496504c6"]]); + +export { Card as default }; +//# sourceMappingURL=Card-2052047f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map b/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map new file mode 100644 index 00000000..abf5b5d0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Card-2052047f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Card-2052047f.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs b/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs new file mode 100644 index 00000000..bf00d79c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs @@ -0,0 +1,6 @@ +const Card_vue_vue_type_style_index_0_scoped_496504c6_transformed_true_lang = ".card[data-v-496504c6]{background:var(--elements-backdrop-background);border:1px solid var(--elements-border-primary-static);border-radius:var(--radii-xl);display:block;padding:var(--space-8);position:relative;width:100%}.card.blurry[data-v-496504c6]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter)}.card .icon[data-v-496504c6]{display:inline-block;height:var(--space-6);width:var(--space-6)}.card .icon[data-v-496504c6],.card .title[data-v-496504c6]{margin-bottom:var(--space-2)}.card .title[data-v-496504c6]{color:var(--elements-text-primary-color-static);font-size:var(--text-lg-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-lg-lineHeight)}.card .description[data-v-496504c6]{color:var(--elements-text-secondary-color-static);font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-sm-lineHeight)}"; + +const CardStyles_29530cd8 = [Card_vue_vue_type_style_index_0_scoped_496504c6_transformed_true_lang]; + +export { CardStyles_29530cd8 as default }; +//# sourceMappingURL=Card-styles.29530cd8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map b/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map new file mode 100644 index 00000000..80e94a32 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Card-styles.29530cd8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Card-styles-1.mjs-ec71d16b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Card-styles.29530cd8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,qEAAwE,GAAA,05BAAA;;ACC9E,4BAAe,CAACA,qEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs b/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs new file mode 100644 index 00000000..6da0473d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs @@ -0,0 +1,54 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, defineComponent, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "CardGrid", + __ssrInlineRender: true, + props: { + title: { + type: String, + default: "Features" + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_ContentSlot = ContentSlot; + _push(``); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.root + }, null, _parent)); + _push(`

`); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.title, + unwrap: "p" + }, null, _parent)); + _push(`

`); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(`
`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const CardGrid = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8f7bcfd2"]]); + +export { CardGrid as default }; +//# sourceMappingURL=CardGrid-160bcd85.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map b/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map new file mode 100644 index 00000000..086e15fc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CardGrid-160bcd85.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CardGrid-160bcd85.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,UAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,QAAA,EAAW,eAAe,UAAW,CAAA,EAAE,OAAO,WAAY,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9F,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,IAAA;AAAA,OACnB,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAoC,kCAAA,CAAA,CAAA,CAAA;AAC1C,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,KAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAA2C,yCAAA,CAAA,CAAA,CAAA;AACjD,MAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,MAAA,KAAA,CAAM,CAAkB,gBAAA,CAAA,CAAA,CAAA;AAAA,KAC1B,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs b/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs new file mode 100644 index 00000000..0dfaf01a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs @@ -0,0 +1,6 @@ +const CardGrid_vue_vue_type_style_index_0_scoped_8f7bcfd2_transformed_true_lang = ".card-grid[data-v-8f7bcfd2]{padding-bottom:var(--space-20);position:relative}@media (min-width:640px){.card-grid[data-v-8f7bcfd2]{padding-bottom:var(--space-24)}}@media (min-width:1024px){.card-grid[data-v-8f7bcfd2]{padding-bottom:var(--space-32)}}.card-grid .title[data-v-8f7bcfd2]{color:var(--elements-text-primary-color-static);font-size:var(--text-3xl-fontSize);font-weight:var(--fontWeight-bold);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-3xl-lineHeight);margin-bottom:var(--space-8)}@media (min-width:640px){.card-grid .title[data-v-8f7bcfd2]{font-size:var(--text-4xl-fontSize);line-height:var(--text-4xl-lineHeight)}}.card-grid .layout[data-v-8f7bcfd2]{display:grid;gap:var(--space-4);text-align:left}@media (min-width:640px){.card-grid .layout[data-v-8f7bcfd2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.card-grid .layout[data-v-8f7bcfd2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1536px){.card-grid .layout[data-v-8f7bcfd2]{gap:var(--space-8)}}"; + +const CardGridStyles_65f28427 = [CardGrid_vue_vue_type_style_index_0_scoped_8f7bcfd2_transformed_true_lang]; + +export { CardGridStyles_65f28427 as default }; +//# sourceMappingURL=CardGrid-styles.65f28427.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map b/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map new file mode 100644 index 00000000..095de033 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CardGrid-styles.65f28427.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CardGrid-styles-1.mjs-734fb20e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CardGrid-styles.65f28427.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,ugCAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs b/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs new file mode 100644 index 00000000..d9daa9d6 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs @@ -0,0 +1,56 @@ +import { useSSRContext, defineComponent, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "CodeBlock", + __ssrInlineRender: true, + props: { + /** + * Label to display for the tab + */ + label: { + type: String, + required: true + }, + /** + * Select which tab should be active + */ + active: { + type: Boolean, + default: false + }, + /** + * Preiew block are bordered and have small padding. + */ + preview: { + type: Boolean, + default: false + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const CodeBlock = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-5ee47deb"]]); + +export { CodeBlock as default }; +//# sourceMappingURL=CodeBlock-f6f4711b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map new file mode 100644 index 00000000..a13319ad --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CodeBlock-f6f4711b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeBlock-f6f4711b.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,WAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA;AAAA;AAAA;AAAA,IAIA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA;AAAA;AAAA;AAAA,IAIA,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,QACrC,KAAA,EAAO,CAAC,YAAc,EAAA;AAAA,UACpB,QAAQ,OAAQ,CAAA,MAAA;AAAA,UAChB,kBAAkB,OAAQ,CAAA,OAAA;AAAA,SAC3B,CAAA;AAAA,OACH,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9B,MAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qEAAqE,CAAA,CAAA;AAClJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,SAAA,+BAAwC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs b/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs new file mode 100644 index 00000000..46294dfa --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs @@ -0,0 +1,6 @@ +const CodeBlock_vue_vue_type_style_index_0_scoped_5ee47deb_lang = ".code-block[data-v-5ee47deb]{display:none}.code-block.active[data-v-5ee47deb]{display:block}"; + +const CodeBlockStyles_cac949de = [CodeBlock_vue_vue_type_style_index_0_scoped_5ee47deb_lang]; + +export { CodeBlockStyles_cac949de as default }; +//# sourceMappingURL=CodeBlock-styles.cac949de.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map new file mode 100644 index 00000000..f29f42c5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CodeBlock-styles.cac949de.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeBlock-styles-1.mjs-a2ddef91.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeBlock-styles.cac949de.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yDAA4D,GAAA,8FAAA;;ACClE,iCAAe,CAACA,yDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs b/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs new file mode 100644 index 00000000..87183cd6 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs @@ -0,0 +1,98 @@ +import { defineComponent, h, useSSRContext } from 'vue'; +import __nuxt_component_0 from './TabsHeader-c9b56dab.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'vue/server-renderer'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const isTag = (slot, tag) => { + return slot.type && slot.type.tag && slot.type.tag === tag; +}; +const _sfc_main = defineComponent({ + data() { + return { + activeTabIndex: 0, + /** + * A simple number that increases on every changes + */ + counter: 0 + }; + }, + render() { + var _a, _b; + const slots = ((_b = (_a = this.$slots) == null ? void 0 : _a.default) == null ? void 0 : _b.call(_a)) || []; + const tabs = slots.filter((slot) => isTag(slot, "code-block") || isTag(slot, "code")).map((slot, index) => { + var _a2, _b2, _c; + return { + label: ((_a2 = slot == null ? void 0 : slot.props) == null ? void 0 : _a2.filename) || ((_b2 = slot == null ? void 0 : slot.props) == null ? void 0 : _b2.label) || `${index}`, + active: ((_c = slot == null ? void 0 : slot.props) == null ? void 0 : _c.active) || false, + component: slot + }; + }); + return h( + "div", + { + class: { + "code-group": true, + "first-tab": this.activeTabIndex === 0 + } + }, + [ + h(__nuxt_component_0, { + ref: "tabs-header", + activeTabIndex: this.activeTabIndex, + tabs, + "onUpdate:activeTabIndex": ($event) => this.activeTabIndex = $event + }), + h( + "div", + { + class: "code-group-content", + text: this.activeTabIndex + }, + // Map slots to content children + slots.map( + (slot, index) => { + var _a2, _b2; + return h( + "div", + { + // Current slot is displayed, others are hidden + style: { + display: index === this.activeTabIndex ? "block" : "none" + }, + class: { + "": !isTag(slot, "code") + } + }, + // Display direct children if not a ```code``` block + [ + isTag(slot, "code") ? slot : h( + "div", + { + class: { + "preview-canvas": true + } + }, + [((_b2 = (_a2 = slot.children) == null ? void 0 : _a2.default) == null ? void 0 : _b2.call(_a2)) || h("div")] + ) + ] + ); + } + ) + ) + ] + ); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const CodeGroup = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3e3370af"]]); + +export { CodeGroup as default }; +//# sourceMappingURL=CodeGroup-67aa2302.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map new file mode 100644 index 00000000..ef7c467d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CodeGroup-67aa2302.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeGroup-67aa2302.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs b/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs new file mode 100644 index 00000000..09298816 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs @@ -0,0 +1,6 @@ +const CodeGroup_vue_vue_type_style_index_0_scoped_3e3370af_transformed_true_lang = ".code-group[data-v-3e3370af]{border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-md);overflow:hidden}.code-group[data-v-3e3370af] .prose-code{border:none;border-radius:0;margin:0}.code-group[data-v-3e3370af] .filename{display:none}.code-group .preview-canvas[data-v-3e3370af]{padding:var(--space-4)}.code-group .preview-canvas[data-v-3e3370af]:has(.sandbox){padding:0}.code-group .preview-canvas[data-v-3e3370af]:has(.sandbox) .sandbox{border:0;border-radius:0}"; + +const CodeGroupStyles_0da0e60b = [CodeGroup_vue_vue_type_style_index_0_scoped_3e3370af_transformed_true_lang]; + +export { CodeGroupStyles_0da0e60b as default }; +//# sourceMappingURL=CodeGroup-styles.0da0e60b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map new file mode 100644 index 00000000..be8f467b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CodeGroup-styles.0da0e60b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeGroup-styles-1.mjs-0cd56e59.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeGroup-styles.0da0e60b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,8eAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs new file mode 100644 index 00000000..8b710339 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs @@ -0,0 +1,143 @@ +import { defineComponent, computed, resolveComponent, ref, h, useSSRContext, unref } from 'vue'; +import { u as useNuxtApp } from './app.config-832f5f68.mjs'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import Ellipsis from './Ellipsis-b69b027e.mjs'; +import ComponentPlaygroundData from './ComponentPlaygroundData-d25a0f8e.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; +import './TabsHeader-c9b56dab.mjs'; +import './ComponentPlaygroundProps-8f45f1a7.mjs'; +import './ProseH4-4f0da863.mjs'; +import './ProseCodeInline-960b9a43.mjs'; +import './Badge-5f9ab214.mjs'; +import './ContentSlot-deb25102.mjs'; +import './ProseP-a91aeff7.mjs'; +import './index-1624a23e.mjs'; +import './ComponentPlaygroundSlots-0dbd767a.mjs'; +import './ComponentPlaygroundTokens-548a0a2d.mjs'; + +async function useComponentMeta(componentName) { + useNuxtApp(); + const _componentName = unref(componentName); + { + const { data } = await useAsyncData( + `nuxt-component-meta${_componentName ? `-${_componentName}` : ""}`, + () => { + return $fetch(`/api/component-meta${_componentName ? `/${_componentName}` : ""}`); + } + ); + return computed(() => data.value); + } +} +const _sfc_main = defineComponent({ + props: { + component: { + type: String, + required: true + }, + props: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const as = computed(() => resolveComponent(props.component)); + const formProps = ref({ + ...props.props + }); + const componentData = await useComponentMeta(props.component); + return { + as, + formProps, + componentData + }; + }, + render(ctx) { + const componentSlots = Object.entries(this.$slots).reduce( + (acc, [key, slot]) => { + if (key.startsWith("component-")) { + const slotKey = key.replace("component-", ""); + acc[slotKey] = slot; + } + return acc; + }, + {} + ); + return h( + "div", + { + class: "component-playground" + }, + [ + h( + "div", + { + class: "component-playground-wrapper" + }, + [ + h( + Ellipsis, + { + class: "component-playground-ellipsis", + blur: "5vw", + height: "100%", + width: "100%" + } + ), + h( + ctx.as, + { + ...ctx.formProps, + class: "component-playground-component" + }, + { + ...componentSlots + } + ) + ] + ), + h( + ComponentPlaygroundData, + { + modelValue: ctx.formProps, + componentData: ctx.componentData, + "onUpdate:modelValue": (val) => ctx.formProps = val + } + ) + ] + ); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ComponentPlayground = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9ca9b996"]]); + +export { ComponentPlayground as default }; +//# sourceMappingURL=ComponentPlayground-c7ca07d7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map new file mode 100644 index 00000000..744629a8 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlayground-c7ca07d7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlayground-c7ca07d7.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs new file mode 100644 index 00000000..d7acc311 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs @@ -0,0 +1,6 @@ +const ComponentPlayground_vue_vue_type_style_index_0_scoped_9ca9b996_transformed_true_lang = ".component-playground[data-v-9ca9b996]{border:1px solid var(--color-gray-200);border-radius:var(--radii-lg);overflow:hidden}:root.dark .component-playground[data-v-9ca9b996]{border:1px solid var(--color-gray-800)}.component-playground .component-playground-wrapper[data-v-9ca9b996]{background:linear-gradient(330deg,var(--color-gray-200) 0,var(--color-gray-100) 100%);overflow:hidden;padding:var(--space-8);position:relative}:root.dark .component-playground .component-playground-wrapper[data-v-9ca9b996]{background:linear-gradient(330deg,var(--color-gray-900) 0,var(--color-gray-800) 100%)}.component-playground .component-playground-wrapper .component-playground-ellipsis[data-v-9ca9b996]{z-index:1}.component-playground .component-playground-wrapper .component-playground-component[data-v-9ca9b996]{z-index:50}"; + +const ComponentPlaygroundStyles_249b42e4 = [ComponentPlayground_vue_vue_type_style_index_0_scoped_9ca9b996_transformed_true_lang]; + +export { ComponentPlaygroundStyles_249b42e4 as default }; +//# sourceMappingURL=ComponentPlayground-styles.249b42e4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map new file mode 100644 index 00000000..aa79c1f7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlayground-styles.249b42e4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlayground-styles-1.mjs-ec8aa521.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlayground-styles.249b42e4.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,oFAAuF,GAAA,+yBAAA;;ACC7F,2CAAe,CAACA,oFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs new file mode 100644 index 00000000..3eaab071 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs @@ -0,0 +1,102 @@ +import __nuxt_component_0 from './TabsHeader-c9b56dab.mjs'; +import __nuxt_component_1 from './ComponentPlaygroundProps-8f45f1a7.mjs'; +import _sfc_main$1 from './ComponentPlaygroundSlots-0dbd767a.mjs'; +import _sfc_main$2 from './ComponentPlaygroundTokens-548a0a2d.mjs'; +import { useSSRContext, defineComponent, ref, mergeProps, unref, isRef } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { a as useVModel } from './index-1624a23e.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import './ProseH4-4f0da863.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import './DocsAsideTree-136bd08b.mjs'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './ProseCodeInline-960b9a43.mjs'; +import './Badge-5f9ab214.mjs'; +import './ContentSlot-deb25102.mjs'; +import './ProseP-a91aeff7.mjs'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ComponentPlaygroundData", + __ssrInlineRender: true, + props: { + modelValue: { + type: Object, + required: false, + default: () => ({}) + }, + componentData: { + type: Object, + required: false, + default: () => ({}) + } + }, + emits: ["update:modelValue"], + setup(__props, { emit: emits }) { + const props = __props; + const formData = useVModel(props, "modelValue", emits); + const activeTabIndex = ref(0); + const tabs = [ + { + label: "Props" + }, + { + label: "Slots" + }, + { + label: "Design Tokens" + } + ]; + const updateTab = (i) => activeTabIndex.value = i; + return (_ctx, _push, _parent, _attrs) => { + const _component_TabsHeader = __nuxt_component_0; + const _component_ComponentPlaygroundProps = __nuxt_component_1; + const _component_ComponentPlaygroundSlots = _sfc_main$1; + const _component_ComponentPlaygroundTokens = _sfc_main$2; + _push(``); + _push(ssrRenderComponent(_component_TabsHeader, { + "active-tab-index": unref(activeTabIndex), + tabs, + "onUpdate:activeTabIndex": updateTab + }, null, _parent)); + if (unref(activeTabIndex) === 0) { + _push(ssrRenderComponent(_component_ComponentPlaygroundProps, { + modelValue: unref(formData), + "onUpdate:modelValue": ($event) => isRef(formData) ? formData.value = $event : null, + "component-data": __props.componentData + }, null, _parent)); + } else { + _push(``); + } + if (unref(activeTabIndex) === 1) { + _push(ssrRenderComponent(_component_ComponentPlaygroundSlots, { "component-data": __props.componentData }, null, _parent)); + } else { + _push(``); + } + if (unref(activeTabIndex) === 2) { + _push(ssrRenderComponent(_component_ComponentPlaygroundTokens, { "component-data": __props.componentData }, null, _parent)); + } else { + _push(``); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ComponentPlaygroundData = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ff75821c"]]); + +export { ComponentPlaygroundData as default }; +//# sourceMappingURL=ComponentPlaygroundData-d25a0f8e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map new file mode 100644 index 00000000..02f746ce --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlaygroundData-d25a0f8e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundData-d25a0f8e.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs new file mode 100644 index 00000000..0909ad46 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs @@ -0,0 +1,6 @@ +const ComponentPlaygroundData_vue_vue_type_style_index_0_scoped_ff75821c_transformed_true_lang = ".component-playground-data .component-playground-data-section[data-v-ff75821c]{padding:var(--space-4)}:root.dark .component-playground-data .component-playground-data-section[data-v-ff75821c]{background-color:var(--color-gray-900)}"; + +const ComponentPlaygroundDataStyles_9bdce5c2 = [ComponentPlaygroundData_vue_vue_type_style_index_0_scoped_ff75821c_transformed_true_lang]; + +export { ComponentPlaygroundDataStyles_9bdce5c2 as default }; +//# sourceMappingURL=ComponentPlaygroundData-styles.9bdce5c2.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map new file mode 100644 index 00000000..8756ebf9 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlaygroundData-styles.9bdce5c2.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundData-styles-1.mjs-097afe24.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wFAA2F,GAAA,yOAAA;;ACCjG,+CAAe,CAACA,wFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs new file mode 100644 index 00000000..cb0383ba --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs @@ -0,0 +1,127 @@ +import __nuxt_component_0 from './ProseH4-4f0da863.mjs'; +import __nuxt_component_1$1 from './ProseCodeInline-960b9a43.mjs'; +import __nuxt_component_2 from './Badge-5f9ab214.mjs'; +import __nuxt_component_3 from './ProseP-a91aeff7.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, unref, withCtx, createTextVNode, toDisplayString } from 'vue'; +import { ssrRenderAttrs, ssrRenderList, ssrRenderAttr, ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; +import { a as useVModel } from './index-1624a23e.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import './DocsAsideTree-136bd08b.mjs'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import './ContentSlot-deb25102.mjs'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ComponentPlaygroundProps", + __ssrInlineRender: true, + props: { + modelValue: { + type: Object, + required: true + }, + componentData: { + type: Object, + required: true + } + }, + emits: ["update:modelValue"], + setup(__props, { emit: emits }) { + const props = __props; + const formData = useVModel(props, "modelValue", emits); + const componentProps = computed(() => { + var _a, _b; + return (_b = (_a = props == null ? void 0 : props.componentData) == null ? void 0 : _a.meta) == null ? void 0 : _b.props; + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_ProseH4 = __nuxt_component_0; + const _component_ProseCodeInline = __nuxt_component_1$1; + const _component_Badge = __nuxt_component_2; + const _component_ProseP = __nuxt_component_3; + _push(``); + ssrRenderList(unref(componentProps), (prop) => { + _push(`
`); + _push(ssrRenderComponent(_component_ProseH4, { + id: prop.name + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`${ssrInterpolate(prop.name)}`); + } else { + return [ + createTextVNode(toDisplayString(prop.name), 1) + ]; + } + }), + _: 2 + }, _parent)); + _push(``); + _push(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`${ssrInterpolate(prop.type)}`); + } else { + return [ + createTextVNode(toDisplayString(prop.type), 1) + ]; + } + }), + _: 2 + }, _parent)); + if (!prop.required) { + _push(ssrRenderComponent(_component_Badge, null, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(` Required `); + } else { + return [ + createTextVNode(" Required ") + ]; + } + }), + _: 2 + }, _parent)); + } else { + _push(``); + } + _push(`
`); + if (prop.description) { + _push(ssrRenderComponent(_component_ProseP, null, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`${ssrInterpolate(prop.description)}`); + } else { + return [ + createTextVNode(toDisplayString(prop.description), 1) + ]; + } + }), + _: 2 + }, _parent)); + } else { + _push(``); + } + _push(``); + }); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-acf5a6ce"]]); + +export { __nuxt_component_1 as default }; +//# sourceMappingURL=ComponentPlaygroundProps-8f45f1a7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map new file mode 100644 index 00000000..af5fa485 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlaygroundProps-8f45f1a7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundProps-8f45f1a7.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs new file mode 100644 index 00000000..d44e4347 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs @@ -0,0 +1,6 @@ +const ComponentPlaygroundProps_vue_vue_type_style_index_0_scoped_acf5a6ce_transformed_true_lang = ".prop-title[data-v-acf5a6ce]{align-items:flex-start;display:flex;flex-direction:column;justify-content:flex-start;width:100%}.prop-title[data-v-acf5a6ce],.prop-title h4[data-v-acf5a6ce]{margin-bottom:var(--space-4);margin-top:var(--space-4)}.prop-title h4[data-v-acf5a6ce]{font-size:var(--fontSize-2xl);font-weight:var(--fontWeight-black);line-height:1}@mq.md{.prop-title h4[data-v-acf5a6ce]{margin-bottom:var(--space-0);margin-top:var(--space-0)}}.prop-title span[data-v-acf5a6ce]{align-items:center;display:flex;gap:var(--space-4)}@mq.md{.prop-title[data-v-acf5a6ce]{flex-direction:row;justify-content:space-between}}input[data-v-acf5a6ce]{border:1px solid var(--color-gray-200);border-radius:var(--radii-sm);padding:var(--space-1) var(--space-2)}:root.dark input[data-v-acf5a6ce]{border:1px solid var(--color-gray-800)}"; + +const ComponentPlaygroundPropsStyles_82745445 = [ComponentPlaygroundProps_vue_vue_type_style_index_0_scoped_acf5a6ce_transformed_true_lang]; + +export { ComponentPlaygroundPropsStyles_82745445 as default }; +//# sourceMappingURL=ComponentPlaygroundProps-styles.82745445.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map new file mode 100644 index 00000000..00d93f73 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlaygroundProps-styles.82745445.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundProps-styles-1.mjs-8b10ca6b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yFAA4F,GAAA,wzBAAA;;ACClG,gDAAe,CAACA,yFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs new file mode 100644 index 00000000..5899e0be --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs @@ -0,0 +1,27 @@ +import { defineComponent, mergeProps, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ComponentPlaygroundSlots", + __ssrInlineRender: true, + props: { + componentData: { + type: Object, + required: true + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + _push(`
${ssrInterpolate(JSON.stringify(__props.componentData, null, 2))}
`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ComponentPlaygroundSlots-0dbd767a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map new file mode 100644 index 00000000..9d5c7ac0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlaygroundSlots-0dbd767a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundSlots-0dbd767a.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,0BAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,UAAA,CAAW,EAAE,KAAO,EAAA,mCAAA,IAAuC,MAAM,CAAC,CAAU,CAAA,MAAA,EAAA,cAAA,CAAe,KAAK,SAAU,CAAA,OAAA,CAAQ,eAAe,IAAM,EAAA,CAAC,CAAC,CAAe,CAAA,YAAA,CAAA,CAAA,CAAA;AAAA,KACtL,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iFAAiF,CAAA,CAAA;AAC9J,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs new file mode 100644 index 00000000..1e66ef80 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs @@ -0,0 +1,27 @@ +import { defineComponent, mergeProps, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ComponentPlaygroundTokens", + __ssrInlineRender: true, + props: { + componentData: { + type: Object, + required: true + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + _push(`${ssrInterpolate(__props.componentData)}`); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ComponentPlaygroundTokens-548a0a2d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map new file mode 100644 index 00000000..b89cd91b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ComponentPlaygroundTokens-548a0a2d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundTokens-548a0a2d.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,2BAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,CAAO,IAAA,EAAA,cAAA,CAAe,UAAW,CAAA,EAAE,KAAO,EAAA,mCAAA,EAAuC,EAAA,MAAM,CAAC,CAAA,CAAA,CAAA,EAAK,cAAe,CAAA,OAAA,CAAQ,aAAa,CAAS,CAAA,MAAA,CAAA,CAAA,CAAA;AAAA,KAClJ,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,kFAAkF,CAAA,CAAA;AAC/J,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs b/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs new file mode 100644 index 00000000..fe2d8aed --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs @@ -0,0 +1,990 @@ +import { inject, useSSRContext, ref, getCurrentInstance, computed, defineComponent, createVNode, resolveDynamicComponent, mergeProps, unref, withCtx, renderSlot, watch, onScopeDispose } from 'vue'; +import { ssrRenderVNode, ssrRenderSlot } from 'vue/server-renderer'; +import { nanoid } from 'nanoid'; +import { kebabCase } from 'scule'; +import { defu } from 'defu'; + +function set(object, paths, value, splitter = ".") { + var _a; + if (typeof paths === "string") { + paths = paths.split(splitter); + } + const limit = paths.length - 1; + for (let i = 0; i < limit; ++i) { + const key2 = paths[i]; + object = (_a = object[key2]) != null ? _a : object[key2] = {}; + } + const key = paths[limit]; + object[key] = value; +} +function get(object, paths, splitter = ".") { + var _a; + if (typeof paths === "string") { + paths = paths.split(splitter); + } + const limit = paths.length - 1; + for (let i = 0; i < limit; ++i) { + const key2 = paths[i]; + object = (_a = object[key2]) != null ? _a : object[key2] = {}; + } + const key = paths[limit]; + return object[key]; +} +function walkTokens(obj, cb, paths = []) { + let result = {}; + if (obj.value) { + result = cb(obj, result, paths); + } else { + for (const k in obj) { + if (obj[k] && typeof obj[k] === "object") { + result[k] = walkTokens(obj[k], cb, [...paths, k]); + } + } + } + return result; +} +function normalizeConfig(obj, mqKeys, removeSchemaKeys = false) { + let result = {}; + if (obj.value) { + result = obj; + } else { + for (const k in obj) { + if (k === "$schema") { + if (!removeSchemaKeys) { + result[k] = obj[k]; + } + continue; + } + if (k === "utils") { + result[k] = obj[k]; + continue; + } + if (obj[k] && (typeof obj[k] === "string" || typeof obj[k] === "number" || typeof obj[k] === "boolean" || typeof obj[k] === "symbol" || typeof obj[k] === "bigint")) { + result[k] = { value: obj[k] }; + } else if (obj[k] && typeof obj[k] === "object") { + const keys = Object.keys(obj[k]); + if (keys.includes("initial") && keys.some((key) => mqKeys.includes(key))) { + result[k] = { value: obj[k] }; + continue; + } + result[k] = normalizeConfig(obj[k], mqKeys, removeSchemaKeys); + } + } + } + return result; +} +const referencesRegex = new RegExp( + "\\{([^}]+)\\}", + "g" +); +const keyRegex = /{(.*)}/g; +const DARK = "@dark"; +const LIGHT = "@light"; +const INITIAL = "@initial"; +const responsiveMediaQueryRegex = /^(:|\.)/; +function createTokensHelper(theme = {}, options = {}) { + const defaultHelperOptions = { + key: "attributes.variable", + onNotFound: false, + ...options + }; + function $tokens(path = void 0, options2) { + if (!path) { + return unref(theme); + } + const $tokensOptions = { ...defaultHelperOptions, ...options2 }; + const { key, onNotFound } = $tokensOptions; + const token = get(unref(theme), path); + if (!token && typeof onNotFound === "function") { + onNotFound(path, $tokensOptions); + return; + } + return key ? token ? token[key] ? token[key] : get(token, key) : token : token; + } + return $tokens.bind(this); +} +function pathToVarName(path) { + if (Array.isArray(path)) { + path = path.join("-"); + } + if (path.charAt(0) === "{" && path.charAt(path.length - 1) === "}") { + path = path.substr(1, path.length - 2); + } + return `--${path.split(".").join("-")}`; +} +function resolveCssProperty(property, value, style, selectors, ctx, loc) { + const directive = resolveCustomDirectives(property, value, selectors, ctx, loc); + if (directive) { + return directive; + } + if (ctx.utils[property]) { + if (typeof ctx.utils[property] === "function") { + return ctx.utils[property](value); + } + return value ? ctx.utils[property] : {}; + } + value = castValues(property, value, ctx, loc); + return { + [property]: value + }; +} +function castValues(property, value, ctx, loc) { + if (Array.isArray(value) || typeof value === "string" || typeof value === "number") { + if (Array.isArray(value)) { + value = value.map((v) => castValue(property, v, ctx, loc)).join(","); + } else { + value = castValue(property, value, ctx, loc); + } + } + return value; +} +function castValue(property, value, ctx, loc) { + if (typeof value === "number") { + return value; + } + if (value.match(referencesRegex)) { + value = resolveReferences(property, value, ctx, loc); + } + if (value === "{}") { + return ""; + } + return value; +} +function resolveReferences(_, value, ctx, loc) { + if (!(typeof value === "string")) { + return value; + } + value = value.replace( + referencesRegex, + (_2, tokenPath) => { + const token = ctx.$tokens(tokenPath, { key: void 0, loc }); + const tokenValue = typeof token === "string" ? token : (token == null ? void 0 : token.variable) || (token == null ? void 0 : token.value); + if (!tokenValue) { + return `var(${pathToVarName(tokenPath)})`; + } + return tokenValue; + } + ); + return value; +} +function resolveCustomDirectives(property, value, selectors, ctx, loc) { + if (property.startsWith("@")) { + const resolveColorScheme = (scheme) => { + scheme = ctx.options.colorSchemeMode === "class" ? `:root.${scheme}` : `@media (prefers-color-scheme: ${scheme})`; + const isMedia = scheme.startsWith("@media"); + if (ctx == null ? void 0 : ctx.runtime) { + return { + "@media": { + [scheme]: value + } + }; + } + return { + [isMedia ? scheme : `${scheme} &`]: value + }; + }; + if (property === DARK) { + return resolveColorScheme("dark"); + } + if (property === LIGHT) { + return resolveColorScheme("light"); + } + if (property === INITIAL) { + const token = ctx.$tokens("media.initial", { key: "value", onNotFound: false, loc }); + return { + [`@media${token ? ` ${token}` : ""}`]: value + }; + } + const mediaQueries = ctx.$tokens("media", { key: void 0, loc }); + if (mediaQueries) { + const query = property.replace("@", ""); + if (mediaQueries[query]) { + return { + [`@media ${mediaQueries[query].value}`]: value + }; + } + } + return { + [property]: value + }; + } +} +const comma = /\s*,\s*(?![^()]*\))/; +const getResolvedSelectors = (parentSelectors, nestedSelectors) => parentSelectors.reduce( + (resolvedSelectors, parentSelector) => { + resolvedSelectors.push( + ...nestedSelectors.map( + (selector) => selector.includes("&") ? selector.replace( + /&/g, + /[ +>|~]/.test(parentSelector) && /&.*&/.test(selector) ? `:is(${parentSelector})` : parentSelector + ) : `${parentSelector} ${selector}` + ) + ); + return resolvedSelectors; + }, + [] +); +const { prototype: { toString } } = Object; +const stringify = (value, replacer = void 0) => { + const used = /* @__PURE__ */ new WeakSet(); + const write = (cssText, selectors, conditions, name, data, isAtRuleLike) => { + for (let i = 0; i < conditions.length; ++i) { + if (!used.has(conditions[i])) { + used.add(conditions[i]); + cssText += `${conditions[i]}{`; + } + } + if (selectors.length && !used.has(selectors)) { + used.add(selectors); + cssText += `${selectors}{`; + } + if (isAtRuleLike) { + name = `${name} `; + } else { + name = `${kebabCase(name)}:`; + } + cssText += `${name + String(data)};`; + return cssText; + }; + const parse = (style, selectors, conditions, prevName, prevData) => { + let cssText = ""; + for (const name in style) { + const isAtRuleLike = name.charCodeAt(0) === 64; + for (const data of isAtRuleLike && Array.isArray(style[name]) ? style[name] : [style[name]]) { + if (replacer && (name !== prevName || data !== prevData)) { + const next = replacer(name, data, style, selectors); + if (next !== null) { + cssText += typeof next === "object" && next ? parse(next, selectors, conditions, name, data) : next == null ? "" : next; + continue; + } + } + const isObjectLike = typeof data === "object" && data && data.toString === toString; + if (isObjectLike) { + if (used.has(selectors)) { + used.delete(selectors); + cssText += "}"; + } + const usedName = Object(name); + let nextSelectors; + if (isAtRuleLike) { + nextSelectors = selectors; + cssText += parse( + data, + nextSelectors, + conditions.concat(usedName) + ); + } else { + nextSelectors = selectors.length ? getResolvedSelectors(selectors, name.split(comma)) : name.split(comma); + cssText += parse( + data, + nextSelectors, + conditions + ); + } + if (used.has(usedName)) { + used.delete(usedName); + cssText += "}"; + } + if (used.has(nextSelectors)) { + used.delete(nextSelectors); + cssText += "}"; + } + } else { + cssText = write(cssText, selectors, conditions, name, data, isAtRuleLike); + } + } + } + return cssText; + }; + return parse(value, [], []); +}; +const HYDRATION_SELECTOR = ".phy[--]"; +function usePinceauRuntimeSheet($tokens, initialUtils = {}, colorSchemeMode, appId) { + const sheet = ref(); + const utils2 = ref(initialUtils); + const cache = {}; + const stringify$1 = (decl, loc) => stringify( + decl, + (property, value, style, selectors) => resolveCssProperty( + property, + value, + style, + selectors, + { $tokens, utils: utils2.value, options: { colorSchemeMode, runtime: true } }, + loc + ) + ); + function resolveStylesheet() { + const global = globalThis || window; + let style; + let hydratableSheet; + if (global && global.document) { + const doc = global.document; + hydratableSheet = doc.querySelector(`style#pinceau-runtime-hydratable${appId ? `-${appId}` : ""}`); + const styleNode = doc.createElement("style"); + styleNode.id = `pinceau-runtime${appId ? `-${appId}` : ""}`; + styleNode.type = "text/css"; + style = doc.head.appendChild(styleNode); + } + sheet.value = (style == null ? void 0 : style.sheet) || getSSRStylesheet(); + return hydratableSheet ? hydrateStylesheet(hydratableSheet) : void 0; + } + function hydrateStylesheet(el) { + var _a, _b; + const hydratableRules2 = {}; + for (const _rule of Object.entries(((_a = el == null ? void 0 : el.sheet) == null ? void 0 : _a.cssRules) || ((_b = sheet.value) == null ? void 0 : _b.cssRules) || {})) { + const [index, rule] = _rule; + const uids = resolveUid(rule); + if (!uids || !uids.uid) { + continue; + } + if (!hydratableRules2[uids.uid]) { + hydratableRules2[uids.uid] = {}; + } + const newIndex = sheet.value.insertRule(rule.cssText, Number(index)); + hydratableRules2[uids.uid][uids.type] = sheet.value.cssRules.item(newIndex); + } + if (el) { + el.remove(); + } + return hydratableRules2; + } + function toString2() { + if (!sheet.value) { + return ""; + } + return Object.entries(sheet.value.cssRules).reduce( + (acc, [, rule]) => { + acc += `${rule == null ? void 0 : rule.cssText} +` || ""; + return acc; + }, + "" + ); + } + function pushDeclaration(uid, type, declaration, previousRule, loc) { + if (!Object.keys(declaration).length) { + return; + } + const cssText = stringify$1( + { + "@media": { + // Mark inserted declaration with unique id and type of runtime style + [HYDRATION_SELECTOR]: { "--puid": `${uid}-${type}` }, + ...declaration + } + }, + loc + ); + if (!cssText) { + return; + } + if (previousRule) { + deleteRule(previousRule); + } + const ruleId = sheet.value.insertRule(cssText); + return sheet.value.cssRules[ruleId]; + } + function deleteRule(rule) { + const ruleIndex = Object.values(sheet.value.cssRules).indexOf(rule); + if (typeof ruleIndex === "undefined" || isNaN(ruleIndex)) { + return; + } + try { + sheet.value.deleteRule(ruleIndex); + } catch (e) { + } + } + const hydratableRules = resolveStylesheet(); + return { + stringify: stringify$1, + cache, + pushDeclaration, + deleteRule, + sheet, + toString: toString2, + hydratableRules + }; +} +function getSSRStylesheet() { + return { + cssRules: [], + insertRule(cssText, index = this.cssRules.length) { + this.cssRules.splice(index, 1, { cssText }); + return index; + }, + deleteRule(index) { + delete this.cssRules[index]; + } + }; +} +function resolveUid(rule) { + const uidRule = rule.cssRules && rule.cssRules.length ? Object.entries(rule == null ? void 0 : rule.cssRules).find(([_, rule2]) => rule2.selectorText === HYDRATION_SELECTOR) : void 0; + if (!uidRule) { + return; + } + const uidRegex = /--puid:(.*)?-(c|v|p)?/m; + const [, uid, type] = uidRule[1].cssText.match(uidRegex); + if (!uid) { + return; + } + return { uid, type }; +} +function usePinceauRuntimeIds(instance, classes, _) { + var _a, _b, _c; + let uid; + const el = (_a = instance == null ? void 0 : instance.vnode) == null ? void 0 : _a.el; + if (el && el.classList) { + el.classList.forEach( + (elClass) => { + if (uid) { + return; + } + if (elClass.startsWith("pc-")) { + uid = elClass.split("pc-")[1]; + } + } + ); + } else { + uid = nanoid(6); + } + const scopeId = (_c = (_b = instance == null ? void 0 : instance.vnode) == null ? void 0 : _b.type) == null ? void 0 : _c.__scopeId; + const ids = { + uid, + componentId: scopeId ? `[${scopeId}]` : "", + uniqueClassName: `pc-${uid}` + }; + classes.value.c = ids.uniqueClassName; + return computed(() => ids); +} +function isToken(token) { + return typeof token === "string" && keyRegex.test(token); +} +function scale(type, prop, scales, valueTransform) { + if (typeof prop === "object") { + return prop; + } + if (typeof prop === "string") { + const to_ret = {}; + if (isToken(prop)) { + to_ret.initial = prop; + return to_ret; + } + if (typeof scales === "string") { + to_ret.initial = `{${type}.${prop}.${scales}}`; + } + if (typeof scales === "object") { + Object.entries(scales).forEach( + ([mqId, scaleValue]) => { + if (typeof prop === "string") { + to_ret[mqId] = `{${type}.${prop}.${scaleValue}}`; + } + } + ); + } + return valueTransform ? Object.entries(to_ret).reduce( + (acc, [key, value]) => { + acc[key] = valueTransform(value); + return acc; + }, + {} + ) : to_ret; + } +} +const utils = { + isToken, + scale +}; +function usePinceauThemeSheet(initialTheme, tokensHelperConfig = {}) { + const sheet = ref(); + const theme = ref(initialTheme || {}); + tokensHelperConfig = Object.assign( + { + key: "variable" + }, + tokensHelperConfig || {} + ); + const $tokens = createTokensHelper( + theme, + tokensHelperConfig + ); + let cache = {}; + resolveStylesheet(); + function findThemeSheet(document2) { + var _a; + for (const sheet2 of document2.styleSheets) { + if ((_a = sheet2 == null ? void 0 : sheet2.ownerNode) == null ? void 0 : _a.textContent.includes("--pinceau-mq")) { + return sheet2.ownerNode; + } + } + } + function resolveStylesheet() { + var _a; + const global = globalThis || window; + if (global && global.document) { + let sheetElement = document.querySelector("#pinceau-theme"); + if (!sheetElement) { + sheetElement = findThemeSheet(document); + } + sheet.value = sheetElement == null ? void 0 : sheetElement.sheet; + if (sheet.value) { + hydrateStylesheet((_a = sheet.value) == null ? void 0 : _a.cssRules); + } + } + } + function hydrateStylesheet(cssRules) { + cache = {}; + Object.entries(cssRules || {}).forEach( + ([_, rule]) => { + var _a, _b; + if ((rule == null ? void 0 : rule.type) !== 4 && !((_a = rule == null ? void 0 : rule.cssText) == null ? void 0 : _a.includes("--pinceau-mq"))) { + return false; + } + let currentTheme = "initial"; + (_b = rule.cssText.match(/--([\w-]+)\s*:\s*(.+?);/gm)) == null ? void 0 : _b.forEach((match) => { + var _a2; + const [variable, value] = match.replace(";", "").split(/:\s(.*)/s); + if (variable === "--pinceau-mq") { + currentTheme = value; + if (!cache[value]) { + const ruleReference = (_a2 = Object.entries((rule == null ? void 0 : rule.cssRules) || {}).find(([_2, cssRule]) => cssRule == null ? void 0 : cssRule.cssText.includes(`--pinceau-mq: ${value}`))) == null ? void 0 : _a2[1]; + if (ruleReference) { + cache[value] = ruleReference; + } + } + return; + } + const path = [...variable.substring(2).split("-")]; + set(theme.value, path, getSetValue(path, value, variable, currentTheme)); + }); + } + ); + } + function updateTheme(value) { + var _a; + const mqKeys = Array.from(/* @__PURE__ */ new Set(["dark", "light", ...Object.keys((value == null ? void 0 : value.media) || {}), ...Object.keys(((_a = theme.value) == null ? void 0 : _a.media) || {})])); + const config = normalizeConfig(value || {}, mqKeys, true); + walkTokens(config, (token, _, paths) => updateToken(paths, token.value)); + } + function updateToken(path, value, mq = "initial") { + var _a; + if (typeof value === "object") { + Object.entries(value).forEach(([mq2, mqValue]) => updateToken(path, mqValue, mq2)); + return; + } + const varName = pathToVarName(path); + if (!(cache == null ? void 0 : cache[mq])) { + createMqRule(mq); + } + const resolvedValue = resolveReferences(void 0, value, { $tokens }); + set( + theme.value, + path, + getSetValue(path, resolvedValue, varName, mq) + ); + (_a = cache == null ? void 0 : cache[mq]) == null ? void 0 : _a.style.setProperty(varName, resolvedValue); + } + function reactiveToken(path) { + return computed( + { + get() { + return get(theme.value, `${path}.value`); + }, + set(v) { + updateToken(path, v); + } + } + ); + } + function getSetValue(path, value, variable, mq = "initial") { + const varRef = `var(${variable})`; + const setValue = { value, variable: varRef }; + const existingValue = get(theme.value, path); + if (existingValue) { + if (typeof (existingValue == null ? void 0 : existingValue.value) === "object") { + setValue.value = { ...existingValue.value, [mq]: value }; + } else { + setValue.value = { initial: existingValue.value, [mq]: value }; + } + } + return setValue; + } + function createMqRule(mq) { + var _a, _b, _c; + if (cache == null ? void 0 : cache[mq]) { + return cache == null ? void 0 : cache[mq]; + } + let mqValue; + if (mq === "dark" || mq === "light") { + mqValue = `:root.${mq}`; + } else { + mqValue = (_c = (_b = (_a = theme.value) == null ? void 0 : _a.media) == null ? void 0 : _b[mq]) == null ? void 0 : _c.value; + } + let css; + if (mqValue.match(responsiveMediaQueryRegex)) { + css = `@media { ${mqValue} { --pinceau-mq: ${mq}; } }`; + } else { + css = `@media ${mqValue} { :root { --pinceau-mq: ${mq}; } }`; + } + cache[mq] = sheet.value.cssRules.item(sheet.value.insertRule(css, sheet.value.cssRules.length)).cssRules[0]; + return cache[mq]; + } + return { + $tokens, + updateToken, + updateTheme, + reactiveToken, + resolveStylesheet, + theme + }; +} +function usePinceauComputedStyles(ids, computedStyles, sheet, loc) { + var _a, _b; + let rule = (_b = (_a = sheet.hydratableRules) == null ? void 0 : _a[ids.value.uid]) == null ? void 0 : _b.c; + watch( + computedStyles, + (newComputedStyles) => { + newComputedStyles = computedStylesToDeclaration(ids.value, newComputedStyles); + rule = sheet.pushDeclaration( + ids.value.uid, + "c", + newComputedStyles, + rule, + { ...loc, type: "c" } + ); + }, + { + immediate: !rule, + deep: true + } + ); + onScopeDispose(() => rule && sheet.deleteRule(rule)); +} +function computedStylesToDeclaration(ids, computedStyles) { + const declaration = {}; + const targetId = `.${ids.uniqueClassName}${ids.componentId}`; + if (computedStyles && Object.keys(computedStyles).length) { + declaration[targetId] = declaration[targetId] || {}; + for (const [varName, _value] of Object.entries(computedStyles)) { + const value = unref(_value); + if (varName === "css") { + declaration[targetId] = Object.assign(declaration[targetId], value); + continue; + } + if (typeof value === "object") { + for (const [mqId, mqPropValue] of Object.entries(value)) { + const _value2 = unref(mqPropValue); + if (!_value2) { + continue; + } + if (mqId === "initial") { + if (!declaration[targetId]) { + declaration[targetId] = {}; + } + if (!declaration[targetId]) { + declaration[targetId] = {}; + } + declaration[targetId][`--${varName}`] = _value2; + } + const mediaId = `@${mqId}`; + if (!declaration[mediaId]) { + declaration[mediaId] = {}; + } + if (!declaration[mediaId][targetId]) { + declaration[mediaId][targetId] = {}; + } + declaration[mediaId][targetId][`--${kebabCase(varName)}`] = _value2; + } + } else { + const _value2 = unref(value); + if (_value2) { + declaration[targetId][`--${kebabCase(varName)}`] = _value2; + } + } + } + } + return declaration; +} +const usePinceauVariants = (ids, variants, props, sheet, classes, loc) => { + var _a, _b; + let rule = (_b = (_a = sheet.hydratableRules) == null ? void 0 : _a[ids.value.uid]) == null ? void 0 : _b.v; + const variantsState = computed(() => variants && (variants == null ? void 0 : variants.value) ? resolveVariantsState(ids.value, props.value, variants.value) : {}); + const variantsClasses = ref([]); + watch( + variantsState, + ({ cacheId, variantsProps }) => { + let variantClass; + if (sheet.cache[cacheId]) { + const cachedRule = sheet.cache[cacheId]; + rule = cachedRule.rule; + variantClass = cachedRule.variantClass; + if (cachedRule == null ? void 0 : cachedRule.classes) { + variantsClasses.value = cachedRule.classes; + } + cachedRule.count++; + } else { + variantClass = `pv-${nanoid(6)}`; + const { declaration, classes: classes2 } = variantsToDeclaration(variantClass, ids.value, variants.value, variantsProps); + variantsClasses.value = classes2; + rule = sheet.pushDeclaration(ids.value.uid, "v", declaration, void 0, { ...loc, type: "v" }); + sheet.cache[cacheId] = { rule, variantClass, classes: classes2, count: 1 }; + } + classes.value.v = variantClass; + }, + { + immediate: true + } + ); + onScopeDispose( + () => { + var _a2; + const state = variantsState == null ? void 0 : variantsState.value; + const cachedRule = (_a2 = sheet.cache) == null ? void 0 : _a2[state.cacheId]; + if (cachedRule) { + cachedRule.count--; + if (cachedRule.count <= 0) { + sheet.deleteRule(cachedRule.rule); + delete sheet.cache[state.cacheId]; + } + } + } + ); + return { variantsClasses }; +}; +function variantsToDeclaration(variantClass, ids, variants, props) { + var _a, _b; + let classes = []; + const declaration = {}; + if (props && Object.keys(props).length) { + const targetId = `.${variantClass}`; + for (const [propName, propValue] of Object.entries(props)) { + if (typeof propValue === "object") { + for (const [mqId, mqPropValue] of Object.entries(propValue)) { + const _value = (mqPropValue == null ? void 0 : mqPropValue.toString()) || mqPropValue; + const variantValue = variants[propName][_value]; + if (!variantValue) { + continue; + } + if (!declaration[targetId]) { + declaration[targetId] = {}; + } + if (typeof variantValue === "string" || Array.isArray(variantValue) || (variantValue == null ? void 0 : variantValue.$class)) { + const classAttr = typeof variantValue === "string" || Array.isArray(variantValue) ? variantValue : variantValue.$class; + classes = [ + ...classes, + ...typeof classAttr === "string" ? classAttr.split(" ") : classAttr + ]; + delete variantValue.$class; + } + if (mqId === "initial") { + if (!declaration[targetId]) { + declaration[targetId] = {}; + } + declaration[targetId] = defu(declaration[targetId], variantValue); + } + const mediaId = `@${mqId}`; + if (!declaration[mediaId]) { + declaration[mediaId] = {}; + } + if (!declaration[mediaId][targetId]) { + declaration[mediaId][targetId] = {}; + } + declaration[mediaId][targetId] = defu(declaration[mediaId][targetId], variantValue); + } + } else { + const _value = ((_a = propValue == null ? void 0 : propValue.toString) == null ? void 0 : _a.call(propValue)) || propValue; + const variantValue = (_b = variants == null ? void 0 : variants[propName]) == null ? void 0 : _b[_value]; + if (!variantValue) { + continue; + } + if (!declaration[targetId]) { + declaration[targetId] = {}; + } + declaration[targetId] = defu(declaration[targetId], variantValue); + } + } + } + return { declaration, classes }; +} +function resolveVariantsState(ids, props, variants) { + if (!props || !variants) { + return {}; + } + let cacheId = ids.componentId; + const variantsProps = Object.entries(props).reduce( + (acc, [propName, propValue]) => { + if (!variants[propName]) { + return acc; + } + if (typeof propValue === "object") { + Object.entries(propValue).forEach(([key, value]) => cacheId += `${propName}:${key}:${value}|`); + } else { + cacheId += `${propName}:${propValue}|`; + } + acc[propName] = propValue; + return acc; + }, + {} + ); + return { cacheId, variantsProps }; +} +function usePinceauCssProp(ids, props, sheet, loc) { + var _a, _b; + let rule = (_b = (_a = sheet.hydratableRules) == null ? void 0 : _a[ids.value.uid]) == null ? void 0 : _b.p; + const css = computed(() => { + var _a2; + return (_a2 = props.value) == null ? void 0 : _a2.css; + }); + watch( + css, + (newCss) => { + newCss = transformCssPropToDeclaration(ids.value, newCss); + if (rule) { + sheet.deleteRule(rule); + } + rule = sheet.pushDeclaration( + ids.value.uid, + "p", + newCss, + void 0, + { ...loc, type: "c" } + ); + }, + { + immediate: !rule + } + ); + onScopeDispose(() => rule && sheet.deleteRule(rule)); +} +function transformCssPropToDeclaration(ids, css) { + const declaration = {}; + if (css) { + const targetId = `.${ids.uniqueClassName}${ids.componentId}`; + declaration[targetId] = Object.assign(declaration[targetId] || {}, css); + } + return declaration; +} +const defaultRuntimeOptions = { + theme: {}, + utils: {}, + tokensHelperConfig: {}, + multiApp: false, + colorSchemeMode: "media", + dev: false +}; +const plugin = { + install(app, options) { + options = Object.assign(defaultRuntimeOptions, options); + const { theme, tokensHelperConfig, dev, multiApp, colorSchemeMode, utils: utils2 } = options; + const themeSheet = usePinceauThemeSheet(theme); + if (dev && true) { + import('./debug-43adc91a.mjs').then(({ usePinceauRuntimeDebug }) => usePinceauRuntimeDebug(tokensHelperConfig)); + } + const multiAppId = multiApp ? nanoid(6) : void 0; + const runtimeSheet = usePinceauRuntimeSheet(themeSheet.$tokens, utils2, colorSchemeMode, multiAppId); + function usePinceauRuntime2(props, variants, computedStyles) { + const instance = getCurrentInstance(); + let loc; + if (dev && true) { + const { __file: file, __name: name } = instance.vnode.type; + loc = { file, name }; + } + const classes = ref({ + // Variants class + v: "", + // Unique class + c: "" + }); + const ids = usePinceauRuntimeIds(instance, classes); + if (computedStyles && (computedStyles == null ? void 0 : computedStyles.value) && Object.keys(computedStyles.value).length > 0) { + usePinceauComputedStyles(ids, computedStyles, runtimeSheet, loc); + } + let dynamicVariantClasses; + if (variants && (variants == null ? void 0 : variants.value) && Object.keys(variants.value).length > 0) { + const { variantsClasses } = usePinceauVariants(ids, variants, props, runtimeSheet, classes, loc); + dynamicVariantClasses = variantsClasses; + } + if (props.value.css && Object.keys(props.value.css).length > 0) { + usePinceauCssProp(ids, props, runtimeSheet, loc); + } + return { + $pinceau: computed(() => { + var _a; + return `${classes.value.v} ${classes.value.c} ${(_a = dynamicVariantClasses == null ? void 0 : dynamicVariantClasses.value) == null ? void 0 : _a.join(" ")}`; + }) + }; + } + app.config.globalProperties.$pinceauRuntime = usePinceauRuntime2; + app.config.globalProperties.$pinceauTheme = themeSheet; + app.config.globalProperties.$pinceauSsr = { get: () => runtimeSheet.toString() }; + app.provide("pinceauRuntime", usePinceauRuntime2); + app.provide("pinceauTheme", themeSheet); + } +}; +function usePinceauRuntime(props, variants, computedStyles) { + return inject("pinceauRuntime")(props, variants, computedStyles); +} +function usePinceauTheme() { + return inject("pinceauTheme"); +} +function computedStyle(defaultValue, required = false) { + return { + type: [String, Object], + default: defaultValue, + required + }; +} +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Container", + __ssrInlineRender: true, + props: { + as: { + type: String, + required: false, + default: "div" + }, + ...{ "padded": { "required": false, "type": [Boolean, Object], "default": true }, "fluid": { "required": false, "type": [Boolean, Object], "default": false } } + }, + setup(__props) { + const __$pProps = __props; + const __$pVariants = ref({ "padded": { "true": { "px": "{elements.container.padding.mobile}", "@xs": { "px": "{elements.container.padding.xs}" }, "@sm": { "px": "{elements.container.padding.sm}" }, "@md": { "px": "{elements.container.padding.md}" } } }, "fluid": { "true": {}, "false": { "maxWidth": "{elements.container.maxWidth}" } } }); + const { $pinceau } = usePinceauRuntime(computed(() => __$pProps), __$pVariants, void 0); + return (_ctx, _push, _parent, _attrs) => { + ssrRenderVNode(_push, createVNode(resolveDynamicComponent(__props.as), mergeProps({ + class: ["container", [unref($pinceau)]] + }, _attrs), { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true) + ]; + } + }), + _: 3 + }), _parent); + }; + } +}); +const _export_sfc = (sfc, props) => { + const target = sfc.__vccOpts || sfc; + for (const [key, val] of props) { + target[key] = val; + } + return target; +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Container.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-63a0deda"]]); +const Container = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_0 +}); + +export { Container as C, _export_sfc as _, __nuxt_component_0 as a, usePinceauRuntime as b, computedStyle as c, usePinceauTheme as d, plugin as p, utils as u }; +//# sourceMappingURL=Container-1291608c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map b/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map new file mode 100644 index 00000000..fdb2b13d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Container-1291608c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Container-1291608c.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs b/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs new file mode 100644 index 00000000..caab6853 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs @@ -0,0 +1,146 @@ +import { f as useRoute } from './app.config-832f5f68.mjs'; +import { defineComponent, useSlots, h, useSSRContext } from 'vue'; +import { withTrailingSlash } from 'ufo'; +import { a as useContentHead } from '../server.mjs'; +import _sfc_main$2 from './ContentRenderer-06a7c657.mjs'; +import _sfc_main$1 from './ContentQuery-8668b0af.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; +import './ContentRendererMarkdown-bebf42c8.mjs'; +import 'property-information'; +import './asyncData-c43d4319.mjs'; + +const _sfc_main = defineComponent({ + name: "ContentDoc", + props: { + /** + * Renderer props + */ + /** + * The tag to use for the renderer element if it is used. + * @default 'div' + */ + tag: { + type: String, + required: false, + default: "div" + }, + /** + * Whether or not to render the excerpt. + * @default false + */ + excerpt: { + type: Boolean, + default: false + }, + /** + * Query props + */ + /** + * The path of the content to load from content source. + * @default useRoute().path + */ + path: { + type: String, + required: false, + default: void 0 + }, + /** + * A query builder params object to be passed to component. + */ + query: { + type: Object, + required: false, + default: void 0 + }, + /** + * Whether or not to map the document data to the `head` property. + */ + head: { + type: Boolean, + required: false, + default: true + } + }, + /** + * Document empty fallback + * @slot empty + */ + /** + * Document not found fallback + * @slot not-found + */ + render(ctx) { + const slots = useSlots(); + const { tag, excerpt, path, query, head } = ctx; + const contentQueryProps = { + ...query || {}, + path: path || (query == null ? void 0 : query.path) || withTrailingSlash(useRoute().path), + find: "one" + }; + const emptyNode = (slot, data) => h("pre", null, JSON.stringify({ message: "You should use slots with ", slot, data }, null, 2)); + return h( + _sfc_main$1, + contentQueryProps, + { + // Default slot + default: (slots == null ? void 0 : slots.default) ? ({ data, refresh, isPartial }) => { + var _a; + if (head) { + useContentHead(data); + } + return (_a = slots.default) == null ? void 0 : _a.call(slots, { doc: data, refresh, isPartial, excerpt, ...this.$attrs }); + } : ({ data }) => { + if (head) { + useContentHead(data); + } + return h( + _sfc_main$2, + { value: data, excerpt, tag, ...this.$attrs }, + // Forward local `empty` slots to ContentRenderer if it is used. + { empty: (bindings) => (slots == null ? void 0 : slots.empty) ? slots.empty(bindings) : emptyNode("default", data) } + ); + }, + // Empty slot + empty: (bindings) => { + var _a; + return ((_a = slots == null ? void 0 : slots.empty) == null ? void 0 : _a.call(slots, bindings)) || h("p", null, "Document is empty, overwrite this content with #empty slot in ."); + }, + // Not Found slot + "not-found": (bindings) => { + var _a; + return ((_a = slots == null ? void 0 : slots["not-found"]) == null ? void 0 : _a.call(slots, bindings)) || h("p", null, "Document not found, overwrite this content with #not-found slot in ."); + } + } + ); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ContentDoc-608dc79a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map new file mode 100644 index 00000000..4a609f6a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentDoc-608dc79a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentDoc-608dc79a.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs b/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs new file mode 100644 index 00000000..96123777 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs @@ -0,0 +1,95 @@ +import { defineComponent, useSlots, h, useSSRContext } from 'vue'; +import _sfc_main$1 from './ContentQuery-8668b0af.mjs'; +import './asyncData-c43d4319.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const _sfc_main = defineComponent({ + name: "ContentList", + props: { + /** + * Query props + */ + /** + * The path of the content to load from content source. + * @default '/' + */ + path: { + type: String, + required: false, + default: void 0 + }, + /** + * A query builder params object to be passed to component. + */ + query: { + type: Object, + required: false, + default: void 0 + } + }, + /** + * Content empty fallback + * @slot empty + */ + /** + * Content not found fallback + * @slot not-found + */ + render(ctx) { + const slots = useSlots(); + const { path, query } = ctx; + const contentQueryProps = { + ...query || {}, + path: path || (query == null ? void 0 : query.path) || "/" + }; + const emptyNode = (slot, data) => h("pre", null, JSON.stringify({ message: "You should use slots with ", slot, data }, null, 2)); + return h( + _sfc_main$1, + contentQueryProps, + { + // Default slot + default: (slots == null ? void 0 : slots.default) ? ({ data, refresh, isPartial }) => slots == null ? void 0 : slots.default({ list: data, refresh, isPartial, ...this.$attrs }) : ({ data }) => emptyNode("default", data), + // Empty slot + empty: (bindings) => (slots == null ? void 0 : slots.empty) ? slots.empty(bindings) : emptyNode("default", bindings == null ? void 0 : bindings.data), + // Not Found slot + "not-found": (bindings) => { + var _a; + return (slots == null ? void 0 : slots["not-found"]) ? (_a = slots == null ? void 0 : slots["not-found"]) == null ? void 0 : _a.call(slots, bindings) : emptyNode("not-found", bindings == null ? void 0 : bindings.data); + } + } + ); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentList.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ContentList-b4b0de0d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map new file mode 100644 index 00000000..dc3f3fbd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentList-b4b0de0d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentList-b4b0de0d.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs b/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs new file mode 100644 index 00000000..a0617813 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs @@ -0,0 +1,1056 @@ +import { u as useNuxtApp, _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { defineComponent, ref, onErrorCaptured, createElementBlock, h, computed, defineAsyncComponent, toRefs, useSlots, useSSRContext, mergeProps } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { u as useState, c as useContent } from './useDocus-928368c4.mjs'; +import { hash } from 'ohash'; +import { b as useHead, f as fetchContentNavigation } from '../server.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const _sfc_main$1 = { + __name: "welcome", + __ssrInlineRender: true, + props: { + appName: { + type: String, + default: "Nuxt" + }, + version: { + type: String, + default: "" + }, + title: { + type: String, + default: "Welcome to Nuxt!" + }, + readDocs: { + type: String, + default: "We highly recommend you take a look at the Nuxt documentation, whether you are new or have previous experience with the framework." + }, + followTwitter: { + type: String, + default: "Follow the Nuxt Twitter account to get latest news about releases, new modules, tutorials and tips." + }, + starGitHub: { + type: String, + default: "Nuxt is open source and the code is available on GitHub, feel free to star it, participate in discussions or dive into the source." + } + }, + setup(__props) { + const props = __props; + useHead({ + title: `${props.title}`, + script: [], + style: [ + { + children: `@property --gradient-angle{syntax:'';inherits:false;initial-value:180deg}@keyframes gradient-rotate{0%{--gradient-angle:0deg}100%{--gradient-angle:360deg}}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p,h2,h3{margin:0}h1,h2,h3{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}svg,img{display:block;vertical-align:middle}ul{list-style:none;margin:0;padding:0}` + } + ] + }); + return (_ctx, _push, _parent, _attrs) => { + _push(`
\xA9 2022-${ssrInterpolate(( new Date()).getFullYear())} Nuxt - MIT License
`); + }; + } +}; +const _sfc_setup$1 = _sfc_main$1.setup; +_sfc_main$1.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/ui-templates/dist/templates/welcome.vue"); + return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; +}; +const welcome = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-a75d3b4d"]]); +const welcome$1 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: welcome +}); +const nuxtErrorBoundary = defineComponent({ + emits: { + error(_error) { + return true; + } + }, + setup(_props, { slots, emit }) { + const error = ref(null); + useNuxtApp(); + onErrorCaptured((err) => { + }); + return () => { + var _a, _b; + return error.value ? (_a = slots.error) == null ? void 0 : _a.call(slots, { error }) : (_b = slots.default) == null ? void 0 : _b.call(slots); + }; + } +}); +const nuxtErrorBoundary$1 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: nuxtErrorBoundary +}); +const devOnly = defineComponent({ + name: "DevOnly", + setup(_, props) { + return () => null; + } +}); +const devOnly$1 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: devOnly +}); +const serverPlaceholder = defineComponent({ + name: "ServerPlaceholder", + render() { + return createElementBlock("div"); + } +}); +const serverPlaceholder$1 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: serverPlaceholder +}); +const nuxtLoadingIndicator = defineComponent({ + name: "NuxtLoadingIndicator", + props: { + throttle: { + type: Number, + default: 200 + }, + duration: { + type: Number, + default: 2e3 + }, + height: { + type: Number, + default: 3 + }, + color: { + type: [String, Boolean], + default: "repeating-linear-gradient(to right,#00dc82 0%,#34cdfe 50%,#0047e1 100%)" + } + }, + setup(props, { slots }) { + const indicator = useLoadingIndicator({ + duration: props.duration, + throttle: props.throttle + }); + const nuxtApp = useNuxtApp(); + nuxtApp.hook("page:start", indicator.start); + nuxtApp.hook("page:finish", indicator.finish); + return () => h("div", { + class: "nuxt-loading-indicator", + style: { + position: "fixed", + top: 0, + right: 0, + left: 0, + pointerEvents: "none", + width: `${indicator.progress.value}%`, + height: `${props.height}px`, + opacity: indicator.isLoading.value ? 1 : 0, + background: props.color || void 0, + backgroundSize: `${100 / indicator.progress.value * 100}% auto`, + transition: "width 0.1s, height 0.4s, opacity 0.4s", + zIndex: 999999 + } + }, slots); + } +}); +function useLoadingIndicator(opts) { + const progress = ref(0); + const isLoading = ref(false); + computed(() => 1e4 / opts.duration); + let _timer = null; + let _throttle = null; + function start() { + clear(); + progress.value = 0; + if (opts.throttle && false) { + _throttle = setTimeout(() => { + isLoading.value = true; + }, opts.throttle); + } else { + isLoading.value = true; + } + } + function finish() { + progress.value = 100; + _hide(); + } + function clear() { + clearInterval(_timer); + clearTimeout(_throttle); + _timer = null; + _throttle = null; + } + function _hide() { + clear(); + } + return { + progress, + isLoading, + start, + finish, + clear + }; +} +const nuxtLoadingIndicator$1 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: nuxtLoadingIndicator +}); +const removeUndefinedProps = (props) => Object.fromEntries(Object.entries(props).filter(([, value]) => value !== void 0)); +const setupForUseMeta = (metaFactory, renderChild) => (props, ctx) => { + useHead(() => metaFactory({ ...removeUndefinedProps(props), ...ctx.attrs }, ctx)); + return () => { + var _a, _b; + return renderChild ? (_b = (_a = ctx.slots).default) == null ? void 0 : _b.call(_a) : null; + }; +}; +const globalProps = { + accesskey: String, + autocapitalize: String, + autofocus: { + type: Boolean, + default: void 0 + }, + class: [String, Object, Array], + contenteditable: { + type: Boolean, + default: void 0 + }, + contextmenu: String, + dir: String, + draggable: { + type: Boolean, + default: void 0 + }, + enterkeyhint: String, + exportparts: String, + hidden: { + type: Boolean, + default: void 0 + }, + id: String, + inputmode: String, + is: String, + itemid: String, + itemprop: String, + itemref: String, + itemscope: String, + itemtype: String, + lang: String, + nonce: String, + part: String, + slot: String, + spellcheck: { + type: Boolean, + default: void 0 + }, + style: String, + tabindex: String, + title: String, + translate: String +}; +const NoScript = defineComponent({ + name: "NoScript", + inheritAttrs: false, + props: { + ...globalProps, + title: String, + body: Boolean, + renderPriority: [String, Number] + }, + setup: setupForUseMeta((props, { slots }) => { + var _a; + const noscript = { ...props }; + const textContent = (((_a = slots.default) == null ? void 0 : _a.call(slots)) || []).filter(({ children }) => children).map(({ children }) => children).join(""); + if (textContent) { + noscript.children = textContent; + } + return { + noscript: [noscript] + }; + }) +}); +const Link = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Link", + inheritAttrs: false, + props: { + ...globalProps, + as: String, + crossorigin: String, + disabled: Boolean, + fetchpriority: String, + href: String, + hreflang: String, + imagesizes: String, + imagesrcset: String, + integrity: String, + media: String, + prefetch: { + type: Boolean, + default: void 0 + }, + referrerpolicy: String, + rel: String, + sizes: String, + title: String, + type: String, + /** @deprecated **/ + methods: String, + /** @deprecated **/ + target: String, + body: Boolean, + renderPriority: [String, Number] + }, + setup: setupForUseMeta((link) => ({ + link: [link] + })) +}); +const Base = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Base", + inheritAttrs: false, + props: { + ...globalProps, + href: String, + target: String + }, + setup: setupForUseMeta((base) => ({ + base + })) +}); +const Title = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Title", + inheritAttrs: false, + setup: setupForUseMeta((_, { slots }) => { + var _a, _b, _c; + const title = ((_c = (_b = (_a = slots.default) == null ? void 0 : _a.call(slots)) == null ? void 0 : _b[0]) == null ? void 0 : _c.children) || null; + return { + title + }; + }) +}); +const Meta = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Meta", + inheritAttrs: false, + props: { + ...globalProps, + charset: String, + content: String, + httpEquiv: String, + name: String, + body: Boolean, + renderPriority: [String, Number] + }, + setup: setupForUseMeta((props) => { + const meta = { ...props }; + if (meta.httpEquiv) { + meta["http-equiv"] = meta.httpEquiv; + delete meta.httpEquiv; + } + return { + meta: [meta] + }; + }) +}); +const Style = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Style", + inheritAttrs: false, + props: { + ...globalProps, + type: String, + media: String, + nonce: String, + title: String, + /** @deprecated **/ + scoped: { + type: Boolean, + default: void 0 + }, + body: Boolean, + renderPriority: [String, Number] + }, + setup: setupForUseMeta((props, { slots }) => { + var _a, _b, _c; + const style = { ...props }; + const textContent = (_c = (_b = (_a = slots.default) == null ? void 0 : _a.call(slots)) == null ? void 0 : _b[0]) == null ? void 0 : _c.children; + if (textContent) { + style.children = textContent; + } + return { + style: [style] + }; + }) +}); +const Head = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Head", + inheritAttrs: false, + setup: (_props, ctx) => () => { + var _a, _b; + return (_b = (_a = ctx.slots).default) == null ? void 0 : _b.call(_a); + } +}); +const Html = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Html", + inheritAttrs: false, + props: { + ...globalProps, + manifest: String, + version: String, + xmlns: String, + renderPriority: [String, Number] + }, + setup: setupForUseMeta((htmlAttrs) => ({ htmlAttrs }), true) +}); +const Body = defineComponent({ + // eslint-disable-next-line vue/no-reserved-component-names + name: "Body", + inheritAttrs: false, + props: { + ...globalProps, + renderPriority: [String, Number] + }, + setup: setupForUseMeta((bodyAttrs) => ({ bodyAttrs }), true) +}); +const components = /* @__PURE__ */ Object.freeze({ + __proto__: null, + Base, + Body, + Head, + Html, + Link, + Meta, + NoScript, + Style, + Title +}); +defineAsyncComponent(() => import( + './ExampleCard-95e9f743.mjs' + /* webpackChunkName: "components/example-card" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ExampleHero-8fe98ee8.mjs' + /* webpackChunkName: "components/example-hero" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ExampleIconCard-a87d1258.mjs' + /* webpackChunkName: "components/example-icon-card" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ExampleMultiselect-915c74fe.mjs' + /* webpackChunkName: "components/example-multiselect" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ExampleTheTitle-9f1c4a8d.mjs' + /* webpackChunkName: "components/example-the-title" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './HeroAnnouncement-a479df93.mjs' + /* webpackChunkName: "components/hero-announcement" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconMarkdown-092c828f.mjs' + /* webpackChunkName: "components/icon-markdown" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/logo" */ +).then(function(n) { + return n.L; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './MyButton-a7c11108.mjs' + /* webpackChunkName: "components/my-button" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './PropInspector-d4a70134.mjs' + /* webpackChunkName: "components/prop-inspector" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ReadMore-4e2f1622.mjs' + /* webpackChunkName: "components/read-more" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-footer" */ +).then(function(n) { + return n.o; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-header" */ +).then(function(n) { + return n.n; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-header-dialog" */ +).then(function(n) { + return n.g; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-header-logo" */ +).then(function(n) { + return n.h; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-header-navigation" */ +).then(function(n) { + return n.i; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-layout" */ +).then(function(n) { + return n.p; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-loading-bar" */ +).then(function(n) { + return n.A; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-search" */ +).then(function(n) { + return n.j; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/app-social-icons" */ +).then(function(n) { + return n.e; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocumentDrivenNotFound-4b73ea08.mjs' + /* webpackChunkName: "components/document-driven-not-found" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/theme-select" */ +).then(function(n) { + return n.T; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsAside-a41d5eb9.mjs' + /* webpackChunkName: "components/docs-aside" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsAsideTree-136bd08b.mjs' + /* webpackChunkName: "components/docs-aside-tree" */ +).then(function(n) { + return n.D; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsPageBottom-270eacfc.mjs' + /* webpackChunkName: "components/docs-page-bottom" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsPageLayout-4c2ead4a.mjs' + /* webpackChunkName: "components/docs-page-layout" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsPrevNext-7858c09b.mjs' + /* webpackChunkName: "components/docs-prev-next" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsToc-e4f6bd56.mjs' + /* webpackChunkName: "components/docs-toc" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsTocLinks-95d48629.mjs' + /* webpackChunkName: "components/docs-toc-links" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './EditOnLink-e55cd3a0.mjs' + /* webpackChunkName: "components/edit-on-link" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseA-86ef3985.mjs' + /* webpackChunkName: "components/prose-a" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseBlockquote-faf6e310.mjs' + /* webpackChunkName: "components/prose-blockquote" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseCode-94b7281d.mjs' + /* webpackChunkName: "components/prose-code" */ +).then(function(n) { + return n.a; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseCodeInline-960b9a43.mjs' + /* webpackChunkName: "components/prose-code-inline" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseEm-f52fc33d.mjs' + /* webpackChunkName: "components/prose-em" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseH1-81b8c44a.mjs' + /* webpackChunkName: "components/prose-h1" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseH2-abc0d7da.mjs' + /* webpackChunkName: "components/prose-h2" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseH3-6c54494a.mjs' + /* webpackChunkName: "components/prose-h3" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseH4-4f0da863.mjs' + /* webpackChunkName: "components/prose-h4" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseH5-0c6e8cd8.mjs' + /* webpackChunkName: "components/prose-h5" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseH6-cffb1b40.mjs' + /* webpackChunkName: "components/prose-h6" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseHr-fa0af264.mjs' + /* webpackChunkName: "components/prose-hr" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseImg-f3012414.mjs' + /* webpackChunkName: "components/prose-img" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseLi-948accef.mjs' + /* webpackChunkName: "components/prose-li" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseOl-b8e80875.mjs' + /* webpackChunkName: "components/prose-ol" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseP-a91aeff7.mjs' + /* webpackChunkName: "components/prose-p" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseStrong-246281a0.mjs' + /* webpackChunkName: "components/prose-strong" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseTable-425d227b.mjs' + /* webpackChunkName: "components/prose-table" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseTbody-f622755a.mjs' + /* webpackChunkName: "components/prose-tbody" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseTd-ce60dd42.mjs' + /* webpackChunkName: "components/prose-td" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseTh-8250ce9f.mjs' + /* webpackChunkName: "components/prose-th" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseThead-7ba76e48.mjs' + /* webpackChunkName: "components/prose-thead" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseTr-6559f7d8.mjs' + /* webpackChunkName: "components/prose-tr" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseUl-79ecc4c5.mjs' + /* webpackChunkName: "components/prose-ul" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ProseCode-94b7281d.mjs' + /* webpackChunkName: "components/prose-code-copy-button" */ +).then(function(n) { + return n.P; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Alert-2b29f746.mjs' + /* webpackChunkName: "components/alert" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Badge-5f9ab214.mjs' + /* webpackChunkName: "components/badge" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ButtonLink-df4791d5.mjs' + /* webpackChunkName: "components/button-link" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Callout-fc92c8b7.mjs' + /* webpackChunkName: "components/callout" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './CodeBlock-f6f4711b.mjs' + /* webpackChunkName: "components/code-block" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './CodeGroup-67aa2302.mjs' + /* webpackChunkName: "components/code-group" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Container-1291608c.mjs' + /* webpackChunkName: "components/container" */ +).then(function(n) { + return n.C; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './CopyButton-155eba98.mjs' + /* webpackChunkName: "components/copy-button" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Ellipsis-b69b027e.mjs' + /* webpackChunkName: "components/ellipsis" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './List-12ebf73c.mjs' + /* webpackChunkName: "components/list" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './NuxtImg-89991070.mjs' + /* webpackChunkName: "components/nuxt-img" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Props-c617d5b2.mjs' + /* webpackChunkName: "components/props" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Sandbox-3e5bdd00.mjs' + /* webpackChunkName: "components/sandbox" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './SourceLink-c27fde85.mjs' + /* webpackChunkName: "components/source-link" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './TabsHeader-c9b56dab.mjs' + /* webpackChunkName: "components/tabs-header" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Terminal-35e8f795.mjs' + /* webpackChunkName: "components/terminal" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './VideoPlayer-2b282302.mjs' + /* webpackChunkName: "components/video-player" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconCodeSandBox-289e2c7f.mjs' + /* webpackChunkName: "components/icon-code-sand-box" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconDocus-12d300be.mjs' + /* webpackChunkName: "components/icon-docus" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconNuxt-c11c3c9c.mjs' + /* webpackChunkName: "components/icon-nuxt" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconNuxtContent-f8fb6ffc.mjs' + /* webpackChunkName: "components/icon-nuxt-content" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconNuxtLabs-1b2b0005.mjs' + /* webpackChunkName: "components/icon-nuxt-labs" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconNuxtStudio-8ac5eaa5.mjs' + /* webpackChunkName: "components/icon-nuxt-studio" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconStackBlitz-def46545.mjs' + /* webpackChunkName: "components/icon-stack-blitz" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './IconVueTelescope-96109b9a.mjs' + /* webpackChunkName: "components/icon-vue-telescope" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './BlockHero-f586796f.mjs' + /* webpackChunkName: "components/block-hero" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Card-2052047f.mjs' + /* webpackChunkName: "components/card" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './CardGrid-160bcd85.mjs' + /* webpackChunkName: "components/card-grid" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './VoltaBoard-98820156.mjs' + /* webpackChunkName: "components/volta-board" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ComponentPlayground-c7ca07d7.mjs' + /* webpackChunkName: "components/component-playground" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ComponentPlaygroundData-d25a0f8e.mjs' + /* webpackChunkName: "components/component-playground-data" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ComponentPlaygroundProps-8f45f1a7.mjs' + /* webpackChunkName: "components/component-playground-props" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ComponentPlaygroundSlots-0dbd767a.mjs' + /* webpackChunkName: "components/component-playground-slots" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ComponentPlaygroundTokens-548a0a2d.mjs' + /* webpackChunkName: "components/component-playground-tokens" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './TokensPlayground-84b52014.mjs' + /* webpackChunkName: "components/tokens-playground" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentPreviewMode-97e009a4.mjs' + /* webpackChunkName: "components/content-preview-mode" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentDoc-608dc79a.mjs' + /* webpackChunkName: "components/content-doc" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentList-b4b0de0d.mjs' + /* webpackChunkName: "components/content-list" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return ContentNavigation; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentQuery-8668b0af.mjs' + /* webpackChunkName: "components/content-query" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentRenderer-06a7c657.mjs' + /* webpackChunkName: "components/content-renderer" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentRendererMarkdown-bebf42c8.mjs' + /* webpackChunkName: "components/content-renderer-markdown" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './ContentSlot-deb25102.mjs' + /* webpackChunkName: "components/content-slot" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocumentDrivenEmpty-8338ce9f.mjs' + /* webpackChunkName: "components/document-driven-empty" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './Markdown-1885a814.mjs' + /* webpackChunkName: "components/markdown" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return welcome$1; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './layout-88ff67c1.mjs' + /* webpackChunkName: "components/nuxt-layout" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return nuxtErrorBoundary$1; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/client-only" */ +).then(function(n) { + return n.k; +}).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return devOnly$1; +}).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return serverPlaceholder$1; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './app.config-832f5f68.mjs' + /* webpackChunkName: "components/nuxt-link" */ +).then(function(n) { + return n.m; +}).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return nuxtLoadingIndicator$1; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubRepository-8db11ede.mjs' + /* webpackChunkName: "components/github-repository" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubLink-f632fd3b.mjs' + /* webpackChunkName: "components/github-link" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubReadme-9e48e600.mjs' + /* webpackChunkName: "components/github-readme" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubReleases-2ab96fb8.mjs' + /* webpackChunkName: "components/github-releases" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubLastRelease-b4d6e912.mjs' + /* webpackChunkName: "components/github-last-release" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubRelease-140d3d2e.mjs' + /* webpackChunkName: "components/github-release" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubContributors-1aa0f22f.mjs' + /* webpackChunkName: "components/github-contributors" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubFileContributors-285e4522.mjs' + /* webpackChunkName: "components/github-file-contributors" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './GithubCommits-b7b81c66.mjs' + /* webpackChunkName: "components/github-commits" */ +).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/color-scheme" */ +).then(function(n) { + return n.m; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + './DocsAsideTree-136bd08b.mjs' + /* webpackChunkName: "components/icon" */ +).then(function(n) { + return n.I; +}).then((c) => c.default || c)); +defineAsyncComponent(() => import( + '../server.mjs' + /* webpackChunkName: "components/nuxt-page" */ +).then(function(n) { + return n.r; +}).then((c) => c.default || c)); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["NoScript"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Link"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Base"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Title"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Meta"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Style"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Head"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Html"])); +defineAsyncComponent(() => Promise.resolve().then(function() { + return components; +}).then((c) => c["Body"])); +const _sfc_main = defineComponent({ + name: "ContentNavigation", + props: { + /** + * A query to be passed to `fetchContentNavigation()`. + */ + query: { + type: Object, + required: false, + default: void 0 + } + }, + async setup(props) { + const { + query + } = toRefs(props); + const queryBuilder = computed(() => { + var _a; + if (typeof ((_a = query.value) == null ? void 0 : _a.params) === "function") { + return query.value.params(); + } + return query.value; + }); + if (!queryBuilder.value && useState("dd-navigation").value) { + const { navigation: navigation2 } = useContent(); + return { navigation: navigation2 }; + } + const { data: navigation } = await useAsyncData( + `content-navigation-${hash(queryBuilder.value)}`, + () => fetchContentNavigation(queryBuilder.value) + ); + return { navigation }; + }, + /** + * Navigation empty fallback + * @slot empty + */ + render(ctx) { + const slots = useSlots(); + const { navigation } = ctx; + const renderLink = (link) => h(__nuxt_component_0, { to: link._path }, () => link.title); + const renderLinks = (data, level) => h( + "ul", + level ? { "data-level": level } : null, + data.map((link) => { + if (link.children) { + return h("li", null, [renderLink(link), renderLinks(link.children, level + 1)]); + } + return h("li", null, renderLink(link)); + }) + ); + const defaultNode = (data) => renderLinks(data, 0); + return (slots == null ? void 0 : slots.default) ? slots.default({ navigation, ...this.$attrs }) : defaultNode(navigation); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ContentNavigation = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: _sfc_main +}); + +export { _sfc_main as default }; +//# sourceMappingURL=ContentNavigation-8bed293a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map new file mode 100644 index 00000000..22457c03 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentNavigation-8bed293a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentNavigation-8bed293a.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs new file mode 100644 index 00000000..328fd698 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs @@ -0,0 +1,80 @@ +import { u as useNuxtApp } from './app.config-832f5f68.mjs'; +import { useSSRContext, defineComponent, ref, onUnmounted } from 'vue'; +import { ssrRenderAttrs, ssrRenderClass, ssrInterpolate } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ContentPreviewMode", + __ssrInlineRender: true, + props: { + previewToken: { + type: Object, + required: true + }, + apiURL: { + type: String, + required: true + }, + syncPreview: { + type: Function, + required: true + }, + requestPreviewSyncAPI: { + type: Function, + required: true + } + }, + setup(__props) { + const previewClasses = ["__nuxt_preview", "__preview_enabled"]; + useNuxtApp(); + const open = ref(true); + const refreshing = ref(false); + const previewReady = ref(false); + const error = ref(""); + onUnmounted(() => { + document.body.classList.remove(...previewClasses); + }); + return (_ctx, _push, _parent, _attrs) => { + _push(``); + if (open.value) { + _push(`
`); + if (previewReady.value) { + _push(`Preview mode enabled`); + } else { + _push(``); + } + _push(`
`); + } else { + _push(``); + } + if (open.value && !previewReady.value && !error.value) { + _push(`

Initializing the preview...

`); + } else { + _push(``); + } + if (error.value) { + _push(`

${ssrInterpolate(error.value)}

`); + } else { + _push(``); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ContentPreviewMode = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-572e7d1a"]]); + +export { ContentPreviewMode as default }; +//# sourceMappingURL=ContentPreviewMode-97e009a4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map new file mode 100644 index 00000000..715d010f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentPreviewMode-97e009a4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-97e009a4.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs new file mode 100644 index 00000000..6839db40 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs @@ -0,0 +1,8 @@ +const ContentPreviewMode_vue_vue_type_style_index_0_lang = "body.__preview_enabled{padding-bottom:50px}"; + +const ContentPreviewMode_vue_vue_type_style_index_1_scoped_572e7d1a_lang = "#__nuxt_preview[data-v-572e7d1a]{align-items:center;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background:hsla(0,0%,100%,.3);border-top:1px solid #eee;bottom:-60px;color:#000;display:flex;font-family:Helvetica,sans-serif;font-size:16px;font-weight:500;gap:10px;height:50px;justify-content:center;left:0;position:fixed;right:0;transition:bottom .3s ease-in-out;z-index:10000}#__nuxt_preview.__preview_ready[data-v-572e7d1a]{bottom:0}#__preview_background[data-v-572e7d1a]{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background:hsla(0,0%,100%,.3);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:40}#__preview_loader[data-v-572e7d1a]{align-items:center;color:#000;display:flex;flex-direction:column;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-size:1.4rem;gap:8px;left:50%;position:fixed;top:50%;transform:translate(-50%,-50%);z-index:50}#__preview_loader p[data-v-572e7d1a]{margin:10px 0}.dark #__preview_background[data-v-572e7d1a],.dark-mode #__preview_background[data-v-572e7d1a]{background:rgba(0,0,0,.3)}.dark #__preview_loader[data-v-572e7d1a],.dark-mode #__preview_loader[data-v-572e7d1a]{color:#fff}.preview-loading-enter-active[data-v-572e7d1a],.preview-loading-leave-active[data-v-572e7d1a]{transition:opacity .4s}.preview-loading-enter[data-v-572e7d1a],.preview-loading-leave-to[data-v-572e7d1a]{opacity:0}#__preview_loading_icon[data-v-572e7d1a]{animation:spin-572e7d1a 1s linear infinite}.dark #__nuxt_preview[data-v-572e7d1a],.dark-mode #__nuxt_preview[data-v-572e7d1a]{background:rgba(0,0,0,.3);border-top:1px solid #111;color:#fff}#__nuxt_preview svg[data-v-572e7d1a]{color:#000;display:inline-block;height:30px;width:30px}.dark #__nuxt_preview svg[data-v-572e7d1a],.dark-mode #__nuxt_preview svg[data-v-572e7d1a]{color:#fff}button[data-v-572e7d1a]{background:transparent;border:1px solid rgba(0,0,0,.2);border-radius:3px;box-shadow:none;color:rgba(0,0,0,.8);cursor:pointer;display:inline-block;font-size:14px;font-weight:400;line-height:1rem;margin:0;padding:4px 10px;text-align:center;transition:none;width:auto}button[data-v-572e7d1a]:hover{border-color:rgba(0,0,0,.4);color:rgba(0,0,0,.9)}.dark button[data-v-572e7d1a],.dark-mode button[data-v-572e7d1a]{border-color:hsla(0,0%,100%,.2);color:#d3d3d3}.dark button[data-v-572e7d1a]:hover,.dark-mode button[data-v-572e7d1a]:hover{border-color:hsla(0,0%,100%,.4);color:#fff}#__nuxt_preview button[data-v-572e7d1a]:focus,#__nuxt_preview button[data-v-572e7d1a]:hover{background:rgba(0,0,0,.1)}#__nuxt_preview button[data-v-572e7d1a]:active{background:rgba(0,0,0,.2)}.dark #__nuxt_preview button[data-v-572e7d1a],.dark-mode #__nuxt_preview button[data-v-572e7d1a]{border:1px solid hsla(0,0%,100%,.2);color:hsla(0,0%,100%,.8)}.dark #__nuxt_preview button[data-v-572e7d1a]:hover,.dark-mode #__nuxt_preview button[data-v-572e7d1a]:focus{background:hsla(0,0%,100%,.1)}.dark #__nuxt_preview button[data-v-572e7d1a]:active,.dark-mode #__nuxt_preview button[data-v-572e7d1a]:active{background:hsla(0,0%,100%,.2)}#__nuxt_preview.__preview_refreshing button[data-v-572e7d1a],#__nuxt_preview.__preview_refreshing span[data-v-572e7d1a],#__nuxt_preview.__preview_refreshing svg[data-v-572e7d1a]{animation:nuxt_pulsate-572e7d1a 1s ease-out;animation-iteration-count:infinite;opacity:.5}@keyframes nuxt_pulsate-572e7d1a{0%{opacity:1}50%{opacity:.5}to{opacity:1}}@keyframes spin-572e7d1a{0%{transform:rotate(1turn)}to{transform:rotate(0deg)}}"; + +const ContentPreviewModeStyles_4b29600c = [ContentPreviewMode_vue_vue_type_style_index_0_lang, ContentPreviewMode_vue_vue_type_style_index_1_scoped_572e7d1a_lang]; + +export { ContentPreviewModeStyles_4b29600c as default }; +//# sourceMappingURL=ContentPreviewMode-styles.4b29600c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map new file mode 100644 index 00000000..9850b50b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentPreviewMode-styles.4b29600c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-styles-1.mjs-40f57a01.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-styles-2.mjs-04ad36f3.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-styles.4b29600c.mjs"],"sourcesContent":null,"names":["style_0","style_1"],"mappings":"AAAA,MAAM,kDAAqD,GAAA,6CAAA;;ACA3D,MAAM,kEAAqE,GAAA,08GAAA;;ACE3E,0CAAe,CAACA,kDAAO,EAAEC,kEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs b/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs new file mode 100644 index 00000000..860fa3b2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs @@ -0,0 +1,233 @@ +import { defineComponent, toRefs, computed, watch, useSlots, useSSRContext, h } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { q as queryContent } from '../server.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const _sfc_main = defineComponent({ + name: "ContentQuery", + props: { + /** + * The path of the content to load from content source. + */ + path: { + type: String, + required: false, + default: void 0 + }, + /** + * Select a subset of fields + */ + only: { + type: Array, + required: false, + default: void 0 + }, + /** + * Remove a subset of fields + */ + without: { + type: Array, + required: false, + default: void 0 + }, + /** + * Filter results + */ + where: { + type: Object, + required: false, + default: void 0 + }, + /** + * Sort results + */ + sort: { + type: Object, + required: false, + default: void 0 + }, + /** + * Limit number of results + */ + limit: { + type: Number, + required: false, + default: void 0 + }, + /** + * Skip number of results + */ + skip: { + type: Number, + required: false, + default: void 0 + }, + /** + * Filter contents based on locale + */ + locale: { + type: String, + required: false, + default: void 0 + }, + /** + * A type of query to be made. + */ + find: { + type: String, + required: false, + default: void 0 + } + }, + async setup(props) { + const { + path, + only, + without, + where, + sort, + limit, + skip, + locale, + find + } = toRefs(props); + const isPartial = computed(() => { + var _a; + return (_a = path.value) == null ? void 0 : _a.includes("/_"); + }); + watch(() => props, () => refresh(), { deep: true }); + const { data, refresh } = await useAsyncData( + `content-query-${hash(props)}`, + () => { + let queryBuilder; + if (path.value) { + queryBuilder = queryContent(path.value); + } else { + queryBuilder = queryContent(); + } + if (only.value) { + queryBuilder = queryBuilder.only(only.value); + } + if (without.value) { + queryBuilder = queryBuilder.without(without.value); + } + if (where.value) { + queryBuilder = queryBuilder.where(where.value); + } + if (sort.value) { + queryBuilder = queryBuilder.sort(sort.value); + } + if (limit.value) { + queryBuilder = queryBuilder.limit(limit.value); + } + if (skip.value) { + queryBuilder = queryBuilder.skip(skip.value); + } + if (locale.value) { + queryBuilder = queryBuilder.where({ _locale: locale.value }); + } + if (find.value === "one") { + return queryBuilder.findOne(); + } + if (find.value === "surround") { + if (!path.value) { + console.warn("[Content] Surround queries requires `path` prop to be set."); + console.warn("[Content] Query without `path` will return regular `find()` results."); + return queryBuilder.find(); + } + return queryBuilder.findSurround(path.value); + } + return queryBuilder.find(); + } + ); + return { + isPartial, + data, + refresh + }; + }, + /** + * Content not found fallback + * @slot not-found + */ + render(ctx) { + var _a; + const slots = useSlots(); + const { + // Setup + data, + refresh, + isPartial, + // Props + path, + only, + without, + where, + sort, + limit, + skip, + locale, + find + } = ctx; + const props = { + path, + only, + without, + where, + sort, + limit, + skip, + locale, + find + }; + if (props.find === "one") { + if (!data && (slots == null ? void 0 : slots["not-found"])) { + return slots["not-found"]({ props, ...this.$attrs }); + } + if ((slots == null ? void 0 : slots.empty) && (data == null ? void 0 : data._type) === "markdown" && !((_a = data == null ? void 0 : data.body) == null ? void 0 : _a.children.length)) { + return slots.empty({ props, ...this.$attrs }); + } + } else if (!data || !data.length) { + if (slots == null ? void 0 : slots["not-found"]) { + return slots["not-found"]({ props, ...this.$attrs }); + } + } + if (slots == null ? void 0 : slots.default) { + return slots.default({ data, refresh, isPartial, props, ...this.$attrs }); + } + const emptyNode = (slot, data2) => h("pre", null, JSON.stringify({ message: "You should use slots with !", slot, data: data2 }, null, 2)); + return emptyNode("default", { data, props, isPartial }); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ContentQuery-8668b0af.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map new file mode 100644 index 00000000..a0b8dc6c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentQuery-8668b0af.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentQuery-8668b0af.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs b/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs new file mode 100644 index 00000000..cc848a99 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs @@ -0,0 +1,95 @@ +import { defineComponent, watch, useSlots, h, useSSRContext } from 'vue'; +import _sfc_main$1 from './ContentRendererMarkdown-bebf42c8.mjs'; +import 'destr'; +import 'scule'; +import 'property-information'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; + +const _sfc_main = defineComponent({ + name: "ContentRenderer", + props: { + /** + * The document to render. + */ + value: { + type: Object, + required: false, + default: () => ({}) + }, + /** + * Whether or not to render the excerpt. + * @default false + */ + excerpt: { + type: Boolean, + default: false + }, + /** + * The tag to use for the renderer element if it is used. + * @default 'div' + */ + tag: { + type: String, + default: "div" + } + }, + setup(props) { + watch( + () => props.excerpt, + (newExcerpt) => { + var _a, _b, _c; + if (newExcerpt && !((_a = props.value) == null ? void 0 : _a.excerpt)) { + console.warn(`No excerpt found for document content/${(_b = props == null ? void 0 : props.value) == null ? void 0 : _b._path}.${(_c = props == null ? void 0 : props.value) == null ? void 0 : _c._extension}!`); + console.warn("Make sure to use in your content if you want to use excerpt feature."); + } + }, + { + immediate: true + } + ); + }, + /** + * Content empty fallback + * @slot empty + */ + render(ctx) { + var _a, _b, _c, _d; + const slots = useSlots(); + const { value, excerpt, tag } = ctx; + if (!((_b = (_a = value == null ? void 0 : value.body) == null ? void 0 : _a.children) == null ? void 0 : _b.length) && (slots == null ? void 0 : slots.empty)) { + return slots.empty({ value, excerpt, tag, ...this.$attrs }); + } + if (slots == null ? void 0 : slots.default) { + return slots.default({ value, excerpt, tag, ...this.$attrs }); + } + if ((value == null ? void 0 : value._type) === "markdown" && ((_d = (_c = value == null ? void 0 : value.body) == null ? void 0 : _c.children) == null ? void 0 : _d.length)) { + return h( + _sfc_main$1, + { + value, + excerpt, + tag, + ...this.$attrs + } + ); + } + return h( + "pre", + null, + JSON.stringify({ message: "You should use slots with ", value, excerpt, tag }, null, 2) + ); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ContentRenderer-06a7c657.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map new file mode 100644 index 00000000..49e4c665 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentRenderer-06a7c657.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentRenderer-06a7c657.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs b/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs new file mode 100644 index 00000000..b81facab --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs @@ -0,0 +1,422 @@ +import { defineComponent, h, resolveComponent, Text, useSSRContext } from 'vue'; +import destr from 'destr'; +import { pascalCase } from 'scule'; +import { find, html } from 'property-information'; +import { b as useRuntimeConfig, f as useRoute } from './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; + +const htmlTags = [ + "a", + "abbr", + "address", + "area", + "article", + "aside", + "audio", + "b", + "base", + "bdi", + "bdo", + "blockquote", + "body", + "br", + "button", + "canvas", + "caption", + "cite", + "code", + "col", + "colgroup", + "data", + "datalist", + "dd", + "del", + "details", + "dfn", + "dialog", + "div", + "dl", + "dt", + "em", + "embed", + "fieldset", + "figcaption", + "figure", + "footer", + "form", + "h1", + "h2", + "h3", + "h4", + "h5", + "h6", + "head", + "header", + "hgroup", + "hr", + "html", + "i", + "iframe", + "img", + "input", + "ins", + "kbd", + "label", + "legend", + "li", + "link", + "main", + "map", + "mark", + "math", + "menu", + "menuitem", + "meta", + "meter", + "nav", + "noscript", + "object", + "ol", + "optgroup", + "option", + "output", + "p", + "param", + "picture", + "pre", + "progress", + "q", + "rb", + "rp", + "rt", + "rtc", + "ruby", + "s", + "samp", + "script", + "section", + "select", + "slot", + "small", + "source", + "span", + "strong", + "style", + "sub", + "summary", + "sup", + "svg", + "table", + "tbody", + "td", + "template", + "textarea", + "tfoot", + "th", + "thead", + "time", + "title", + "tr", + "track", + "u", + "ul", + "var", + "video", + "wbr" +]; +const DEFAULT_SLOT = "default"; +const rxOn = /^@|^v-on:/; +const rxBind = /^:|^v-bind:/; +const rxModel = /^v-model/; +const nativeInputs = ["select", "textarea", "input"]; +const _sfc_main = defineComponent({ + name: "ContentRendererMarkdown", + props: { + /** + * Content to render + */ + value: { + type: Object, + required: true + }, + /** + * Render only the excerpt + */ + excerpt: { + type: Boolean, + default: false + }, + /** + * Root tag to use for rendering + */ + tag: { + type: String, + default: "div" + }, + /** + * The map of custom components to use for rendering. + */ + components: { + type: Object, + default: () => ({}) + } + }, + async setup(props) { + var _a; + const { content: { tags = {} } } = useRuntimeConfig().public; + await resolveContentComponents(props.value.body, { + tags: { + ...tags, + ...((_a = props.value) == null ? void 0 : _a._components) || {}, + ...props.components + } + }); + return { tags }; + }, + render(ctx) { + var _a; + const { tags, tag, value, components } = ctx; + if (!value) { + return null; + } + let body = value.body || value; + if (ctx.excerpt && value.excerpt) { + body = value.excerpt; + } + const meta = { + ...value, + tags: { + ...tags, + ...(value == null ? void 0 : value._components) || {}, + ...components + } + }; + let component = meta.component || tag; + if (typeof meta.component === "object") { + component = meta.component.name; + } + component = resolveVueComponent(component); + return h( + component, + { ...(_a = meta.component) == null ? void 0 : _a.props, ...this.$attrs }, + renderSlots(body, h, meta, meta) + ); + } +}); +function renderNode(node, h2, documentMeta, parentScope = {}) { + var _a; + if (node.type === "text") { + return h2(Text, node.value); + } + if (node.tag === "script") { + return renderToText(node); + } + const originalTag = node.tag; + const renderTag = typeof ((_a = node.props) == null ? void 0 : _a.__ignoreMap) === "undefined" && documentMeta.tags[originalTag] || originalTag; + if (node.tag === "binding") { + return renderBinding(node, h2, documentMeta, parentScope); + } + const component = resolveVueComponent(renderTag); + if (typeof component === "object") { + component.tag = originalTag; + } + const props = propsToData(node, documentMeta); + return h2( + component, + props, + renderSlots(node, h2, documentMeta, { ...parentScope, ...props }) + ); +} +function renderToText(node) { + var _a, _b; + if (node.type === "text") { + return node.value; + } + if (!((_a = node.children) == null ? void 0 : _a.length)) { + return `<${node.tag}>`; + } + return `<${node.tag}>${((_b = node.children) == null ? void 0 : _b.map(renderToText).join("")) || ""}`; +} +function renderBinding(node, h2, documentMeta, parentScope = {}) { + var _a; + const data = { + ...parentScope, + $route: () => useRoute(), + $document: documentMeta, + $doc: documentMeta + }; + const splitter = /\.|\[(\d+)\]/; + const keys = (_a = node.props) == null ? void 0 : _a.value.trim().split(splitter).filter(Boolean); + const value = keys.reduce((data2, key) => { + if (key in data2) { + if (typeof data2[key] === "function") { + return data2[key](); + } else { + return data2[key]; + } + } + return {}; + }, data); + return h2(Text, value); +} +function renderSlots(node, h2, documentMeta, parentProps) { + const children = node.children || []; + const slotNodes = children.reduce((data, node2) => { + if (!isTemplate(node2)) { + data[DEFAULT_SLOT].push(node2); + return data; + } + const slotName = getSlotName(node2); + data[slotName] = data[slotName] || []; + data[slotName].push(...node2.children || []); + return data; + }, { + [DEFAULT_SLOT]: [] + }); + const slots = Object.entries(slotNodes).reduce((slots2, [name, children2]) => { + if (!children2.length) { + return slots2; + } + slots2[name] = () => { + const vNodes = children2.map((child) => renderNode(child, h2, documentMeta, parentProps)); + return mergeTextNodes(vNodes); + }; + return slots2; + }, {}); + return slots; +} +function propsToData(node, documentMeta) { + const { tag = "", props = {} } = node; + return Object.keys(props).reduce(function(data, key) { + if (key === "__ignoreMap") { + return data; + } + const value = props[key]; + if (rxModel.test(key) && !nativeInputs.includes(tag)) { + return propsToDataRxModel(key, value, data, documentMeta); + } + if (key === "v-bind") { + return propsToDataVBind(key, value, data, documentMeta); + } + if (rxOn.test(key)) { + return propsToDataRxOn(key, value, data, documentMeta); + } + if (rxBind.test(key)) { + return propsToDataRxBind(key, value, data, documentMeta); + } + const { attribute } = find(html, key); + if (Array.isArray(value) && value.every((v) => typeof v === "string")) { + data[attribute] = value.join(" "); + return data; + } + data[attribute] = value; + return data; + }, {}); +} +function propsToDataRxModel(key, value, data, documentMeta) { + const number = (d) => +d; + const trim = (d) => d.trim(); + const noop = (d) => d; + const mods = key.replace(rxModel, "").split(".").filter((d) => d).reduce((d, k) => { + d[k] = true; + return d; + }, {}); + const field = "value"; + const event = mods.lazy ? "change" : "input"; + const processor = mods.number ? number : mods.trim ? trim : noop; + data[field] = evalInContext(value, documentMeta); + data.on = data.on || {}; + data.on[event] = (e) => documentMeta[value] = processor(e); + return data; +} +function propsToDataVBind(_key, value, data, documentMeta) { + const val = evalInContext(value, documentMeta); + data = Object.assign(data, val); + return data; +} +function propsToDataRxOn(key, value, data, documentMeta) { + key = key.replace(rxOn, ""); + data.on = data.on || {}; + data.on[key] = () => evalInContext(value, documentMeta); + return data; +} +function propsToDataRxBind(key, value, data, documentMeta) { + key = key.replace(rxBind, ""); + data[key] = evalInContext(value, documentMeta); + return data; +} +const resolveVueComponent = (component) => { + if (!htmlTags.includes(component)) { + const componentFn = resolveComponent(pascalCase(component), false); + if (typeof componentFn === "object") { + return componentFn; + } + } + return component; +}; +function evalInContext(code, context) { + const result = code.split(".").reduce((o, k) => typeof o === "object" ? o[k] : void 0, context); + return typeof result === "undefined" ? destr(code) : result; +} +function getSlotName(node) { + let name = ""; + for (const propName of Object.keys(node.props || {})) { + if (!propName.startsWith("#") && !propName.startsWith("v-slot:")) { + continue; + } + name = propName.split(/[:#]/, 2)[1]; + break; + } + return name || DEFAULT_SLOT; +} +function isTemplate(node) { + return node.tag === "template"; +} +function mergeTextNodes(nodes) { + const mergedNodes = []; + for (const node of nodes) { + const previousNode = mergedNodes[mergedNodes.length - 1]; + if (node.type === Text && (previousNode == null ? void 0 : previousNode.type) === Text) { + previousNode.children = previousNode.children + node.children; + } else { + mergedNodes.push(node); + } + } + return mergedNodes; +} +async function resolveContentComponents(body, meta) { + const components = Array.from(new Set(loadComponents(body, meta))); + await Promise.all(components.map(async (c) => { + const resolvedComponent = resolveComponent(c); + if ((resolvedComponent == null ? void 0 : resolvedComponent.__asyncLoader) && !resolvedComponent.__asyncResolved) { + await resolvedComponent.__asyncLoader(); + } + })); + function loadComponents(node, documentMeta) { + var _a; + if (node.type === "text" || node.tag === "binding") { + return []; + } + const renderTag = typeof ((_a = node.props) == null ? void 0 : _a.__ignoreMap) === "undefined" && documentMeta.tags[node.tag] || node.tag; + const components2 = []; + if (node.type !== "root" && !htmlTags.includes(renderTag)) { + components2.push(renderTag); + } + for (const child of node.children || []) { + components2.push(...loadComponents(child, documentMeta)); + } + return components2; + } +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ContentRendererMarkdown-bebf42c8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map new file mode 100644 index 00000000..c0922ae1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentRendererMarkdown-bebf42c8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentRendererMarkdown-bebf42c8.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs b/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs new file mode 100644 index 00000000..0cfd1994 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs @@ -0,0 +1,100 @@ +import { defineComponent, getCurrentInstance, useSlots, computed, h, useSSRContext } from 'vue'; +import { u as useUnwrap } from './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = defineComponent({ + name: "ContentSlot", + functional: true, + props: { + /** + * A slot name or function + */ + use: { + type: Function, + default: void 0 + }, + /** + * Tags to unwrap separated by spaces + * Example: 'ul li' + */ + unwrap: { + type: [Boolean, String], + default: false + } + }, + setup(props) { + const { parent } = getCurrentInstance(); + const { between, default: fallbackSlot } = useSlots(); + const tags = computed(() => { + if (typeof props.unwrap === "string") { + return props.unwrap.split(" "); + } + return ["*"]; + }); + return { + fallbackSlot, + tags, + between, + parent + }; + }, + render({ use, unwrap, fallbackSlot, between, tags, parent }) { + var _a; + try { + let slot = use; + if (typeof use === "string") { + slot = (parent == null ? void 0 : parent.slots[use]) || ((_a = parent == null ? void 0 : parent.parent) == null ? void 0 : _a.slots[use]); + console.warn(`Please set :use="$slots.${use}" in component to enable reactivity`); + } + if (!slot) { + return fallbackSlot ? fallbackSlot() : h("div"); + } + if (!unwrap) { + return [slot()]; + } + const { flatUnwrap } = useUnwrap(); + const unwrapped = flatUnwrap(slot(), tags); + if (between) { + return unwrapped.flatMap( + (vnode, index) => index === 0 ? [vnode] : [between(), vnode] + ); + } + return unwrapped.reduce((acc, item) => { + if (typeof item.children === "string") { + if (typeof acc[acc.length - 1] === "string") { + acc[acc.length - 1] += item.children; + } else { + acc.push(item.children); + } + } else { + acc.push(item); + } + return acc; + }, []); + } catch (e) { + return h("div"); + } + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ContentSlot = _sfc_main; + +export { ContentSlot as default }; +//# sourceMappingURL=ContentSlot-deb25102.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map new file mode 100644 index 00000000..ea19caf8 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ContentSlot-deb25102.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentSlot-deb25102.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs b/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs new file mode 100644 index 00000000..a853712f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs @@ -0,0 +1,56 @@ +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { defineComponent, ref, mergeProps, unref, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { u as useClipboard } from './index-1624a23e.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "CopyButton", + __ssrInlineRender: true, + props: { + content: { + type: String, + default: "" + } + }, + setup(__props) { + useClipboard(); + const state = ref("init"); + return (_ctx, _push, _parent, _attrs) => { + const _component_Icon = __nuxt_component_0$1; + _push(``); + if (unref(state) === "copied") { + _push(ssrRenderComponent(_component_Icon, { + name: "fa-check", + class: "h-4 w-4" + }, null, _parent)); + } else { + _push(ssrRenderComponent(_component_Icon, { + name: "fa-copy", + class: "h-4 w-4" + }, null, _parent)); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=CopyButton-155eba98.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map b/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map new file mode 100644 index 00000000..8cbb535e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"CopyButton-155eba98.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CopyButton-155eba98.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAa,YAAA,EAAA,CAAA;AACb,IAAM,MAAA,KAAA,GAAQ,IAAI,MAAM,CAAA,CAAA;AACxB,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,eAAkB,GAAAA,oBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,CAAA,OAAA,EAAU,eAAe,UAAW,CAAA,EAAE,OAAO,mIAAoI,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AACrM,MAAI,IAAA,KAAA,CAAM,KAAK,CAAA,KAAM,QAAU,EAAA;AAC7B,QAAA,KAAA,CAAM,mBAAmB,eAAiB,EAAA;AAAA,UACxC,IAAM,EAAA,UAAA;AAAA,UACN,KAAO,EAAA,SAAA;AAAA,SACT,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AAAA,OACZ,MAAA;AACL,QAAA,KAAA,CAAM,mBAAmB,eAAiB,EAAA;AAAA,UACxC,IAAM,EAAA,SAAA;AAAA,UACN,KAAO,EAAA,SAAA;AAAA,SACT,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AAAA,OACnB;AACA,MAAA,KAAA,CAAM,CAAW,SAAA,CAAA,CAAA,CAAA;AAAA,KACnB,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs b/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs new file mode 100644 index 00000000..1af7b207 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs @@ -0,0 +1,68 @@ +import { b as __nuxt_component_0, _ as __nuxt_component_0$1$1 } from './DocsAsideTree-136bd08b.mjs'; +import { _ as __nuxt_component_0$1 } from './app.config-832f5f68.mjs'; +import { b as useDocus } from './useDocus-928368c4.mjs'; +import { useSSRContext, defineComponent, unref, withCtx, createVNode } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ufo'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsAside", + __ssrInlineRender: true, + setup(__props) { + const { tree } = useDocus(); + return (_ctx, _push, _parent, _attrs) => { + var _a; + const _component_DocsAsideTree = __nuxt_component_0; + const _component_NuxtLink = __nuxt_component_0$1; + const _component_Icon = __nuxt_component_0$1$1; + _push(``); + if (((_a = unref(tree)) == null ? void 0 : _a.length) > 0) { + _push(ssrRenderComponent(_component_DocsAsideTree, { links: unref(tree) }, null, _parent)); + } else { + _push(ssrRenderComponent(_component_NuxtLink, { + to: "/", + class: "go-back-link" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(ssrRenderComponent(_component_Icon, { + name: "heroicons-outline:arrow-left", + class: "icon" + }, null, _parent2, _scopeId)); + _push2(`Go back`); + } else { + return [ + createVNode(_component_Icon, { + name: "heroicons-outline:arrow-left", + class: "icon" + }), + createVNode("span", { class: "text" }, "Go back") + ]; + } + }), + _: 1 + }, _parent)); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4fc52927"]]); + +export { __nuxt_component_1 as default }; +//# sourceMappingURL=DocsAside-a41d5eb9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map new file mode 100644 index 00000000..534245b1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsAside-a41d5eb9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAside-a41d5eb9.js"],"sourcesContent":null,"names":["__nuxt_component_0$2"],"mappings":";;;;;;;;;;;;;;;;AAgBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,WAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,IAAK,EAAA,GAAI,QAAS,EAAA,CAAA;AAC1B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAI,IAAA,EAAA,CAAA;AACJ,MAAA,MAAM,wBAA2B,GAAA,kBAAA,CAAA;AACjC,MAAA,MAAM,mBAAsB,GAAA,oBAAA,CAAA;AAC5B,MAAA,MAAM,eAAkB,GAAAA,sBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACtD,MAAM,IAAA,CAAA,CAAA,EAAA,GAAK,MAAM,IAAI,CAAA,KAAM,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,UAAU,CAAG,EAAA;AACzD,QAAM,KAAA,CAAA,kBAAA,CAAmB,wBAA0B,EAAA,EAAE,KAAO,EAAA,KAAA,CAAM,IAAI,CAAE,EAAA,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AAAA,OACpF,MAAA;AACL,QAAA,KAAA,CAAM,mBAAmB,mBAAqB,EAAA;AAAA,UAC5C,EAAI,EAAA,GAAA;AAAA,UACJ,KAAO,EAAA,cAAA;AAAA,SACN,EAAA;AAAA,UACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,YAAA,IAAI,MAAQ,EAAA;AACV,cAAA,MAAA,CAAO,mBAAmB,eAAiB,EAAA;AAAA,gBACzC,IAAM,EAAA,8BAAA;AAAA,gBACN,KAAO,EAAA,MAAA;AAAA,eACN,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAC5B,cAAA,MAAA,CAAO,qCAAqC,QAAyB,CAAA,eAAA,CAAA,CAAA,CAAA;AAAA,aAChE,MAAA;AACL,cAAO,OAAA;AAAA,gBACL,YAAY,eAAiB,EAAA;AAAA,kBAC3B,IAAM,EAAA,8BAAA;AAAA,kBACN,KAAO,EAAA,MAAA;AAAA,iBACR,CAAA;AAAA,gBACD,YAAY,MAAQ,EAAA,EAAE,KAAO,EAAA,MAAA,IAAU,SAAS,CAAA;AAAA,eAClD,CAAA;AAAA,aACF;AAAA,WACD,CAAA;AAAA,UACD,CAAG,EAAA,CAAA;AAAA,SACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,OACb;AACA,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,+DAA+D,CAAA,CAAA;AAC5I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs b/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs new file mode 100644 index 00000000..b0c62bf0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs @@ -0,0 +1,6 @@ +const DocsAside_vue_vue_type_style_index_0_scoped_4fc52927_transformed_true_lang = ".go-back-link[data-v-4fc52927]{align-items:center;color:var(--color-gray-500);cursor:pointer;display:flex;font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight)}.go-back-link[data-v-4fc52927]:hover{color:var(--color-gray-700)}.go-back-link .icon[data-v-4fc52927]{height:var(--space-4);width:var(--space-4)}.go-back-link .text[data-v-4fc52927]{margin-left:var(--space-2)}"; + +const DocsAsideStyles_764ece99 = [DocsAside_vue_vue_type_style_index_0_scoped_4fc52927_transformed_true_lang]; + +export { DocsAsideStyles_764ece99 as default }; +//# sourceMappingURL=DocsAside-styles.764ece99.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map new file mode 100644 index 00000000..2d62aa3a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsAside-styles.764ece99.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAside-styles-1.mjs-5e01d86c.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAside-styles.764ece99.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,qYAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs b/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs new file mode 100644 index 00000000..a3e5dcea --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs @@ -0,0 +1,350 @@ +import { withBase } from 'ufo'; +import { b as useRuntimeConfig, e as useRequestEvent, u as useNuxtApp, f as useRoute, _ as __nuxt_component_0$2 } from './app.config-832f5f68.mjs'; +import { useSSRContext, defineComponent, ref, computed, watch, withAsyncContext, unref, mergeProps, createVNode, resolveDynamicComponent, withCtx, openBlock, createBlock, createCommentVNode, toDisplayString } from 'vue'; +import { a as useAppConfig, u as useState, b as useDocus } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderVNode, ssrInterpolate, ssrRenderList, ssrRenderClass } from 'vue/server-renderer'; +import { Icon as Icon$1 } from '@iconify/vue/dist/offline'; +import { loadIcon } from '@iconify/vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const TEXT_TAGS = ["p", "h1", "h2", "h3", "h4", "h5", "h6", "li"]; +function isTag(vnode, tag) { + if (vnode.type === tag) { + return true; + } + if (typeof vnode.type === "object" && vnode.type.tag === tag) { + return true; + } + if (vnode.tag === tag) { + return true; + } + return false; +} +function isText(vnode) { + return isTag(vnode, "text") || typeof vnode.children === "string"; +} +function nodeChildren(node) { + if (Array.isArray(node.children) || typeof node.children === "string") { + return node.children; + } + if (typeof node.children.default === "function") { + return node.children.default(); + } + return []; +} +function nodeTextContent(node) { + if (!node) { + return ""; + } + if (Array.isArray(node)) { + return node.map(nodeTextContent).join(""); + } + if (isText(node)) { + return node.children || node.value; + } + const children = nodeChildren(node); + if (Array.isArray(children)) { + return children.map(nodeTextContent).join(""); + } + return ""; +} +function unwrap(vnode, tags = ["p"]) { + if (Array.isArray(vnode)) { + return vnode.flatMap((node) => unwrap(node, tags)); + } + let result = vnode; + if (tags.some((tag) => tag === "*" || isTag(vnode, tag))) { + result = nodeChildren(vnode) || vnode; + if (!Array.isArray(result) && TEXT_TAGS.some((tag) => isTag(vnode, tag))) { + result = [result]; + } + } + return result; +} +function flatUnwrap(vnodes, tags = ["p"]) { + vnodes = Array.isArray(vnodes) ? vnodes : [vnodes]; + if (!tags.length) { + return vnodes; + } + return vnodes.flatMap((vnode) => flatUnwrap(unwrap(vnode, [tags[0]]), tags.slice(1))).filter((vnode) => !(isText(vnode) && nodeTextContent(vnode).trim() === "")); +} +const withContentBase = (url) => withBase(url, useRuntimeConfig().public.content.api.baseURL); +const useUnwrap = () => ({ + unwrap, + flatUnwrap +}); +const addPrerenderPath = (path) => { + const event = useRequestEvent(); + event.res.setHeader( + "x-nitro-prerender", + [ + event.res.getHeader("x-nitro-prerender"), + path + ].filter(Boolean).join(",") + ); +}; +const shouldUseClientDB = () => { + useRuntimeConfig().content; + { + return false; + } +}; +const _sfc_main$1 = /* @__PURE__ */ defineComponent({ + __name: "Icon", + __ssrInlineRender: true, + props: { + name: { + type: String, + required: true + }, + size: { + type: String, + default: "" + } + }, + async setup(__props) { + var _a; + let __temp, __restore; + const props = __props; + const nuxtApp = useNuxtApp(); + const appConfig = useAppConfig(); + ((_a = appConfig == null ? void 0 : appConfig.nuxtIcon) == null ? void 0 : _a.aliases) || {}; + const state = useState("icons", () => ({})); + const isFetching = ref(false); + const iconName = computed(() => { + var _a2; + return (((_a2 = appConfig == null ? void 0 : appConfig.nuxtIcon) == null ? void 0 : _a2.aliases) || {})[props.name] || props.name; + }); + const icon = computed(() => { + var _a2; + return (_a2 = state.value) == null ? void 0 : _a2[iconName.value]; + }); + const component = computed(() => nuxtApp.vueApp.component(iconName.value)); + const sSize = computed(() => { + var _a2; + const size = props.size || ((_a2 = appConfig.nuxtIcon) == null ? void 0 : _a2.size) || "1em"; + if (String(Number(size)) === size) { + return `${size}px`; + } + return size; + }); + const className = computed(() => { + var _a3; + var _a2; + return (_a3 = (_a2 = appConfig == null ? void 0 : appConfig.nuxtIcon) == null ? void 0 : _a2.class) != null ? _a3 : "icon"; + }); + async function loadIconComponent() { + var _a2; + if (component.value) { + return; + } + if (!((_a2 = state.value) == null ? void 0 : _a2[iconName.value])) { + isFetching.value = true; + state.value[iconName.value] = await loadIcon(iconName.value).catch(() => void 0); + isFetching.value = false; + } + } + watch(() => iconName.value, loadIconComponent); + !component.value && ([__temp, __restore] = withAsyncContext(() => loadIconComponent()), __temp = await __temp, __restore(), __temp); + return (_ctx, _push, _parent, _attrs) => { + if (unref(isFetching)) { + _push(``); + } else if (unref(icon)) { + _push(ssrRenderComponent(unref(Icon$1), mergeProps({ + icon: unref(icon), + class: unref(className), + width: unref(sSize), + height: unref(sSize) + }, _attrs), null, _parent)); + } else if (unref(component)) { + ssrRenderVNode(_push, createVNode(resolveDynamicComponent(unref(component)), mergeProps({ + class: unref(className), + width: unref(sSize), + height: unref(sSize) + }, _attrs), null), _parent); + } else { + _push(`${ssrInterpolate(__props.name)}`); + } + }; + } +}); +const _sfc_setup$1 = _sfc_main$1.setup; +_sfc_main$1.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/nuxt-icon/dist/runtime/Icon.vue"); + return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; +}; +const __nuxt_component_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-28b5b508"]]); +const Icon = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_0$1 +}); +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsAsideTree", + __ssrInlineRender: true, + props: { + links: { + type: Array, + default: () => [] + }, + level: { + type: Number, + default: 0 + }, + max: { + type: Number, + default: null + }, + parent: { + type: Object, + default: null + } + }, + setup(__props) { + var _a; + const props = __props; + const route = useRoute(); + const { config } = useDocus(); + const collapsedMap = useState(`docus-docs-aside-collapse-map-${((_a = props.parent) == null ? void 0 : _a._path) || "/"}`, () => { + if (props.level === 0) { + return {}; + } + return props.links.filter((link) => !!link.children).reduce((map, link) => { + map[link._path] = true; + return map; + }, {}); + }); + const isActive = (link) => { + return route.path === link._path; + }; + const isCollapsed = (link) => { + var _a2, _b, _c, _d; + if (link.children) { + if (typeof collapsedMap.value[link._path] !== "undefined") { + return collapsedMap.value[link._path]; + } + if ((_a2 = link == null ? void 0 : link.aside) == null ? void 0 : _a2.collapsed) { + return link.aside.collapsed; + } + if (link == null ? void 0 : link.collapsed) { + return link == null ? void 0 : link.collapsed; + } + if ((_c = (_b = config == null ? void 0 : config.value) == null ? void 0 : _b.aside) == null ? void 0 : _c.collapsed) { + return (_d = config.value.aside) == null ? void 0 : _d.collapsed; + } + } + return false; + }; + const hasNesting = computed(() => props.links.some((link) => link.children)); + return (_ctx, _push, _parent, _attrs) => { + const _component_Icon = __nuxt_component_0$1; + const _component_NuxtLink = __nuxt_component_0$2; + const _component_DocsAsideTree = __nuxt_component_0; + _push(``); + ssrRenderList(__props.links, (link) => { + var _a2, _b, _c, _d, _e; + _push(`
  • 0 && link.children, + "bordered": __props.level > 0 || !unref(hasNesting), + "active": isActive(link) + })}" data-v-1b6cf603>`); + if (link.children) { + _push(``); + } else { + _push(ssrRenderComponent(_component_NuxtLink, { + to: link.redirect ? link.redirect : link._path, + class: ["link", { + "padded": __props.level > 0 || !unref(hasNesting), + "active": isActive(link) + }], + exact: link.exact + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + var _a3, _b2, _c2, _d2, _e2, _f; + if (_push2) { + _push2(``); + if (((_a3 = link == null ? void 0 : link.navigation) == null ? void 0 : _a3.icon) || link.icon) { + _push2(ssrRenderComponent(_component_Icon, { + name: ((_b2 = link == null ? void 0 : link.navigation) == null ? void 0 : _b2.icon) || link.icon, + class: "icon" + }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + _push2(`${ssrInterpolate(((_c2 = link == null ? void 0 : link.navigation) == null ? void 0 : _c2.title) || link.title || link._path)}`); + } else { + return [ + createVNode("span", { class: "content" }, [ + ((_d2 = link == null ? void 0 : link.navigation) == null ? void 0 : _d2.icon) || link.icon ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: ((_e2 = link == null ? void 0 : link.navigation) == null ? void 0 : _e2.icon) || link.icon, + class: "icon" + }, null, 8, ["name"])) : createCommentVNode("", true), + createVNode("span", null, toDisplayString(((_f = link == null ? void 0 : link.navigation) == null ? void 0 : _f.title) || link.title || link._path), 1) + ]) + ]; + } + }), + _: 2 + }, _parent)); + } + if (((_e = link.children) == null ? void 0 : _e.length) && (__props.max === null || __props.level + 1 < __props.max)) { + _push(ssrRenderComponent(_component_DocsAsideTree, { + style: !isCollapsed(link) ? null : { display: "none" }, + links: link.children, + level: __props.level + 1, + parent: link, + max: __props.max, + class: "recursive" + }, null, _parent)); + } else { + _push(``); + } + _push(`
  • `); + }); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1b6cf603"]]); +const DocsAsideTree = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_0 +}); + +export { DocsAsideTree as D, Icon as I, __nuxt_component_0$1 as _, addPrerenderPath as a, __nuxt_component_0 as b, shouldUseClientDB as s, useUnwrap as u, withContentBase as w }; +//# sourceMappingURL=DocsAsideTree-136bd08b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map new file mode 100644 index 00000000..ebcb9bfd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsAsideTree-136bd08b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAsideTree-136bd08b.js"],"sourcesContent":null,"names":["_a"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs new file mode 100644 index 00000000..75783e2e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs @@ -0,0 +1,88 @@ +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import _sfc_main$1 from './EditOnLink-e55cd3a0.mjs'; +import __nuxt_component_2 from './ProseA-86ef3985.mjs'; +import { c as useContent, b as useDocus } from './useDocus-928368c4.mjs'; +import { useSSRContext, defineComponent, unref, mergeProps, withCtx, createVNode } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsPageBottom", + __ssrInlineRender: true, + setup(__props) { + const { page } = useContent(); + const { config } = useDocus(); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b, _c; + const _component_Icon = __nuxt_component_0$1; + const _component_EditOnLink = _sfc_main$1; + const _component_ProseA = __nuxt_component_2; + if (unref(page)) { + _push(``); + if ((_b = (_a = unref(config)) == null ? void 0 : _a.github) == null ? void 0 : _b.edit) { + _push(``); + } else { + _push(``); + } + if ((_c = unref(page)) == null ? void 0 : _c.mtime) { + _push(`Updated on ${ssrInterpolate(new Intl.DateTimeFormat("en-US").format(Date.parse(unref(page).mtime)))}`); + } else { + _push(``); + } + _push(``); + } else { + _push(``); + } + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_4 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c70c0152"]]); + +export { __nuxt_component_4 as default }; +//# sourceMappingURL=DocsPageBottom-270eacfc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map new file mode 100644 index 00000000..dbc5df89 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsPageBottom-270eacfc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageBottom-270eacfc.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":";;;;;;;;;;;;;;;;;;AAkBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,gBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,IAAK,EAAA,GAAI,UAAW,EAAA,CAAA;AAC5B,IAAM,MAAA,EAAE,MAAO,EAAA,GAAI,QAAS,EAAA,CAAA;AAC5B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,IAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AACZ,MAAA,MAAM,eAAkB,GAAAA,oBAAA,CAAA;AACxB,MAAA,MAAM,qBAAwB,GAAA,WAAA,CAAA;AAC9B,MAAA,MAAM,iBAAoB,GAAA,kBAAA,CAAA;AAC1B,MAAI,IAAA,KAAA,CAAM,IAAI,CAAG,EAAA;AACf,QAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,kBAAmB,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACjG,QAAA,IAAA,CAAK,EAAM,GAAA,CAAA,EAAA,GAAK,KAAM,CAAA,MAAM,CAAM,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,MAAW,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,IAAM,EAAA;AACvF,UAAA,KAAA,CAAM,CAAyC,uCAAA,CAAA,CAAA,CAAA;AAC/C,UAAM,KAAA,CAAA,kBAAA,CAAmB,iBAAiB,EAAE,IAAA,EAAM,YAAc,EAAA,IAAA,EAAM,OAAO,CAAC,CAAA,CAAA;AAC9E,UAAA,KAAA,CAAM,mBAAmB,qBAAuB,EAAA,EAAE,MAAM,KAAM,CAAA,IAAI,GAAK,EAAA;AAAA,YACrE,OAAA,EAAS,QAAQ,CAAC,EAAE,KAAO,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AACxD,cAAA,IAAI,MAAQ,EAAA;AACV,gBAAA,MAAA,CAAO,kBAAmB,CAAA,iBAAA,EAAmB,EAAE,EAAA,EAAI,KAAO,EAAA;AAAA,kBACxD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,SAAc,KAAA;AACnD,oBAAA,IAAI,MAAQ,EAAA;AACV,sBAAA,MAAA,CAAO,wBAAwB,SAA6C,CAAA,kCAAA,CAAA,CAAA,CAAA;AAAA,qBACvE,MAAA;AACL,sBAAO,OAAA;AAAA,wBACL,WAAA,CAAY,MAAQ,EAAA,IAAA,EAAM,4BAA4B,CAAA;AAAA,uBACxD,CAAA;AAAA,qBACF;AAAA,mBACD,CAAA;AAAA,kBACD,CAAG,EAAA,CAAA;AAAA,iBACL,EAAG,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAAA,eACjB,MAAA;AACL,gBAAO,OAAA;AAAA,kBACL,WAAY,CAAA,iBAAA,EAAmB,EAAE,EAAA,EAAI,KAAO,EAAA;AAAA,oBAC1C,OAAA,EAAS,QAAQ,MAAM;AAAA,sBACrB,WAAA,CAAY,MAAQ,EAAA,IAAA,EAAM,4BAA4B,CAAA;AAAA,qBACvD,CAAA;AAAA,oBACD,CAAG,EAAA,CAAA;AAAA,mBACF,EAAA,IAAA,EAAM,CAAC,IAAI,CAAC,CAAA;AAAA,iBACjB,CAAA;AAAA,eACF;AAAA,aACD,CAAA;AAAA,YACD,CAAG,EAAA,CAAA;AAAA,WACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,UAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,SACT,MAAA;AACL,UAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,SACjB;AACA,QAAA,IAAA,CAAK,KAAK,KAAM,CAAA,IAAI,MAAM,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,KAAO,EAAA;AAClD,UAAA,KAAA,CAAM,uDAAuD,cAAe,CAAA,IAAI,IAAK,CAAA,cAAA,CAAe,OAAO,CAAE,CAAA,MAAA,CAAO,IAAK,CAAA,KAAA,CAAM,MAAM,IAAI,CAAA,CAAE,KAAK,CAAC,CAAC,CAAc,CAAA,WAAA,CAAA,CAAA,CAAA;AAAA,SAC3J,MAAA;AACL,UAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,SACjB;AACA,QAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,OACT,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AAAA,KACF,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs new file mode 100644 index 00000000..2ac408c5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs @@ -0,0 +1,6 @@ +const DocsPageBottom_vue_vue_type_style_index_0_scoped_c70c0152_transformed_true_lang = ".docs-page-bottom[data-v-c70c0152]{align-items:center;color:var(--color-gray-500);display:flex;flex-direction:row;font-size:var(--fontSize-sm);gap:var(--space-4);justify-content:space-between;margin-top:var(--space-8)}:root.dark .docs-page-bottom[data-v-c70c0152]{color:var(--color-gray-400)}.docs-page-bottom .edit-link[data-v-c70c0152]{align-items:center;display:flex;flex:1;gap:var(--space-2)}"; + +const DocsPageBottomStyles_e97de530 = [DocsPageBottom_vue_vue_type_style_index_0_scoped_c70c0152_transformed_true_lang]; + +export { DocsPageBottomStyles_e97de530 as default }; +//# sourceMappingURL=DocsPageBottom-styles.e97de530.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map new file mode 100644 index 00000000..ea7e401a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsPageBottom-styles.e97de530.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageBottom-styles-1.mjs-9133c53f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageBottom-styles.e97de530.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,8YAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs new file mode 100644 index 00000000..f8b27b45 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs @@ -0,0 +1,228 @@ +import { _ as _export_sfc, a as __nuxt_component_0$1 } from './Container-1291608c.mjs'; +import __nuxt_component_1 from './DocsAside-a41d5eb9.mjs'; +import __nuxt_component_2 from './Alert-2b29f746.mjs'; +import __nuxt_component_1$1 from './ProseCodeInline-960b9a43.mjs'; +import __nuxt_component_4 from './DocsPageBottom-270eacfc.mjs'; +import __nuxt_component_5 from './DocsPrevNext-7858c09b.mjs'; +import { _ as __nuxt_component_0$1$1 } from './DocsAsideTree-136bd08b.mjs'; +import __nuxt_component_7 from './DocsToc-e4f6bd56.mjs'; +import { c as useContent, b as useDocus, u as useState } from './useDocus-928368c4.mjs'; +import { f as useRoute } from './app.config-832f5f68.mjs'; +import { useSSRContext, defineComponent, computed, ref, mergeProps, unref, withCtx, createTextVNode, toDisplayString, createVNode, openBlock, createBlock, createCommentVNode, renderSlot, Fragment } from 'vue'; +import { ssrRenderComponent, ssrRenderClass, ssrRenderSlot, ssrInterpolate } from 'vue/server-renderer'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import 'ufo'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './ContentSlot-deb25102.mjs'; +import './EditOnLink-e55cd3a0.mjs'; +import './ProseA-86ef3985.mjs'; +import './DocsTocLinks-95d48629.mjs'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsPageLayout", + __ssrInlineRender: true, + setup(__props) { + const { page, navigation } = useContent(); + const { config } = useDocus(); + const route = useRoute(); + const fallbackValue = (value, fallback = true) => { + var _a; + if (typeof ((_a = page.value) == null ? void 0 : _a[value]) !== "undefined") { + return page.value[value]; + } + return fallback; + }; + const hasBody = computed(() => { + var _a, _b, _c; + return !page.value || ((_c = (_b = (_a = page.value) == null ? void 0 : _a.body) == null ? void 0 : _b.children) == null ? void 0 : _c.length) > 0; + }); + const hasToc = computed(() => { + var _a, _b, _c, _d, _e; + return ((_a = page.value) == null ? void 0 : _a.toc) !== false && ((_e = (_d = (_c = (_b = page.value) == null ? void 0 : _b.body) == null ? void 0 : _c.toc) == null ? void 0 : _d.links) == null ? void 0 : _e.length) >= 2; + }); + const hasAside = computed(() => { + var _a, _b; + return ((_a = page.value) == null ? void 0 : _a.aside) !== false && ((_b = navigation.value) == null ? void 0 : _b.length) > 0; + }); + const bottom = computed(() => fallbackValue("bottom", true)); + const isOpen = ref(false); + const asideNav = ref(null); + const getParentPath = () => route.path.split("/").slice(0, 2).join("/"); + useState("asideScroll", () => { + var _a; + return { + parentPath: getParentPath(), + scrollTop: ((_a = asideNav.value) == null ? void 0 : _a.scrollTop) || 0 + }; + }); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b, _c, _d, _e, _f; + const _component_Container = __nuxt_component_0$1; + const _component_DocsAside = __nuxt_component_1; + const _component_Alert = __nuxt_component_2; + const _component_ProseCodeInline = __nuxt_component_1$1; + const _component_DocsPageBottom = __nuxt_component_4; + const _component_DocsPrevNext = __nuxt_component_5; + const _component_Icon = __nuxt_component_0$1$1; + const _component_DocsToc = __nuxt_component_7; + _push(ssrRenderComponent(_component_Container, mergeProps({ + fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.main) == null ? void 0 : _b.fluid, + padded: (_d = (_c = unref(config)) == null ? void 0 : _c.main) == null ? void 0 : _d.padded, + class: ["docs-page-content", { + fluid: (_f = (_e = unref(config)) == null ? void 0 : _e.main) == null ? void 0 : _f.fluid + }] + }, _attrs), { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + if (unref(hasAside)) { + _push2(``); + } else { + _push2(``); + } + _push2(`
    `); + if (unref(hasBody)) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + } else { + _push2(ssrRenderComponent(_component_Alert, { type: "info" }, { + default: withCtx((_2, _push3, _parent3, _scopeId2) => { + if (_push3) { + _push3(` Start writing in `); + _push3(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_3, _push4, _parent4, _scopeId3) => { + if (_push4) { + _push4(`content/${ssrInterpolate(unref(page)._file)}`); + } else { + return [ + createTextVNode("content/" + toDisplayString(unref(page)._file), 1) + ]; + } + }), + _: 1 + }, _parent3, _scopeId2)); + _push3(` to see this page taking shape. `); + } else { + return [ + createTextVNode(" Start writing in "), + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode("content/" + toDisplayString(unref(page)._file), 1) + ]), + _: 1 + }), + createTextVNode(" to see this page taking shape. ") + ]; + } + }), + _: 1 + }, _parent2, _scopeId)); + } + if (unref(hasBody) && unref(page) && unref(bottom)) { + _push2(``); + _push2(ssrRenderComponent(_component_DocsPageBottom, null, null, _parent2, _scopeId)); + _push2(ssrRenderComponent(_component_DocsPrevNext, null, null, _parent2, _scopeId)); + _push2(``); + } else { + _push2(``); + } + _push2(`
    `); + if (unref(hasToc)) { + _push2(`
    `); + _push2(ssrRenderComponent(_component_DocsToc, { + onMove: ($event) => isOpen.value = false + }, null, _parent2, _scopeId)); + _push2(`
    `); + } else { + _push2(``); + } + } else { + return [ + unref(hasAside) ? (openBlock(), createBlock("aside", { + key: 0, + ref_key: "asideNav", + ref: asideNav, + class: "aside-nav" + }, [ + createVNode(_component_DocsAside, { class: "app-aside" }) + ], 512)) : createCommentVNode("", true), + createVNode("article", { + class: ["page-body", { + "with-toc": unref(hasToc) + }] + }, [ + unref(hasBody) ? renderSlot(_ctx.$slots, "default", { key: 0 }, void 0, true) : (openBlock(), createBlock(_component_Alert, { + key: 1, + type: "info" + }, { + default: withCtx(() => [ + createTextVNode(" Start writing in "), + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode("content/" + toDisplayString(unref(page)._file), 1) + ]), + _: 1 + }), + createTextVNode(" to see this page taking shape. ") + ]), + _: 1 + })), + unref(hasBody) && unref(page) && unref(bottom) ? (openBlock(), createBlock(Fragment, { key: 2 }, [ + createVNode(_component_DocsPageBottom), + createVNode(_component_DocsPrevNext) + ], 64)) : createCommentVNode("", true) + ], 2), + unref(hasToc) ? (openBlock(), createBlock("div", { + key: 1, + class: "toc" + }, [ + createVNode("div", { class: "toc-wrapper" }, [ + createVNode("button", { + onClick: ($event) => isOpen.value = !unref(isOpen) + }, [ + createVNode("span", { class: "title" }, "Table of Contents"), + createVNode(_component_Icon, { + name: "heroicons-outline:chevron-right", + class: ["icon", [unref(isOpen) && "rotate"]] + }, null, 8, ["class"]) + ], 8, ["onClick"]), + createVNode("div", { + class: ["docs-toc-wrapper", [unref(isOpen) && "opened"]] + }, [ + createVNode(_component_DocsToc, { + onMove: ($event) => isOpen.value = false + }, null, 8, ["onMove"]) + ], 2) + ]) + ])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-64504251"]]); + +export { __nuxt_component_0 as default }; +//# sourceMappingURL=DocsPageLayout-4c2ead4a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map new file mode 100644 index 00000000..266ab92c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsPageLayout-4c2ead4a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageLayout-4c2ead4a.js"],"sourcesContent":null,"names":["__nuxt_component_0$2"],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AA0BA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,gBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,EAAE,IAAA,EAAM,UAAW,EAAA,GAAI,UAAW,EAAA,CAAA;AACxC,IAAM,MAAA,EAAE,MAAO,EAAA,GAAI,QAAS,EAAA,CAAA;AAC5B,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,MAAM,aAAgB,GAAA,CAAC,KAAO,EAAA,QAAA,GAAW,IAAS,KAAA;AAChD,MAAI,IAAA,EAAA,CAAA;AACJ,MAAI,IAAA,QAAA,CAAS,KAAK,IAAK,CAAA,KAAA,KAAU,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,CAAA,CAAA,KAAO,WAAa,EAAA;AAC3E,QAAO,OAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA;AAAA,OACzB;AACA,MAAO,OAAA,QAAA,CAAA;AAAA,KACT,CAAA;AACA,IAAM,MAAA,OAAA,GAAU,SAAS,MAAM;AAC7B,MAAA,IAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AACZ,MAAA,OAAO,CAAC,IAAK,CAAA,KAAA,IAAA,CAAA,CAAW,MAAM,EAAM,GAAA,CAAA,EAAA,GAAK,KAAK,KAAU,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,IAAA,KAAS,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,aAAa,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,MAAU,IAAA,CAAA,CAAA;AAAA,KAClJ,CAAA,CAAA;AACD,IAAM,MAAA,MAAA,GAAS,SAAS,MAAM;AAC5B,MAAI,IAAA,EAAA,EAAI,EAAI,EAAA,EAAA,EAAI,EAAI,EAAA,EAAA,CAAA;AACpB,MAAA,OAAA,CAAA,CAAS,EAAK,GAAA,IAAA,CAAK,KAAU,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,GAAS,MAAA,KAAA,IAAA,CAAA,CAAW,EAAM,GAAA,CAAA,EAAA,GAAA,CAAM,EAAM,GAAA,CAAA,EAAA,GAAK,IAAK,CAAA,KAAA,KAAU,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,GAAA,KAAQ,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,KAAA,KAAU,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,MAAW,KAAA,CAAA,CAAA;AAAA,KAC7N,CAAA,CAAA;AACD,IAAM,MAAA,QAAA,GAAW,SAAS,MAAM;AAC9B,MAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,MAAA,OAAA,CAAA,CAAS,EAAK,GAAA,IAAA,CAAK,KAAU,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,KAAA,MAAW,KAAW,IAAA,CAAA,CAAA,EAAA,GAAK,UAAW,CAAA,KAAA,KAAU,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,MAAU,IAAA,CAAA,CAAA;AAAA,KAC9H,CAAA,CAAA;AACD,IAAA,MAAM,SAAS,QAAS,CAAA,MAAM,aAAc,CAAA,QAAA,EAAU,IAAI,CAAC,CAAA,CAAA;AAC3D,IAAM,MAAA,MAAA,GAAS,IAAI,KAAK,CAAA,CAAA;AACxB,IAAM,MAAA,QAAA,GAAW,IAAI,IAAI,CAAA,CAAA;AACzB,IAAA,MAAM,aAAgB,GAAA,MAAM,KAAM,CAAA,IAAA,CAAK,KAAM,CAAA,GAAG,CAAE,CAAA,KAAA,CAAM,CAAG,EAAA,CAAC,CAAE,CAAA,IAAA,CAAK,GAAG,CAAA,CAAA;AACtE,IAAA,QAAA,CAAS,eAAe,MAAM;AAC5B,MAAI,IAAA,EAAA,CAAA;AACJ,MAAO,OAAA;AAAA,QACL,YAAY,aAAc,EAAA;AAAA,QAC1B,aAAa,EAAK,GAAA,QAAA,CAAS,UAAU,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,SAAc,KAAA,CAAA;AAAA,OACxE,CAAA;AAAA,KACD,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,IAAI,EAAI,EAAA,EAAA,EAAI,EAAI,EAAA,EAAA,EAAI,EAAI,EAAA,EAAA,CAAA;AACxB,MAAA,MAAM,oBAAuB,GAAA,oBAAA,CAAA;AAC7B,MAAA,MAAM,oBAAuB,GAAA,kBAAA,CAAA;AAC7B,MAAA,MAAM,gBAAmB,GAAA,kBAAA,CAAA;AACzB,MAAA,MAAM,0BAA6B,GAAA,oBAAA,CAAA;AACnC,MAAA,MAAM,yBAA4B,GAAA,kBAAA,CAAA;AAClC,MAAA,MAAM,uBAA0B,GAAA,kBAAA,CAAA;AAChC,MAAA,MAAM,eAAkB,GAAAA,sBAAA,CAAA;AACxB,MAAA,MAAM,kBAAqB,GAAA,kBAAA,CAAA;AAC3B,MAAM,KAAA,CAAA,kBAAA,CAAmB,sBAAsB,UAAW,CAAA;AAAA,QACxD,KAAQ,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,KAAA;AAAA,QACpF,MAAS,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,MAAA;AAAA,QACrF,KAAA,EAAO,CAAC,mBAAqB,EAAA;AAAA,UAC3B,KAAQ,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,KAAA;AAAA,SACrF,CAAA;AAAA,OACH,EAAG,MAAM,CAAG,EAAA;AAAA,QACV,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAI,IAAA,KAAA,CAAM,QAAQ,CAAG,EAAA;AACnB,cAAA,MAAA,CAAO,2CAA2C,QAAW,CAAA,CAAA,CAAA,CAAA,CAAA;AAC7D,cAAO,MAAA,CAAA,kBAAA,CAAmB,sBAAsB,EAAE,KAAA,EAAO,aAAe,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AACjG,cAAA,MAAA,CAAO,CAAU,QAAA,CAAA,CAAA,CAAA;AAAA,aACZ,MAAA;AACL,cAAA,MAAA,CAAO,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,aAClB;AACA,YAAO,MAAA,CAAA,CAAA,gBAAA,EAAmB,eAAe,CAAC;AAAA,cACxC,UAAA,EAAY,MAAM,MAAM,CAAA;AAAA,aACvB,EAAA,WAAW,CAAC,CAAA,CAAA,iBAAA,EAAqB,QAAW,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/C,YAAI,IAAA,KAAA,CAAM,OAAO,CAAG,EAAA;AAClB,cAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,aACrE,MAAA;AACL,cAAA,MAAA,CAAO,kBAAmB,CAAA,gBAAA,EAAkB,EAAE,IAAA,EAAM,QAAU,EAAA;AAAA,gBAC5D,SAAS,OAAQ,CAAA,CAAC,EAAI,EAAA,MAAA,EAAQ,UAAU,SAAc,KAAA;AACpD,kBAAA,IAAI,MAAQ,EAAA;AACV,oBAAA,MAAA,CAAO,CAAoB,kBAAA,CAAA,CAAA,CAAA;AAC3B,oBAAO,MAAA,CAAA,kBAAA,CAAmB,4BAA4B,IAAM,EAAA;AAAA,sBAC1D,SAAS,OAAQ,CAAA,CAAC,EAAI,EAAA,MAAA,EAAQ,UAAU,SAAc,KAAA;AACpD,wBAAA,IAAI,MAAQ,EAAA;AACV,0BAAA,MAAA,CAAO,WAAW,cAAe,CAAA,KAAA,CAAM,IAAI,CAAA,CAAE,KAAK,CAAG,CAAA,CAAA,CAAA,CAAA;AAAA,yBAChD,MAAA;AACL,0BAAO,OAAA;AAAA,4BACL,eAAA,CAAgB,aAAa,eAAgB,CAAA,KAAA,CAAM,IAAI,CAAE,CAAA,KAAK,GAAG,CAAC,CAAA;AAAA,2BACpE,CAAA;AAAA,yBACF;AAAA,uBACD,CAAA;AAAA,sBACD,CAAG,EAAA,CAAA;AAAA,qBACL,EAAG,QAAU,EAAA,SAAS,CAAC,CAAA,CAAA;AACvB,oBAAA,MAAA,CAAO,CAAkC,gCAAA,CAAA,CAAA,CAAA;AAAA,mBACpC,MAAA;AACL,oBAAO,OAAA;AAAA,sBACL,gBAAgB,oBAAoB,CAAA;AAAA,sBACpC,WAAA,CAAY,4BAA4B,IAAM,EAAA;AAAA,wBAC5C,OAAA,EAAS,QAAQ,MAAM;AAAA,0BACrB,eAAA,CAAgB,aAAa,eAAgB,CAAA,KAAA,CAAM,IAAI,CAAE,CAAA,KAAK,GAAG,CAAC,CAAA;AAAA,yBACnE,CAAA;AAAA,wBACD,CAAG,EAAA,CAAA;AAAA,uBACJ,CAAA;AAAA,sBACD,gBAAgB,kCAAkC,CAAA;AAAA,qBACpD,CAAA;AAAA,mBACF;AAAA,iBACD,CAAA;AAAA,gBACD,CAAG,EAAA,CAAA;AAAA,eACL,EAAG,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAAA,aACxB;AACA,YAAI,IAAA,KAAA,CAAM,OAAO,CAAK,IAAA,KAAA,CAAM,IAAI,CAAK,IAAA,KAAA,CAAM,MAAM,CAAG,EAAA;AAClD,cAAA,MAAA,CAAO,CAAU,QAAA,CAAA,CAAA,CAAA;AACjB,cAAA,MAAA,CAAO,mBAAmB,yBAA2B,EAAA,IAAA,EAAM,IAAM,EAAA,QAAA,EAAU,QAAQ,CAAC,CAAA,CAAA;AACpF,cAAA,MAAA,CAAO,mBAAmB,uBAAyB,EAAA,IAAA,EAAM,IAAM,EAAA,QAAA,EAAU,QAAQ,CAAC,CAAA,CAAA;AAClF,cAAA,MAAA,CAAO,CAAU,QAAA,CAAA,CAAA,CAAA;AAAA,aACZ,MAAA;AACL,cAAA,MAAA,CAAO,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,aAClB;AACA,YAAA,MAAA,CAAO,CAAY,UAAA,CAAA,CAAA,CAAA;AACnB,YAAI,IAAA,KAAA,CAAM,MAAM,CAAG,EAAA;AACjB,cAAA,MAAA,CAAO,CAAmC,gCAAA,EAAA,QAAA,CAAA,yCAAA,EAAoD,QAAmC,CAAA,wBAAA,EAAA,QAAA,CAAA,oCAAA,EAA+C,QAAmC,CAAA,yBAAA,CAAA,CAAA,CAAA;AACnN,cAAA,MAAA,CAAO,mBAAmB,eAAiB,EAAA;AAAA,gBACzC,IAAM,EAAA,iCAAA;AAAA,gBACN,KAAA,EAAO,CAAC,MAAQ,EAAA,CAAC,MAAM,MAAM,CAAA,IAAK,QAAQ,CAAC,CAAA;AAAA,eAC1C,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAC5B,cAAA,MAAA,CAAO,CAAwB,qBAAA,EAAA,cAAA,CAAe,CAAC,CAAC,KAAM,CAAA,MAAM,CAAK,IAAA,QAAQ,CAAG,EAAA,kBAAkB,CAAC,CAAA,CAAA,iBAAA,EAAqB,QAAW,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/H,cAAA,MAAA,CAAO,mBAAmB,kBAAoB,EAAA;AAAA,gBAC5C,MAAQ,EAAA,CAAC,MAAW,KAAA,MAAA,CAAO,KAAQ,GAAA,KAAA;AAAA,eAClC,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAC5B,cAAA,MAAA,CAAO,CAAoB,kBAAA,CAAA,CAAA,CAAA;AAAA,aACtB,MAAA;AACL,cAAA,MAAA,CAAO,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,aAClB;AAAA,WACK,MAAA;AACL,YAAO,OAAA;AAAA,cACL,MAAM,QAAQ,CAAA,IAAK,SAAU,EAAA,EAAG,YAAY,OAAS,EAAA;AAAA,gBACnD,GAAK,EAAA,CAAA;AAAA,gBACL,OAAS,EAAA,UAAA;AAAA,gBACT,GAAK,EAAA,QAAA;AAAA,gBACL,KAAO,EAAA,WAAA;AAAA,eACN,EAAA;AAAA,gBACD,WAAY,CAAA,oBAAA,EAAsB,EAAE,KAAA,EAAO,aAAa,CAAA;AAAA,eACvD,EAAA,GAAG,CAAK,IAAA,kBAAA,CAAmB,IAAI,IAAI,CAAA;AAAA,cACtC,YAAY,SAAW,EAAA;AAAA,gBACrB,KAAA,EAAO,CAAC,WAAa,EAAA;AAAA,kBACnB,UAAA,EAAY,MAAM,MAAM,CAAA;AAAA,iBACzB,CAAA;AAAA,eACA,EAAA;AAAA,gBACD,MAAM,OAAO,CAAA,GAAI,UAAW,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,EAAE,GAAK,EAAA,CAAA,IAAK,KAAQ,CAAA,EAAA,IAAI,KAAK,SAAU,EAAA,EAAG,YAAY,gBAAkB,EAAA;AAAA,kBAC1H,GAAK,EAAA,CAAA;AAAA,kBACL,IAAM,EAAA,MAAA;AAAA,iBACL,EAAA;AAAA,kBACD,OAAA,EAAS,QAAQ,MAAM;AAAA,oBACrB,gBAAgB,oBAAoB,CAAA;AAAA,oBACpC,WAAA,CAAY,4BAA4B,IAAM,EAAA;AAAA,sBAC5C,OAAA,EAAS,QAAQ,MAAM;AAAA,wBACrB,eAAA,CAAgB,aAAa,eAAgB,CAAA,KAAA,CAAM,IAAI,CAAE,CAAA,KAAK,GAAG,CAAC,CAAA;AAAA,uBACnE,CAAA;AAAA,sBACD,CAAG,EAAA,CAAA;AAAA,qBACJ,CAAA;AAAA,oBACD,gBAAgB,kCAAkC,CAAA;AAAA,mBACnD,CAAA;AAAA,kBACD,CAAG,EAAA,CAAA;AAAA,iBACJ,CAAA,CAAA;AAAA,gBACD,MAAM,OAAO,CAAA,IAAK,KAAM,CAAA,IAAI,KAAK,KAAM,CAAA,MAAM,CAAK,IAAA,SAAA,IAAa,WAAY,CAAA,QAAA,EAAU,EAAE,GAAA,EAAK,GAAK,EAAA;AAAA,kBAC/F,YAAY,yBAAyB,CAAA;AAAA,kBACrC,YAAY,uBAAuB,CAAA;AAAA,iBAClC,EAAA,EAAE,CAAK,IAAA,kBAAA,CAAmB,IAAI,IAAI,CAAA;AAAA,iBACpC,CAAC,CAAA;AAAA,cACJ,MAAM,MAAM,CAAA,IAAK,SAAU,EAAA,EAAG,YAAY,KAAO,EAAA;AAAA,gBAC/C,GAAK,EAAA,CAAA;AAAA,gBACL,KAAO,EAAA,KAAA;AAAA,eACN,EAAA;AAAA,gBACD,WAAY,CAAA,KAAA,EAAO,EAAE,KAAA,EAAO,eAAiB,EAAA;AAAA,kBAC3C,YAAY,QAAU,EAAA;AAAA,oBACpB,SAAS,CAAC,MAAA,KAAW,OAAO,KAAQ,GAAA,CAAC,MAAM,MAAM,CAAA;AAAA,mBAChD,EAAA;AAAA,oBACD,YAAY,MAAQ,EAAA,EAAE,KAAO,EAAA,OAAA,IAAW,mBAAmB,CAAA;AAAA,oBAC3D,YAAY,eAAiB,EAAA;AAAA,sBAC3B,IAAM,EAAA,iCAAA;AAAA,sBACN,KAAA,EAAO,CAAC,MAAQ,EAAA,CAAC,MAAM,MAAM,CAAA,IAAK,QAAQ,CAAC,CAAA;AAAA,qBAC1C,EAAA,IAAA,EAAM,CAAG,EAAA,CAAC,OAAO,CAAC,CAAA;AAAA,mBACpB,EAAA,CAAA,EAAG,CAAC,SAAS,CAAC,CAAA;AAAA,kBACjB,YAAY,KAAO,EAAA;AAAA,oBACjB,KAAA,EAAO,CAAC,kBAAoB,EAAA,CAAC,MAAM,MAAM,CAAA,IAAK,QAAQ,CAAC,CAAA;AAAA,mBACtD,EAAA;AAAA,oBACD,YAAY,kBAAoB,EAAA;AAAA,sBAC9B,MAAQ,EAAA,CAAC,MAAW,KAAA,MAAA,CAAO,KAAQ,GAAA,KAAA;AAAA,qBAClC,EAAA,IAAA,EAAM,CAAG,EAAA,CAAC,QAAQ,CAAC,CAAA;AAAA,qBACrB,CAAC,CAAA;AAAA,iBACL,CAAA;AAAA,eACF,CAAA,IAAK,kBAAmB,CAAA,EAAA,EAAI,IAAI,CAAA;AAAA,aACnC,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs new file mode 100644 index 00000000..9981d947 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs @@ -0,0 +1,6 @@ +const DocsPageLayout_vue_vue_type_style_index_0_scoped_64504251_transformed_true_lang = ".docs-page-content[data-v-64504251]{display:flex;flex-direction:column-reverse;position:relative}@media (min-width:1024px){.docs-page-content[data-v-64504251]{display:grid;gap:var(--space-8);grid-template-columns:minmax(250px,250px) minmax(320px,1fr) minmax(250px,250px)}}.aside-nav[data-v-64504251]{display:none;overflow-y:auto}@media (min-width:1024px){.aside-nav[data-v-64504251]{align-self:flex-start;display:block;height:calc(100vh - var(--docus-header-height));padding-bottom:var(--space-8);padding-right:var(--space-8);padding-top:var(--space-8);position:sticky;top:var(--docus-header-height)}.fluid .aside-nav.aside-nav[data-v-64504251]{border-right:1px solid var(--elements-border-primary-static)}}.page-body[data-v-64504251]{display:flex;flex:1 1 0%;flex-direction:column;margin-left:auto;margin-right:auto;max-width:var(--docus-readableLine);padding-bottom:var(--space-8);padding-top:var(--space-8);position:relative;width:100%}.page-body.with-toc[data-v-64504251]{padding-top:var(--space-12)}@media (min-width:1024px){.page-body.with-toc[data-v-64504251]{padding-top:var(--space-8)}.page-body[data-v-64504251]{grid-column-start:2;margin-top:0}}.page-body[data-v-64504251] h1:not(.not-prose):first-child{font-size:var(--text-4xl-fontSize);line-height:var(--text-4xl-lineHeight);margin-top:0}@media (min-width:640px){.page-body[data-v-64504251] h1:not(.not-prose):first-child{font-size:var(--text-5xl-fontSize);line-height:var(--text-5xl-lineHeight)}}.page-body[data-v-64504251] h1:not(.not-prose)first-child+p{border-bottom:1px solid var(--elements-border-primary-static);color:var(--color-gray-500);margin-bottom:var(--space-8);margin-top:0;padding-bottom:var(--space-8)}@media (min-width:640px){.page-body[data-v-64504251] h1:not(.not-prose)first-child+p{font-size:var(--text-lg-fontSize);line-height:var(--text-lg-lineHeight)}}:root.dark .page-body[data-v-64504251] h1:not(.not-prose)first-child+p{color:var(--color-gray-400)}.page-body[data-v-64504251] h1:not(.not-prose)first-child+p a{color:var(--color-gray-700)}:root.dark .page-body[data-v-64504251] h1:not(.not-prose)first-child+p a{color:var(--color-gray-200)}.page-body[data-v-64504251] h1:not(.not-prose)first-child+p a:hover{border-color:var(--color-gray-700)}.page-body .docs-prev-next[data-v-64504251]{margin-top:var(--space-4)}.toc[data-v-64504251]{border-bottom:1px solid var(--elements-border-primary-static);display:flex;margin-left:calc(0px - var(--space-4));margin-right:calc(0px - var(--space-4));overflow:auto;position:sticky;top:var(--docus-header-height)}@media (min-width:640px){.toc[data-v-64504251]{margin-left:calc(0px - var(--space-6));margin-right:calc(0px - var(--space-6))}}@media (min-width:1024px){.toc[data-v-64504251]{align-self:flex-start;border-bottom:none;height:calc(100vh - var(--docus-header-height));margin-left:0;margin-right:0;max-height:none;padding:var(--space-8)}.fluid .toc.toc[data-v-64504251]{border-left:1px solid var(--elements-border-primary-static)}}.toc .toc-wrapper[data-v-64504251]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background-color:var(--elements-backdrop-background);height:100%;width:100%}@media (min-width:1024px){.toc .toc-wrapper[data-v-64504251]{-webkit-backdrop-filter:none;backdrop-filter:none;background-color:transparent}}.toc .toc-wrapper button[data-v-64504251]{align-items:center;display:flex;height:100%;padding:var(--space-4);width:100%}@media (min-width:640px){.toc .toc-wrapper button[data-v-64504251]{padding-left:var(--space-6);padding-right:var(--space-6)}}@media (min-width:1024px){.toc .toc-wrapper button[data-v-64504251]{display:none}}.toc .toc-wrapper button .title[data-v-64504251]{font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-sm-lineHeight);margin-right:var(--space-1)}.toc .toc-wrapper button .icon[data-v-64504251]{height:var(--space-4);transition:transform .1s;width:var(--space-4)}.toc .toc-wrapper button .icon.rotate[data-v-64504251]{transform:rotate(90deg)}.toc .toc-wrapper .docs-toc-wrapper[data-v-64504251]{display:none;margin-bottom:var(--space-4)}.toc .toc-wrapper .docs-toc-wrapper.opened[data-v-64504251]{display:block;max-height:50vh;overflow:auto;padding-left:var(--space-4);padding-right:var(--space-4)}@media (min-width:640px){.toc .toc-wrapper .docs-toc-wrapper.opened[data-v-64504251]{padding-left:var(--space-6);padding-right:var(--space-6)}}@media (min-width:1024px){.toc .toc-wrapper .docs-toc-wrapper.opened[data-v-64504251]{max-height:none;padding-left:0;padding-right:0}.toc .toc-wrapper .docs-toc-wrapper[data-v-64504251]{display:block;margin-top:0}}"; + +const DocsPageLayoutStyles_1c5b6bba = [DocsPageLayout_vue_vue_type_style_index_0_scoped_64504251_transformed_true_lang]; + +export { DocsPageLayoutStyles_1c5b6bba as default }; +//# sourceMappingURL=DocsPageLayout-styles.1c5b6bba.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map new file mode 100644 index 00000000..07352425 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsPageLayout-styles.1c5b6bba.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageLayout-styles-1.mjs-97e31d67.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,wiJAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs new file mode 100644 index 00000000..5899b623 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs @@ -0,0 +1,114 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { c as useContent, e as useContentHelpers } from './useDocus-928368c4.mjs'; +import { useSSRContext, defineComponent, unref, mergeProps, withCtx, createVNode, toDisplayString } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; +import { upperFirst } from 'scule'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsPrevNext", + __ssrInlineRender: true, + setup(__props) { + const { prev, next, navigation } = useContent(); + const { navDirFromPath } = useContentHelpers(); + const directory = (link) => { + const nav = navDirFromPath(link._path, navigation.value || []); + if (nav && nav[0]) { + return nav[0]._path; + } else { + const dirs = link.split("/"); + const directory2 = dirs.length > 1 ? dirs[dirs.length - 2] : ""; + return directory2.split("-").map(upperFirst).join(" "); + } + }; + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + if (unref(prev) || unref(next)) { + _push(``); + if (unref(prev)) { + _push(ssrRenderComponent(_component_NuxtLink, { + to: unref(prev)._path, + class: "prev" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(ssrRenderComponent(_component_Icon, { + name: "heroicons-outline:arrow-sm-left", + class: "icon" + }, null, _parent2, _scopeId)); + _push2(`
    ${ssrInterpolate(directory(unref(prev)._path))}${ssrInterpolate(unref(prev).title)}
    `); + } else { + return [ + createVNode(_component_Icon, { + name: "heroicons-outline:arrow-sm-left", + class: "icon" + }), + createVNode("div", { class: "wrapper" }, [ + createVNode("span", { class: "directory" }, toDisplayString(directory(unref(prev)._path)), 1), + createVNode("span", { class: "title" }, toDisplayString(unref(prev).title), 1) + ]) + ]; + } + }), + _: 1 + }, _parent)); + } else { + _push(``); + } + if (unref(next)) { + _push(ssrRenderComponent(_component_NuxtLink, { + to: unref(next)._path, + class: "next" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`
    ${ssrInterpolate(directory(unref(next)._path))}${ssrInterpolate(unref(next).title)}
    `); + _push2(ssrRenderComponent(_component_Icon, { + name: "heroicons-outline:arrow-sm-right", + class: "icon" + }, null, _parent2, _scopeId)); + } else { + return [ + createVNode("div", { class: "wrapper" }, [ + createVNode("span", { class: "directory" }, toDisplayString(directory(unref(next)._path)), 1), + createVNode("span", { class: "title" }, toDisplayString(unref(next).title), 1) + ]), + createVNode(_component_Icon, { + name: "heroicons-outline:arrow-sm-right", + class: "icon" + }) + ]; + } + }), + _: 1 + }, _parent)); + } else { + _push(``); + } + _push(``); + } else { + _push(``); + } + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c087c434"]]); + +export { __nuxt_component_5 as default }; +//# sourceMappingURL=DocsPrevNext-7858c09b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map new file mode 100644 index 00000000..eb8abc32 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsPrevNext-7858c09b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPrevNext-7858c09b.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs new file mode 100644 index 00000000..854ffa1f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs @@ -0,0 +1,6 @@ +const DocsPrevNext_vue_vue_type_style_index_0_scoped_c087c434_transformed_true_lang = ".docs-prev-next[data-v-c087c434]{display:flex;flex-direction:column;gap:var(--space-3);justify-content:space-between}@media (min-width:640px){.docs-prev-next[data-v-c087c434]{align-items:center;flex-direction:row}}.docs-prev-next a[data-v-c087c434]{border:1px solid var(--elements-border-primary-static);border-radius:var(--radii-md);min-width:0;padding:var(--space-3);position:relative}.docs-prev-next a[data-v-c087c434]:hover{background-color:var(--color-gray-50);border-color:var(--color-gray-50);color:var(--color-primary-500)}:root.dark .docs-prev-next a[data-v-c087c434]:hover{background-color:var(--color-gray-900);border-color:var(--color-gray-900)}.docs-prev-next a.prev[data-v-c087c434]{display:flex;gap:var(--space-3);text-align:left}.docs-prev-next a.prev .directory[data-v-c087c434]{color:var(--color-gray-500);display:block;font-size:var(--text-xs-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-xs-lineHeight);margin-bottom:var(--space-1);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:640px){.docs-prev-next a.prev .wrapper[data-v-c087c434]{align-items:flex-end}}.docs-prev-next a.next[data-v-c087c434]{display:flex;gap:var(--space-3);justify-content:flex-end;text-align:right}.docs-prev-next a.next .directory[data-v-c087c434]{color:var(--color-gray-500);display:block;font-size:var(--text-xs-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-xs-lineHeight);margin-bottom:var(--space-1);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:640px){.docs-prev-next a.next .wrapper[data-v-c087c434]{align-items:flex-start}}.docs-prev-next a .wrapper[data-v-c087c434]{display:flex;flex-direction:column}.docs-prev-next a .icon[data-v-c087c434]{align-self:flex-end;flex-shrink:0;height:var(--space-5);width:var(--space-5)}.docs-prev-next a .title[data-v-c087c434]{flex:1 1 0%;font-weight:var(--fontWeight-medium);line-height:var(--lead-5);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}"; + +const DocsPrevNextStyles_23bc8fd8 = [DocsPrevNext_vue_vue_type_style_index_0_scoped_c087c434_transformed_true_lang]; + +export { DocsPrevNextStyles_23bc8fd8 as default }; +//# sourceMappingURL=DocsPrevNext-styles.23bc8fd8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map new file mode 100644 index 00000000..9f10daff --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsPrevNext-styles.23bc8fd8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPrevNext-styles-1.mjs-39de565c.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,6EAAgF,GAAA,q9DAAA;;ACCtF,oCAAe,CAACA,6EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs b/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs new file mode 100644 index 00000000..3bb2e3bc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs @@ -0,0 +1,48 @@ +import __nuxt_component_0 from './DocsTocLinks-95d48629.mjs'; +import { c as useContent } from './useDocus-928368c4.mjs'; +import { useSSRContext, defineComponent, mergeProps, unref } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsToc", + __ssrInlineRender: true, + emits: ["move"], + setup(__props, { emit }) { + const { toc } = useContent(); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b; + const _component_DocsTocLinks = __nuxt_component_0; + _push(``); + if ((_b = (_a = unref(toc)) == null ? void 0 : _a.links) == null ? void 0 : _b.length) { + _push(`
    Table of Contents
    `); + _push(ssrRenderComponent(_component_DocsTocLinks, { + links: unref(toc).links, + onMove: ($event) => emit("move") + }, null, _parent)); + _push(``); + } else { + _push(``); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_7 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d4e4405c"]]); + +export { __nuxt_component_7 as default }; +//# sourceMappingURL=DocsToc-e4f6bd56.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map new file mode 100644 index 00000000..940bce29 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsToc-e4f6bd56.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsToc-e4f6bd56.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;AAcA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,SAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAA,EAAO,CAAC,MAAM,CAAA;AAAA,EACd,KAAM,CAAA,OAAA,EAAS,EAAE,IAAA,EAAQ,EAAA;AACvB,IAAM,MAAA,EAAE,GAAI,EAAA,GAAI,UAAW,EAAA,CAAA;AAC3B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,MAAA,MAAM,uBAA0B,GAAA,kBAAA,CAAA;AAChC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,UAAW,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACzF,MAAA,IAAA,CAAK,EAAM,GAAA,CAAA,EAAA,GAAK,KAAM,CAAA,GAAG,CAAM,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAU,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,MAAQ,EAAA;AACrF,QAAA,KAAA,CAAM,CAA0G,wGAAA,CAAA,CAAA,CAAA;AAChH,QAAA,KAAA,CAAM,mBAAmB,uBAAyB,EAAA;AAAA,UAChD,KAAA,EAAO,KAAM,CAAA,GAAG,CAAE,CAAA,KAAA;AAAA,UAClB,MAAQ,EAAA,CAAC,MAAW,KAAA,IAAA,CAAK,MAAM,CAAA;AAAA,SACjC,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,QAAA,KAAA,CAAM,CAAU,QAAA,CAAA,CAAA,CAAA;AAAA,OACX,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,6DAA6D,CAAA,CAAA;AAC1I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs b/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs new file mode 100644 index 00000000..b45a5eae --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs @@ -0,0 +1,6 @@ +const DocsToc_vue_vue_type_style_index_0_scoped_d4e4405c_transformed_true_lang = ".docs-toc[data-v-d4e4405c]{display:flex;flex-direction:column;gap:8px}.docs-toc .docs-toc-title[data-v-d4e4405c]{display:none}@media (min-width:1024px){.docs-toc .docs-toc-title[data-v-d4e4405c]{display:block;font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-sm-lineHeight);overflow:hidden}}"; + +const DocsTocStyles_dfd8d9f4 = [DocsToc_vue_vue_type_style_index_0_scoped_d4e4405c_transformed_true_lang]; + +export { DocsTocStyles_dfd8d9f4 as default }; +//# sourceMappingURL=DocsToc-styles.dfd8d9f4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map new file mode 100644 index 00000000..11152191 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsToc-styles.dfd8d9f4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsToc-styles-1.mjs-335ec0f3.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsToc-styles.dfd8d9f4.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,mVAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs new file mode 100644 index 00000000..4451e731 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs @@ -0,0 +1,73 @@ +import { useSSRContext, defineComponent, mergeProps, unref, ref, watch } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import { g as useRouter } from './app.config-832f5f68.mjs'; +import { ssrRenderAttrs, ssrRenderList, ssrRenderClass, ssrRenderAttr, ssrInterpolate, ssrRenderComponent } from 'vue/server-renderer'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; + +const useScrollspy = () => { + const observer = ref(); + const visibleHeadings = ref([]); + const activeHeadings = ref([]); + const updateHeadings = (headings) => headings.forEach((heading) => { + observer.value.observe(heading); + }); + watch(visibleHeadings, (val, oldVal) => { + if (val.length === 0) { + activeHeadings.value = oldVal; + } else { + activeHeadings.value = val; + } + }, { deep: true }); + return { + visibleHeadings, + activeHeadings, + updateHeadings + }; +}; +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "DocsTocLinks", + __ssrInlineRender: true, + props: { + links: { + type: Array, + default: () => [] + } + }, + emits: ["move"], + setup(__props, { emit }) { + useRouter(); + const { activeHeadings, updateHeadings } = useScrollspy(); + return (_ctx, _push, _parent, _attrs) => { + const _component_DocsTocLinks = __nuxt_component_0; + _push(``); + ssrRenderList(__props.links, (link) => { + _push(`
  • ${ssrInterpolate(link.text)}`); + if (link.children) { + _push(ssrRenderComponent(_component_DocsTocLinks, { + links: link.children + }, null, _parent)); + } else { + _push(``); + } + _push(`
  • `); + }); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8d68a659"]]); + +export { __nuxt_component_0 as default }; +//# sourceMappingURL=DocsTocLinks-95d48629.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map new file mode 100644 index 00000000..938bac71 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsTocLinks-95d48629.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsTocLinks-95d48629.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs new file mode 100644 index 00000000..3fae4ff2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs @@ -0,0 +1,6 @@ +const DocsTocLinks_vue_vue_type_style_index_0_scoped_8d68a659_transformed_true_lang = ".docs-toc-links .depth-3[data-v-8d68a659]{padding-left:var(--space-3)}.docs-toc-links .depth-4[data-v-8d68a659]{padding-left:var(--space-6)}.docs-toc-links a[data-v-8d68a659]{color:var(--color-gray-500);display:block;font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);overflow:hidden;padding:var(--space-1) 0;text-overflow:ellipsis;white-space:nowrap}@media (min-width:1024px){.docs-toc-links a[data-v-8d68a659]{padding-right:var(--space-3)}}.docs-toc-links a[data-v-8d68a659]:not(.active):hover{color:var(--color-gray-900)}:root.dark .docs-toc-links a[data-v-8d68a659]:not(.active):hover{color:var(--color-gray-400)}.docs-toc-links a.active[data-v-8d68a659]{color:var(--color-primary-500)}"; + +const DocsTocLinksStyles_79413e66 = [DocsTocLinks_vue_vue_type_style_index_0_scoped_8d68a659_transformed_true_lang]; + +export { DocsTocLinksStyles_79413e66 as default }; +//# sourceMappingURL=DocsTocLinks-styles.79413e66.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map new file mode 100644 index 00000000..55055191 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocsTocLinks-styles.79413e66.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsTocLinks-styles-1.mjs-fa1d1a93.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsTocLinks-styles.79413e66.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,6EAAgF,GAAA,ysBAAA;;ACCtF,oCAAe,CAACA,6EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs new file mode 100644 index 00000000..f7d93d99 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs @@ -0,0 +1,26 @@ +import { defineComponent, h, useSSRContext } from 'vue'; + +const _sfc_main = defineComponent({ + name: "DocumentDrivenEmpty", + props: { + value: { + type: Object, + required: true + } + }, + render({ value }) { + return h("div", void 0, [ + h("p", "Document is empty"), + h("p", `Add content to it by opening ${value._source}/${value._file} file.`) + ]); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=DocumentDrivenEmpty-8338ce9f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map new file mode 100644 index 00000000..2f9b0e1a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocumentDrivenEmpty-8338ce9f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenEmpty-8338ce9f.js"],"sourcesContent":null,"names":[],"mappings":";;AACA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,IAAM,EAAA,qBAAA;AAAA,EACN,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAA,CAAO,EAAE,KAAA,EAAS,EAAA;AAChB,IAAO,OAAA,CAAA,CAAE,OAAO,KAAQ,CAAA,EAAA;AAAA,MACtB,CAAA,CAAE,KAAK,mBAAmB,CAAA;AAAA,MAC1B,EAAE,GAAK,EAAA,CAAA,6BAAA,EAAgC,KAAM,CAAA,OAAA,CAAA,CAAA,EAAW,MAAM,KAAa,CAAA,MAAA,CAAA,CAAA;AAAA,KAC5E,CAAA,CAAA;AAAA,GACH;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4EAA4E,CAAA,CAAA;AACzJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs new file mode 100644 index 00000000..76741bb0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs @@ -0,0 +1,50 @@ +import __nuxt_component_1 from './ButtonLink-df4791d5.mjs'; +import { useSSRContext, mergeProps, withCtx, createTextVNode } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import './DocsAsideTree-136bd08b.mjs'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import './ContentSlot-deb25102.mjs'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + const _component_ButtonLink = __nuxt_component_1; + _push(`

    404

    Not Found

    This is not the page you're looking for.

    `); + _push(ssrRenderComponent(_component_ButtonLink, { + href: "/", + size: "large", + variant: "primary" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(` Go back home `); + } else { + return [ + createTextVNode(" Go back home ") + ]; + } + }), + _: 1 + }, _parent)); + _push(`
    `); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-ab67d04f"]]); + +export { __nuxt_component_3 as default }; +//# sourceMappingURL=DocumentDrivenNotFound-4b73ea08.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map new file mode 100644 index 00000000..1086baef --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocumentDrivenNotFound-4b73ea08.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenNotFound-4b73ea08.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAmBA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,qBAAwB,GAAA,kBAAA,CAAA;AAC9B,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,qCAAsC,EAAA,EAAG,MAAM,CAAC,CAAgT,CAAA,6SAAA,CAAA,CAAA,CAAA;AAChZ,EAAA,KAAA,CAAM,mBAAmB,qBAAuB,EAAA;AAAA,IAC9C,IAAM,EAAA,GAAA;AAAA,IACN,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,SAAA;AAAA,GACR,EAAA;AAAA,IACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,MAAA,IAAI,MAAQ,EAAA;AACV,QAAA,MAAA,CAAO,CAAgB,cAAA,CAAA,CAAA,CAAA;AAAA,OAClB,MAAA;AACL,QAAO,OAAA;AAAA,UACL,gBAAgB,gBAAgB,CAAA;AAAA,SAClC,CAAA;AAAA,OACF;AAAA,KACD,CAAA;AAAA,IACD,CAAG,EAAA,CAAA;AAAA,GACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,EAAA,KAAA,CAAM,CAA2B,yBAAA,CAAA,CAAA,CAAA;AACnC,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,2EAA2E,CAAA,CAAA;AACxJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs new file mode 100644 index 00000000..fe3de70c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs @@ -0,0 +1,6 @@ +const DocumentDrivenNotFound_vue_vue_type_style_index_0_scoped_ab67d04f_transformed_true_lang = ".document-driven-not-found[data-v-ab67d04f]{display:flex;flex:1;padding:var(--space-16) var(--space-4)}@media (min-width:640px){.document-driven-not-found[data-v-ab67d04f]{padding:var(--space-24) var(--space-6)}}@media (min-width:768px){.document-driven-not-found[data-v-ab67d04f]{display:grid;place-items:center}}@media (min-width:1024px){.document-driven-not-found[data-v-ab67d04f]{padding-left:var(--space-8);padding-right:var(--space-8)}}.document-driven-not-found main[data-v-ab67d04f]{margin-left:auto;margin-right:auto;max-width:var(--size-full)}@media (min-width:640px){.document-driven-not-found main[data-v-ab67d04f]{display:flex;gap:var(--space-6)}}.document-driven-not-found main>p[data-v-ab67d04f]{color:var(--color-primary-500);font-size:var(--fontSize-4xl);font-weight:var(--fontWeight-bold);line-height:var(--lead-tight)}@media (min-width:640px){.document-driven-not-found main>p[data-v-ab67d04f]{font-size:var(--fontSize-5xl)}}.document-driven-not-found main .content .text-section[data-v-ab67d04f]{border:none}:root.dark .document-driven-not-found main .content .text-section[data-v-ab67d04f]{border-color:var(--color-gray-800)}@media (min-width:640px){.document-driven-not-found main .content .text-section[data-v-ab67d04f]{border-color:var(--color-gray-200);border-left-style:solid;border-left-width:1px;padding-left:var(--space-6)}}.document-driven-not-found main .content .text-section h1[data-v-ab67d04f]{color:var(--color-gray-900);font-size:var(--fontSize-4xl);font-weight:var(--fontWeight-extrabold);letter-spacing:var(--letterSpacing-tight)}:root.dark .document-driven-not-found main .content .text-section h1[data-v-ab67d04f]{color:var(--color-gray-200)}@media (min-width:640px){.document-driven-not-found main .content .text-section h1[data-v-ab67d04f]{font-size:var(--fontSize-5xl)}}.document-driven-not-found main .content .text-section p[data-v-ab67d04f]{color:var(--color-gray-700);font-size:var(--fontSize-xl);margin-top:var(--space-1)}:root.dark .document-driven-not-found main .content .text-section p[data-v-ab67d04f]{color:var(--color-gray-400)}.document-driven-not-found main .content .button-section[data-v-ab67d04f]{flex:none;gap:var(--space-3);margin-top:var(--space-10)}"; + +const DocumentDrivenNotFoundStyles_a8b03708 = [DocumentDrivenNotFound_vue_vue_type_style_index_0_scoped_ab67d04f_transformed_true_lang]; + +export { DocumentDrivenNotFoundStyles_a8b03708 as default }; +//# sourceMappingURL=DocumentDrivenNotFound-styles.a8b03708.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map new file mode 100644 index 00000000..9df1862b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"DocumentDrivenNotFound-styles.a8b03708.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenNotFound-styles-1.mjs-ed22cab7.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uFAA0F,GAAA,uqEAAA;;ACChG,8CAAe,CAACA,uFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs b/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs new file mode 100644 index 00000000..abd20714 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs @@ -0,0 +1,174 @@ +import { defineComponent, computed, useSlots, useSSRContext } from 'vue'; +import { joinURL } from 'ufo'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; + +const _sfc_main = defineComponent({ + props: { + /** + * Repository owner. + */ + owner: { + type: String, + default: () => { + var _a, _b, _c; + return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.owner; + }, + required: false + }, + /** + * Repository name. + */ + repo: { + type: String, + default: () => { + var _a, _b, _c; + return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.repo; + }, + required: false + }, + /** + * The branch to use for the edit link. + */ + branch: { + type: String, + default: () => { + var _a, _b, _c; + return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.branch; + }, + required: false + }, + /** + * A base directory to append to the source path. + * + * Won't be used if `page` is set. + */ + dir: { + type: String, + default: () => { + var _a, _b, _c; + return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.dir; + }, + required: false + }, + /** + * Source file path. + * + * Won't be used if `page` is set. + */ + source: { + type: String, + required: false, + default: void 0 + }, + /** + * Use page from @nuxt/content. + */ + page: { + type: Object, + required: false, + default: void 0 + }, + /** + * Content directory (to be used with `page`) + */ + contentDir: { + type: String, + required: false, + default: () => { + var _a, _b, _c; + return ((_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.dir) || "content"; + } + }, + /** + * Send to an edit page or not. + */ + edit: { + type: Boolean, + required: false, + default: () => { + var _a, _b, _c; + return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.edit; + } + } + }, + setup(props) { + if (!props.owner || !props.repo || !props.branch) { + throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`."); + } + const source = computed(() => { + var _a, _b; + let { repo, owner, branch, contentDir } = props; + let prefix = ""; + if ((_b = (_a = useAppConfig()) == null ? void 0 : _a.public) == null ? void 0 : _b.content) { + let source2; + const { sources } = useAppConfig().public.content; + for (const key in sources || []) { + if (props.page._id.startsWith(key)) { + source2 = sources[key]; + break; + } + } + if ((source2 == null ? void 0 : source2.driver) === "github") { + repo = source2.repo || props.repo || ""; + owner = source2.owner || props.owner || ""; + branch = source2.branch || props.branch || "main"; + contentDir = source2.dir || props.contentDir || ""; + prefix = source2.prefix || ""; + } + } + return { repo, owner, branch, contentDir, prefix }; + }); + const base = computed(() => joinURL("https://github.com", `${source.value.owner}/${source.value.repo}`)); + const path = computed(() => { + var _a; + const dirParts = []; + if ((_a = props == null ? void 0 : props.page) == null ? void 0 : _a._path) { + if (source.value.contentDir) { + dirParts.push(source.value.contentDir); + } + dirParts.push(props.page._file.substring(source.value.prefix.length)); + return dirParts; + } + if (props.dir) { + dirParts.push(props.dir); + } + if (props.source) { + dirParts.push(props.source); + } + return dirParts; + }); + const url = computed(() => { + var _a; + const parts = [base.value]; + if (props.edit) { + parts.push("edit"); + } else { + parts.push("tree"); + } + parts.push(((_a = source == null ? void 0 : source.value) == null ? void 0 : _a.branch) || "", ...path.value); + return parts.filter(Boolean).join("/"); + }); + return { + url + }; + }, + render(ctx) { + var _a; + const { url } = ctx; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { url }); + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=EditOnLink-e55cd3a0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map b/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map new file mode 100644 index 00000000..1e789f86 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"EditOnLink-e55cd3a0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/EditOnLink-e55cd3a0.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs b/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs new file mode 100644 index 00000000..6d148c81 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs @@ -0,0 +1,75 @@ +import { useSSRContext, defineComponent, computed, ref, mergeProps, unref } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc, u as utils, b as usePinceauRuntime } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Ellipsis", + __ssrInlineRender: true, + props: { + width: { + type: String, + default: "10rem" + }, + height: { + type: String, + default: "10rem" + }, + zIndex: { + type: String, + default: "10" + }, + top: { + type: String, + default: "0" + }, + left: { + type: String, + default: "auto" + }, + right: { + type: String, + default: "auto" + }, + blur: { + type: String, + default: "50px" + }, + colors: { + type: Array, + default: () => ["rgba(0, 71, 225, 0.22)", "rgba(26, 214, 255, 0.22)", "rgba(0, 220, 130, 0.22)"] + } + }, + setup(__props) { + const __$pProps = __props; + const _cCN_top = computed(() => ((props = __$pProps, utils$1 = utils) => props.top)()); + const _eih_left = computed(() => ((props = __$pProps, utils$1 = utils) => props.left)()); + const _hvR_right = computed(() => ((props = __$pProps, utils$1 = utils) => props.right)()); + const _29W_zIndex = computed(() => ((props = __$pProps, utils$1 = utils) => props.zIndex)()); + const _X8m_maxWidth = computed(() => ((props = __$pProps, utils$1 = utils) => props.width)()); + const _UBM_height = computed(() => ((props = __$pProps, utils$1 = utils) => props.height)()); + const _gOh_filter = computed(() => ((props = __$pProps, utils$1 = utils) => `blur(${props.blur})`)()); + const _60h_background = computed(() => ((props = __$pProps, utils$1 = utils) => { + var _a, _b, _c; + return `linear-gradient(97.62deg, ${(_a = props == null ? void 0 : props.colors) == null ? void 0 : _a[0]} 2.27%, ${(_b = props == null ? void 0 : props.colors) == null ? void 0 : _b[1]} 50.88%, ${(_c = props == null ? void 0 : props.colors) == null ? void 0 : _c[2]} 98.48%)`; + })()); + const { $pinceau } = usePinceauRuntime(computed(() => __$pProps), void 0, ref({ _cCN_top, _eih_left, _hvR_right, _29W_zIndex, _X8m_maxWidth, _UBM_height, _gOh_filter, _60h_background })); + return (_ctx, _push, _parent, _attrs) => { + _push(`
    `); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const Ellipsis = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-861d2ab7"]]); + +export { Ellipsis as default }; +//# sourceMappingURL=Ellipsis-b69b027e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map b/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map new file mode 100644 index 00000000..aa4f0c89 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Ellipsis-b69b027e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Ellipsis-b69b027e.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs b/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs new file mode 100644 index 00000000..411c60af --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs @@ -0,0 +1,6 @@ +const Ellipsis_vue_vue_type_style_index_0_scoped_861d2ab7_transformed_true_lang = ".ellipsis[data-v-861d2ab7]{filter:var(---g-oh-filter);height:var(---ubm-height);left:var(---eih-left);max-width:var(---x8m-max-width);pointer-events:none;position:absolute;right:var(---hv-r-right);top:var(---c-cn-top);width:-webkit-fill-available;z-index:var(---29w-z-index)}.ellipsis .ellipsis-item[data-v-861d2ab7]{background:var(---60h-background);height:100%;width:100%}"; + +const EllipsisStyles_3bef1bdd = [Ellipsis_vue_vue_type_style_index_0_scoped_861d2ab7_transformed_true_lang]; + +export { EllipsisStyles_3bef1bdd as default }; +//# sourceMappingURL=Ellipsis-styles.3bef1bdd.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map b/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map new file mode 100644 index 00000000..82e44f1d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Ellipsis-styles.3bef1bdd.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Ellipsis-styles-1.mjs-f627832b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Ellipsis-styles.3bef1bdd.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,wXAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs new file mode 100644 index 00000000..a7a738b4 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs @@ -0,0 +1,23 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleCard.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ExampleCard = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { ExampleCard as default }; +//# sourceMappingURL=ExampleCard-95e9f743.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map new file mode 100644 index 00000000..527a4d74 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ExampleCard-95e9f743.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleCard-95e9f743.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,gEAAiE,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/H,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAChB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4CAA4C,CAAA,CAAA;AACzH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,WAAA,+BAA0C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs new file mode 100644 index 00000000..b085e1c7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs @@ -0,0 +1,25 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(`

    `); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(`

    `); + ssrRenderSlot(_ctx.$slots, "description", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleHero.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ExampleHero = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { ExampleHero as default }; +//# sourceMappingURL=ExampleHero-8fe98ee8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map new file mode 100644 index 00000000..608545a3 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ExampleHero-8fe98ee8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleHero-8fe98ee8.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,QAAA,EAAW,cAAe,CAAA,MAAM,CAAyB,CAAA,sBAAA,CAAA,CAAA,CAAA;AAC/D,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACb,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,aAAA,EAAe,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAClE,EAAA,KAAA,CAAM,CAAY,UAAA,CAAA,CAAA,CAAA;AACpB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4CAA4C,CAAA,CAAA;AACzH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,WAAA,+BAA0C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs new file mode 100644 index 00000000..92c6bfbd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs @@ -0,0 +1,37 @@ +import { mergeProps, createVNode, resolveDynamicComponent, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrRenderVNode, ssrInterpolate } from 'vue/server-renderer'; + +const _sfc_main = { + __name: "ExampleIconCard", + __ssrInlineRender: true, + props: { + title: { + type: String, + default: "Default title" + }, + description: { + type: String, + default: "Default description" + }, + icon: { + type: String, + default: "IconMarkdown" + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + _push(``); + ssrRenderVNode(_push, createVNode(resolveDynamicComponent(__props.icon), { class: "w-20 h-20" }, null), _parent); + _push(`

    ${ssrInterpolate(__props.title)}

    ${ssrInterpolate(__props.description)}

    `); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleIconCard.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ExampleIconCard-a87d1258.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map new file mode 100644 index 00000000..9728be8a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ExampleIconCard-a87d1258.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleIconCard-a87d1258.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,iBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,eAAA;AAAA,KACX;AAAA,IACA,WAAa,EAAA;AAAA,MACX,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,qBAAA;AAAA,KACX;AAAA,IACA,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,cAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,gEAAiE,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/H,MAAA,cAAA,CAAe,KAAO,EAAA,WAAA,CAAY,uBAAwB,CAAA,OAAA,CAAQ,IAAI,CAAA,EAAG,EAAE,KAAA,EAAO,WAAY,EAAA,EAAG,IAAI,CAAA,EAAG,OAAO,CAAA,CAAA;AAC/G,MAAM,KAAA,CAAA,CAAA,wCAAA,EAA2C,eAAe,OAAQ,CAAA,KAAK,YAAY,cAAe,CAAA,OAAA,CAAQ,WAAW,CAAa,CAAA,UAAA,CAAA,CAAA,CAAA;AAAA,KAC1I,CAAA;AAAA,GACF;AACF,EAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,gDAAgD,CAAA,CAAA;AAC7H,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs new file mode 100644 index 00000000..17cada19 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs @@ -0,0 +1,33 @@ +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = { + props: { + options: { + type: [Array, String], + default: () => [] + } + }, + data() { + return { + value: null + }; + } +}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $options) { + _push(`Not working on content v2 docs!`); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleMultiselect.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ExampleMultiselect = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { ExampleMultiselect as default }; +//# sourceMappingURL=ExampleMultiselect-915c74fe.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map new file mode 100644 index 00000000..a01d18d0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ExampleMultiselect-915c74fe.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleMultiselect-915c74fe.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,SAAY,GAAA;AAAA,EAChB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAA,EAAM,CAAC,KAAA,EAAO,MAAM,CAAA;AAAA,MACpB,OAAA,EAAS,MAAM,EAAC;AAAA,KAClB;AAAA,GACF;AAAA,EACA,IAAO,GAAA;AACL,IAAO,OAAA;AAAA,MACL,KAAO,EAAA,IAAA;AAAA,KACT,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,SAAS,cAAA,CAAe,MAAM,KAAO,EAAA,OAAA,EAAS,QAAQ,MAAQ,EAAA,MAAA,EAAQ,OAAO,QAAU,EAAA;AACrF,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,cAAe,CAAA,MAAM,CAAyC,CAAA,sCAAA,CAAA,CAAA,CAAA;AAC7E,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mDAAmD,CAAA,CAAA;AAChI,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs new file mode 100644 index 00000000..c81d32d0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs @@ -0,0 +1,37 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + const _component_ContentSlot = ContentSlot; + _push(``); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.default, + unwrap: "p" + }, null, _parent)); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleTheTitle.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ExampleTheTitle = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { ExampleTheTitle as default }; +//# sourceMappingURL=ExampleTheTitle-9f1c4a8d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map new file mode 100644 index 00000000..3e8a9543 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ExampleTheTitle-9f1c4a8d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleTheTitle-9f1c4a8d.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,eAAe,UAAW,CAAA,EAAE,OAAO,UAAW,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AACxE,EAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,IAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,IACjB,MAAQ,EAAA,GAAA;AAAA,GACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,gDAAgD,CAAA,CAAA;AAC7H,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,eAAA,+BAA8C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs b/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs new file mode 100644 index 00000000..d18f9e86 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs @@ -0,0 +1,55 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubCommits = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchCommits } = useGithub(); + const { data: commits, pending, refresh } = await useAsyncData(`github-commits-${hash(props.query)}`, () => fetchCommits(props.query)); + return { + commits, + pending, + refresh + }; + }, + render({ commits, pending, refresh }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { commits, pending, refresh }); + } +}); + +export { GithubCommits as default }; +//# sourceMappingURL=GithubCommits-b7b81c66.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map new file mode 100644 index 00000000..5efdcf4b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubCommits-b7b81c66.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubCommits-b7b81c66.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,gBAAgB,eAAgB,CAAA;AAAA,EACpC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,YAAa,EAAA,GAAI,SAAU,EAAA,CAAA;AACnC,IAAA,MAAM,EAAE,IAAM,EAAA,OAAA,EAAS,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAkB,eAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,YAAa,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AACrI,IAAO,OAAA;AAAA,MACL,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAW,EAAA;AACpC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACtH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs b/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs new file mode 100644 index 00000000..0acbacae --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs @@ -0,0 +1,55 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubContributors = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchContributors } = useGithub(); + const { data: contributors, refresh, pending } = await useAsyncData(`github-contributors-${hash(props.query)}`, () => fetchContributors(props.query)); + return { + contributors, + refresh, + pending + }; + }, + render({ contributors, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { contributors, refresh, pending }); + } +}); + +export { GithubContributors as default }; +//# sourceMappingURL=GithubContributors-1aa0f22f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map new file mode 100644 index 00000000..7b4fd916 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubContributors-1aa0f22f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubContributors-1aa0f22f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,qBAAqB,eAAgB,CAAA;AAAA,EACzC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,iBAAkB,EAAA,GAAI,SAAU,EAAA,CAAA;AACxC,IAAA,MAAM,EAAE,IAAM,EAAA,YAAA,EAAc,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAuB,oBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,iBAAkB,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AACpJ,IAAO,OAAA;AAAA,MACL,YAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAW,EAAA;AACzC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GAC3H;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs b/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs new file mode 100644 index 00000000..6b8bdf16 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs @@ -0,0 +1,61 @@ +import { defineComponent, toRef, watch, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubFileContributors = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const source = toRef(props.query, "source"); + const { fetchFileContributors } = useGithub(); + watch(source, () => { + if (refresh) { + refresh(); + } + }); + const { data: contributors, refresh, pending } = await useAsyncData(`github-file-contributors-${hash(props.query)}`, () => fetchFileContributors(props.query)); + return { + contributors, + refresh, + pending + }; + }, + render({ contributors, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { contributors, refresh, pending }); + } +}); + +export { GithubFileContributors as default }; +//# sourceMappingURL=GithubFileContributors-285e4522.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map new file mode 100644 index 00000000..dcdb6d00 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubFileContributors-285e4522.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubFileContributors-285e4522.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,yBAAyB,eAAgB,CAAA;AAAA,EAC7C,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAA,MAAM,MAAS,GAAA,KAAA,CAAM,KAAM,CAAA,KAAA,EAAO,QAAQ,CAAA,CAAA;AAC1C,IAAM,MAAA,EAAE,qBAAsB,EAAA,GAAI,SAAU,EAAA,CAAA;AAC5C,IAAA,KAAA,CAAM,QAAQ,MAAM;AAClB,MAAA,IAAI,OAAS,EAAA;AACX,QAAQ,OAAA,EAAA,CAAA;AAAA,OACV;AAAA,KACD,CAAA,CAAA;AACD,IAAA,MAAM,EAAE,IAAM,EAAA,YAAA,EAAc,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAA4B,yBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,qBAAsB,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AAC7J,IAAO,OAAA;AAAA,MACL,YAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAW,EAAA;AACzC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GAC3H;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs b/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs new file mode 100644 index 00000000..20bfb05a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs @@ -0,0 +1,59 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubLastRelease = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchLastRelease } = useGithub(); + const { + data: release, + refresh, + pending + } = await useAsyncData(`github-last-release-${hash(props.query)}`, () => fetchLastRelease(props.query)); + return { + release, + refresh, + pending + }; + }, + render({ release, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { release, refresh, pending }); + } +}); + +export { GithubLastRelease as default }; +//# sourceMappingURL=GithubLastRelease-b4d6e912.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map new file mode 100644 index 00000000..98563ba1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubLastRelease-b4d6e912.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubLastRelease-b4d6e912.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,oBAAoB,eAAgB,CAAA;AAAA,EACxC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,gBAAiB,EAAA,GAAI,SAAU,EAAA,CAAA;AACvC,IAAM,MAAA;AAAA,MACJ,IAAM,EAAA,OAAA;AAAA,MACN,OAAA;AAAA,MACA,OAAA;AAAA,KACE,GAAA,MAAM,YAAa,CAAA,CAAA,oBAAA,EAAuB,IAAK,CAAA,KAAA,CAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,gBAAA,CAAiB,KAAM,CAAA,KAAK,CAAC,CAAA,CAAA;AACtG,IAAO,OAAA;AAAA,MACL,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAW,EAAA;AACpC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACtH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs b/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs new file mode 100644 index 00000000..f782f6dc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs @@ -0,0 +1,132 @@ +import { b as useRuntimeConfig } from './app.config-832f5f68.mjs'; +import { defineComponent, computed, useSlots } from 'vue'; +import { joinURL } from 'ufo'; +import 'hookable'; +import 'unctx'; +import 'h3'; + +const GithubLink = defineComponent({ + props: { + owner: { + type: String, + default: () => { + var _a, _b; + return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.owner; + }, + required: false + }, + repo: { + type: String, + default: () => { + var _a, _b; + return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.repo; + }, + required: false + }, + branch: { + type: String, + default: () => { + var _a, _b; + return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.branch; + }, + required: false + }, + dir: { + type: String, + default: () => { + var _a, _b; + return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.dir; + }, + required: false + }, + source: { + type: String, + required: false, + default: void 0 + }, + page: { + type: Object, + required: false, + default: void 0 + }, + contentDir: { + type: String, + required: false, + default: "content" + }, + edit: { + type: Boolean, + required: false, + default: true + } + }, + setup(props) { + if (!props.owner || !props.repo || !props.branch) { + throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`."); + } + const source = computed(() => { + var _a, _b; + let { repo, owner, branch, contentDir } = props; + let prefix = ""; + if ((_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.public) == null ? void 0 : _b.content) { + let source2; + const { sources } = useRuntimeConfig().public.content; + for (const key in sources || []) { + if (props.page._id.startsWith(key)) { + source2 = sources[key]; + break; + } + } + if ((source2 == null ? void 0 : source2.driver) === "github") { + repo = source2.repo || props.repo || ""; + owner = source2.owner || props.owner || ""; + branch = source2.branch || props.branch || "main"; + contentDir = source2.dir || props.contentDir || ""; + prefix = source2.prefix || ""; + } + } + return { repo, owner, branch, contentDir, prefix }; + }); + const base = computed(() => joinURL("https://github.com", `${source.value.owner}/${source.value.repo}`)); + const path = computed(() => { + var _a; + const dirParts = []; + if ((_a = props == null ? void 0 : props.page) == null ? void 0 : _a._path) { + if (source.value.contentDir) { + dirParts.push(source.value.contentDir); + } + dirParts.push(props.page._file.substring(source.value.prefix.length)); + return dirParts; + } + if (props.dir) { + dirParts.push(props.dir); + } + if (props.source) { + dirParts.push(props.source); + } + return dirParts; + }); + const url = computed(() => { + const parts = [base.value]; + if (props.edit) { + parts.push("edit"); + } else { + parts.push("tree"); + } + parts.push(source.value.branch, ...path.value); + return parts.filter(Boolean).join("/"); + }); + return { + url + }; + }, + render(ctx) { + var _a; + const { url } = ctx; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { url }); + } +}); + +export { GithubLink as default }; +//# sourceMappingURL=GithubLink-f632fd3b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map new file mode 100644 index 00000000..0d307bcb --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubLink-f632fd3b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubLink-f632fd3b.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs b/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs new file mode 100644 index 00000000..2b56bf96 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs @@ -0,0 +1,55 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubReadme = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchReadme } = useGithub(); + const { data: readme, refresh, pending } = await useAsyncData(`github-readme-${hash(props.query)}`, () => fetchReadme(props.query)); + return { + readme, + refresh, + pending + }; + }, + render({ readme, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { readme, refresh, pending }); + } +}); + +export { GithubReadme as default }; +//# sourceMappingURL=GithubReadme-9e48e600.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map new file mode 100644 index 00000000..8f60a8a5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubReadme-9e48e600.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubReadme-9e48e600.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,eAAe,eAAgB,CAAA;AAAA,EACnC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,WAAY,EAAA,GAAI,SAAU,EAAA,CAAA;AAClC,IAAA,MAAM,EAAE,IAAM,EAAA,MAAA,EAAQ,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAiB,cAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,WAAY,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AAClI,IAAO,OAAA;AAAA,MACL,MAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,MAAQ,EAAA,OAAA,EAAS,SAAW,EAAA;AACnC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,MAAQ,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACrH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs b/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs new file mode 100644 index 00000000..f870da95 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs @@ -0,0 +1,62 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubRelease = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchRelease } = useGithub(); + if (!props.query.tag) { + return; + } + const { + data: release, + refresh, + pending + } = await useAsyncData(`github-release-${hash(props.query)}`, () => fetchRelease(props.query)); + return { + release, + refresh, + pending + }; + }, + render({ release, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { release, refresh, pending }); + } +}); + +export { GithubRelease as default }; +//# sourceMappingURL=GithubRelease-140d3d2e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map new file mode 100644 index 00000000..9b4090ad --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubRelease-140d3d2e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubRelease-140d3d2e.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,gBAAgB,eAAgB,CAAA;AAAA,EACpC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,YAAa,EAAA,GAAI,SAAU,EAAA,CAAA;AACnC,IAAI,IAAA,CAAC,KAAM,CAAA,KAAA,CAAM,GAAK,EAAA;AACpB,MAAA,OAAA;AAAA,KACF;AACA,IAAM,MAAA;AAAA,MACJ,IAAM,EAAA,OAAA;AAAA,MACN,OAAA;AAAA,MACA,OAAA;AAAA,KACE,GAAA,MAAM,YAAa,CAAA,CAAA,eAAA,EAAkB,IAAK,CAAA,KAAA,CAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,YAAA,CAAa,KAAM,CAAA,KAAK,CAAC,CAAA,CAAA;AAC7F,IAAO,OAAA;AAAA,MACL,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAW,EAAA;AACpC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACtH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs b/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs new file mode 100644 index 00000000..b1e46eda --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs @@ -0,0 +1,55 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubReleases = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchReleases } = useGithub(); + const { data: releases, refresh, pending } = await useAsyncData(`github-releases-${hash(props.query)}`, () => fetchReleases(props.query)); + return { + releases, + refresh, + pending + }; + }, + render({ releases, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { releases, refresh, pending }); + } +}); + +export { GithubReleases as default }; +//# sourceMappingURL=GithubReleases-2ab96fb8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map new file mode 100644 index 00000000..3bdb4aa4 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubReleases-2ab96fb8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubReleases-2ab96fb8.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,iBAAiB,eAAgB,CAAA;AAAA,EACrC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,aAAc,EAAA,GAAI,SAAU,EAAA,CAAA;AACpC,IAAA,MAAM,EAAE,IAAM,EAAA,QAAA,EAAU,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAmB,gBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,aAAc,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AACxI,IAAO,OAAA;AAAA,MACL,QAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,QAAU,EAAA,OAAA,EAAS,SAAW,EAAA;AACrC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,QAAU,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACvH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs b/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs new file mode 100644 index 00000000..b2682fe6 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs @@ -0,0 +1,55 @@ +import { defineComponent, useSlots } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { hash } from 'ohash'; +import { u as useGithub } from './useGithub-94614457.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const GithubRepository = defineComponent({ + props: { + query: { + type: Object, + required: false, + default: () => ({}) + } + }, + async setup(props) { + const { fetchRepository } = useGithub(); + const { data: repository, refresh, pending } = await useAsyncData(`github-repository-${hash(props.query)}`, () => fetchRepository(props.query)); + return { + repository, + refresh, + pending + }; + }, + render({ repository, refresh, pending }) { + var _a; + const slots = useSlots(); + return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { repository, refresh, pending }); + } +}); + +export { GithubRepository as default }; +//# sourceMappingURL=GithubRepository-8db11ede.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map new file mode 100644 index 00000000..ceebe90c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"GithubRepository-8db11ede.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubRepository-8db11ede.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,mBAAmB,eAAgB,CAAA;AAAA,EACvC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,eAAgB,EAAA,GAAI,SAAU,EAAA,CAAA;AACtC,IAAA,MAAM,EAAE,IAAM,EAAA,UAAA,EAAY,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAqB,kBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,eAAgB,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AAC9I,IAAO,OAAA;AAAA,MACL,UAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,UAAY,EAAA,OAAA,EAAS,SAAW,EAAA;AACvC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,UAAY,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACzH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs new file mode 100644 index 00000000..dfb62dfc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs @@ -0,0 +1,69 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, mergeProps, withCtx, createVNode, toDisplayString } from 'vue'; +import { ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = { + __name: "HeroAnnouncement", + __ssrInlineRender: true, + props: { + to: { + type: String, + default: "" + }, + label: { + type: String, + default: "" + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ + to: __props.to, + class: "link" + }, _attrs), { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(ssrRenderComponent(_component_Icon, { + name: "heroicons-solid:sparkles", + class: "icon" + }, null, _parent2, _scopeId)); + _push2(`${ssrInterpolate(__props.label)}`); + } else { + return [ + createVNode(_component_Icon, { + name: "heroicons-solid:sparkles", + class: "icon" + }), + createVNode("span", null, toDisplayString(__props.label), 1) + ]; + } + }), + _: 1 + }, _parent)); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/HeroAnnouncement.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const HeroAnnouncement = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d15db3c4"]]); + +export { HeroAnnouncement as default }; +//# sourceMappingURL=HeroAnnouncement-a479df93.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map new file mode 100644 index 00000000..63911bfa --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"HeroAnnouncement-a479df93.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/HeroAnnouncement-a479df93.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;AAiBA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,kBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,EAAI,EAAA;AAAA,MACF,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,mBAAsB,GAAA,kBAAA,CAAA;AAC5B,MAAA,MAAM,eAAkB,GAAA,oBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,kBAAA,CAAmB,qBAAqB,UAAW,CAAA;AAAA,QACvD,IAAI,OAAQ,CAAA,EAAA;AAAA,QACZ,KAAO,EAAA,MAAA;AAAA,OACT,EAAG,MAAM,CAAG,EAAA;AAAA,QACV,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAA,MAAA,CAAO,mBAAmB,eAAiB,EAAA;AAAA,cACzC,IAAM,EAAA,0BAAA;AAAA,cACN,KAAO,EAAA,MAAA;AAAA,aACN,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAC5B,YAAA,MAAA,CAAO,CAAwB,qBAAA,EAAA,QAAA,CAAA,CAAA,EAAY,cAAe,CAAA,OAAA,CAAQ,KAAK,CAAU,CAAA,OAAA,CAAA,CAAA,CAAA;AAAA,WAC5E,MAAA;AACL,YAAO,OAAA;AAAA,cACL,YAAY,eAAiB,EAAA;AAAA,gBAC3B,IAAM,EAAA,0BAAA;AAAA,gBACN,KAAO,EAAA,MAAA;AAAA,eACR,CAAA;AAAA,cACD,YAAY,MAAQ,EAAA,IAAA,EAAM,gBAAgB,OAAQ,CAAA,KAAK,GAAG,CAAC,CAAA;AAAA,aAC7D,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yCAAyC,CAAA,CAAA;AACtH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,gBAAA,+BAA+C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs new file mode 100644 index 00000000..6377589c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs @@ -0,0 +1,6 @@ +const HeroAnnouncement_vue_vue_type_style_index_0_scoped_d15db3c4_transformed_true_lang = ".link[data-v-d15db3c4]{align-items:center;background-color:var(--color-primary-100);border-color:var(--color-primary-400);border-radius:var(--radii-md);border-style:solid;border-width:var(--borderWidth-sm);color:var(--color-primary-900);display:inline-flex;gap:var(--space-1);justify-content:center;margin-bottom:var(--space-4);padding:var(--space-2) var(--space-4)}:root.dark .link[data-v-d15db3c4]{background-color:transparent;border-color:var(--color-primary-700);color:var(--color-primary-100)}.link[data-v-d15db3c4]:hover{background-color:var(--color-primary-200)}:root.dark .link[data-v-d15db3c4]:hover{background-color:var(--color-primary-900)}.link span[data-v-d15db3c4]{font-size:var(--fontSize-sm);font-weight:var(--fontWeight-medium)}.link .icon[data-v-d15db3c4]{height:var(--space-4);width:var(--space-4)}"; + +const HeroAnnouncementStyles_a73a7723 = [HeroAnnouncement_vue_vue_type_style_index_0_scoped_d15db3c4_transformed_true_lang]; + +export { HeroAnnouncementStyles_a73a7723 as default }; +//# sourceMappingURL=HeroAnnouncement-styles.a73a7723.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map new file mode 100644 index 00000000..a97ca88f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"HeroAnnouncement-styles.a73a7723.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/HeroAnnouncement-styles-1.mjs-3adaab88.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/HeroAnnouncement-styles.a73a7723.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,iFAAoF,GAAA,mzBAAA;;ACC1F,wCAAe,CAACA,iFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs b/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs new file mode 100644 index 00000000..6160342d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs @@ -0,0 +1,25 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconCodeSandBox = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconCodeSandBox as default }; +//# sourceMappingURL=IconCodeSandBox-289e2c7f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map new file mode 100644 index 00000000..ca8f8e0a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconCodeSandBox-289e2c7f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconCodeSandBox-289e2c7f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,aAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAA0L,CAAA,uLAAA,CAAA,CAAA,CAAA;AACtM,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yEAAyE,CAAA,CAAA;AACtJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,eAAA,+BAA8C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs b/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs new file mode 100644 index 00000000..180d8d0e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs @@ -0,0 +1,25 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconDocus = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconDocus as default }; +//# sourceMappingURL=IconDocus-12d300be.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map new file mode 100644 index 00000000..a674cd89 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconDocus-12d300be.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconDocus-12d300be.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,WAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAA6iB,CAAA,0iBAAA,CAAA,CAAA,CAAA;AACzjB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,SAAA,+BAAwC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs b/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs new file mode 100644 index 00000000..e9e8f9a2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs @@ -0,0 +1,26 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/IconMarkdown.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconMarkdown = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconMarkdown as default }; +//# sourceMappingURL=IconMarkdown-092c828f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map new file mode 100644 index 00000000..c484462b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconMarkdown-092c828f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconMarkdown-092c828f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,WAAA;AAAA,IACT,MAAQ,EAAA,IAAA;AAAA,IACR,IAAM,EAAA,cAAA;AAAA,GACR,EAAG,MAAM,CAAC,CAA6T,CAAA,0TAAA,CAAA,CAAA,CAAA;AACzU,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qCAAqC,CAAA,CAAA;AAClH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,YAAA,+BAA2C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs new file mode 100644 index 00000000..6cf69a14 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs @@ -0,0 +1,24 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconNuxt = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconNuxt as default }; +//# sourceMappingURL=IconNuxt-c11c3c9c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map new file mode 100644 index 00000000..19bb664e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconNuxt-c11c3c9c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxt-c11c3c9c.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm7B,CAAA,g7BAAA,CAAA,CAAA,CAAA;AAC/7B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,kEAAkE,CAAA,CAAA;AAC/I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs new file mode 100644 index 00000000..861d482c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs @@ -0,0 +1,24 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconNuxtContent = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconNuxtContent as default }; +//# sourceMappingURL=IconNuxtContent-f8fb6ffc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map new file mode 100644 index 00000000..38601d1d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconNuxtContent-f8fb6ffc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtContent-f8fb6ffc.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm7B,CAAA,g7BAAA,CAAA,CAAA,CAAA;AAC/7B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yEAAyE,CAAA,CAAA;AACtJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,eAAA,+BAA8C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs new file mode 100644 index 00000000..c292e69a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs @@ -0,0 +1,24 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconNuxtLabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconNuxtLabs as default }; +//# sourceMappingURL=IconNuxtLabs-1b2b0005.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map new file mode 100644 index 00000000..ec34ff75 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconNuxtLabs-1b2b0005.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtLabs-1b2b0005.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm7B,CAAA,g7BAAA,CAAA,CAAA,CAAA;AAC/7B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,YAAA,+BAA2C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs new file mode 100644 index 00000000..af4312d5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs @@ -0,0 +1,24 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconNuxtStudio = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-9e7e743f"]]); + +export { IconNuxtStudio as default }; +//# sourceMappingURL=IconNuxtStudio-8ac5eaa5.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map new file mode 100644 index 00000000..4c99c7e1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconNuxtStudio-8ac5eaa5.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtStudio-8ac5eaa5.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm9B,CAAA,g9BAAA,CAAA,CAAA,CAAA;AAC/9B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,wEAAwE,CAAA,CAAA;AACrJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,cAAiC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs new file mode 100644 index 00000000..c7b06287 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs @@ -0,0 +1,6 @@ +const IconNuxtStudio_vue_vue_type_style_index_0_scoped_9e7e743f_transformed_true_lang = "svg[data-v-9e7e743f]{fill:var(--color-black)}:root.dark svg[data-v-9e7e743f]{fill:var(--color-white)}"; + +const IconNuxtStudioStyles_d164db17 = [IconNuxtStudio_vue_vue_type_style_index_0_scoped_9e7e743f_transformed_true_lang]; + +export { IconNuxtStudioStyles_d164db17 as default }; +//# sourceMappingURL=IconNuxtStudio-styles.d164db17.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map new file mode 100644 index 00000000..2c6f8c19 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconNuxtStudio-styles.d164db17.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtStudio-styles-1.mjs-f768f8ec.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtStudio-styles.d164db17.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,uGAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs b/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs new file mode 100644 index 00000000..5ed812ed --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs @@ -0,0 +1,25 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconStackBlitz = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconStackBlitz as default }; +//# sourceMappingURL=IconStackBlitz-def46545.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map new file mode 100644 index 00000000..492e08bd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconStackBlitz-def46545.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconStackBlitz-def46545.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,WAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAAuH,CAAA,oHAAA,CAAA,CAAA,CAAA;AACnI,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,wEAAwE,CAAA,CAAA;AACrJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,cAAA,+BAA6C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs b/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs new file mode 100644 index 00000000..e342ab8b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs @@ -0,0 +1,25 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const IconVueTelescope = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { IconVueTelescope as default }; +//# sourceMappingURL=IconVueTelescope-96109b9a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map new file mode 100644 index 00000000..de09a07b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"IconVueTelescope-96109b9a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconVueTelescope-96109b9a.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,aAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAA8b,CAAA,2bAAA,CAAA,CAAA,CAAA;AAC1c,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,0EAA0E,CAAA,CAAA;AACvJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,gBAAA,+BAA+C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs b/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs new file mode 100644 index 00000000..b94d9d6a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs @@ -0,0 +1,72 @@ +import { u as useUnwrap, _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { defineComponent, useSlots, computed, h, useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const iconTypeMap = { + primary: "heroicons-outline:check", + info: "heroicons-outline:information-circle", + success: "heroicons-outline:check-circle", + warning: "heroicons-outline:exclamation", + danger: "heroicons-outline:exclamation-circle" +}; +const _sfc_main = defineComponent({ + props: { + /** + * Used to override the default type icon, check out the + * icons available + */ + icon: { + type: String, + default: null + }, + /** + * Type of list + */ + type: { + type: String, + default: "primary", + validator: (value) => ["primary", "info", "success", "warning", "danger"].includes(value) + } + }, + setup(props) { + const slots = useSlots(); + const { flatUnwrap, unwrap } = useUnwrap(); + const iconName = computed(() => props.icon || iconTypeMap[props.type]); + return () => { + var _a; + const items = flatUnwrap((_a = slots.default && slots.default()) != null ? _a : [], ["ul"]).map((li) => unwrap(li, ["li"])); + return h( + "ul", + items.map( + (item) => h("li", [ + h("span", { class: `list-icon ${props.type}` }, h(__nuxt_component_0$1, { name: iconName.value, class: "icon" })), + h("span", h(ContentSlot, { use: () => item })) + ]) + ) + ); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/List.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const List = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f4e70c29"]]); + +export { List as default }; +//# sourceMappingURL=List-12ebf73c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map b/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map new file mode 100644 index 00000000..70c7ad6e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"List-12ebf73c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/List-12ebf73c.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,WAAc,GAAA;AAAA,EAClB,OAAS,EAAA,yBAAA;AAAA,EACT,IAAM,EAAA,sCAAA;AAAA,EACN,OAAS,EAAA,gCAAA;AAAA,EACT,OAAS,EAAA,+BAAA;AAAA,EACT,MAAQ,EAAA,sCAAA;AACV,CAAA,CAAA;AACA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAKL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,IAAA;AAAA,KACX;AAAA;AAAA;AAAA;AAAA,IAIA,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,SAAA;AAAA,MACT,SAAA,EAAW,CAAC,KAAA,KAAU,CAAC,SAAA,EAAW,MAAQ,EAAA,SAAA,EAAW,SAAW,EAAA,QAAQ,CAAE,CAAA,QAAA,CAAS,KAAK,CAAA;AAAA,KAC1F;AAAA,GACF;AAAA,EACA,MAAM,KAAO,EAAA;AACX,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,MAAM,EAAE,UAAA,EAAY,MAAO,EAAA,GAAI,SAAU,EAAA,CAAA;AACzC,IAAM,MAAA,QAAA,GAAW,SAAS,MAAM,KAAA,CAAM,QAAQ,WAAY,CAAA,KAAA,CAAM,IAAI,CAAC,CAAA,CAAA;AACrE,IAAA,OAAO,MAAM;AA/CjB,MAAA,IAAA,EAAA,CAAA;AAgDM,MAAM,MAAA,KAAA,GAAQ,YAAY,EAAM,GAAA,KAAA,CAAA,OAAA,IAAW,MAAM,OAAQ,EAAA,KAA/B,IAAqC,GAAA,EAAA,GAAA,EAAI,EAAA,CAAC,IAAI,CAAC,CAAA,CAAE,IAAI,CAAC,EAAA,KAAO,OAAO,EAAI,EAAA,CAAC,IAAI,CAAC,CAAC,CAAA,CAAA;AACzG,MAAO,OAAA,CAAA;AAAA,QACL,IAAA;AAAA,QACA,KAAM,CAAA,GAAA;AAAA,UACJ,CAAC,IAAS,KAAA,CAAA,CAAE,IAAM,EAAA;AAAA,YAChB,EAAE,MAAQ,EAAA,EAAE,KAAO,EAAA,CAAA,UAAA,EAAa,MAAM,IAAO,CAAA,CAAA,EAAA,EAAG,CAAE,CAAAA,oBAAA,EAAoB,EAAE,IAAM,EAAA,QAAA,CAAS,OAAO,KAAO,EAAA,MAAA,EAAQ,CAAC,CAAA;AAAA,YAC9G,CAAA,CAAE,QAAQ,CAAE,CAAA,WAAA,EAAa,EAAE,GAAK,EAAA,MAAM,IAAK,EAAC,CAAC,CAAA;AAAA,WAC9C,CAAA;AAAA,SACH;AAAA,OACF,CAAA;AAAA,KACF,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,gEAAgE,CAAA,CAAA;AAC7I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,IAAA,+BAAmC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs b/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs new file mode 100644 index 00000000..a9b8aad1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs @@ -0,0 +1,6 @@ +const List_vue_vue_type_style_index_0_scoped_f4e70c29_transformed_true_lang = "li[data-v-f4e70c29]{align-items:center;display:flex;margin-bottom:var(--space-3)}li .list-icon[data-v-f4e70c29]{flex-shrink:0;margin-right:var(--space-3)}li .list-icon.primary[data-v-f4e70c29]{color:var(--elements-state-primary-color-primary)}li .list-icon.info[data-v-f4e70c29]{color:var(--elements-state-info-color-primary)}li .list-icon.success[data-v-f4e70c29]{color:var(--elements-state-success-color-primary)}li .list-icon.warning[data-v-f4e70c29]{color:var(--elements-state-warning-color-primary)}li .list-icon.danger[data-v-f4e70c29]{color:var(--elements-state-danger-color-primary)}li .list-icon .icon[data-v-f4e70c29]{height:var(--space-6);width:var(--space-6)}"; + +const ListStyles_ff61b956 = [List_vue_vue_type_style_index_0_scoped_f4e70c29_transformed_true_lang]; + +export { ListStyles_ff61b956 as default }; +//# sourceMappingURL=List-styles.ff61b956.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map b/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map new file mode 100644 index 00000000..0e5c51fe --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"List-styles.ff61b956.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/List-styles-1.mjs-e0119ac4.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/List-styles.ff61b956.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,qEAAwE,GAAA,iqBAAA;;ACC9E,4BAAe,CAACA,qEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs b/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs new file mode 100644 index 00000000..8549542f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs @@ -0,0 +1,46 @@ +import { defineComponent, getCurrentInstance, useSlots, computed, useSSRContext } from 'vue'; +import ContentSlot from './ContentSlot-deb25102.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = defineComponent({ + name: "Markdown", + extends: ContentSlot, + setup(props) { + const { parent } = getCurrentInstance(); + const { between, default: fallbackSlot } = useSlots(); + const tags = computed(() => { + if (typeof props.unwrap === "string") { + return props.unwrap.split(" "); + } + return ["*"]; + }); + return { + fallbackSlot, + tags, + between, + parent + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/Markdown.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=Markdown-1885a814.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map b/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map new file mode 100644 index 00000000..27016b37 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Markdown-1885a814.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Markdown-1885a814.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,IAAM,EAAA,UAAA;AAAA,EACN,OAAS,EAAA,WAAA;AAAA,EACT,MAAM,KAAO,EAAA;AACX,IAAM,MAAA,EAAE,MAAO,EAAA,GAAI,kBAAmB,EAAA,CAAA;AACtC,IAAA,MAAM,EAAE,OAAA,EAAS,OAAS,EAAA,YAAA,KAAiB,QAAS,EAAA,CAAA;AACpD,IAAM,MAAA,IAAA,GAAO,SAAS,MAAM;AAC1B,MAAI,IAAA,OAAO,KAAM,CAAA,MAAA,KAAW,QAAU,EAAA;AACpC,QAAO,OAAA,KAAA,CAAM,MAAO,CAAA,KAAA,CAAM,GAAG,CAAA,CAAA;AAAA,OAC/B;AACA,MAAA,OAAO,CAAC,GAAG,CAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AACD,IAAO,OAAA;AAAA,MACL,YAAA;AAAA,MACA,IAAA;AAAA,MACA,OAAA;AAAA,MACA,MAAA;AAAA,KACF,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iEAAiE,CAAA,CAAA;AAC9I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs b/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs new file mode 100644 index 00000000..597cbcb3 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs @@ -0,0 +1,48 @@ +import ContentSlot from './ContentSlot-deb25102.mjs'; +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = { + __name: "MyButton", + __ssrInlineRender: true, + props: { + type: { + type: String, + default: "info" + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_ContentSlot = ContentSlot; + _push(``); + _push(ssrRenderComponent(_component_ContentSlot, { + use: _ctx.$slots.default, + unwrap: "p" + }, null, _parent)); + _push(``); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/MyButton.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const MyButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-14e24467"]]); + +export { MyButton as default }; +//# sourceMappingURL=MyButton-a7c11108.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map b/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map new file mode 100644 index 00000000..4f650c0f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"MyButton-a7c11108.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/MyButton-a7c11108.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAkBA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,OAAA,EAAU,cAAe,CAAA,UAAA,CAAW,EAAE,KAAA,EAAO,QAAQ,IAAK,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9F,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAW,SAAA,CAAA,CAAA,CAAA;AAAA,KACnB,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iCAAiC,CAAA,CAAA;AAC9G,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs b/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs new file mode 100644 index 00000000..f7f425cf --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs @@ -0,0 +1,6 @@ +const MyButton_vue_vue_type_style_index_0_scoped_14e24467_transformed_true_lang = "button[data-v-14e24467]{border-radius:4px;color:#000;padding:.5rem}.info[data-v-14e24467]{background-color:blue}.warning[data-v-14e24467]{background-color:orange}.success[data-v-14e24467]{background-color:#d1fae5;border:1px solid #34d399}"; + +const MyButtonStyles_0da530f8 = [MyButton_vue_vue_type_style_index_0_scoped_14e24467_transformed_true_lang]; + +export { MyButtonStyles_0da530f8 as default }; +//# sourceMappingURL=MyButton-styles.0da530f8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map b/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map new file mode 100644 index 00000000..c418c4ab --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"MyButton-styles.0da530f8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/MyButton-styles-1.mjs-41dd010f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/MyButton-styles.0da530f8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,gPAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs b/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs new file mode 100644 index 00000000..86b2213c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs @@ -0,0 +1,63 @@ +import { defineComponent, computed, h, useSSRContext } from 'vue'; +import { b as useRuntimeConfig } from './app.config-832f5f68.mjs'; +import { withBase } from 'ufo'; +import 'hookable'; +import 'unctx'; +import 'h3'; + +const _sfc_main = defineComponent({ + props: { + src: { + type: [String, Object], + default: null + } + }, + setup(props) { + const srcWithBase = (src) => { + if (src && src.startsWith("/") && !src.startsWith("//")) { + return withBase(src, useRuntimeConfig().app.baseURL); + } + return src; + }; + const imgSrc = computed(() => { + let src = props.src; + try { + src = JSON.parse(src); + } catch (e) { + src = props.src; + } + if (typeof src === "string") { + return srcWithBase(props.src); + } + return { + light: srcWithBase(src.light), + dark: srcWithBase(src.dark) + }; + }); + return { + imgSrc + }; + }, + render({ imgSrc }) { + if (typeof imgSrc === "string") { + return h("img", { src: imgSrc, ...this.$attrs }); + } + const nodes = []; + if (imgSrc.light) { + nodes.push(h("img", { src: imgSrc.light, class: ["dark-img"], ...this.$attrs })); + } + if (imgSrc.dark) { + nodes.push(h("img", { src: imgSrc.dark, class: ["light-img"], ...this.$attrs })); + } + return nodes; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=NuxtImg-89991070.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map b/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map new file mode 100644 index 00000000..eec91386 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"NuxtImg-89991070.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/NuxtImg-89991070.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,KAAO,EAAA;AAAA,IACL,GAAK,EAAA;AAAA,MACH,IAAA,EAAM,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,MACrB,OAAS,EAAA,IAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,KAAO,EAAA;AACX,IAAM,MAAA,WAAA,GAAc,CAAC,GAAQ,KAAA;AAC3B,MAAI,IAAA,GAAA,IAAO,IAAI,UAAW,CAAA,GAAG,KAAK,CAAC,GAAA,CAAI,UAAW,CAAA,IAAI,CAAG,EAAA;AACvD,QAAA,OAAO,QAAS,CAAA,GAAA,EAAK,gBAAiB,EAAA,CAAE,IAAI,OAAO,CAAA,CAAA;AAAA,OACrD;AACA,MAAO,OAAA,GAAA,CAAA;AAAA,KACT,CAAA;AACA,IAAM,MAAA,MAAA,GAAS,SAAS,MAAM;AAC5B,MAAA,IAAI,MAAM,KAAM,CAAA,GAAA,CAAA;AAChB,MAAI,IAAA;AACF,QAAM,GAAA,GAAA,IAAA,CAAK,MAAM,GAAG,CAAA,CAAA;AAAA,eACb,CAAP,EAAA;AACA,QAAA,GAAA,GAAM,KAAM,CAAA,GAAA,CAAA;AAAA,OACd;AACA,MAAI,IAAA,OAAO,QAAQ,QAAU,EAAA;AAC3B,QAAO,OAAA,WAAA,CAAY,MAAM,GAAG,CAAA,CAAA;AAAA,OAC9B;AACA,MAAO,OAAA;AAAA,QACL,KAAA,EAAO,WAAY,CAAA,GAAA,CAAI,KAAK,CAAA;AAAA,QAC5B,IAAA,EAAM,WAAY,CAAA,GAAA,CAAI,IAAI,CAAA;AAAA,OAC5B,CAAA;AAAA,KACD,CAAA,CAAA;AACD,IAAO,OAAA;AAAA,MACL,MAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAA,CAAO,EAAE,MAAA,EAAU,EAAA;AACjB,IAAI,IAAA,OAAO,WAAW,QAAU,EAAA;AAC9B,MAAO,OAAA,CAAA,CAAE,OAAO,EAAE,GAAA,EAAK,QAAQ,GAAG,IAAA,CAAK,QAAQ,CAAA,CAAA;AAAA,KACjD;AACA,IAAA,MAAM,QAAQ,EAAC,CAAA;AACf,IAAA,IAAI,OAAO,KAAO,EAAA;AAChB,MAAA,KAAA,CAAM,IAAK,CAAA,CAAA,CAAE,KAAO,EAAA,EAAE,KAAK,MAAO,CAAA,KAAA,EAAO,KAAO,EAAA,CAAC,UAAU,CAAG,EAAA,GAAG,IAAK,CAAA,MAAA,EAAQ,CAAC,CAAA,CAAA;AAAA,KACjF;AACA,IAAA,IAAI,OAAO,IAAM,EAAA;AACf,MAAA,KAAA,CAAM,IAAK,CAAA,CAAA,CAAE,KAAO,EAAA,EAAE,KAAK,MAAO,CAAA,IAAA,EAAM,KAAO,EAAA,CAAC,WAAW,CAAG,EAAA,GAAG,IAAK,CAAA,MAAA,EAAQ,CAAC,CAAA,CAAA;AAAA,KACjF;AACA,IAAO,OAAA,KAAA,CAAA;AAAA,GACT;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs b/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs new file mode 100644 index 00000000..201edc83 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs @@ -0,0 +1,32 @@ +import { useSSRContext, computed, unref } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = { + __name: "PropInspector", + __ssrInlineRender: true, + props: ["prop"], + setup(__props) { + const props = __props; + const propType = computed(() => Array.isArray(props.prop) ? "array" : typeof props.prop); + return (_ctx, _push, _parent, _attrs) => { + _push(`Type: ${ssrInterpolate(unref(propType))} +Value: +${ssrInterpolate(__props.prop)} + `); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/PropInspector.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const PropInspector = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d8c04239"]]); + +export { PropInspector as default }; +//# sourceMappingURL=PropInspector-d4a70134.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map b/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map new file mode 100644 index 00000000..b3bc08cc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"PropInspector-d4a70134.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/PropInspector-d4a70134.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,eAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAA,EAAO,CAAC,MAAM,CAAA;AAAA,EACd,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAM,MAAA,QAAA,GAAW,QAAS,CAAA,MAAM,KAAM,CAAA,OAAA,CAAQ,KAAM,CAAA,IAAI,CAAI,GAAA,OAAA,GAAU,OAAO,KAAA,CAAM,IAAI,CAAA,CAAA;AACvF,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,MAAM,2BAA2B,cAAe,CAAA,KAAA,CAAM,QAAQ,CAAC,CAAA,CAAA;AAAA;AAAA,EAE/F,cAAA,CAAe,QAAQ,IAAI,CAAA,CAAA;AAAA,QACpB,CAAA,CAAA,CAAA;AAAA,KACL,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sCAAsC,CAAA,CAAA;AACnH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,aAAA,+BAA4C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs b/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs new file mode 100644 index 00000000..e6555c42 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs @@ -0,0 +1,6 @@ +const PropInspector_vue_vue_type_style_index_0_scoped_d8c04239_transformed_true_lang = "pre[data-v-d8c04239]{border-radius:4px;padding:1rem 1rem 0}"; + +const PropInspectorStyles_ad1f0c4f = [PropInspector_vue_vue_type_style_index_0_scoped_d8c04239_transformed_true_lang]; + +export { PropInspectorStyles_ad1f0c4f as default }; +//# sourceMappingURL=PropInspector-styles.ad1f0c4f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map b/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map new file mode 100644 index 00000000..8eb57ea8 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"PropInspector-styles.ad1f0c4f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/PropInspector-styles-1.mjs-f58a2c8d.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/PropInspector-styles.ad1f0c4f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,8EAAiF,GAAA,6DAAA;;ACCvF,qCAAe,CAACA,8EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs b/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs new file mode 100644 index 00000000..221b7eb2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs @@ -0,0 +1,850 @@ +import __nuxt_component_0 from './ProseTable-425d227b.mjs'; +import __nuxt_component_1 from './ProseThead-7ba76e48.mjs'; +import __nuxt_component_2 from './ProseTr-6559f7d8.mjs'; +import __nuxt_component_3 from './ProseTh-8250ce9f.mjs'; +import __nuxt_component_4 from './ProseTbody-f622755a.mjs'; +import __nuxt_component_5 from './ProseTd-ce60dd42.mjs'; +import __nuxt_component_1$1 from './ProseCodeInline-960b9a43.mjs'; +import { defineComponent, computed, useSSRContext, withCtx, createTextVNode, createVNode, openBlock, createBlock, createCommentVNode, toDisplayString, Fragment, renderList } from 'vue'; +import { u as useAsyncData } from './asyncData-c43d4319.mjs'; +import { kebabCase } from 'scule'; +import { ssrRenderComponent, ssrRenderList, ssrInterpolate } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'defu'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import '../../nitro/config.mjs'; + +const _sfc_main = defineComponent({ + props: { + of: { + type: String, + default: void 0 + }, + /** + * Toggle required column. + */ + required: { + type: Boolean, + default: void 0 + }, + /** + * Toggle values column. + */ + values: { + type: Boolean, + default: void 0 + }, + /** + * Toggle description column. + */ + description: { + type: Boolean, + default: void 0 + }, + /** + * Toglle default column. + */ + default: { + type: Boolean, + default: void 0 + } + }, + async setup(props) { + const query = `/api/component-meta/${kebabCase(props.of)}`; + const { data: meta } = await useAsyncData(props.of, () => $fetch(query), "$oSoCJtWFoC"); + const properties = computed(() => meta.value.props.filter((prop) => { + var _a; + return !((_a = prop.tags) == null ? void 0 : _a.ignore.includes(prop)); + })); + const showRequired = computed(() => { + var _a; + if (props.required !== void 0) { + return props.required; + } + return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.required !== void 0); + }); + const showValues = computed(() => { + var _a; + if (props.values !== void 0) { + return props.values; + } + return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.values); + }); + const showDescription = computed(() => { + var _a; + if (props.description !== void 0) { + return props.description; + } + return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.description); + }); + const showDefault = computed(() => { + var _a; + if (props.default !== void 0) { + return props.default; + } + return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.default); + }); + return { + meta, + properties, + showRequired, + showValues, + showDescription, + showDefault + }; + } +}); +function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $options) { + var _a, _b, _c; + const _component_ProseTable = __nuxt_component_0; + const _component_ProseThead = __nuxt_component_1; + const _component_ProseTr = __nuxt_component_2; + const _component_ProseTh = __nuxt_component_3; + const _component_ProseTbody = __nuxt_component_4; + const _component_ProseTd = __nuxt_component_5; + const _component_ProseCodeInline = __nuxt_component_1$1; + if (_ctx.meta && ((_a = _ctx.meta) == null ? void 0 : _a.props) && ((_c = (_b = _ctx.meta) == null ? void 0 : _b.props) == null ? void 0 : _c.length)) { + _push(ssrRenderComponent(_component_ProseTable, _attrs, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(ssrRenderComponent(_component_ProseThead, null, { + default: withCtx((_2, _push3, _parent3, _scopeId2) => { + if (_push3) { + _push3(ssrRenderComponent(_component_ProseTr, null, { + default: withCtx((_3, _push4, _parent4, _scopeId3) => { + if (_push4) { + _push4(ssrRenderComponent(_component_ProseTh, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(`Prop`); + } else { + return [ + createTextVNode("Prop") + ]; + } + }), + _: 1 + }, _parent4, _scopeId3)); + _push4(ssrRenderComponent(_component_ProseTh, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(`Type`); + } else { + return [ + createTextVNode("Type") + ]; + } + }), + _: 1 + }, _parent4, _scopeId3)); + if (_ctx.showRequired) { + _push4(ssrRenderComponent(_component_ProseTh, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(` Required `); + } else { + return [ + createTextVNode(" Required ") + ]; + } + }), + _: 1 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + if (_ctx.showDefault) { + _push4(ssrRenderComponent(_component_ProseTh, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(` Default `); + } else { + return [ + createTextVNode(" Default ") + ]; + } + }), + _: 1 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + if (_ctx.showValues) { + _push4(ssrRenderComponent(_component_ProseTh, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(` Values `); + } else { + return [ + createTextVNode(" Values ") + ]; + } + }), + _: 1 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + if (_ctx.showDescription) { + _push4(ssrRenderComponent(_component_ProseTh, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(` Description `); + } else { + return [ + createTextVNode(" Description ") + ]; + } + }), + _: 1 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + } else { + return [ + createVNode(_component_ProseTh, null, { + default: withCtx(() => [ + createTextVNode("Prop") + ]), + _: 1 + }), + createVNode(_component_ProseTh, null, { + default: withCtx(() => [ + createTextVNode("Type") + ]), + _: 1 + }), + _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTh, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(" Required ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTh, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" Default ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showValues ? (openBlock(), createBlock(_component_ProseTh, { key: 2 }, { + default: withCtx(() => [ + createTextVNode(" Values ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTh, { key: 3 }, { + default: withCtx(() => [ + createTextVNode(" Description ") + ]), + _: 1 + })) : createCommentVNode("", true) + ]; + } + }), + _: 1 + }, _parent3, _scopeId2)); + } else { + return [ + createVNode(_component_ProseTr, null, { + default: withCtx(() => [ + createVNode(_component_ProseTh, null, { + default: withCtx(() => [ + createTextVNode("Prop") + ]), + _: 1 + }), + createVNode(_component_ProseTh, null, { + default: withCtx(() => [ + createTextVNode("Type") + ]), + _: 1 + }), + _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTh, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(" Required ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTh, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" Default ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showValues ? (openBlock(), createBlock(_component_ProseTh, { key: 2 }, { + default: withCtx(() => [ + createTextVNode(" Values ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTh, { key: 3 }, { + default: withCtx(() => [ + createTextVNode(" Description ") + ]), + _: 1 + })) : createCommentVNode("", true) + ]), + _: 1 + }) + ]; + } + }), + _: 1 + }, _parent2, _scopeId)); + _push2(ssrRenderComponent(_component_ProseTbody, null, { + default: withCtx((_2, _push3, _parent3, _scopeId2) => { + if (_push3) { + _push3(``); + ssrRenderList(_ctx.properties, (prop) => { + _push3(ssrRenderComponent(_component_ProseTr, { + key: prop.name + }, { + default: withCtx((_3, _push4, _parent4, _scopeId3) => { + if (_push4) { + _push4(ssrRenderComponent(_component_ProseTd, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(`${ssrInterpolate((prop == null ? void 0 : prop.name) || "?")}`); + } else { + return [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } else { + return [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) + ]), + _: 2 + }, 1024) + ]; + } + }), + _: 2 + }, _parent4, _scopeId3)); + _push4(ssrRenderComponent(_component_ProseTd, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(`${ssrInterpolate((prop == null ? void 0 : prop.type) || "?")}`); + } else { + return [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } else { + return [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) + ]), + _: 2 + }, 1024) + ]; + } + }), + _: 2 + }, _parent4, _scopeId3)); + if (_ctx.showRequired) { + _push4(ssrRenderComponent(_component_ProseTd, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(`${ssrInterpolate(prop.required === "?" ? "?" : prop.required ? "Yes" : "No")}`); + } else { + return [ + createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } else { + return [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) + ]), + _: 2 + }, 1024) + ]; + } + }), + _: 2 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + if (_ctx.showDefault) { + _push4(ssrRenderComponent(_component_ProseTd, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + if (prop.default) { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(`${ssrInterpolate((prop == null ? void 0 : prop.default) || "?")}`); + } else { + return [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } else { + _push5(``); + } + } else { + return [ + prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]; + } + }), + _: 2 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + if (_ctx.showValues) { + _push4(ssrRenderComponent(_component_ProseTd, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + if (prop.values) { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(`${ssrInterpolate((prop == null ? void 0 : prop.values) || "?")}`); + } else { + return [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } else { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(` - `); + } else { + return [ + createTextVNode(" - ") + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } + } else { + return [ + prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) + ]), + _: 2 + }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" - ") + ]), + _: 1 + })) + ]; + } + }), + _: 2 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + if (_ctx.showDescription) { + _push4(ssrRenderComponent(_component_ProseTd, null, { + default: withCtx((_4, _push5, _parent5, _scopeId4) => { + if (_push5) { + _push5(ssrRenderComponent(_component_ProseCodeInline, null, { + default: withCtx((_5, _push6, _parent6, _scopeId5) => { + if (_push6) { + _push6(`${ssrInterpolate(prop.description)}`); + } else { + return [ + createTextVNode(toDisplayString(prop.description), 1) + ]; + } + }), + _: 2 + }, _parent5, _scopeId4)); + } else { + return [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.description), 1) + ]), + _: 2 + }, 1024) + ]; + } + }), + _: 2 + }, _parent4, _scopeId3)); + } else { + _push4(``); + } + } else { + return [ + createVNode(_component_ProseTd, null, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024), + createVNode(_component_ProseTd, null, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024), + _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTd, { key: 0 }, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTd, { key: 1 }, { + default: withCtx(() => [ + prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showValues ? (openBlock(), createBlock(_component_ProseTd, { key: 2 }, { + default: withCtx(() => [ + prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) + ]), + _: 2 + }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" - ") + ]), + _: 1 + })) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTd, { key: 3 }, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.description), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]; + } + }), + _: 2 + }, _parent3, _scopeId2)); + }); + _push3(``); + } else { + return [ + (openBlock(true), createBlock(Fragment, null, renderList(_ctx.properties, (prop) => { + return openBlock(), createBlock(_component_ProseTr, { + key: prop.name + }, { + default: withCtx(() => [ + createVNode(_component_ProseTd, null, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024), + createVNode(_component_ProseTd, null, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024), + _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTd, { key: 0 }, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTd, { key: 1 }, { + default: withCtx(() => [ + prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showValues ? (openBlock(), createBlock(_component_ProseTd, { key: 2 }, { + default: withCtx(() => [ + prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) + ]), + _: 2 + }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" - ") + ]), + _: 1 + })) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTd, { key: 3 }, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.description), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]), + _: 2 + }, 1024); + }), 128)) + ]; + } + }), + _: 1 + }, _parent2, _scopeId)); + } else { + return [ + createVNode(_component_ProseThead, null, { + default: withCtx(() => [ + createVNode(_component_ProseTr, null, { + default: withCtx(() => [ + createVNode(_component_ProseTh, null, { + default: withCtx(() => [ + createTextVNode("Prop") + ]), + _: 1 + }), + createVNode(_component_ProseTh, null, { + default: withCtx(() => [ + createTextVNode("Type") + ]), + _: 1 + }), + _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTh, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(" Required ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTh, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" Default ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showValues ? (openBlock(), createBlock(_component_ProseTh, { key: 2 }, { + default: withCtx(() => [ + createTextVNode(" Values ") + ]), + _: 1 + })) : createCommentVNode("", true), + _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTh, { key: 3 }, { + default: withCtx(() => [ + createTextVNode(" Description ") + ]), + _: 1 + })) : createCommentVNode("", true) + ]), + _: 1 + }) + ]), + _: 1 + }), + createVNode(_component_ProseTbody, null, { + default: withCtx(() => [ + (openBlock(true), createBlock(Fragment, null, renderList(_ctx.properties, (prop) => { + return openBlock(), createBlock(_component_ProseTr, { + key: prop.name + }, { + default: withCtx(() => [ + createVNode(_component_ProseTd, null, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024), + createVNode(_component_ProseTd, null, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024), + _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTd, { key: 0 }, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTd, { key: 1 }, { + default: withCtx(() => [ + prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showValues ? (openBlock(), createBlock(_component_ProseTd, { key: 2 }, { + default: withCtx(() => [ + prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { + default: withCtx(() => [ + createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) + ]), + _: 2 + }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { + default: withCtx(() => [ + createTextVNode(" - ") + ]), + _: 1 + })) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true), + _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTd, { key: 3 }, { + default: withCtx(() => [ + createVNode(_component_ProseCodeInline, null, { + default: withCtx(() => [ + createTextVNode(toDisplayString(prop.description), 1) + ]), + _: 2 + }, 1024) + ]), + _: 2 + }, 1024)) : createCommentVNode("", true) + ]), + _: 2 + }, 1024); + }), 128)) + ]), + _: 1 + }) + ]; + } + }), + _: 1 + }, _parent)); + } else { + _push(``); + } +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Props.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const Props = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { Props as default }; +//# sourceMappingURL=Props-c617d5b2.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map b/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map new file mode 100644 index 00000000..34e07d74 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Props-c617d5b2.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Props-c617d5b2.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs b/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs new file mode 100644 index 00000000..683f9cfc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs @@ -0,0 +1,64 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { useSSRContext, defineComponent, mergeProps, withCtx, renderSlot } from 'vue'; +import { ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseA", + __ssrInlineRender: true, + props: { + href: { + type: String, + default: "" + }, + blank: { + type: Boolean, + default: false + }, + /** + * `true` if `href` points to a static file + */ + static: { + type: Boolean, + default: false + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ + to: __props.href, + blank: __props.blank, + static: __props.static + }, _attrs), { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true) + ]; + } + }), + _: 3 + }, _parent)); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseA.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9cebe7e3"]]); + +export { __nuxt_component_2 as default }; +//# sourceMappingURL=ProseA-86ef3985.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map new file mode 100644 index 00000000..68f05091 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseA-86ef3985.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseA-86ef3985.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;AAYA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,QAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA;AAAA;AAAA;AAAA,IAIA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,mBAAsB,GAAA,kBAAA,CAAA;AAC5B,MAAM,KAAA,CAAA,kBAAA,CAAmB,qBAAqB,UAAW,CAAA;AAAA,QACvD,IAAI,OAAQ,CAAA,IAAA;AAAA,QACZ,OAAO,OAAQ,CAAA,KAAA;AAAA,QACf,QAAQ,OAAQ,CAAA,MAAA;AAAA,OAClB,EAAG,MAAM,CAAG,EAAA;AAAA,QACV,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,WACrE,MAAA;AACL,YAAO,OAAA;AAAA,cACL,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,aACrD,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs b/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs new file mode 100644 index 00000000..a44f5bef --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs @@ -0,0 +1,6 @@ +const ProseA_vue_vue_type_style_index_0_scoped_9cebe7e3_transformed_true_lang = "a[data-v-9cebe7e3]{border-bottom:var(--prose-a-border-width) var(--prose-a-border-style-static) var(--prose-a-border-color-static);color:var(--prose-a-color-static);font-family:var(--typography-font-body);font-weight:var(--prose-a-fontWeight);padding-bottom:var(--prose-a-border-distance);-webkit-text-decoration:var(--prose-a-textDecoration);text-decoration:var(--prose-a-textDecoration)}a[data-v-9cebe7e3]:hover{border-color:var(--prose-a-border-color-hover);border-style:var(--prose-a-border-style-hover);color:var(--prose-a-color-hover)}a[data-v-9cebe7e3]:has(img){border-width:0}a[data-v-9cebe7e3]:has(code){border-bottom:var(--prose-a-hasCode-borderBottom)}a[data-v-9cebe7e3]:has(code) code{border-color:var(--prose-a-code-border-color-static);border-style:var(--prose-a-code-border-style);border-width:var(--prose-a-code-border-width);color:var(--prose-a-code-color-static)}a[data-v-9cebe7e3]:has(code):hover{border-bottom:var(--prose-a-hasCode-borderBottom)}a[data-v-9cebe7e3]:has(code):hover code{background-color:var(--prose-a-code-background-hover);border-color:var(--prose-a-code-border-color-hover);color:var(--prose-a-code-color-hover)}"; + +const ProseAStyles_ac6b0f84 = [ProseA_vue_vue_type_style_index_0_scoped_9cebe7e3_transformed_true_lang]; + +export { ProseAStyles_ac6b0f84 as default }; +//# sourceMappingURL=ProseA-styles.ac6b0f84.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map new file mode 100644 index 00000000..659cf328 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseA-styles.ac6b0f84.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseA-styles-1.mjs-21dc01b5.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseA-styles.ac6b0f84.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uEAA0E,GAAA,goCAAA;;ACChF,8BAAe,CAACA,uEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs new file mode 100644 index 00000000..a563116b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseBlockquote = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-dce1efe8"]]); + +export { ProseBlockquote as default }; +//# sourceMappingURL=ProseBlockquote-faf6e310.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map new file mode 100644 index 00000000..2503a404 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseBlockquote-faf6e310.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseBlockquote-faf6e310.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,WAAA,EAAc,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC7D,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAe,aAAA,CAAA,CAAA,CAAA;AACvB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4EAA4E,CAAA,CAAA;AACzJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,eAAkC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs new file mode 100644 index 00000000..a2bf17bc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs @@ -0,0 +1,6 @@ +const ProseBlockquote_vue_vue_type_style_index_0_scoped_dce1efe8_transformed_true_lang = 'blockquote[data-v-dce1efe8]{border-left:var(--prose-blockquote-border-width) var(--prose-blockquote-border-style) var(--prose-blockquote-border-color);color:var(--prose-blockquote-color);font-family:var(--typography-font-body);margin:var(--prose-blockquote-margin);padding:var(--prose-blockquote-padding);quotes:var(--prose-blockquote-quotes)}blockquote p[data-v-dce1efe8]:first-of-type:before,blockquote p[data-v-dce1efe8]:last-of-type:after{content:""}'; + +const ProseBlockquoteStyles_c0f9c45a = [ProseBlockquote_vue_vue_type_style_index_0_scoped_dce1efe8_transformed_true_lang]; + +export { ProseBlockquoteStyles_c0f9c45a as default }; +//# sourceMappingURL=ProseBlockquote-styles.c0f9c45a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map new file mode 100644 index 00000000..93eda488 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseBlockquote-styles.c0f9c45a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseBlockquote-styles-1.mjs-80ef6d31.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,gFAAmF,GAAA,wcAAA;;ACCzF,uCAAe,CAACA,gFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs b/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs new file mode 100644 index 00000000..9338229f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs @@ -0,0 +1,124 @@ +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, ref, mergeProps, unref } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate, ssrRenderSlot } from 'vue/server-renderer'; +import { u as useClipboard } from './index-1624a23e.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main$1 = /* @__PURE__ */ defineComponent({ + __name: "ProseCodeCopyButton", + __ssrInlineRender: true, + props: { + content: { + type: String, + default: "" + }, + show: { + type: Boolean, + default: false + } + }, + setup(__props) { + useClipboard(); + const { prose } = useAppConfig(); + const state = ref("init"); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b; + const _component_Icon = __nuxt_component_0$1; + _push(`Copy to clipboard`); + if (state.value === "copied") { + _push(ssrRenderComponent(_component_Icon, { + name: (_a = unref(prose).copyButton) == null ? void 0 : _a.iconCopied, + size: "18", + class: "copied" + }, null, _parent)); + } else { + _push(ssrRenderComponent(_component_Icon, { + name: (_b = unref(prose).copyButton) == null ? void 0 : _b.iconCopy, + size: "18" + }, null, _parent)); + } + _push(``); + }; + } +}); +const _sfc_setup$1 = _sfc_main$1.setup; +_sfc_main$1.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue"); + return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-5fa3121e"]]); +const ProseCodeCopyButton = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_0 +}); +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseCode", + __ssrInlineRender: true, + props: { + code: { + type: String, + default: "" + }, + language: { + type: String, + default: null + }, + filename: { + type: String, + default: null + }, + highlights: { + type: Array, + default: () => [] + } + }, + setup(__props) { + const hovered = ref(false); + return (_ctx, _push, _parent, _attrs) => { + const _component_ProseCodeCopyButton = __nuxt_component_0; + _push(``); + if (__props.filename) { + _push(`${ssrInterpolate(__props.filename)}`); + } else { + _push(``); + } + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(ssrRenderComponent(_component_ProseCodeCopyButton, { + show: hovered.value, + content: __props.code, + class: "copy-button" + }, null, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseCode.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseCode = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-0f086f28"]]); +const ProseCode$1 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: ProseCode +}); + +export { ProseCodeCopyButton as P, ProseCode$1 as a }; +//# sourceMappingURL=ProseCode-94b7281d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map new file mode 100644 index 00000000..1e8d78fe --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseCode-94b7281d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCode-94b7281d.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs new file mode 100644 index 00000000..3cfd0a62 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-924acf67"]]); + +export { __nuxt_component_1 as default }; +//# sourceMappingURL=ProseCodeInline-960b9a43.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map new file mode 100644 index 00000000..e7c6f885 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseCodeInline-960b9a43.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCodeInline-960b9a43.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,KAAA,EAAQ,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACvD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AACjB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4EAA4E,CAAA,CAAA;AACzJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs new file mode 100644 index 00000000..23716c5b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs @@ -0,0 +1,6 @@ +const ProseCodeInline_vue_vue_type_style_index_0_scoped_924acf67_transformed_true_lang = "code[data-v-924acf67]{background-color:var(--prose-code-inline-backgroundColor);border-radius:var(--prose-code-inline-borderRadius);color:var(--prose-code-inline-color);font-family:var(--typography-font-code);font-size:var(--prose-code-inline-fontSize);font-weight:var(--prose-code-inline-fontWeight);padding:var(--prose-code-inline-padding)}tbody code[data-v-924acf67]{font-size:var(--prose-tbody-code-inline-fontSize)}h1 a code[data-v-924acf67],h2 a code[data-v-924acf67],h3 a code[data-v-924acf67],h4 a code[data-v-924acf67],h5 a code[data-v-924acf67],h6 a code[data-v-924acf67]{border-radius:var(--prose-code-inline-borderRadius);color:inherit;font-size:.777777em;padding:.15em .5em}"; + +const ProseCodeInlineStyles_4873b751 = [ProseCodeInline_vue_vue_type_style_index_0_scoped_924acf67_transformed_true_lang]; + +export { ProseCodeInlineStyles_4873b751 as default }; +//# sourceMappingURL=ProseCodeInline-styles.4873b751.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map new file mode 100644 index 00000000..78172a74 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseCodeInline-styles.4873b751.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCodeInline-styles-1.mjs-f7e763e2.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCodeInline-styles.4873b751.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,gFAAmF,GAAA,irBAAA;;ACCzF,uCAAe,CAACA,gFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs b/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs new file mode 100644 index 00000000..f8ac05cb --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseEm.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseEm = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-b3b2ffd9"]]); + +export { ProseEm as default }; +//# sourceMappingURL=ProseEm-f52fc33d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map new file mode 100644 index 00000000..f97f6c8b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseEm-f52fc33d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseEm-f52fc33d.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs b/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs new file mode 100644 index 00000000..8e429082 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs @@ -0,0 +1,6 @@ +const ProseEm_vue_vue_type_style_index_0_scoped_b3b2ffd9_transformed_true_lang = "em[data-v-b3b2ffd9]{font-family:var(--typography-font-body);font-style:italic}"; + +const ProseEmStyles_0ce5f2c8 = [ProseEm_vue_vue_type_style_index_0_scoped_b3b2ffd9_transformed_true_lang]; + +export { ProseEmStyles_0ce5f2c8 as default }; +//# sourceMappingURL=ProseEm-styles.0ce5f2c8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map new file mode 100644 index 00000000..1fefbb62 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseEm-styles.0ce5f2c8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseEm-styles-1.mjs-c24c0eb6.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseEm-styles.0ce5f2c8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,gFAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs new file mode 100644 index 00000000..d919d656 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs @@ -0,0 +1,73 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseH1", + __ssrInlineRender: true, + props: { + id: null + }, + setup(__props) { + const { prose } = useAppConfig(); + const hasIcon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h1) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + const icon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h1) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + _push(``); + _push(ssrRenderComponent(_component_NuxtLink, { + href: `#${__props.id}` + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + if (unref(hasIcon)) { + _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true), + unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: unref(icon) + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH1.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseH1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d187dd3d"]]); + +export { ProseH1 as default }; +//# sourceMappingURL=ProseH1-81b8c44a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map new file mode 100644 index 00000000..5c9c2724 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH1-81b8c44a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH1-81b8c44a.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;AAgBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,SAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,EAAI,EAAA,IAAA;AAAA,GACN;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,KAAM,EAAA,GAAI,YAAa,EAAA,CAAA;AAC/B,IAAM,MAAA,OAAA,GAAU,SAAS,MAAM;AAC7B,MAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,MAAA,OAAA,CAAA,CAAS,KAAK,KAAS,IAAA,IAAA,GAAO,SAAS,KAAM,CAAA,EAAA,KAAO,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,IAAW,MAAA,CAAA,EAAA,GAAK,SAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,QAAa,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,IAAA,CAAA,CAAA;AAAA,KACvJ,CAAA,CAAA;AACD,IAAM,MAAA,IAAA,GAAO,SAAS,MAAM;AAC1B,MAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,MAAA,OAAA,CAAA,CAAS,KAAK,KAAS,IAAA,IAAA,GAAO,SAAS,KAAM,CAAA,EAAA,KAAO,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,IAAW,MAAA,CAAA,EAAA,GAAK,SAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,QAAa,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,IAAA,CAAA,CAAA;AAAA,KACvJ,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,mBAAsB,GAAA,kBAAA,CAAA;AAC5B,MAAA,MAAM,eAAkB,GAAA,oBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,UAAA,CAAW,EAAE,EAAA,EAAI,QAAQ,EAAG,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrF,MAAA,KAAA,CAAM,mBAAmB,mBAAqB,EAAA;AAAA,QAC5C,IAAA,EAAM,IAAI,OAAQ,CAAA,EAAA,CAAA,CAAA;AAAA,OACjB,EAAA;AAAA,QACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAC1E,YAAI,IAAA,KAAA,CAAM,OAAO,CAAG,EAAA;AAClB,cAAO,MAAA,CAAA,kBAAA,CAAmB,eAAiB,EAAA,EAAE,IAAM,EAAA,KAAA,CAAM,IAAI,CAAA,EAAK,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAAA,aACtF,MAAA;AACL,cAAA,MAAA,CAAO,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,aAClB;AAAA,WACK,MAAA;AACL,YAAO,OAAA;AAAA,cACL,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,cACnD,MAAM,OAAO,CAAA,IAAK,SAAU,EAAA,EAAG,YAAY,eAAiB,EAAA;AAAA,gBAC1D,GAAK,EAAA,CAAA;AAAA,gBACL,IAAA,EAAM,MAAM,IAAI,CAAA;AAAA,eAClB,EAAG,MAAM,CAAG,EAAA,CAAC,MAAM,CAAC,CAAA,IAAK,kBAAmB,CAAA,EAAA,EAAI,IAAI,CAAA;AAAA,aACtD,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,MAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AAAA,KACf,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,OAAA,+BAAsC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs new file mode 100644 index 00000000..62f26b79 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs @@ -0,0 +1,6 @@ +const ProseH1_vue_vue_type_style_index_0_scoped_d187dd3d_transformed_true_lang = "h1[data-v-d187dd3d]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h1-fontSize);font-weight:var(--prose-h1-fontWeight);letter-spacing:var(--prose-h1-letterSpacing);line-height:var(--prose-h1-lineHeight);margin:var(--prose-h1-margin)}h1[data-v-d187dd3d] .icon{display:inline-block;height:var(--prose-h1-iconSize);margin-left:12px;opacity:0;transition:opacity .1s;width:var(--prose-h1-iconSize)}h1 a[data-v-d187dd3d]:hover .icon{opacity:1}"; + +const ProseH1Styles_086fd4ea = [ProseH1_vue_vue_type_style_index_0_scoped_d187dd3d_transformed_true_lang]; + +export { ProseH1Styles_086fd4ea as default }; +//# sourceMappingURL=ProseH1-styles.086fd4ea.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map new file mode 100644 index 00000000..154b92fb --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH1-styles.086fd4ea.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH1-styles-1.mjs-87bf3693.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH1-styles.086fd4ea.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs new file mode 100644 index 00000000..24131295 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs @@ -0,0 +1,73 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseH2", + __ssrInlineRender: true, + props: { + id: null + }, + setup(__props) { + const { prose } = useAppConfig(); + const hasIcon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h2) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + const icon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h2) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + _push(``); + _push(ssrRenderComponent(_component_NuxtLink, { + href: `#${__props.id}` + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + if (unref(hasIcon)) { + _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true), + unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: unref(icon) + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH2.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseH2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-273f00cc"]]); + +export { ProseH2 as default }; +//# sourceMappingURL=ProseH2-abc0d7da.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map new file mode 100644 index 00000000..8d1fe1f2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH2-abc0d7da.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH2-abc0d7da.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs new file mode 100644 index 00000000..ed6b4032 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs @@ -0,0 +1,6 @@ +const ProseH2_vue_vue_type_style_index_0_scoped_273f00cc_transformed_true_lang = "h2[data-v-273f00cc]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h2-fontSize);font-weight:var(--prose-h2-fontWeight);letter-spacing:var(--prose-h2-letterSpacing);line-height:var(--prose-h2-lineHeight);margin:var(--prose-h2-margin)}h2[data-v-273f00cc] .icon{display:inline-block;height:var(--prose-h2-iconSize);margin-left:12px;opacity:0;transition:opacity .1s;width:var(--prose-h2-iconSize)}h2 a[data-v-273f00cc]:hover .icon{opacity:1}"; + +const ProseH2Styles_8ba56a52 = [ProseH2_vue_vue_type_style_index_0_scoped_273f00cc_transformed_true_lang]; + +export { ProseH2Styles_8ba56a52 as default }; +//# sourceMappingURL=ProseH2-styles.8ba56a52.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map new file mode 100644 index 00000000..1c3c1f94 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH2-styles.8ba56a52.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH2-styles-1.mjs-514a1e54.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH2-styles.8ba56a52.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs new file mode 100644 index 00000000..17c7f45b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs @@ -0,0 +1,73 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseH3", + __ssrInlineRender: true, + props: { + id: null + }, + setup(__props) { + const { prose } = useAppConfig(); + const hasIcon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h3) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + const icon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h3) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + _push(``); + _push(ssrRenderComponent(_component_NuxtLink, { + href: `#${__props.id}` + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + if (unref(hasIcon)) { + _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true), + unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: unref(icon) + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH3.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseH3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c013d38e"]]); + +export { ProseH3 as default }; +//# sourceMappingURL=ProseH3-6c54494a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map new file mode 100644 index 00000000..41f54b45 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH3-6c54494a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH3-6c54494a.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs new file mode 100644 index 00000000..4434557b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs @@ -0,0 +1,6 @@ +const ProseH3_vue_vue_type_style_index_0_scoped_c013d38e_transformed_true_lang = "h3[data-v-c013d38e]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h3-fontSize);font-weight:var(--prose-h3-fontWeight);letter-spacing:var(--prose-h3-letterSpacing);line-height:var(--prose-h3-lineHeight);margin:var(--prose-h3-margin)}h3[data-v-c013d38e] .icon{display:inline-block;height:var(--prose-h3-iconSize);margin-left:12px;opacity:0;transition:opacity .1s;width:var(--prose-h3-iconSize)}h3 a[data-v-c013d38e]:hover .icon{opacity:1}"; + +const ProseH3Styles_492ea689 = [ProseH3_vue_vue_type_style_index_0_scoped_c013d38e_transformed_true_lang]; + +export { ProseH3Styles_492ea689 as default }; +//# sourceMappingURL=ProseH3-styles.492ea689.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map new file mode 100644 index 00000000..73771b54 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH3-styles.492ea689.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH3-styles-1.mjs-b7666313.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH3-styles.492ea689.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs new file mode 100644 index 00000000..3116b6a0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs @@ -0,0 +1,73 @@ +import { _ as __nuxt_component_0$1 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseH4", + __ssrInlineRender: true, + props: { + id: null + }, + setup(__props) { + const { prose } = useAppConfig(); + const hasIcon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h4) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + const icon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h4) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0$1; + const _component_Icon = __nuxt_component_0$1$1; + _push(``); + _push(ssrRenderComponent(_component_NuxtLink, { + href: `#${__props.id}` + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + if (unref(hasIcon)) { + _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true), + unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: unref(icon) + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH4.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1e5a0afd"]]); + +export { __nuxt_component_0 as default }; +//# sourceMappingURL=ProseH4-4f0da863.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map new file mode 100644 index 00000000..c00a12df --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH4-4f0da863.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH4-4f0da863.js"],"sourcesContent":null,"names":["__nuxt_component_0$2"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs new file mode 100644 index 00000000..870fcf1a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs @@ -0,0 +1,6 @@ +const ProseH4_vue_vue_type_style_index_0_scoped_1e5a0afd_transformed_true_lang = "h4[data-v-1e5a0afd]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h4-fontSize);font-weight:var(--prose-h4-fontWeight);letter-spacing:var(--prose-h4-letterSpacing);line-height:var(--prose-h4-lineHeight);margin:var(--prose-h4-margin)}h4[data-v-1e5a0afd] .icon{display:inline-block;height:var(--prose-h4-iconSize);margin-left:10px;opacity:0;transition:opacity .1s;width:var(--prose-h4-iconSize)}h4 a[data-v-1e5a0afd]:hover .icon{opacity:1}"; + +const ProseH4Styles_68f135ad = [ProseH4_vue_vue_type_style_index_0_scoped_1e5a0afd_transformed_true_lang]; + +export { ProseH4Styles_68f135ad as default }; +//# sourceMappingURL=ProseH4-styles.68f135ad.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map new file mode 100644 index 00000000..36371b61 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH4-styles.68f135ad.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH4-styles-1.mjs-446a06e4.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH4-styles.68f135ad.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs new file mode 100644 index 00000000..d1163c65 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs @@ -0,0 +1,73 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseH5", + __ssrInlineRender: true, + props: { + id: null + }, + setup(__props) { + const { prose } = useAppConfig(); + const hasIcon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h5) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + const icon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h5) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + _push(``); + _push(ssrRenderComponent(_component_NuxtLink, { + href: `#${__props.id}` + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + if (unref(hasIcon)) { + _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true), + unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: unref(icon) + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH5.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseH5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-35e434df"]]); + +export { ProseH5 as default }; +//# sourceMappingURL=ProseH5-0c6e8cd8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map new file mode 100644 index 00000000..9418a8e7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH5-0c6e8cd8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH5-0c6e8cd8.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs new file mode 100644 index 00000000..ddf05f86 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs @@ -0,0 +1,6 @@ +const ProseH5_vue_vue_type_style_index_0_scoped_35e434df_transformed_true_lang = "h5[data-v-35e434df]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h5-fontSize);font-weight:var(--prose-h5-fontWeight);line-height:var(--prose-h5-lineHeight);margin:var(--prose-h5-margin)}h5[data-v-35e434df] .icon{display:inline-block;height:var(--prose-h5-iconSize);margin-left:8px;opacity:0;transition:opacity .1s;width:var(--prose-h5-iconSize)}h5 a[data-v-35e434df]:hover .icon{opacity:1}"; + +const ProseH5Styles_c63d0e8d = [ProseH5_vue_vue_type_style_index_0_scoped_35e434df_transformed_true_lang]; + +export { ProseH5Styles_c63d0e8d as default }; +//# sourceMappingURL=ProseH5-styles.c63d0e8d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map new file mode 100644 index 00000000..0208f372 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH5-styles.c63d0e8d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH5-styles-1.mjs-e81297f4.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH5-styles.c63d0e8d.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,yaAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs new file mode 100644 index 00000000..bfdf918e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs @@ -0,0 +1,73 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; +import { a as useAppConfig } from './useDocus-928368c4.mjs'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseH6", + __ssrInlineRender: true, + props: { + id: null + }, + setup(__props) { + const { prose } = useAppConfig(); + const hasIcon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h6) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + const icon = computed(() => { + var _a, _b; + return ((_a = prose == null ? void 0 : prose.h6) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1; + _push(``); + _push(ssrRenderComponent(_component_NuxtLink, { + href: `#${__props.id}` + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + if (unref(hasIcon)) { + _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true), + unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: unref(icon) + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH6.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseH6 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-dfc5fb9b"]]); + +export { ProseH6 as default }; +//# sourceMappingURL=ProseH6-cffb1b40.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map new file mode 100644 index 00000000..96dc3b4a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH6-cffb1b40.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH6-cffb1b40.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs new file mode 100644 index 00000000..21e1784b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs @@ -0,0 +1,6 @@ +const ProseH6_vue_vue_type_style_index_0_scoped_dfc5fb9b_transformed_true_lang = "h6[data-v-dfc5fb9b]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h6-fontSize);font-weight:var(--prose-h6-fontWeight);line-height:var(--prose-h6-lineHeight);margin:var(--prose-h6-margin)}h6[data-v-dfc5fb9b] .icon{display:inline-block;height:var(--prose-h6-iconSize);margin-left:8px;opacity:0;transition:opacity .1s;width:var(--prose-h6-iconSize)}h6 a[data-v-dfc5fb9b]:hover .icon{opacity:1}"; + +const ProseH6Styles_92c4d496 = [ProseH6_vue_vue_type_style_index_0_scoped_dfc5fb9b_transformed_true_lang]; + +export { ProseH6Styles_92c4d496 as default }; +//# sourceMappingURL=ProseH6-styles.92c4d496.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map new file mode 100644 index 00000000..61bfd278 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseH6-styles.92c4d496.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH6-styles-1.mjs-fb05331a.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH6-styles.92c4d496.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,yaAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs b/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs new file mode 100644 index 00000000..8e61f0d2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs @@ -0,0 +1,21 @@ +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseHr.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseHr = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-89dedb08"]]); + +export { ProseHr as default }; +//# sourceMappingURL=ProseHr-fa0af264.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map new file mode 100644 index 00000000..e6ba3629 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseHr-fa0af264.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseHr-fa0af264.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACvD,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs b/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs new file mode 100644 index 00000000..26a3b60a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs @@ -0,0 +1,6 @@ +const ProseHr_vue_vue_type_style_index_0_scoped_89dedb08_transformed_true_lang = "hr[data-v-89dedb08]{border-top:var(--prose-hr-width) var(--prose-hr-style) var(--prose-hr-color);margin:var(--prose-hr-margin)}"; + +const ProseHrStyles_22aa3717 = [ProseHr_vue_vue_type_style_index_0_scoped_89dedb08_transformed_true_lang]; + +export { ProseHrStyles_22aa3717 as default }; +//# sourceMappingURL=ProseHr-styles.22aa3717.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map new file mode 100644 index 00000000..e6517b34 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseHr-styles.22aa3717.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseHr-styles-1.mjs-5b9817c2.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseHr-styles.22aa3717.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,iIAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs b/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs new file mode 100644 index 00000000..ac7a3a70 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs @@ -0,0 +1,62 @@ +import { b as useRuntimeConfig } from './app.config-832f5f68.mjs'; +import { useSSRContext, defineComponent, computed, mergeProps, unref } from 'vue'; +import { withBase } from 'ufo'; +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ProseImg", + __ssrInlineRender: true, + props: { + src: { + type: String, + default: "" + }, + alt: { + type: String, + default: "" + }, + width: { + type: [String, Number], + default: void 0 + }, + height: { + type: [String, Number], + default: void 0 + } + }, + setup(__props) { + const props = __props; + const refinedSrc = computed(() => { + var _a; + if (((_a = props.src) == null ? void 0 : _a.startsWith("/")) && !props.src.startsWith("//")) { + return withBase(props.src, useRuntimeConfig().app.baseURL); + } + return props.src; + }); + return (_ctx, _push, _parent, _attrs) => { + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseImg.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseImg = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2ef15301"]]); + +export { ProseImg as default }; +//# sourceMappingURL=ProseImg-f3012414.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map new file mode 100644 index 00000000..9b1f8d4b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseImg-f3012414.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseImg-f3012414.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;AAYA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,GAAK,EAAA;AAAA,MACH,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,GAAK,EAAA;AAAA,MACH,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAA,EAAM,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,MACrB,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,IACA,MAAQ,EAAA;AAAA,MACN,IAAA,EAAM,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,MACrB,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAM,MAAA,UAAA,GAAa,SAAS,MAAM;AAChC,MAAI,IAAA,EAAA,CAAA;AACJ,MAAA,IAAA,CAAA,CAAM,EAAK,GAAA,KAAA,CAAM,GAAQ,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,UAAA,CAAW,GAAG,CAAA,KAAM,CAAC,KAAA,CAAM,GAAI,CAAA,UAAA,CAAW,IAAI,CAAG,EAAA;AAC3F,QAAA,OAAO,SAAS,KAAM,CAAA,GAAA,EAAK,gBAAiB,EAAA,CAAE,IAAI,OAAO,CAAA,CAAA;AAAA,OAC3D;AACA,MAAA,OAAO,KAAM,CAAA,GAAA,CAAA;AAAA,KACd,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,CAAO,IAAA,EAAA,cAAA,CAAe,UAAW,CAAA,IAAA,CAAK,MAAQ,EAAA;AAAA,QAClD,GAAA,EAAK,MAAM,UAAU,CAAA;AAAA,QACrB,KAAK,OAAQ,CAAA,GAAA;AAAA,QACb,OAAO,OAAQ,CAAA,KAAA;AAAA,QACf,QAAQ,OAAQ,CAAA,MAAA;AAAA,OAClB,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAAA,KAChC,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qEAAqE,CAAA,CAAA;AAClJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs new file mode 100644 index 00000000..8574fb09 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs @@ -0,0 +1,6 @@ +const ProseImg_vue_vue_type_style_index_0_scoped_2ef15301_transformed_true_lang = "img[data-v-2ef15301]{margin:var(--prose-img-margin)}"; + +const ProseImgStyles_cfb4616f = [ProseImg_vue_vue_type_style_index_0_scoped_2ef15301_transformed_true_lang]; + +export { ProseImgStyles_cfb4616f as default }; +//# sourceMappingURL=ProseImg-styles.cfb4616f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map new file mode 100644 index 00000000..dd1dfee0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseImg-styles.cfb4616f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseImg-styles-1.mjs-00994691.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseImg-styles.cfb4616f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,sDAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs b/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs new file mode 100644 index 00000000..582e27ed --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseLi.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseLi = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-4c2f5fb9"]]); + +export { ProseLi as default }; +//# sourceMappingURL=ProseLi-948accef.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map new file mode 100644 index 00000000..3cd7e31c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseLi-948accef.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseLi-948accef.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs b/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs new file mode 100644 index 00000000..dd0f8e7f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs @@ -0,0 +1,6 @@ +const ProseLi_vue_vue_type_style_index_0_scoped_4c2f5fb9_transformed_true_lang = "li[data-v-4c2f5fb9]{font-family:var(--typography-font-body);list-style-position:var(--prose-li-listStylePosition);margin:var(--prose-li-margin)}"; + +const ProseLiStyles_29062533 = [ProseLi_vue_vue_type_style_index_0_scoped_4c2f5fb9_transformed_true_lang]; + +export { ProseLiStyles_29062533 as default }; +//# sourceMappingURL=ProseLi-styles.29062533.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map new file mode 100644 index 00000000..2455faf9 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseLi-styles.29062533.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseLi-styles-1.mjs-7ea1110e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseLi-styles.29062533.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,kJAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs b/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs new file mode 100644 index 00000000..5feeae03 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseOl.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseOl = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-3f2b1bed"]]); + +export { ProseOl as default }; +//# sourceMappingURL=ProseOl-b8e80875.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map new file mode 100644 index 00000000..37f13de3 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseOl-b8e80875.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseOl-b8e80875.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs b/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs new file mode 100644 index 00000000..9be040b5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs @@ -0,0 +1,6 @@ +const ProseOl_vue_vue_type_style_index_0_scoped_3f2b1bed_transformed_true_lang = "ol[data-v-3f2b1bed]{font-family:var(--typography-font-body);list-style-type:var(--prose-ol-listStyleType);margin:var(--prose-ol-margin);padding:var(--prose-ol-padding)}ol[data-v-3f2b1bed]> li::marker{color:var(--prose-ol-li-markerColor)}ol[data-v-3f2b1bed]> li ol,ol[data-v-3f2b1bed]> li ul{margin:0}"; + +const ProseOlStyles_c085ed74 = [ProseOl_vue_vue_type_style_index_0_scoped_3f2b1bed_transformed_true_lang]; + +export { ProseOlStyles_c085ed74 as default }; +//# sourceMappingURL=ProseOl-styles.c085ed74.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map new file mode 100644 index 00000000..c7cba289 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseOl-styles.c085ed74.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseOl-styles-1.mjs-f1c4f1aa.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseOl-styles.c085ed74.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,8SAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs b/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs new file mode 100644 index 00000000..d6211043 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(`

    `); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseP.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-9dc9c102"]]); + +export { __nuxt_component_3 as default }; +//# sourceMappingURL=ProseP-a91aeff7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map new file mode 100644 index 00000000..eed9a6f6 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseP-a91aeff7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseP-a91aeff7.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,EAAA,EAAK,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACpD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAM,IAAA,CAAA,CAAA,CAAA;AACd,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs b/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs new file mode 100644 index 00000000..25ba3893 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs @@ -0,0 +1,6 @@ +const ProseP_vue_vue_type_style_index_0_scoped_9dc9c102_transformed_true_lang = 'p[data-v-9dc9c102]{font-family:var(--typography-font-body);font-size:var(--prose-p-fontSize);line-height:var(--prose-p-lineHeight);margin:var(--prose-p-margin)}p[data-v-9dc9c102] br{content:"";display:block;margin:var(--prose-p-br-margin)}'; + +const ProsePStyles_b304bfc7 = [ProseP_vue_vue_type_style_index_0_scoped_9dc9c102_transformed_true_lang]; + +export { ProsePStyles_b304bfc7 as default }; +//# sourceMappingURL=ProseP-styles.b304bfc7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map new file mode 100644 index 00000000..98376743 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseP-styles.b304bfc7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseP-styles-1.mjs-7f654e4b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseP-styles.b304bfc7.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uEAA0E,GAAA,iPAAA;;ACChF,8BAAe,CAACA,uEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs b/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs new file mode 100644 index 00000000..88c8666c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseStrong = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-84b57b07"]]); + +export { ProseStrong as default }; +//# sourceMappingURL=ProseStrong-246281a0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map new file mode 100644 index 00000000..4cf7b889 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseStrong-246281a0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseStrong-246281a0.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,OAAA,EAAU,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACzD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAW,SAAA,CAAA,CAAA,CAAA;AACnB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,wEAAwE,CAAA,CAAA;AACrJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,WAA8B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs new file mode 100644 index 00000000..051ecdb7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs @@ -0,0 +1,6 @@ +const ProseStrong_vue_vue_type_style_index_0_scoped_84b57b07_transformed_true_lang = "strong[data-v-84b57b07]{font-family:var(--typography-font-body);font-weight:var(--prose-strong-fontWeight)}"; + +const ProseStrongStyles_ec17e85f = [ProseStrong_vue_vue_type_style_index_0_scoped_84b57b07_transformed_true_lang]; + +export { ProseStrongStyles_ec17e85f as default }; +//# sourceMappingURL=ProseStrong-styles.ec17e85f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map new file mode 100644 index 00000000..c0ca0dfd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseStrong-styles.ec17e85f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseStrong-styles-1.mjs-63398faa.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseStrong-styles.ec17e85f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,4EAA+E,GAAA,6GAAA;;ACCrF,mCAAe,CAACA,4EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs new file mode 100644 index 00000000..71b7d190 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs @@ -0,0 +1,23 @@ +import { useSSRContext, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(`
    `); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTable.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-78f198db"]]); + +export { __nuxt_component_0 as default }; +//# sourceMappingURL=ProseTable-425d227b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map new file mode 100644 index 00000000..f48830ec --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTable-425d227b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTable-425d227b.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,eAAgB,EAAA,EAAG,MAAM,CAAC,CAA2C,CAAA,wCAAA,CAAA,CAAA,CAAA;AACrH,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAgB,cAAA,CAAA,CAAA,CAAA;AACxB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uEAAuE,CAAA,CAAA;AACpJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs new file mode 100644 index 00000000..5357a82f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs @@ -0,0 +1,6 @@ +const ProseTable_vue_vue_type_style_index_0_scoped_78f198db_transformed_true_lang = ".table-wrapper[data-v-78f198db]{margin:var(--prose-table-margin);max-width:100%;overflow-x:auto}table[data-v-78f198db]{font-family:var(--typography-font-body);font-size:var(--prose-table-fontSize);line-height:var(--prose-table-lineHeight);table-layout:auto;text-align:var(--prose-table-textAlign);width:100%}table[data-v-78f198db] code{white-space:nowrap}"; + +const ProseTableStyles_b377f50f = [ProseTable_vue_vue_type_style_index_0_scoped_78f198db_transformed_true_lang]; + +export { ProseTableStyles_b377f50f as default }; +//# sourceMappingURL=ProseTable-styles.b377f50f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map new file mode 100644 index 00000000..100ab5f0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTable-styles.b377f50f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTable-styles-1.mjs-2569cc7e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTable-styles.b377f50f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,qWAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs new file mode 100644 index 00000000..4754fdab --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_4 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { __nuxt_component_4 as default }; +//# sourceMappingURL=ProseTbody-f622755a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map new file mode 100644 index 00000000..608f4a4a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTbody-f622755a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTbody-f622755a.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,MAAA,EAAS,cAAe,CAAA,MAAM,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AACxC,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAU,QAAA,CAAA,CAAA,CAAA;AAClB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uEAAuE,CAAA,CAAA;AACpJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs new file mode 100644 index 00000000..ba64c21e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTd.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-281e7d4a"]]); + +export { __nuxt_component_5 as default }; +//# sourceMappingURL=ProseTd-ce60dd42.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map new file mode 100644 index 00000000..9a707a82 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTd-ce60dd42.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTd-ce60dd42.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs new file mode 100644 index 00000000..d1cf25fb --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs @@ -0,0 +1,6 @@ +const ProseTd_vue_vue_type_style_index_0_scoped_281e7d4a_transformed_true_lang = "tbody td[data-v-281e7d4a]{font-family:var(--typography-font-body);padding:var(--prose-tbody-td-padding)}tbody td[data-v-281e7d4a]:first-child{padding-left:0}tbody td[data-v-281e7d4a]:last-child{padding-right:0}"; + +const ProseTdStyles_2b89033a = [ProseTd_vue_vue_type_style_index_0_scoped_281e7d4a_transformed_true_lang]; + +export { ProseTdStyles_2b89033a as default }; +//# sourceMappingURL=ProseTd-styles.2b89033a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map new file mode 100644 index 00000000..359cae0c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTd-styles.2b89033a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTd-styles-1.mjs-7e5a80a0.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTd-styles.2b89033a.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,oNAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs new file mode 100644 index 00000000..16bfe484 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTh.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-269b758d"]]); + +export { __nuxt_component_3 as default }; +//# sourceMappingURL=ProseTh-8250ce9f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map new file mode 100644 index 00000000..0d8725bc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTh-8250ce9f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTh-8250ce9f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs new file mode 100644 index 00000000..24776316 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs @@ -0,0 +1,6 @@ +const ProseTh_vue_vue_type_style_index_0_scoped_269b758d_transformed_true_lang = "th[data-v-269b758d]{color:var(--prose-th-color);font-family:var(--typography-font-display);font-weight:var(--prose-th-fontWeight);padding:var(--prose-th-padding)}th[data-v-269b758d]:first-child{padding-left:0}th[data-v-269b758d]:last-child{padding-right:0}"; + +const ProseThStyles_9ccb956b = [ProseTh_vue_vue_type_style_index_0_scoped_269b758d_transformed_true_lang]; + +export { ProseThStyles_9ccb956b as default }; +//# sourceMappingURL=ProseTh-styles.9ccb956b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map new file mode 100644 index 00000000..8e83cf2d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTh-styles.9ccb956b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTh-styles-1.mjs-5817f014.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTh-styles.9ccb956b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,kQAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs b/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs new file mode 100644 index 00000000..a05c6908 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseThead.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-81e7d1ab"]]); + +export { __nuxt_component_1 as default }; +//# sourceMappingURL=ProseThead-7ba76e48.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map new file mode 100644 index 00000000..7696a6c9 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseThead-7ba76e48.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseThead-7ba76e48.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,MAAA,EAAS,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACxD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAU,QAAA,CAAA,CAAA,CAAA;AAClB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uEAAuE,CAAA,CAAA;AACpJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs b/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs new file mode 100644 index 00000000..0e78f0ca --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs @@ -0,0 +1,6 @@ +const ProseThead_vue_vue_type_style_index_0_scoped_81e7d1ab_transformed_true_lang = "thead[data-v-81e7d1ab]{border-color:var(--prose-thead-border-color);border-bottom-color:var(--prose-thead-borderBottom-color);border-style:var(--prose-thead-border-style);border-bottom-style:var(--prose-thead-borderBottom-style);border-width:var(--prose-thead-border-width);border-bottom:var(--prose-thead-borderBottom-width);font-family:var(--typography-font-display)}"; + +const ProseTheadStyles_319de3db = [ProseThead_vue_vue_type_style_index_0_scoped_81e7d1ab_transformed_true_lang]; + +export { ProseTheadStyles_319de3db as default }; +//# sourceMappingURL=ProseThead-styles.319de3db.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map new file mode 100644 index 00000000..b9fee9e7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseThead-styles.319de3db.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseThead-styles-1.mjs-ef3c8ba8.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseThead-styles.319de3db.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,mXAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs new file mode 100644 index 00000000..da92dbfe --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTr.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-759aaa1b"]]); + +export { __nuxt_component_2 as default }; +//# sourceMappingURL=ProseTr-6559f7d8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map new file mode 100644 index 00000000..1847239a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTr-6559f7d8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTr-6559f7d8.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs new file mode 100644 index 00000000..5cac703b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs @@ -0,0 +1,6 @@ +const ProseTr_vue_vue_type_style_index_0_scoped_759aaa1b_transformed_true_lang = "tbody tr[data-v-759aaa1b]{border-bottom:var(--prose-tbody-tr-borderBottom-width) var(--prose-tbody-tr-borderBottom-style) var(--prose-tbody-tr-borderBottom-color)}"; + +const ProseTrStyles_755e9793 = [ProseTr_vue_vue_type_style_index_0_scoped_759aaa1b_transformed_true_lang]; + +export { ProseTrStyles_755e9793 as default }; +//# sourceMappingURL=ProseTr-styles.755e9793.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map new file mode 100644 index 00000000..19db25a5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseTr-styles.755e9793.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTr-styles-1.mjs-a1b9d693.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTr-styles.755e9793.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,qKAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs b/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs new file mode 100644 index 00000000..b422f577 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs @@ -0,0 +1,23 @@ +import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseUl.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const ProseUl = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-bb83f3b0"]]); + +export { ProseUl as default }; +//# sourceMappingURL=ProseUl-79ecc4c5.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map new file mode 100644 index 00000000..0a662af7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseUl-79ecc4c5.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseUl-79ecc4c5.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs b/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs new file mode 100644 index 00000000..a3d2efff --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs @@ -0,0 +1,6 @@ +const ProseUl_vue_vue_type_style_index_0_scoped_bb83f3b0_transformed_true_lang = "ul[data-v-bb83f3b0]{font-family:var(--typography-font-body);list-style-type:var(--prose-ul-listStyleType);margin:var(--prose-ul-margin);padding:var(--prose-ul-padding)}ul[data-v-bb83f3b0]> li::marker{color:var(--prose-ul-li-markerColor)}ul[data-v-bb83f3b0]> li ol,ul[data-v-bb83f3b0]> li ul{margin:0}"; + +const ProseUlStyles_2d31952c = [ProseUl_vue_vue_type_style_index_0_scoped_bb83f3b0_transformed_true_lang]; + +export { ProseUlStyles_2d31952c as default }; +//# sourceMappingURL=ProseUl-styles.2d31952c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map new file mode 100644 index 00000000..966f41d7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ProseUl-styles.2d31952c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseUl-styles-1.mjs-d75b8b12.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseUl-styles.2d31952c.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,8SAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs b/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs new file mode 100644 index 00000000..93f6611a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs @@ -0,0 +1,86 @@ +import __nuxt_component_2 from './Alert-2b29f746.mjs'; +import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { defineComponent, computed, withCtx, unref, createTextVNode, toDisplayString, createVNode, useSSRContext } from 'vue'; +import { ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; +import { splitByCase, upperFirst } from 'scule'; +import './ContentSlot-deb25102.mjs'; +import 'ufo'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "ReadMore", + __ssrInlineRender: true, + props: { + link: { + type: String, + required: true + }, + title: { + type: String, + required: false, + default: void 0 + } + }, + setup(__props) { + const props = __props; + const createTitle = (title, link) => title || link.split("/").filter(Boolean).map((part) => splitByCase(part).map((p) => upperFirst(p)).join(" ")).join(" > ").replace("Api", "API"); + const computedTitle = computed(() => createTitle(props.title, props.link)); + return (_ctx, _push, _parent, _attrs) => { + const _component_Alert = __nuxt_component_2; + const _component_Icon = __nuxt_component_0$1; + const _component_NuxtLink = __nuxt_component_0; + _push(ssrRenderComponent(_component_Alert, _attrs, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(ssrRenderComponent(_component_Icon, { name: "heroicons-outline:window" }, null, _parent2, _scopeId)); + _push2(` Read more in `); + _push2(ssrRenderComponent(_component_NuxtLink, { to: __props.link }, { + default: withCtx((_2, _push3, _parent3, _scopeId2) => { + if (_push3) { + _push3(`${ssrInterpolate(unref(computedTitle))}`); + } else { + return [ + createTextVNode(toDisplayString(unref(computedTitle)), 1) + ]; + } + }), + _: 1 + }, _parent2, _scopeId)); + _push2(`. `); + } else { + return [ + createVNode(_component_Icon, { name: "heroicons-outline:window" }), + createTextVNode(" Read more in "), + createVNode(_component_NuxtLink, { to: __props.link }, { + default: withCtx(() => [ + createTextVNode(toDisplayString(unref(computedTitle)), 1) + ]), + _: 1 + }, 8, ["to"]), + createTextVNode(". ") + ]; + } + }), + _: 1 + }, _parent)); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/ReadMore.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=ReadMore-4e2f1622.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map b/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map new file mode 100644 index 00000000..650e1837 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ReadMore-4e2f1622.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ReadMore-4e2f1622.js"],"sourcesContent":null,"names":["__nuxt_component_0","__nuxt_component_0$1"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs b/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs new file mode 100644 index 00000000..ce620005 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs @@ -0,0 +1,111 @@ +import __nuxt_component_0 from './TabsHeader-c9b56dab.mjs'; +import { u as useColorMode } from '../server.mjs'; +import { useSSRContext, defineComponent, ref, computed, mergeProps, unref } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderAttr } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import 'ofetch'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import '../../nitro/config.mjs'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Sandbox", + __ssrInlineRender: true, + props: { + src: { + type: String, + default: "" + }, + repo: { + type: String, + default: "" + }, + branch: { + type: String, + default: "" + }, + dir: { + type: String, + default: "" + }, + file: { + type: String, + default: "app.vue" + } + }, + setup(__props) { + const props = __props; + const colorMode = useColorMode(); + const providers = { + CodeSandBox: () => `https://codesandbox.io/embed/github/${props.repo}/tree/${props.branch}/${props.dir}?hidenavigation=1&theme=${colorMode.value}`, + StackBlitz: () => `https://stackblitz.com/github/${props.repo}/tree/${props.branch}/${props.dir}?embed=1&file=${props.file}&theme=${colorMode.value}` + }; + const providersTabs = Object.keys(providers).map((p) => ({ label: p })); + const activeTabIndex = ref(-1); + const tabs = ref(); + const url = ref(""); + const provider = ref(""); + const changeProvider = (value) => { + provider.value = value; + url.value = props.src || providers[provider.value](); + localStorage.setItem("docus_sandbox", value); + }; + computed(() => { + var _a; + return (_a = url.value) == null ? void 0 : _a.replace("?embed=1&", "?").replace("/embed/", "/s/"); + }); + const updateTab = (i) => { + activeTabIndex.value = i; + changeProvider(providersTabs[i].label); + }; + return (_ctx, _push, _parent, _attrs) => { + const _component_TabsHeader = __nuxt_component_0; + _push(``); + if (!__props.src) { + _push(ssrRenderComponent(_component_TabsHeader, { + ref_key: "tabs", + ref: tabs, + "active-tab-index": unref(activeTabIndex), + tabs: unref(providersTabs), + "onUpdate:activeTabIndex": updateTab + }, null, _parent)); + } else { + _push(``); + } + if (unref(url)) { + _push(``); + } else { + _push(`Loading Sandbox...`); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const Sandbox = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-90b7615f"]]); + +export { Sandbox as default }; +//# sourceMappingURL=Sandbox-3e5bdd00.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map b/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map new file mode 100644 index 00000000..835f7ab1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Sandbox-3e5bdd00.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Sandbox-3e5bdd00.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs b/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs new file mode 100644 index 00000000..037b3c34 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs @@ -0,0 +1,6 @@ +const Sandbox_vue_vue_type_style_index_0_scoped_90b7615f_transformed_true_lang = ".sandbox[data-v-90b7615f]{--sandbox-height:700px;background:var(--elements-surface-background-base);border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-md);font-size:var(--text-3xl-fontSize);height:700px;height:var(--sandbox-height);line-height:var(--text-3xl-lineHeight)}.sandbox[data-v-90b7615f],.sandbox iframe[data-v-90b7615f]{overflow:hidden;width:100%}.sandbox iframe[data-v-90b7615f]{height:100%}"; + +const SandboxStyles_b322716f = [Sandbox_vue_vue_type_style_index_0_scoped_90b7615f_transformed_true_lang]; + +export { SandboxStyles_b322716f as default }; +//# sourceMappingURL=Sandbox-styles.b322716f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map b/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map new file mode 100644 index 00000000..689a9f11 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Sandbox-styles.b322716f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Sandbox-styles-1.mjs-62335cd0.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Sandbox-styles.b322716f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,obAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs b/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs new file mode 100644 index 00000000..e4abd226 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs @@ -0,0 +1,33 @@ +import __nuxt_component_3 from './ProseP-a91aeff7.mjs'; +import { defineComponent, useSSRContext } from 'vue'; +import { ssrRenderComponent } from 'vue/server-renderer'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "SourceLink", + __ssrInlineRender: true, + props: { + source: { + type: String, + required: true + } + }, + setup(__props) { + return (_ctx, _push, _parent, _attrs) => { + const _component_ProseP = __nuxt_component_3; + _push(ssrRenderComponent(_component_ProseP, _attrs, null, _parent)); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=SourceLink-c27fde85.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map b/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map new file mode 100644 index 00000000..6fadd509 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"SourceLink-c27fde85.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/SourceLink-c27fde85.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;AAOA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,iBAAoB,GAAA,kBAAA,CAAA;AAC1B,MAAA,KAAA,CAAM,kBAAmB,CAAA,iBAAA,EAAmB,MAAQ,EAAA,IAAA,EAAM,OAAO,CAAC,CAAA,CAAA;AAAA,KACpE,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs b/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs new file mode 100644 index 00000000..93acf368 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs @@ -0,0 +1,72 @@ +import { useSSRContext, defineComponent, ref, watch, mergeProps } from 'vue'; +import { ssrRenderAttrs, ssrRenderList, ssrRenderClass, ssrInterpolate, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "TabsHeader", + __ssrInlineRender: true, + props: { + tabs: { + type: Array, + required: true + }, + activeTabIndex: { + type: Number, + required: true + } + }, + emits: ["update:activeTabIndex"], + setup(__props, { emit }) { + const props = __props; + const tabsRef = ref(); + const highlightUnderline = ref(); + const updateHighlightUnderlinePosition = (activeTab) => { + if (!activeTab) { + return; + } + highlightUnderline.value.style.left = `${activeTab.offsetLeft}px`; + highlightUnderline.value.style.width = `${activeTab.clientWidth}px`; + }; + watch( + tabsRef, + (newVal) => { + if (!newVal) { + return; + } + setTimeout(() => { + updateHighlightUnderlinePosition(tabsRef.value.children[props.activeTabIndex]); + }, 50); + }, + { + immediate: true + } + ); + return (_ctx, _push, _parent, _attrs) => { + _push(``); + if (__props.tabs) { + _push(`
    `); + ssrRenderList(__props.tabs, ({ label }, i) => { + _push(``); + }); + _push(`
    `); + } else { + _push(``); + } + ssrRenderSlot(_ctx.$slots, "footer", {}, null, _push, _parent); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-fa060d5c"]]); + +export { __nuxt_component_0 as default }; +//# sourceMappingURL=TabsHeader-c9b56dab.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map b/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map new file mode 100644 index 00000000..0460c49e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"TabsHeader-c9b56dab.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TabsHeader-c9b56dab.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs b/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs new file mode 100644 index 00000000..90639aeb --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs @@ -0,0 +1,6 @@ +const TabsHeader_vue_vue_type_style_index_0_scoped_fa060d5c_transformed_true_lang = ".tabs-header[data-v-fa060d5c]{background:var(--color-gray-200);color:var(--color-red-700);position:relative}:root.dark .tabs-header[data-v-fa060d5c]{background:var(--color-gray-800);color:var(--color-red-500)}.tabs-header .tabs[data-v-fa060d5c]{display:flex;overflow-x:auto;padding-left:var(--space-2);padding-right:var(--space-2);position:relative;z-index:0}.tabs-header .tabs button[data-v-fa060d5c]{font-family:var(--font-mono);font-size:var(--text-sm-fontSize);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-sm-lineHeight);padding:var(--space-rem-625) var(--space-4);position:relative;transition:color .1s,background .1s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tabs-header .tabs button.not-active[data-v-fa060d5c]{color:var(--color-gray-700)}.tabs-header .tabs button.not-active[data-v-fa060d5c]:hover{background:var(--color-gray-300);color:var(--color-gray-800)}:root.dark .tabs-header .tabs button.not-active[data-v-fa060d5c]{color:var(--color-gray-200)}:root.dark .tabs-header .tabs button.not-active[data-v-fa060d5c]:hover{background:var(--color-gray-700);color:var(--color-gray-200)}.tabs-header .tabs button.active[data-v-fa060d5c]{color:var(--color-gray-500)}:root.dark .tabs-header .tabs button.active[data-v-fa060d5c]{color:var(--color-gray-300)}.tabs-header .tabs .highlight-underline[data-v-fa060d5c]{height:100%;position:absolute;top:0;transition:left .15s,width .15s;z-index:-1}.tabs-header .tabs .highlight-underline .tab[data-v-fa060d5c]{background-color:var(--color-gray-100);display:flex;height:100%;width:100%}:root.dark .tabs-header .tabs .highlight-underline .tab[data-v-fa060d5c]{background-color:var(--color-gray-900)}"; + +const TabsHeaderStyles_06000801 = [TabsHeader_vue_vue_type_style_index_0_scoped_fa060d5c_transformed_true_lang]; + +export { TabsHeaderStyles_06000801 as default }; +//# sourceMappingURL=TabsHeader-styles.06000801.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map b/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map new file mode 100644 index 00000000..27616b12 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"TabsHeader-styles.06000801.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TabsHeader-styles-1.mjs-4be63dff.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TabsHeader-styles.06000801.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,ypDAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs b/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs new file mode 100644 index 00000000..61db6f15 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs @@ -0,0 +1,47 @@ +import { useSSRContext, defineComponent, ref, mergeProps, unref } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; +import { u as useClipboard } from './index-1624a23e.mjs'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "Terminal", + __ssrInlineRender: true, + props: { + content: { + type: String, + required: true + } + }, + setup(__props) { + useClipboard(); + const state = ref("init"); + return (_ctx, _push, _parent, _attrs) => { + _push(``); + if (unref(state) === "copied") { + _push(`
    Copied!
    `); + } else { + _push(``); + } + _push(`
    Bash
    $${ssrInterpolate(__props.content)}
    `); + if (unref(state) !== "copied") { + _push(`
    Click to copy
    `); + } else { + _push(``); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Terminal.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d84ad68b"]]); + +export { __nuxt_component_2 as default }; +//# sourceMappingURL=Terminal-35e8f795.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map b/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map new file mode 100644 index 00000000..78438112 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Terminal-35e8f795.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Terminal-35e8f795.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;AAOA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAa,YAAA,EAAA,CAAA;AACb,IAAM,MAAA,KAAA,GAAQ,IAAI,MAAM,CAAA,CAAA;AACxB,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,UAAW,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACzF,MAAI,IAAA,KAAA,CAAM,KAAK,CAAA,KAAM,QAAU,EAAA;AAC7B,QAAA,KAAA,CAAM,CAAyI,uIAAA,CAAA,CAAA,CAAA;AAAA,OAC1I,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,KAAA,CAAM,CAA8U,2UAAA,EAAA,cAAA,CAAe,OAAQ,CAAA,OAAO,CAAgB,CAAA,aAAA,CAAA,CAAA,CAAA;AAClY,MAAI,IAAA,KAAA,CAAM,KAAK,CAAA,KAAM,QAAU,EAAA;AAC7B,QAAA,KAAA,CAAM,CAA2D,yDAAA,CAAA,CAAA,CAAA;AAAA,OAC5D,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs b/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs new file mode 100644 index 00000000..e3a38354 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs @@ -0,0 +1,6 @@ +const Terminal_vue_vue_type_style_index_0_scoped_d84ad68b_transformed_true_lang = ".terminal[data-v-d84ad68b]{background:var(--elements-surface-background-base);border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-lg);cursor:pointer;display:flex;flex-direction:column;height:var(--space-64);overflow:hidden;position:relative;width:100%}.terminal .copied[data-v-d84ad68b]{align-items:center;display:flex;justify-content:center;z-index:10}.terminal .copied[data-v-d84ad68b],.terminal .copied .scrim[data-v-d84ad68b]{height:100%;left:0;position:absolute;top:0;width:100%}.terminal .copied .scrim[data-v-d84ad68b]{background:var(--color-gray-500);opacity:.75}:root.dark .terminal .copied .scrim[data-v-d84ad68b]{background:var(--color-gray-900)}.terminal .copied .content[data-v-d84ad68b]{color:var(--color-gray-100);font-size:var(--fontSize-lg);font-weight:var(--fontWeight-semibold);z-index:10}.terminal .header[data-v-d84ad68b]{align-items:center;border-bottom:1px solid var(--elements-border-secondary-static);display:flex;height:var(--space-12);position:relative;width:100%}.terminal .header .controls[data-v-d84ad68b]{display:flex;margin-left:var(--space-4)}.terminal .header .controls div[data-v-d84ad68b]:first-child{background:var(--color-red-400);border-radius:var(--radii-full);height:var(--space-3);width:var(--space-3)}.terminal .header .controls div[data-v-d84ad68b]:nth-child(2){background:var(--color-yellow-400)}.terminal .header .controls div[data-v-d84ad68b]:nth-child(2),.terminal .header .controls div[data-v-d84ad68b]:nth-child(3){border-radius:var(--radii-full);height:var(--space-3);margin-left:var(--space-2);width:var(--space-3)}.terminal .header .controls div[data-v-d84ad68b]:nth-child(3){background:var(--color-green-400)}.terminal .header .title[data-v-d84ad68b]{align-items:center;display:flex;font-family:var(--font-mono);font-weight:var(--fontWeight-semibold);height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.terminal .window[data-v-d84ad68b]{display:flex;flex:1 1 0%;font-family:var(--font-mono);font-size:var(--text-sm-fontSize);padding:var(--space-4)}.terminal .window .sign[data-v-d84ad68b]{display:inline-block;font-weight:var(--fontWeight-bold);margin-right:var(--space-2);-webkit-user-select:none;-moz-user-select:none;user-select:none}.terminal .window .content[data-v-d84ad68b]{display:inline-block}.terminal .prompt[data-v-d84ad68b]{font-weight:var(--fontWeight-semibold);opacity:0;padding-bottom:var(--space-2);padding-top:var(--space-2);text-align:center}.terminal:hover .prompt[data-v-d84ad68b]{opacity:1}"; + +const TerminalStyles_a4b76b2e = [Terminal_vue_vue_type_style_index_0_scoped_d84ad68b_transformed_true_lang]; + +export { TerminalStyles_a4b76b2e as default }; +//# sourceMappingURL=Terminal-styles.a4b76b2e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map b/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map new file mode 100644 index 00000000..368d34ea --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"Terminal-styles.a4b76b2e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Terminal-styles-1.mjs-3b670618.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Terminal-styles.a4b76b2e.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,69EAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs b/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs new file mode 100644 index 00000000..e15543d2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs @@ -0,0 +1,6 @@ +const ThemeSelect_vue_vue_type_style_index_0_scoped_4a6c39b0_transformed_true_lang = "button[data-v-4a6c39b0]{color:var(--color-gray-500);display:flex;padding:var(--space-4)}:root.dark button[data-v-4a6c39b0]{color:var(--color-gray-400)}button[data-v-4a6c39b0]:hover{color:var(--color-gray-700)}:root.dark button[data-v-4a6c39b0]:hover{color:var(--color-gray-200)}"; + +const ThemeSelectStyles_d47092b1 = [ThemeSelect_vue_vue_type_style_index_0_scoped_4a6c39b0_transformed_true_lang]; + +export { ThemeSelectStyles_d47092b1 as default }; +//# sourceMappingURL=ThemeSelect-styles.d47092b1.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map b/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map new file mode 100644 index 00000000..002ccbc6 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"ThemeSelect-styles.d47092b1.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ThemeSelect-styles-1.mjs-cb8d88fe.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ThemeSelect-styles.d47092b1.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,4EAA+E,GAAA,wRAAA;;ACCrF,mCAAe,CAACA,4EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs b/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs new file mode 100644 index 00000000..672ed15d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs @@ -0,0 +1,26 @@ +import { defineComponent, unref, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; +import { d as usePinceauTheme } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "TokensPlayground", + __ssrInlineRender: true, + setup(__props) { + const { theme } = usePinceauTheme(); + return (_ctx, _push, _parent, _attrs) => { + _push(`
    ${ssrInterpolate(JSON.stringify(unref(theme), null, 2))}
    `); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=TokensPlayground-84b52014.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map b/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map new file mode 100644 index 00000000..30a67395 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"TokensPlayground-84b52014.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TokensPlayground-84b52014.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,kBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,KAAM,EAAA,GAAI,eAAgB,EAAA,CAAA;AAClC,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,CAAO,IAAA,EAAA,cAAA,CAAe,MAAM,CAAA,CAAA,MAAA,EAAU,cAAe,CAAA,IAAA,CAAK,SAAU,CAAA,KAAA,CAAM,KAAK,CAAA,EAAG,IAAM,EAAA,CAAC,CAAC,CAAe,CAAA,YAAA,CAAA,CAAA,CAAA;AAAA,KACjH,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yEAAyE,CAAA,CAAA;AACtJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs new file mode 100644 index 00000000..2b1af00f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs @@ -0,0 +1,108 @@ +import _sfc_main$1 from './NuxtImg-89991070.mjs'; +import { useSSRContext, defineComponent, computed, ref, mergeProps, unref } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderAttr, ssrRenderList, ssrIncludeBooleanAttr } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "VideoPlayer", + __ssrInlineRender: true, + props: { + poster: { + type: String, + default: "" + }, + src: { + type: String, + default: "" + }, + sources: { + type: Array, + default: () => [] + }, + autoplay: { + type: Boolean, + default: false + } + }, + setup(__props) { + const props = __props; + const provider = computed(() => { + if (props.src && props.src.includes("youtube.com/watch")) { + const match = props.src.match(/\?v=([^&]*)/); + return { + name: "youtube", + src: `https://www.youtube-nocookie.com/embed/${(match == null ? void 0 : match[1]) || ""}?autoplay=1`, + poster: props.poster || `https://i3.ytimg.com/vi/${(match == null ? void 0 : match[1]) || ""}/hqdefault.jpg` + }; + } + }); + const loaded = ref(false); + if (!props.src && !props.sources.length) { + throw new Error("VideoPlayer: you need to provide either `src` or `sources` props"); + } + const src = computed(() => { + var _a, _b; + return props.src || ((_b = (_a = props.sources) == null ? void 0 : _a[0]) == null ? void 0 : _b.src) || false; + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtImg = _sfc_main$1; + _push(``); + if (unref(provider) ? unref(provider).poster : __props.poster) { + _push(ssrRenderComponent(_component_NuxtImg, { + src: unref(provider) ? unref(provider).poster : __props.poster + }, null, _parent)); + } else { + _push(``); + } + if (unref(loaded)) { + _push(`
    `); + if (!unref(provider)) { + _push(``); + if (unref(src)) { + _push(``); + } else { + _push(``); + } + _push(``); + ssrRenderList(__props.sources, (source) => { + _push(``); + }); + _push(``); + } else if (unref(provider).name === "youtube") { + _push(``); + } else { + _push(``); + } + _push(`
    `); + } else { + _push(``); + } + if (!unref(loaded)) { + _push(`
    `); + } else { + _push(``); + } + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const VideoPlayer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3c798ec4"]]); + +export { VideoPlayer as default }; +//# sourceMappingURL=VideoPlayer-2b282302.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map new file mode 100644 index 00000000..84b39fe7 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"VideoPlayer-2b282302.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VideoPlayer-2b282302.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs new file mode 100644 index 00000000..b3aa728e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs @@ -0,0 +1,6 @@ +const VideoPlayer_vue_vue_type_style_index_0_scoped_3c798ec4_transformed_true_lang = `.video-player[data-v-3c798ec4]{background:var(--color-gray-900);border-radius:var(--radii-lg);display:inline-block;margin-bottom:var(--space-8);margin-top:var(--space-8);overflow:hidden;position:relative}.video-player .loaded[data-v-3c798ec4]{height:100%;left:0;position:absolute;top:0;width:100%}.video-player video[data-v-3c798ec4]{width:100%}.video-player iframe[data-v-3c798ec4]{height:100%;width:100%}.video-player .play-button[data-v-3c798ec4]{cursor:pointer;height:100%;left:0;position:absolute;top:0;width:100%}.video-player .play-button button[data-v-3c798ec4]{background-color:transparent;background-image:url('data:image/svg+xml;utf8,');background-position:50%;background-repeat:no-repeat;filter:grayscale(100%);height:var(--space-24);left:50%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0);transition:filter .1s cubic-bezier(0,0,.2,1);width:var(--space-24);z-index:1}.video-player .play-button:hover button[data-v-3c798ec4]{filter:none}`; + +const VideoPlayerStyles_956d04fb = [VideoPlayer_vue_vue_type_style_index_0_scoped_3c798ec4_transformed_true_lang]; + +export { VideoPlayerStyles_956d04fb as default }; +//# sourceMappingURL=VideoPlayer-styles.956d04fb.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map new file mode 100644 index 00000000..ed515408 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"VideoPlayer-styles.956d04fb.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VideoPlayer-styles-1.mjs-277ef9d5.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VideoPlayer-styles.956d04fb.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,4EAA+E,GAAA,CAAA,66CAAA,CAAA;;ACCrF,mCAAe,CAACA,4EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs new file mode 100644 index 00000000..fdee42c3 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs @@ -0,0 +1,32 @@ +import { defineComponent, computed, mergeProps, unref, useSSRContext } from 'vue'; +import { ssrRenderAttrs } from 'vue/server-renderer'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "VoltaBoard", + __ssrInlineRender: true, + props: { + token: { + type: String, + required: true + } + }, + setup(__props) { + const props = __props; + const src = computed(() => `https://volta.net/embed/${props.token}`); + return (_ctx, _push, _parent, _attrs) => { + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=VoltaBoard-98820156.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map new file mode 100644 index 00000000..4ca9d48c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"VoltaBoard-98820156.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VoltaBoard-98820156.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAA,MAAM,GAAM,GAAA,QAAA,CAAS,MAAM,CAAA,wBAAA,EAA2B,MAAM,KAAO,CAAA,CAAA,CAAA,CAAA;AACnE,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,OAAA,EAAU,eAAe,UAAW,CAAA;AAAA,QACxC,GAAA,EAAK,MAAM,GAAG,CAAA;AAAA,QACd,KAAO,EAAA,QAAA;AAAA,OACT,EAAG,MAAM,CAAC,CAAa,CAAA,UAAA,CAAA,CAAA,CAAA;AAAA,KACzB,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs new file mode 100644 index 00000000..44c54ee2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs @@ -0,0 +1,6 @@ +const VoltaBoard_vue_vue_type_style_index_0_transformed_true_lang = "iframe{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;border-radius:var(--radii-md);color:var(--elements-state-primary-color-primary)!important;min-height:66.66667vh;width:var(--size-full)}iframe :deep(p code){background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}iframe :deep(code){background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}iframe :deep(a code){border-color:var(--elements-state-primary-borderColor-primary)!important}iframe :deep(a){border-color:currentColor}iframe :deep(a) code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}iframe :deep(a):hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}iframe :deep(a):hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}"; + +const VoltaBoardStyles_0de509eb = [VoltaBoard_vue_vue_type_style_index_0_transformed_true_lang]; + +export { VoltaBoardStyles_0de509eb as default }; +//# sourceMappingURL=VoltaBoard-styles.0de509eb.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map new file mode 100644 index 00000000..8777f517 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"VoltaBoard-styles.0de509eb.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VoltaBoard-styles-1.mjs-467cd62b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VoltaBoard-styles.0de509eb.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2DAA8D,GAAA,+sCAAA;;ACCpE,kCAAe,CAACA,2DAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs b/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs new file mode 100644 index 00000000..d788aa4c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs @@ -0,0 +1,530 @@ +import { reactive, getCurrentInstance, inject, defineComponent, computed, ref, h, resolveComponent } from 'vue'; +import { createHooks } from 'hookable'; +import { getContext } from 'unctx'; +import { hasProtocol, parseURL, joinURL } from 'ufo'; +import { sendRedirect } from 'h3'; + +const nuxtAppCtx = getContext("nuxt-app"); +const NuxtPluginIndicator = "__nuxt_plugin"; +function createNuxtApp(options) { + let hydratingCount = 0; + const nuxtApp = { + provide: void 0, + globalName: "nuxt", + payload: reactive({ + data: {}, + state: {}, + _errors: {}, + ...{ serverRendered: true } + }), + static: { + data: {} + }, + isHydrating: false, + deferHydration() { + if (!nuxtApp.isHydrating) { + return () => { + }; + } + hydratingCount++; + let called = false; + return () => { + if (called) { + return; + } + called = true; + hydratingCount--; + if (hydratingCount === 0) { + nuxtApp.isHydrating = false; + return nuxtApp.callHook("app:suspense:resolve"); + } + }; + }, + _asyncDataPromises: {}, + _asyncData: {}, + ...options + }; + nuxtApp.hooks = createHooks(); + nuxtApp.hook = nuxtApp.hooks.hook; + nuxtApp.callHook = nuxtApp.hooks.callHook; + nuxtApp.provide = (name, value) => { + const $name = "$" + name; + defineGetter(nuxtApp, $name, value); + defineGetter(nuxtApp.vueApp.config.globalProperties, $name, value); + }; + defineGetter(nuxtApp.vueApp, "$nuxt", nuxtApp); + defineGetter(nuxtApp.vueApp.config.globalProperties, "$nuxt", nuxtApp); + { + if (nuxtApp.ssrContext) { + nuxtApp.ssrContext.nuxt = nuxtApp; + } + nuxtApp.ssrContext = nuxtApp.ssrContext || {}; + if (nuxtApp.ssrContext.payload) { + Object.assign(nuxtApp.payload, nuxtApp.ssrContext.payload); + } + nuxtApp.ssrContext.payload = nuxtApp.payload; + nuxtApp.payload.config = { + public: options.ssrContext.runtimeConfig.public, + app: options.ssrContext.runtimeConfig.app + }; + } + const runtimeConfig = options.ssrContext.runtimeConfig; + const compatibilityConfig = new Proxy(runtimeConfig, { + get(target, prop) { + var _a; + if (prop === "public") { + return target.public; + } + return (_a = target[prop]) != null ? _a : target.public[prop]; + }, + set(target, prop, value) { + { + return false; + } + } + }); + nuxtApp.provide("config", compatibilityConfig); + return nuxtApp; +} +async function applyPlugin(nuxtApp, plugin) { + if (typeof plugin !== "function") { + return; + } + const { provide } = await callWithNuxt(nuxtApp, plugin, [nuxtApp]) || {}; + if (provide && typeof provide === "object") { + for (const key in provide) { + nuxtApp.provide(key, provide[key]); + } + } +} +async function applyPlugins(nuxtApp, plugins) { + for (const plugin of plugins) { + await applyPlugin(nuxtApp, plugin); + } +} +function normalizePlugins(_plugins) { + const plugins = _plugins.map((plugin) => { + if (typeof plugin !== "function") { + return null; + } + if (plugin.length > 1) { + return (nuxtApp) => plugin(nuxtApp, nuxtApp.provide); + } + return plugin; + }).filter(Boolean); + return plugins; +} +function defineNuxtPlugin(plugin) { + plugin[NuxtPluginIndicator] = true; + return plugin; +} +function callWithNuxt(nuxt, setup, args) { + const fn = () => args ? setup(...args) : setup(); + { + return nuxtAppCtx.callAsync(nuxt, fn); + } +} +function useNuxtApp() { + const nuxtAppInstance = nuxtAppCtx.tryUse(); + if (!nuxtAppInstance) { + const vm = getCurrentInstance(); + if (!vm) { + throw new Error("nuxt instance unavailable"); + } + return vm.appContext.app.$nuxt; + } + return nuxtAppInstance; +} +function useRuntimeConfig() { + return useNuxtApp().$config; +} +function defineGetter(obj, key, val) { + Object.defineProperty(obj, key, { get: () => val }); +} +function defineAppConfig(config) { + return config; +} +function useRequestEvent(nuxtApp = useNuxtApp()) { + var _a; + return (_a = nuxtApp.ssrContext) == null ? void 0 : _a.event; +} +function setResponseStatus(code, message) { + const event = useRequestEvent(); + if (event) { + event.node.res.statusCode = code; + if (message) { + event.node.res.statusMessage = message; + } + } +} +const useRouter = () => { + var _a; + return (_a = useNuxtApp()) == null ? void 0 : _a.$router; +}; +const useRoute = () => { + if (getCurrentInstance()) { + return inject("_route", useNuxtApp()._route); + } + return useNuxtApp()._route; +}; +const defineNuxtRouteMiddleware = (middleware) => middleware; +const addRouteMiddleware = (name, middleware, options = {}) => { + const nuxtApp = useNuxtApp(); + if (options.global || typeof name === "function") { + nuxtApp._middleware.global.push(typeof name === "function" ? name : middleware); + } else { + nuxtApp._middleware.named[name] = middleware; + } +}; +const isProcessingMiddleware = () => { + try { + if (useNuxtApp()._processingMiddleware) { + return true; + } + } catch { + return true; + } + return false; +}; +const navigateTo = (to, options) => { + if (!to) { + to = "/"; + } + const toPath = typeof to === "string" ? to : to.path || "/"; + const isExternal = hasProtocol(toPath, true); + if (isExternal && !(options == null ? void 0 : options.external)) { + throw new Error("Navigating to external URL is not allowed by default. Use `nagivateTo (url, { external: true })`."); + } + if (isExternal && parseURL(toPath).protocol === "script:") { + throw new Error("Cannot navigate to an URL with script protocol."); + } + const router = useRouter(); + { + const nuxtApp = useNuxtApp(); + if (nuxtApp.ssrContext && nuxtApp.ssrContext.event) { + if (isProcessingMiddleware() && !isExternal) { + setResponseStatus((options == null ? void 0 : options.redirectCode) || 302); + return to; + } + const redirectLocation = isExternal ? toPath : joinURL(useRuntimeConfig().app.baseURL, router.resolve(to).fullPath || "/"); + return nuxtApp.callHook("app:redirected").then(() => sendRedirect(nuxtApp.ssrContext.event, redirectLocation, (options == null ? void 0 : options.redirectCode) || 302)); + } + } + if (isExternal) { + if (options == null ? void 0 : options.replace) { + location.replace(toPath); + } else { + location.href = toPath; + } + return Promise.resolve(); + } + return (options == null ? void 0 : options.replace) ? router.replace(to) : router.push(to); +}; +const firstNonUndefined = (...args) => args.find((arg) => arg !== void 0); +const DEFAULT_EXTERNAL_REL_ATTRIBUTE = "noopener noreferrer"; +function defineNuxtLink(options) { + const componentName = options.componentName || "NuxtLink"; + return defineComponent({ + name: componentName, + props: { + // Routing + to: { + type: [String, Object], + default: void 0, + required: false + }, + href: { + type: [String, Object], + default: void 0, + required: false + }, + // Attributes + target: { + type: String, + default: void 0, + required: false + }, + rel: { + type: String, + default: void 0, + required: false + }, + noRel: { + type: Boolean, + default: void 0, + required: false + }, + // Prefetching + prefetch: { + type: Boolean, + default: void 0, + required: false + }, + noPrefetch: { + type: Boolean, + default: void 0, + required: false + }, + // Styling + activeClass: { + type: String, + default: void 0, + required: false + }, + exactActiveClass: { + type: String, + default: void 0, + required: false + }, + prefetchedClass: { + type: String, + default: void 0, + required: false + }, + // Vue Router's `` additional props + replace: { + type: Boolean, + default: void 0, + required: false + }, + ariaCurrentValue: { + type: String, + default: void 0, + required: false + }, + // Edge cases handling + external: { + type: Boolean, + default: void 0, + required: false + }, + // Slot API + custom: { + type: Boolean, + default: void 0, + required: false + } + }, + setup(props, { slots }) { + const router = useRouter(); + const to = computed(() => { + return props.to || props.href || ""; + }); + const isExternal = computed(() => { + if (props.external) { + return true; + } + if (props.target && props.target !== "_self") { + return true; + } + if (typeof to.value === "object") { + return false; + } + return to.value === "" || hasProtocol(to.value, true); + }); + const prefetched = ref(false); + const el = void 0; + return () => { + var _a2; + var _a, _b; + if (!isExternal.value) { + return h( + resolveComponent("RouterLink"), + { + ref: void 0, + to: to.value, + ...prefetched.value && !props.custom ? { class: props.prefetchedClass || options.prefetchedClass } : {}, + activeClass: props.activeClass || options.activeClass, + exactActiveClass: props.exactActiveClass || options.exactActiveClass, + replace: props.replace, + ariaCurrentValue: props.ariaCurrentValue, + custom: props.custom + }, + slots.default + ); + } + const href = typeof to.value === "object" ? (_a2 = (_a = router.resolve(to.value)) == null ? void 0 : _a.href) != null ? _a2 : null : to.value || null; + const target = props.target || null; + const rel = props.noRel ? null : firstNonUndefined(props.rel, options.externalRelAttribute, href ? DEFAULT_EXTERNAL_REL_ATTRIBUTE : "") || null; + const navigate = () => navigateTo(href, { replace: props.replace }); + if (props.custom) { + if (!slots.default) { + return null; + } + return slots.default({ + href, + navigate, + route: router.resolve(href), + rel, + target, + isExternal: isExternal.value, + isActive: false, + isExactActive: false + }); + } + return h("a", { ref: el, href, rel, target }, (_b = slots.default) == null ? void 0 : _b.call(slots)); + }; + } + }); +} +const __nuxt_component_0 = defineNuxtLink({ componentName: "NuxtLink" }); +const nuxtLink = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_0, + defineNuxtLink +}); +function isObject(value) { + return value !== null && typeof value === "object"; +} +function _defu(baseObject, defaults, namespace = ".", merger) { + if (!isObject(defaults)) { + return _defu(baseObject, {}, namespace, merger); + } + const object = Object.assign({}, defaults); + for (const key in baseObject) { + if (key === "__proto__" || key === "constructor") { + continue; + } + const value = baseObject[key]; + if (value === null || value === void 0) { + continue; + } + if (merger && merger(object, key, value, namespace)) { + continue; + } + if (Array.isArray(value) && Array.isArray(object[key])) { + object[key] = [...value, ...object[key]]; + } else if (isObject(value) && isObject(object[key])) { + object[key] = _defu( + value, + object[key], + (namespace ? `${namespace}.` : "") + key.toString(), + merger + ); + } else { + object[key] = value; + } + } + return object; +} +function createDefu(merger) { + return (...arguments_) => ( + // eslint-disable-next-line unicorn/no-array-reduce + arguments_.reduce((p, c) => _defu(p, c, "", merger), {}) + ); +} +const defuFn = createDefu((object, key, currentValue) => { + if (typeof object[key] !== "undefined" && typeof currentValue === "function") { + object[key] = currentValue(object[key]); + return true; + } +}); +const cfg0 = defineAppConfig({ + github: { + owner: "realdecoy", + repo: "frontier", + branch: "main" + }, + docus: { + title: "Frontier", + description: "Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.", + image: "https://content.nuxtjs.org/preview.png", + url: "https://realdecoy.com", + socials: { + github: "realdecoy/frontier" + }, + github: { + dir: "", + root: "", + edit: true, + releases: true, + owner: "realdecoy", + repo: "frontier", + branch: "main" + }, + cover: { + src: "/cover.jpg", + alt: "Tooling maded easy for developers" + }, + aside: { + level: 1 + }, + layout: { + fluid: true + }, + header: { + logo: "Logo" + }, + footer: { + iconLinks: [ + { + label: "Realdecoy", + href: "https://realdecoy.com", + icon: "IconNuxt" + } + ] + } + } +}); +const cfg1 = defineAppConfig({ + docus: { + title: "Docus", + description: "The best place to start your documentation.", + image: "https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png", + socials: { + twitter: "", + github: "", + facebook: "", + instagram: "", + youtube: "", + medium: "" + }, + layout: "default", + header: { + title: "", + logo: false, + showLinkIcon: false, + fluid: false, + exclude: [] + }, + aside: { + level: 0, + collapsed: false, + exclude: [] + }, + footer: { + credits: { + icon: "IconDocus", + text: "Powered by Docus", + href: "https://docus.dev" + }, + textLinks: [], + iconLinks: [], + fluid: false + }, + github: { + dir: void 0, + branch: void 0, + repo: void 0, + owner: void 0, + edit: false + } + } +}); +const cfg2 = defineAppConfig({ + prose: { + copyButton: { + iconCopy: "ph:copy", + iconCopied: "ph:check" + }, + headings: { + icon: "ph:link" + } + } +}); +const cfg3 = defineAppConfig({}); +const inlineConfig = {}; +const __appConfig = defuFn(cfg0, cfg1, cfg2, cfg3, inlineConfig); + +export { __nuxt_component_0 as _, defineNuxtRouteMiddleware as a, useRuntimeConfig as b, callWithNuxt as c, defineNuxtPlugin as d, useRequestEvent as e, useRoute as f, useRouter as g, addRouteMiddleware as h, normalizePlugins as i, createNuxtApp as j, applyPlugins as k, __appConfig as l, nuxtLink as m, navigateTo as n, useNuxtApp as u }; +//# sourceMappingURL=app.config-832f5f68.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map b/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map new file mode 100644 index 00000000..a9cc0009 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"app.config-832f5f68.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/app.config-832f5f68.js"],"sourcesContent":null,"names":["_a"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs b/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs new file mode 100644 index 00000000..0f9afbde --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs @@ -0,0 +1,116 @@ +import { ref, getCurrentInstance, onServerPrefetch, unref } from 'vue'; +import { u as useNuxtApp } from './app.config-832f5f68.mjs'; +import { c as createError } from '../server.mjs'; + +const getDefault = () => null; +function useAsyncData(...args) { + var _a2, _b, _c, _d, _e, _f; + var _a; + const autoKey = typeof args[args.length - 1] === "string" ? args.pop() : void 0; + if (typeof args[0] !== "string") { + args.unshift(autoKey); + } + let [key, handler, options = {}] = args; + if (typeof key !== "string") { + throw new TypeError("[nuxt] [asyncData] key must be a string."); + } + if (typeof handler !== "function") { + throw new TypeError("[nuxt] [asyncData] handler must be a function."); + } + options.server = (_a2 = options.server) != null ? _a2 : true; + options.default = (_b = options.default) != null ? _b : getDefault; + options.lazy = (_c = options.lazy) != null ? _c : false; + options.immediate = (_d = options.immediate) != null ? _d : true; + const nuxt = useNuxtApp(); + const getCachedData = () => nuxt.isHydrating ? nuxt.payload.data[key] : nuxt.static.data[key]; + const hasCachedData = () => getCachedData() !== void 0; + if (!nuxt._asyncData[key]) { + nuxt._asyncData[key] = { + data: ref((_f = (_e = getCachedData()) != null ? _e : (_a = options.default) == null ? void 0 : _a.call(options)) != null ? _f : null), + pending: ref(!hasCachedData()), + error: ref(nuxt.payload._errors[key] ? createError(nuxt.payload._errors[key]) : null) + }; + } + const asyncData = { ...nuxt._asyncData[key] }; + asyncData.refresh = asyncData.execute = (opts = {}) => { + if (nuxt._asyncDataPromises[key]) { + if (opts.dedupe === false) { + return nuxt._asyncDataPromises[key]; + } + nuxt._asyncDataPromises[key].cancelled = true; + } + if (opts._initial && hasCachedData()) { + return getCachedData(); + } + asyncData.pending.value = true; + const promise = new Promise( + (resolve, reject) => { + try { + resolve(handler(nuxt)); + } catch (err) { + reject(err); + } + } + ).then((result) => { + if (promise.cancelled) { + return nuxt._asyncDataPromises[key]; + } + if (options.transform) { + result = options.transform(result); + } + if (options.pick) { + result = pick(result, options.pick); + } + asyncData.data.value = result; + asyncData.error.value = null; + }).catch((error) => { + var _a3; + var _a22; + if (promise.cancelled) { + return nuxt._asyncDataPromises[key]; + } + asyncData.error.value = error; + asyncData.data.value = unref((_a3 = (_a22 = options.default) == null ? void 0 : _a22.call(options)) != null ? _a3 : null); + }).finally(() => { + if (promise.cancelled) { + return; + } + asyncData.pending.value = false; + nuxt.payload.data[key] = asyncData.data.value; + if (asyncData.error.value) { + nuxt.payload._errors[key] = createError(asyncData.error.value); + } + delete nuxt._asyncDataPromises[key]; + }); + nuxt._asyncDataPromises[key] = promise; + return nuxt._asyncDataPromises[key]; + }; + const initialFetch = () => asyncData.refresh({ _initial: true }); + const fetchOnServer = options.server !== false && nuxt.payload.serverRendered; + if (fetchOnServer && options.immediate) { + const promise = initialFetch(); + if (getCurrentInstance()) { + onServerPrefetch(() => promise); + } else { + nuxt.hook("app:created", () => promise); + } + } + const asyncDataPromise = Promise.resolve(nuxt._asyncDataPromises[key]).then(() => asyncData); + Object.assign(asyncDataPromise, asyncData); + return asyncDataPromise; +} +async function refreshNuxtData(keys) { + { + return Promise.resolve(); + } +} +function pick(obj, keys) { + const newObj = {}; + for (const key of keys) { + newObj[key] = obj[key]; + } + return newObj; +} + +export { refreshNuxtData as r, useAsyncData as u }; +//# sourceMappingURL=asyncData-c43d4319.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map b/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map new file mode 100644 index 00000000..da576285 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"asyncData-c43d4319.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/asyncData-c43d4319.js"],"sourcesContent":null,"names":["_a","_a2"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs b/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs new file mode 100644 index 00000000..5abf6206 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs @@ -0,0 +1,355 @@ +import memory from 'unstorage/drivers/memory'; +import { prefixStorage, createStorage } from 'unstorage'; +import { u as useNuxtApp, b as useRuntimeConfig } from './app.config-832f5f68.mjs'; +import { withBase } from 'ufo'; +import { u as useCookie, c as createQuery, g as get, a as assertArray, e as ensureArray, s as sortList, b as apply, w as withoutKeys, d as withKeys } from './query-dd064fd9.mjs'; +import { pascalCase } from 'scule'; +import 'vue'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import 'cookie-es'; +import 'destr'; +import 'ohash'; + +function createMatch(opts = {}) { + const operators = createOperators(match, opts.operators); + function match(item, conditions) { + if (typeof conditions !== "object" || conditions instanceof RegExp) { + return operators.$eq(item, conditions); + } + return Object.keys(conditions || {}).every((key) => { + const condition = conditions[key]; + if (key.startsWith("$") && operators[key]) { + const fn = operators[key]; + return typeof fn === "function" ? fn(item, condition) : false; + } + return match(get(item, key), condition); + }); + } + return match; +} +function createOperators(match, operators = {}) { + return { + $match: (item, condition) => match(item, condition), + /** + * Match if item equals condition + **/ + $eq: (item, condition) => condition instanceof RegExp ? condition.test(item) : item === condition, + /** + * Match if item not equals condition + **/ + $ne: (item, condition) => condition instanceof RegExp ? !condition.test(item) : item !== condition, + /** + * Match is condition is false + **/ + $not: (item, condition) => !match(item, condition), + /** + * Match only if all of nested conditions are true + **/ + $and: (item, condition) => { + assertArray(condition, "$and requires an array as condition"); + return condition.every((cond) => match(item, cond)); + }, + /** + * Match if any of nested conditions is true + **/ + $or: (item, condition) => { + assertArray(condition, "$or requires an array as condition"); + return condition.some((cond) => match(item, cond)); + }, + /** + * Match if item is in condition array + **/ + $in: (item, condition) => ensureArray(condition).some( + (cond) => Array.isArray(item) ? match(item, { $contains: cond }) : match(item, cond) + ), + /** + * Match if item contains every condition or math every rule in condition array + **/ + $contains: (item, condition) => { + item = Array.isArray(item) ? item : String(item); + return ensureArray(condition).every((i) => item.includes(i)); + }, + /** + * Ignore case contains + **/ + $icontains: (item, condition) => { + if (typeof condition !== "string") { + throw new TypeError("$icontains requires a string, use $contains instead"); + } + item = String(item).toLocaleLowerCase(); + return ensureArray(condition).every((i) => item.includes(i.toLocaleLowerCase())); + }, + /** + * Match if item contains at least one rule from condition array + */ + $containsAny: (item, condition) => { + assertArray(condition, "$containsAny requires an array as condition"); + item = Array.isArray(item) ? item : String(item); + return condition.some((i) => item.includes(i)); + }, + /** + * Check key existence + */ + $exists: (item, condition) => condition ? typeof item !== "undefined" : typeof item === "undefined", + /** + * Match if type of item equals condition + */ + $type: (item, condition) => typeof item === String(condition), + /** + * Provides regular expression capabilities for pattern matching strings. + */ + $regex: (item, condition) => { + if (!(condition instanceof RegExp)) { + const matched = String(condition).match(/\/(.*)\/([dgimsuy]*)$/); + condition = matched ? new RegExp(matched[1], matched[2] || "") : new RegExp(condition); + } + return condition.test(String(item || "")); + }, + /** + * Check if item is less than condition + */ + $lt: (item, condition) => { + return item < condition; + }, + /** + * Check if item is less than or equal to condition + */ + $lte: (item, condition) => { + return item <= condition; + }, + /** + * Check if item is greater than condition + */ + $gt: (item, condition) => { + return item > condition; + }, + /** + * Check if item is greater than or equal to condition + */ + $gte: (item, condition) => { + return item >= condition; + }, + ...operators || {} + }; +} +function createPipelineFetcher(getContentsList) { + const match = createMatch(); + const surround = (data, { query, before, after }) => { + const matchQuery = typeof query === "string" ? { _path: query } : query; + const index = data.findIndex((item) => match(item, matchQuery)); + before = before || 1; + after = after || 1; + const slice = new Array(before + after).fill(null, 0); + return index === -1 ? slice : slice.map((_, i) => data[index - before + i + Number(i >= before)] || null); + }; + const pipelines = [ + // Conditions + (data, params) => data.filter((item) => ensureArray(params.where).every((matchQuery) => match(item, matchQuery))), + // Sort data + (data, params) => ensureArray(params.sort).forEach((options) => sortList(data, options)), + // Surround logic + (data, params) => params.surround ? surround(data, params.surround) : data, + // Skip first items + (data, params) => params.skip ? data.slice(params.skip) : data, + // Pick first items + (data, params) => params.limit ? data.slice(0, params.limit) : data, + // Remove unwanted fields + (data, params) => apply(withoutKeys(params.without))(data), + // Select only wanted fields + (data, params) => apply(withKeys(params.only))(data) + ]; + return async (query) => { + const data = await getContentsList(); + const params = query.params(); + const filteredData = pipelines.reduce(($data, pipe) => pipe($data, params) || $data, data); + if (params.first) { + return filteredData[0]; + } + return filteredData; + }; +} +const generateTitle = (path) => path.split(/[\s-]/g).map(pascalCase).join(" "); +function createNav(contents, configs) { + const { navigation } = useRuntimeConfig().content; + const pickNavigationFields = (content) => ({ + ...pick(["title", ...navigation.fields])(content), + ...isObject(content == null ? void 0 : content.navigation) ? content.navigation : {} + }); + const nav = contents.sort((a, b) => a._path.localeCompare(b._path)).reduce((nav2, content) => { + const parts = content._path.substring(1).split("/"); + const idParts = content._id.split(":").slice(1); + const isIndex = !!idParts[idParts.length - 1].match(/([1-9][0-9]*\.)?index.md/g); + const getNavItem = (content2) => ({ + title: content2.title, + _path: content2._path, + _file: content2._file, + children: [], + ...pickNavigationFields(content2), + ...content2._draft ? { _draft: true } : {} + }); + const navItem = getNavItem(content); + if (isIndex) { + const dirConfig = configs[navItem._path]; + if (typeof (dirConfig == null ? void 0 : dirConfig.navigation) !== "undefined" && !(dirConfig == null ? void 0 : dirConfig.navigation)) { + return nav2; + } + if (content._path !== "/") { + const indexItem = getNavItem(content); + navItem.children.push(indexItem); + } + Object.assign( + navItem, + pickNavigationFields(dirConfig) + ); + } + if (parts.length === 1) { + nav2.push(navItem); + return nav2; + } + const siblings = parts.slice(0, -1).reduce((nodes, part, i) => { + const currentPathPart = "/" + parts.slice(0, i + 1).join("/"); + const conf = configs[currentPathPart]; + if (typeof (conf == null ? void 0 : conf.navigation) !== "undefined" && !conf.navigation) { + return []; + } + let parent = nodes.find((n) => n._path === currentPathPart); + if (!parent) { + parent = { + title: generateTitle(part), + _path: currentPathPart, + _file: content._file, + children: [], + ...pickNavigationFields(conf) + }; + nodes.push(parent); + } + return parent.children; + }, nav2); + siblings.push(navItem); + return nav2; + }, []); + return sortAndClear(nav); +} +const collator = new Intl.Collator(void 0, { numeric: true, sensitivity: "base" }); +function sortAndClear(nav) { + const sorted = nav.sort((a, b) => collator.compare(a._file, b._file)); + for (const item of sorted) { + if (item.children.length) { + sortAndClear(item.children); + } else { + delete item.children; + } + delete item._file; + } + return nav; +} +function pick(keys) { + return (obj) => { + obj = obj || {}; + if (keys && keys.length) { + return keys.filter((key) => typeof obj[key] !== "undefined").reduce((newObj, key) => Object.assign(newObj, { [key]: obj[key] }), {}); + } + return obj; + }; +} +function isObject(obj) { + return Object.prototype.toString.call(obj) === "[object Object]"; +} +const withContentBase = (url) => withBase(url, useRuntimeConfig().public.content.api.baseURL); +const contentStorage = prefixStorage(createStorage({ driver: memory() }), "@content"); +const getPreview = () => { + return useCookie("previewToken").value; +}; +function createDB(storage) { + async function getItems() { + const keys = new Set(await storage.getKeys("cache:")); + const previewToken = getPreview(); + if (previewToken) { + const previewMeta = await storage.getItem(`${previewToken}$`).then((data) => data || {}); + if (previewMeta.ignoreBuiltContents) { + keys.clear(); + } + const previewKeys = await storage.getKeys(`${previewToken}:`); + const previewContents = await Promise.all(previewKeys.map((key) => storage.getItem(key))); + for (const pItem of previewContents) { + keys.delete(`cache:${pItem._id}`); + if (!pItem.__deleted) { + keys.add(`${previewToken}:${pItem._id}`); + } + } + } + const items = await Promise.all(Array.from(keys).map((key) => storage.getItem(key))); + return items; + } + return { + storage, + fetch: createPipelineFetcher(getItems), + query: (query) => createQuery(createPipelineFetcher(getItems), query) + }; +} +let contentDatabase = null; +let contentDatabaseInitPromise = null; +async function useContentDatabase() { + if (contentDatabaseInitPromise) { + await contentDatabaseInitPromise; + } else if (!contentDatabase) { + contentDatabaseInitPromise = initContentDatabase(); + contentDatabase = await contentDatabaseInitPromise; + } + return contentDatabase; +} +async function initContentDatabase() { + const nuxtApp = useNuxtApp(); + const { content } = useRuntimeConfig().public; + const _contentDatabase = createDB(contentStorage); + const integrity = await _contentDatabase.storage.getItem("integrity"); + if (content.integrity !== +(integrity || 0)) { + const { contents, navigation } = await $fetch(withContentBase(content.integrity ? `cache.${content.integrity}.json` : "cache.json")); + await Promise.all( + contents.map((content2) => _contentDatabase.storage.setItem(`cache:${content2._id}`, content2)) + ); + await _contentDatabase.storage.setItem("navigation", navigation); + await _contentDatabase.storage.setItem("integrity", content.integrity); + } + await nuxtApp.callHook("content:storage", _contentDatabase.storage); + return _contentDatabase; +} +async function generateNavigation(query) { + const db = await useContentDatabase(); + if (!getPreview() && Object.keys(query || {}).length === 0) { + return db.storage.getItem("navigation"); + } + const contents = await db.query(query).where({ + /** + * Partial contents are not included in the navigation + * A partial content is a content that has `_` prefix in its path + */ + _partial: false, + /** + * Exclude any pages which have opted out of navigation via frontmatter. + */ + navigation: { + $ne: false + } + }).find(); + const dirConfigs = await db.query().where({ _path: /\/_dir$/i, _partial: true }).find(); + const configs = dirConfigs.reduce((configs2, conf) => { + var _a; + if (((_a = conf.title) == null ? void 0 : _a.toLowerCase()) === "dir") { + conf.title = void 0; + } + const key = conf._path.split("/").slice(0, -1).join("/") || "/"; + configs2[key] = { + ...conf, + // Extract meta from body. (non MD files) + ...conf.body + }; + return configs2; + }, {}); + return createNav(contents, configs); +} + +export { contentStorage, createDB, generateNavigation, getPreview, useContentDatabase }; +//# sourceMappingURL=client-db-fd379c8e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map b/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map new file mode 100644 index 00000000..887cc55c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"client-db-fd379c8e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/client-db-fd379c8e.js"],"sourcesContent":null,"names":["memoryDriver"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs b/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs new file mode 100644 index 00000000..7af83100 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs @@ -0,0 +1,44 @@ +import { nextTick } from 'vue'; + +function usePinceauRuntimeDebug(tokensHelperConfig) { + let nextTickGroup = []; + let nextTickCalled = false; + const TOKEN_NOT_FOUND_MESSAGE = (path, options) => { + const { loc } = options; + const message = [ + `\u{1F511} ${path}` + ]; + if (loc == null ? void 0 : loc.file) { + message.push(""); + message.push(`\u{1F517} ${loc.file}`); + } + if (loc == null ? void 0 : loc.type) { + message.push(""); + message.push(`\u2753 Missing token inside a ${loc.type === "v" ? "variant" : "computed style or CSS prop"}.`); + } + nextTickGroup.push(message.join("\n")); + if (!nextTickCalled) { + nextTick(() => { + const title = "\u{1F58C}\uFE0F Pinceau `runtime` encountered some errors!"; + { + console.log(title); + } + nextTickGroup.forEach((m) => { + { + console.log("\n"); + } + console.log(m); + { + console.log("\n"); + } + }); + console.log("\u203C\uFE0F This warning will be hidden from production and can be disabled using `dev: false` option."); + }); + nextTickCalled = true; + } + }; + tokensHelperConfig.onNotFound = TOKEN_NOT_FOUND_MESSAGE; +} + +export { usePinceauRuntimeDebug }; +//# sourceMappingURL=debug-43adc91a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map b/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map new file mode 100644 index 00000000..c79d0e9c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"debug-43adc91a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/debug-43adc91a.js"],"sourcesContent":null,"names":[],"mappings":";;AACA,SAAS,uBAAuB,kBAAoB,EAAA;AAClD,EAAA,IAAI,gBAAgB,EAAC,CAAA;AACrB,EAAA,IAAI,cAAiB,GAAA,KAAA,CAAA;AACrB,EAAM,MAAA,uBAAA,GAA0B,CAAC,IAAA,EAAM,OAAY,KAAA;AACjD,IAAM,MAAA,EAAE,KAAQ,GAAA,OAAA,CAAA;AAChB,IAAA,MAAM,OAAU,GAAA;AAAA,MACd,CAAM,UAAA,EAAA,IAAA,CAAA,CAAA;AAAA,KACR,CAAA;AACA,IAAA,IAAI,GAAO,IAAA,IAAA,GAAO,KAAS,CAAA,GAAA,GAAA,CAAI,IAAM,EAAA;AACnC,MAAA,OAAA,CAAQ,KAAK,EAAE,CAAA,CAAA;AACf,MAAQ,OAAA,CAAA,IAAA,CAAK,CAAM,UAAA,EAAA,GAAA,CAAI,IAAM,CAAA,CAAA,CAAA,CAAA;AAAA,KAC/B;AACA,IAAA,IAAI,GAAO,IAAA,IAAA,GAAO,KAAS,CAAA,GAAA,GAAA,CAAI,IAAM,EAAA;AACnC,MAAA,OAAA,CAAQ,KAAK,EAAE,CAAA,CAAA;AACf,MAAA,OAAA,CAAQ,KAAK,CAA4B,8BAAA,EAAA,GAAA,CAAI,IAAS,KAAA,GAAA,GAAM,YAAY,4BAA+B,CAAA,CAAA,CAAA,CAAA,CAAA;AAAA,KACzG;AACA,IAAA,aAAA,CAAc,IAAK,CAAA,OAAA,CAAQ,IAAK,CAAA,IAAI,CAAC,CAAA,CAAA;AACrC,IAAA,IAAI,CAAC,cAAgB,EAAA;AACnB,MAAA,QAAA,CAAS,MAAM;AACb,QAAA,MAAM,KAAQ,GAAA,4DAAA,CAAA;AACd,QAAA;AACE,UAAA,OAAA,CAAQ,IAAI,KAAK,CAAA,CAAA;AAAA,SACnB;AACA,QAAc,aAAA,CAAA,OAAA,CAAQ,CAAC,CAAM,KAAA;AAC3B,UAAA;AACE,YAAA,OAAA,CAAQ,IAAI,IAAI,CAAA,CAAA;AAAA,WAClB;AACA,UAAA,OAAA,CAAQ,IAAI,CAAC,CAAA,CAAA;AACb,UAAA;AACE,YAAA,OAAA,CAAQ,IAAI,IAAI,CAAA,CAAA;AAAA,WAClB;AAAA,SACD,CAAA,CAAA;AACD,QAAA,OAAA,CAAQ,IAAI,yGAA+F,CAAA,CAAA;AAAA,OAC5G,CAAA,CAAA;AACD,MAAiB,cAAA,GAAA,IAAA,CAAA;AAAA,KACnB;AAAA,GACF,CAAA;AACA,EAAA,kBAAA,CAAmB,UAAa,GAAA,uBAAA,CAAA;AAClC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs b/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs new file mode 100644 index 00000000..9d271ee1 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs @@ -0,0 +1,53 @@ +import __nuxt_component_0 from './DocsPageLayout-4c2ead4a.mjs'; +import { useSSRContext, withCtx, renderSlot } from 'vue'; +import { ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import './DocsAside-a41d5eb9.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import 'ufo'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'h3'; +import './useDocus-928368c4.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import './Alert-2b29f746.mjs'; +import './ContentSlot-deb25102.mjs'; +import './ProseCodeInline-960b9a43.mjs'; +import './DocsPageBottom-270eacfc.mjs'; +import './EditOnLink-e55cd3a0.mjs'; +import './ProseA-86ef3985.mjs'; +import './DocsPrevNext-7858c09b.mjs'; +import './DocsToc-e4f6bd56.mjs'; +import './DocsTocLinks-95d48629.mjs'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + const _component_DocsPageLayout = __nuxt_component_0; + _push(ssrRenderComponent(_component_DocsPageLayout, _attrs, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + } else { + return [ + renderSlot(_ctx.$slots, "default") + ]; + } + }), + _: 3 + }, _parent)); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/layouts/default.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const _default = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { _default as default }; +//# sourceMappingURL=default-cafbf0bc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map b/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map new file mode 100644 index 00000000..38639484 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"default-cafbf0bc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/default-cafbf0bc.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,yBAA4B,GAAA,kBAAA,CAAA;AAClC,EAAM,KAAA,CAAA,kBAAA,CAAmB,2BAA2B,MAAQ,EAAA;AAAA,IAC1D,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,MAAA,IAAI,MAAQ,EAAA;AACV,QAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,OACrE,MAAA;AACL,QAAO,OAAA;AAAA,UACL,UAAA,CAAW,IAAK,CAAA,MAAA,EAAQ,SAAS,CAAA;AAAA,SACnC,CAAA;AAAA,OACF;AAAA,KACD,CAAA;AAAA,IACD,CAAG,EAAA,CAAA;AAAA,GACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACb,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qDAAqD,CAAA,CAAA;AAClI,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs b/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs new file mode 100644 index 00000000..d87fc7a2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs @@ -0,0 +1,35 @@ +import { _ as _export_sfc, a as __nuxt_component_0 } from './Container-1291608c.mjs'; +import { useSSRContext, mergeProps, withCtx, renderSlot } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + const _component_Container = __nuxt_component_0; + _push(``); + _push(ssrRenderComponent(_component_Container, null, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + } else { + return [ + renderSlot(_ctx.$slots, "default", {}, void 0, true) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("layouts/docs-page.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const docsPage = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-52761a33"]]); + +export { docsPage as default }; +//# sourceMappingURL=docs-page-75eace63.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map b/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map new file mode 100644 index 00000000..5f618858 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"docs-page-75eace63.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/docs-page-75eace63.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,oBAAuB,GAAA,kBAAA,CAAA;AAC7B,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,WAAY,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC1F,EAAM,KAAA,CAAA,kBAAA,CAAmB,sBAAsB,IAAM,EAAA;AAAA,IACnD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,MAAA,IAAI,MAAQ,EAAA;AACV,QAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,OACrE,MAAA;AACL,QAAO,OAAA;AAAA,UACL,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,SACrD,CAAA;AAAA,OACF;AAAA,KACD,CAAA;AAAA,IACD,CAAG,EAAA,CAAA;AAAA,GACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,EAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAChB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uBAAuB,CAAA,CAAA;AACpG,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,QAA2B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs b/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs new file mode 100644 index 00000000..2b61a96f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs @@ -0,0 +1,6 @@ +const docsPage_vue_vue_type_style_index_0_scoped_52761a33_transformed_true_lang = ".docs-page[data-v-52761a33]{padding:40px 0}"; + +const docsPageStyles_bb658b38 = [docsPage_vue_vue_type_style_index_0_scoped_52761a33_transformed_true_lang]; + +export { docsPageStyles_bb658b38 as default }; +//# sourceMappingURL=docs-page-styles.bb658b38.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map b/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map new file mode 100644 index 00000000..820b95a9 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"docs-page-styles.bb658b38.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/docs-page-styles-1.mjs-a9d66d58.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/docs-page-styles.bb658b38.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,6CAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs b/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs new file mode 100644 index 00000000..ffa05ebd --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs @@ -0,0 +1,104 @@ +import __nuxt_component_0 from './layout-88ff67c1.mjs'; +import _sfc_main$1 from './ContentRenderer-06a7c657.mjs'; +import _sfc_main$2 from './DocumentDrivenEmpty-8338ce9f.mjs'; +import __nuxt_component_3 from './DocumentDrivenNotFound-4b73ea08.mjs'; +import { c as useContent } from './useDocus-928368c4.mjs'; +import { a as useContentHead } from '../server.mjs'; +import { e as useRequestEvent } from './app.config-832f5f68.mjs'; +import { defineComponent, mergeProps, unref, withCtx, createVNode, openBlock, createBlock, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; +import 'vue-router'; +import './ContentRendererMarkdown-bebf42c8.mjs'; +import 'destr'; +import 'scule'; +import 'property-information'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import './ButtonLink-df4791d5.mjs'; +import './DocsAsideTree-136bd08b.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'defu'; +import './ContentSlot-deb25102.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import '../../nitro/config.mjs'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "document-driven", + __ssrInlineRender: true, + setup(__props) { + const { page, layout } = useContent(); + if (!page.value && true) { + const event = useRequestEvent(); + event.res.statusCode = 404; + } + useContentHead(page); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLayout = __nuxt_component_0; + const _component_ContentRenderer = _sfc_main$1; + const _component_DocumentDrivenEmpty = _sfc_main$2; + const _component_DocumentDrivenNotFound = __nuxt_component_3; + _push(``); + _push(ssrRenderComponent(_component_NuxtLayout, { + name: unref(layout) || "default" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + if (unref(page)) { + _push2(ssrRenderComponent(_component_ContentRenderer, { + key: unref(page)._id, + value: unref(page) + }, { + empty: withCtx(({ value }, _push3, _parent3, _scopeId2) => { + if (_push3) { + _push3(ssrRenderComponent(_component_DocumentDrivenEmpty, { value }, null, _parent3, _scopeId2)); + } else { + return [ + createVNode(_component_DocumentDrivenEmpty, { value }, null, 8, ["value"]) + ]; + } + }), + _: 1 + }, _parent2, _scopeId)); + } else { + _push2(ssrRenderComponent(_component_DocumentDrivenNotFound, null, null, _parent2, _scopeId)); + } + } else { + return [ + unref(page) ? (openBlock(), createBlock(_component_ContentRenderer, { + key: unref(page)._id, + value: unref(page) + }, { + empty: withCtx(({ value }) => [ + createVNode(_component_DocumentDrivenEmpty, { value }, null, 8, ["value"]) + ]), + _: 1 + }, 8, ["value"])) : (openBlock(), createBlock(_component_DocumentDrivenNotFound, { key: 1 })) + ]; + } + }), + _: 1 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/pages/document-driven.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; + +export { _sfc_main as default }; +//# sourceMappingURL=document-driven-27005915.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map b/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map new file mode 100644 index 00000000..b0d9cc5e --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"document-driven-27005915.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/document-driven-27005915.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs b/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs new file mode 100644 index 00000000..2085c44c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs @@ -0,0 +1,21 @@ +import { ssrRenderAttrs } from 'vue/server-renderer'; +import { useSSRContext } from 'vue'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; + +const _sfc_main = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const empty = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); + +export { empty as default }; +//# sourceMappingURL=empty-446a838e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map b/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map new file mode 100644 index 00000000..20dd8c72 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"empty-446a838e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/empty-446a838e.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,cAAe,CAAA,MAAM,CAAU,CAAA,OAAA,CAAA,CAAA,CAAA;AAC9C,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,0DAA0D,CAAA,CAAA;AACvI,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,KAAA,+BAAoC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs b/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs new file mode 100644 index 00000000..bca68a14 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs @@ -0,0 +1,99 @@ +import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; +import { b as useHead } from '../server.mjs'; +import { mergeProps, withCtx, createTextVNode, toDisplayString, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate, ssrRenderComponent } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const _sfc_main = { + __name: "error-404", + __ssrInlineRender: true, + props: { + appName: { + type: String, + default: "Nuxt" + }, + version: { + type: String, + default: "" + }, + statusCode: { + type: Number, + default: 404 + }, + statusMessage: { + type: String, + default: "Not Found" + }, + description: { + type: String, + default: "Sorry, the page you are looking for could not be found." + }, + backHome: { + type: String, + default: "Go back home" + } + }, + setup(__props) { + const props = __props; + useHead({ + title: `${props.statusCode} - ${props.statusMessage} | ${props.appName}`, + script: [], + style: [ + { + children: `*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}` + } + ] + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0; + _push(`

    ${ssrInterpolate(__props.statusCode)}

    ${ssrInterpolate(__props.description)}

    `); + _push(ssrRenderComponent(_component_NuxtLink, { + to: "/", + class: "gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`${ssrInterpolate(__props.backHome)}`); + } else { + return [ + createTextVNode(toDisplayString(__props.backHome), 1) + ]; + } + }), + _: 1 + }, _parent)); + _push(`
    `); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/ui-templates/dist/templates/error-404.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const error404 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-30d2164e"]]); + +export { error404 as default }; +//# sourceMappingURL=error-404-6d0186e4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map new file mode 100644 index 00000000..67c68319 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"error-404-6d0186e4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-404-6d0186e4.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs b/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs new file mode 100644 index 00000000..bba47a26 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs @@ -0,0 +1,6 @@ +const error404_vue_vue_type_style_index_0_scoped_30d2164e_lang = '.spotlight[data-v-30d2164e]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.gradient-border[data-v-30d2164e]{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:.5rem;position:relative}@media (prefers-color-scheme:light){.gradient-border[data-v-30d2164e]{background-color:hsla(0,0%,100%,.3)}.gradient-border[data-v-30d2164e]:before{background:linear-gradient(90deg,#e2e2e2,#e2e2e2 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}@media (prefers-color-scheme:dark){html:not(.light) .gradient-border[data-v-30d2164e]{background-color:hsla(0,0%,8%,.3)}html:not(.light) .gradient-border[data-v-30d2164e]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}html.dark .gradient-border[data-v-30d2164e]{background-color:hsla(0,0%,8%,.3)}html.dark .gradient-border[data-v-30d2164e]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82 50%,#36e4da 75%,#0047e1)}.gradient-border[data-v-30d2164e]:before{background-size:400% auto;border-radius:.5rem;bottom:0;content:"";left:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.5;padding:2px;position:absolute;right:0;top:0;transition:background-position .3s ease-in-out,opacity .2s ease-in-out;width:100%}.gradient-border[data-v-30d2164e]:hover:before{background-position:-50% 0;opacity:1}.bg-white[data-v-30d2164e]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.cursor-pointer[data-v-30d2164e]{cursor:pointer}.flex[data-v-30d2164e]{display:flex}.grid[data-v-30d2164e]{display:grid}.place-content-center[data-v-30d2164e]{place-content:center}.items-center[data-v-30d2164e]{align-items:center}.justify-center[data-v-30d2164e]{justify-content:center}.font-sans[data-v-30d2164e]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-30d2164e]{font-weight:500}.font-light[data-v-30d2164e]{font-weight:300}.text-8xl[data-v-30d2164e]{font-size:6rem;line-height:1}.text-xl[data-v-30d2164e]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-30d2164e]{line-height:1.25}.mb-8[data-v-30d2164e]{margin-bottom:2rem}.mb-16[data-v-30d2164e]{margin-bottom:4rem}.max-w-520px[data-v-30d2164e]{max-width:520px}.min-h-screen[data-v-30d2164e]{min-height:100vh}.overflow-hidden[data-v-30d2164e]{overflow:hidden}.px-8[data-v-30d2164e]{padding-left:2rem;padding-right:2rem}.py-2[data-v-30d2164e]{padding-bottom:.5rem;padding-top:.5rem}.px-4[data-v-30d2164e]{padding-left:1rem;padding-right:1rem}.fixed[data-v-30d2164e]{position:fixed}.left-0[data-v-30d2164e]{left:0}.right-0[data-v-30d2164e]{right:0}.text-center[data-v-30d2164e]{text-align:center}.text-black[data-v-30d2164e]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-30d2164e]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-30d2164e]{width:100%}.z-10[data-v-30d2164e]{z-index:10}.z-20[data-v-30d2164e]{z-index:20}@media (min-width:640px){.sm\\:text-4xl[data-v-30d2164e]{font-size:2.25rem;line-height:2.5rem}.sm\\:text-xl[data-v-30d2164e]{font-size:1.25rem;line-height:1.75rem}.sm\\:text-10xl[data-v-30d2164e]{font-size:10rem;line-height:1}.sm\\:px-0[data-v-30d2164e]{padding-left:0;padding-right:0}.sm\\:py-3[data-v-30d2164e]{padding-bottom:.75rem;padding-top:.75rem}.sm\\:px-6[data-v-30d2164e]{padding-left:1.5rem;padding-right:1.5rem}}@media (prefers-color-scheme:dark){html:not(.light) .dark\\:bg-black[data-v-30d2164e]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\\:text-white[data-v-30d2164e]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\\:bg-black[data-v-30d2164e]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\\:text-white[data-v-30d2164e]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}'; + +const error404Styles_1b6f35f0 = [error404_vue_vue_type_style_index_0_scoped_30d2164e_lang]; + +export { error404Styles_1b6f35f0 as default }; +//# sourceMappingURL=error-404-styles.1b6f35f0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map new file mode 100644 index 00000000..3b2c9a0b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"error-404-styles.1b6f35f0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-404-styles-1.mjs-e75e7e19.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-404-styles.1b6f35f0.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wDAA2D,GAAA,sqIAAA;;ACCjE,gCAAe,CAACA,wDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs b/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs new file mode 100644 index 00000000..be4e3421 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs @@ -0,0 +1,78 @@ +import { b as useHead } from '../server.mjs'; +import { mergeProps, useSSRContext } from 'vue'; +import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; +import { _ as _export_sfc } from './Container-1291608c.mjs'; +import 'ofetch'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const _sfc_main = { + __name: "error-500", + __ssrInlineRender: true, + props: { + appName: { + type: String, + default: "Nuxt" + }, + version: { + type: String, + default: "" + }, + statusCode: { + type: Number, + default: 500 + }, + statusMessage: { + type: String, + default: "Server error" + }, + description: { + type: String, + default: "This page is temporarily unavailable." + } + }, + setup(__props) { + const props = __props; + useHead({ + title: `${props.statusCode} - ${props.statusMessage} | ${props.appName}`, + script: [], + style: [ + { + children: `*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}` + } + ] + }); + return (_ctx, _push, _parent, _attrs) => { + _push(`

    ${ssrInterpolate(__props.statusCode)}

    ${ssrInterpolate(__props.description)}

    `); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/ui-templates/dist/templates/error-500.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const error500 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-32388612"]]); + +export { error500 as default }; +//# sourceMappingURL=error-500-6ca426c2.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map new file mode 100644 index 00000000..7095cec9 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"error-500-6ca426c2.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-500-6ca426c2.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,WAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,IACA,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,UAAY,EAAA;AAAA,MACV,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,GAAA;AAAA,KACX;AAAA,IACA,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,cAAA;AAAA,KACX;AAAA,IACA,WAAa,EAAA;AAAA,MACX,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,uCAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAQ,OAAA,CAAA;AAAA,MACN,OAAO,CAAG,EAAA,KAAA,CAAM,UAAgB,CAAA,GAAA,EAAA,KAAA,CAAM,mBAAmB,KAAM,CAAA,OAAA,CAAA,CAAA;AAAA,MAC/D,QAAQ,EAAC;AAAA,MACT,KAAO,EAAA;AAAA,QACL;AAAA,UACE,QAAU,EAAA,CAAA,uuBAAA,CAAA;AAAA,SACZ;AAAA,OACF;AAAA,KACD,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,UAAA,CAAW,EAAE,KAAA,EAAO,kIAAoI,EAAA,MAAM,CAAC,CAAA,CAAA,6NAAA,EAAiO,eAAe,OAAQ,CAAA,UAAU,oGAAoG,cAAe,CAAA,OAAA,CAAQ,WAAW,CAAmB,CAAA,gBAAA,CAAA,CAAA,CAAA;AAAA,KACxlB,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,8DAA8D,CAAA,CAAA;AAC3I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs b/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs new file mode 100644 index 00000000..ceff43c8 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs @@ -0,0 +1,6 @@ +const error500_vue_vue_type_style_index_0_scoped_32388612_lang = ".spotlight[data-v-32388612]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);filter:blur(20vh)}.bg-white[data-v-32388612]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.grid[data-v-32388612]{display:grid}.place-content-center[data-v-32388612]{place-content:center}.font-sans[data-v-32388612]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-32388612]{font-weight:500}.font-light[data-v-32388612]{font-weight:300}.h-1\\/2[data-v-32388612]{height:50%}.text-8xl[data-v-32388612]{font-size:6rem;line-height:1}.text-xl[data-v-32388612]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-32388612]{line-height:1.25}.mb-8[data-v-32388612]{margin-bottom:2rem}.mb-16[data-v-32388612]{margin-bottom:4rem}.max-w-520px[data-v-32388612]{max-width:520px}.min-h-screen[data-v-32388612]{min-height:100vh}.overflow-hidden[data-v-32388612]{overflow:hidden}.px-8[data-v-32388612]{padding-left:2rem;padding-right:2rem}.fixed[data-v-32388612]{position:fixed}.left-0[data-v-32388612]{left:0}.right-0[data-v-32388612]{right:0}.-bottom-1\\/2[data-v-32388612]{bottom:-50%}.text-center[data-v-32388612]{text-align:center}.text-black[data-v-32388612]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-32388612]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:640px){.sm\\:text-4xl[data-v-32388612]{font-size:2.25rem;line-height:2.5rem}.sm\\:text-10xl[data-v-32388612]{font-size:10rem;line-height:1}.sm\\:px-0[data-v-32388612]{padding-left:0;padding-right:0}}@media (prefers-color-scheme:dark){html:not(.light) .dark\\:bg-black[data-v-32388612]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\\:text-white[data-v-32388612]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\\:bg-black[data-v-32388612]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\\:text-white[data-v-32388612]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}"; + +const error500Styles_17df0758 = [error500_vue_vue_type_style_index_0_scoped_32388612_lang]; + +export { error500Styles_17df0758 as default }; +//# sourceMappingURL=error-500-styles.17df0758.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map new file mode 100644 index 00000000..13530dab --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"error-500-styles.17df0758.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-500-styles-1.mjs-85164be6.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-500-styles.17df0758.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wDAA2D,GAAA,4wEAAA;;ACCjE,gCAAe,CAACA,wDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs b/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs new file mode 100644 index 00000000..a1910f05 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs @@ -0,0 +1,42 @@ +import { useSSRContext, defineAsyncComponent, unref, mergeProps } from 'vue'; +import { ssrRenderComponent } from 'vue/server-renderer'; + +const _sfc_main = { + __name: "nuxt-error-page", + __ssrInlineRender: true, + props: { + error: Object + }, + setup(__props) { + var _a; + const { error } = __props; + (error.stack || "").split("\n").splice(1).map((line) => { + const text = line.replace("webpack:/", "").replace(".vue", ".js").trim(); + return { + text, + internal: line.includes("node_modules") && !line.includes(".cache") || line.includes("internal") || line.includes("new Promise") + }; + }).map((i) => `${i.text}`).join("\n"); + const statusCode = Number(error.statusCode || 500); + const is404 = statusCode === 404; + const statusMessage = (_a = error.statusMessage) != null ? _a : is404 ? "Page Not Found" : "Internal Server Error"; + const description = error.message || error.toString(); + const stack = void 0; + const _Error404 = defineAsyncComponent(() => import('./error-404-6d0186e4.mjs').then((r) => r.default || r)); + const _Error = defineAsyncComponent(() => import('./error-500-6ca426c2.mjs').then((r) => r.default || r)); + const ErrorTemplate = is404 ? _Error404 : _Error; + return (_ctx, _push, _parent, _attrs) => { + _push(ssrRenderComponent(unref(ErrorTemplate), mergeProps({ statusCode: unref(statusCode), statusMessage: unref(statusMessage), description: unref(description), stack: unref(stack) }, _attrs), null, _parent)); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/nuxt/dist/app/components/nuxt-error-page.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const _sfc_main$1 = _sfc_main; + +export { _sfc_main$1 as default }; +//# sourceMappingURL=error-component-969bdc5d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map new file mode 100644 index 00000000..0ab70c7b --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"error-component-969bdc5d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-component-969bdc5d.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs b/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs new file mode 100644 index 00000000..1690b40f --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs @@ -0,0 +1,281 @@ +import { computed, ref, readonly, watch, getCurrentInstance, unref, getCurrentScope, onScopeDispose, nextTick } from 'vue'; + +const isClient = false; +const isDef = (val) => typeof val !== "undefined"; +const isFunction = (val) => typeof val === "function"; +const isString = (val) => typeof val === "string"; +const noop = () => { +}; +function resolveUnref(r) { + return typeof r === "function" ? r() : unref(r); +} +function identity(arg) { + return arg; +} +function tryOnScopeDispose(fn) { + if (getCurrentScope()) { + onScopeDispose(fn); + return true; + } + return false; +} +function tryOnMounted(fn, sync = true) { + if (getCurrentInstance()) + ; + else if (sync) + fn(); + else + nextTick(fn); +} +function useTimeoutFn(cb, interval, options = {}) { + const { + immediate = true + } = options; + const isPending = ref(false); + let timer = null; + function clear() { + if (timer) { + clearTimeout(timer); + timer = null; + } + } + function stop() { + isPending.value = false; + clear(); + } + function start(...args) { + clear(); + isPending.value = true; + timer = setTimeout(() => { + isPending.value = false; + timer = null; + cb(...args); + }, resolveUnref(interval)); + } + if (immediate) { + isPending.value = true; + } + tryOnScopeDispose(stop); + return { + isPending: readonly(isPending), + start, + stop + }; +} +function unrefElement(elRef) { + var _a; + const plain = resolveUnref(elRef); + return (_a = plain == null ? void 0 : plain.$el) != null ? _a : plain; +} +const defaultWindow = void 0; +const defaultNavigator = isClient ? window.navigator : void 0; +function useEventListener(...args) { + let target; + let events; + let listeners; + let options; + if (isString(args[0]) || Array.isArray(args[0])) { + [events, listeners, options] = args; + target = defaultWindow; + } else { + [target, events, listeners, options] = args; + } + if (!target) + return noop; + if (!Array.isArray(events)) + events = [events]; + if (!Array.isArray(listeners)) + listeners = [listeners]; + const cleanups = []; + const cleanup = () => { + cleanups.forEach((fn) => fn()); + cleanups.length = 0; + }; + const register = (el, event, listener) => { + el.addEventListener(event, listener, options); + return () => el.removeEventListener(event, listener, options); + }; + const stopWatch = watch(() => unrefElement(target), (el) => { + cleanup(); + if (!el) + return; + cleanups.push(...events.flatMap((event) => { + return listeners.map((listener) => register(el, event, listener)); + })); + }, { immediate: true, flush: "post" }); + const stop = () => { + stopWatch(); + cleanup(); + }; + tryOnScopeDispose(stop); + return stop; +} +function useSupported(callback, sync = false) { + const isSupported = ref(); + const update = () => isSupported.value = Boolean(callback()); + update(); + tryOnMounted(update, sync); + return isSupported; +} +function useClipboard(options = {}) { + const { + navigator = defaultNavigator, + read = false, + source, + copiedDuring = 1500, + legacy = false + } = options; + const events = ["copy", "cut"]; + const isClipboardApiSupported = useSupported(() => navigator && "clipboard" in navigator); + const isSupported = computed(() => isClipboardApiSupported.value || legacy); + const text = ref(""); + const copied = ref(false); + const timeout = useTimeoutFn(() => copied.value = false, copiedDuring); + function updateText() { + if (isClipboardApiSupported.value) { + navigator.clipboard.readText().then((value) => { + text.value = value; + }); + } else { + text.value = legacyRead(); + } + } + if (isSupported.value && read) { + for (const event of events) + useEventListener(event, updateText); + } + async function copy(value = resolveUnref(source)) { + if (isSupported.value && value != null) { + if (isClipboardApiSupported.value) + await navigator.clipboard.writeText(value); + else + legacyCopy(value); + text.value = value; + copied.value = true; + timeout.start(); + } + } + function legacyCopy(value) { + const ta = document.createElement("textarea"); + ta.value = value != null ? value : ""; + ta.style.position = "absolute"; + ta.style.opacity = "0"; + document.body.appendChild(ta); + ta.select(); + document.execCommand("copy"); + ta.remove(); + } + function legacyRead() { + var _a, _b, _c; + return (_c = (_b = (_a = document == null ? void 0 : document.getSelection) == null ? void 0 : _a.call(document)) == null ? void 0 : _b.toString()) != null ? _c : ""; + } + return { + isSupported, + text, + copied, + copy + }; +} +function cloneFnJSON(source) { + return JSON.parse(JSON.stringify(source)); +} +const _global = typeof globalThis !== "undefined" ? globalThis : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {}; +const globalKey = "__vueuse_ssr_handlers__"; +_global[globalKey] = _global[globalKey] || {}; +_global[globalKey]; +var SwipeDirection; +(function(SwipeDirection2) { + SwipeDirection2["UP"] = "UP"; + SwipeDirection2["RIGHT"] = "RIGHT"; + SwipeDirection2["DOWN"] = "DOWN"; + SwipeDirection2["LEFT"] = "LEFT"; + SwipeDirection2["NONE"] = "NONE"; +})(SwipeDirection || (SwipeDirection = {})); +var __defProp = Object.defineProperty; +var __getOwnPropSymbols = Object.getOwnPropertySymbols; +var __hasOwnProp = Object.prototype.hasOwnProperty; +var __propIsEnum = Object.prototype.propertyIsEnumerable; +var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; +var __spreadValues = (a, b) => { + for (var prop in b || (b = {})) + if (__hasOwnProp.call(b, prop)) + __defNormalProp(a, prop, b[prop]); + if (__getOwnPropSymbols) + for (var prop of __getOwnPropSymbols(b)) { + if (__propIsEnum.call(b, prop)) + __defNormalProp(a, prop, b[prop]); + } + return a; +}; +const _TransitionPresets = { + easeInSine: [0.12, 0, 0.39, 0], + easeOutSine: [0.61, 1, 0.88, 1], + easeInOutSine: [0.37, 0, 0.63, 1], + easeInQuad: [0.11, 0, 0.5, 0], + easeOutQuad: [0.5, 1, 0.89, 1], + easeInOutQuad: [0.45, 0, 0.55, 1], + easeInCubic: [0.32, 0, 0.67, 0], + easeOutCubic: [0.33, 1, 0.68, 1], + easeInOutCubic: [0.65, 0, 0.35, 1], + easeInQuart: [0.5, 0, 0.75, 0], + easeOutQuart: [0.25, 1, 0.5, 1], + easeInOutQuart: [0.76, 0, 0.24, 1], + easeInQuint: [0.64, 0, 0.78, 0], + easeOutQuint: [0.22, 1, 0.36, 1], + easeInOutQuint: [0.83, 0, 0.17, 1], + easeInExpo: [0.7, 0, 0.84, 0], + easeOutExpo: [0.16, 1, 0.3, 1], + easeInOutExpo: [0.87, 0, 0.13, 1], + easeInCirc: [0.55, 0, 1, 0.45], + easeOutCirc: [0, 0.55, 0.45, 1], + easeInOutCirc: [0.85, 0, 0.15, 1], + easeInBack: [0.36, 0, 0.66, -0.56], + easeOutBack: [0.34, 1.56, 0.64, 1], + easeInOutBack: [0.68, -0.6, 0.32, 1.6] +}; +__spreadValues({ + linear: identity +}, _TransitionPresets); +function useVModel(props, key, emit, options = {}) { + var _a, _b, _c; + const { + clone = false, + passive = false, + eventName, + deep = false, + defaultValue + } = options; + const vm = getCurrentInstance(); + const _emit = emit || (vm == null ? void 0 : vm.emit) || ((_a = vm == null ? void 0 : vm.$emit) == null ? void 0 : _a.bind(vm)) || ((_c = (_b = vm == null ? void 0 : vm.proxy) == null ? void 0 : _b.$emit) == null ? void 0 : _c.bind(vm == null ? void 0 : vm.proxy)); + let event = eventName; + if (!key) { + { + key = "modelValue"; + } + } + event = eventName || event || `update:${key.toString()}`; + const cloneFn = (val) => !clone ? val : isFunction(clone) ? clone(val) : cloneFnJSON(val); + const getValue = () => isDef(props[key]) ? cloneFn(props[key]) : defaultValue; + if (passive) { + const initialValue = getValue(); + const proxy = ref(initialValue); + watch(() => props[key], (v) => proxy.value = cloneFn(v)); + watch(proxy, (v) => { + if (v !== props[key] || deep) + _emit(event, v); + }, { deep }); + return proxy; + } else { + return computed({ + get() { + return getValue(); + }, + set(value) { + _emit(event, value); + } + }); + } +} + +export { useVModel as a, useClipboard as u }; +//# sourceMappingURL=index-1624a23e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map b/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map new file mode 100644 index 00000000..e192897d --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"index-1624a23e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/index-1624a23e.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs b/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs new file mode 100644 index 00000000..d9a76ce8 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs @@ -0,0 +1,59 @@ +import { defineComponent, createBlock, Teleport, h } from 'vue'; +import { c as createError } from '../server.mjs'; +import 'ofetch'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; + +const components_islands = {}; +const islandComponents = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: components_islands +}); +const islandRenderer = defineComponent({ + props: { + context: { + type: Object, + required: true + } + }, + async setup(props) { + var _a; + const component = islandComponents[props.context.name]; + if (!component) { + throw createError({ + statusCode: 404, + statusMessage: `Island component not found: ${JSON.stringify(component)}` + }); + } + if (typeof component === "object") { + await ((_a = component.__asyncLoader) == null ? void 0 : _a.call(component)); + } + return () => [ + createBlock(Teleport, { to: "nuxt-island" }, [h(component || "span", props.context.props)]) + ]; + } +}); + +export { islandRenderer as default }; +//# sourceMappingURL=island-renderer-862b92a0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map b/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map new file mode 100644 index 00000000..f43112cc --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"island-renderer-862b92a0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/island-renderer-862b92a0.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,MAAM,qBAAqB,EAAC,CAAA;AAC5B,MAAM,gBAAA,0BAA0C,MAAO,CAAA;AAAA,EACrD,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,kBAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,iBAAiB,eAAgB,CAAA;AAAA,EACrC,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,SAAY,GAAA,gBAAA,CAAiB,KAAM,CAAA,OAAA,CAAQ,IAAI,CAAA,CAAA;AACrD,IAAA,IAAI,CAAC,SAAW,EAAA;AACd,MAAA,MAAM,WAAY,CAAA;AAAA,QAChB,UAAY,EAAA,GAAA;AAAA,QACZ,aAAe,EAAA,CAAA,4BAAA,EAA+B,IAAK,CAAA,SAAA,CAAU,SAAS,CAAA,CAAA,CAAA;AAAA,OACvE,CAAA,CAAA;AAAA,KACH;AACA,IAAI,IAAA,OAAO,cAAc,QAAU,EAAA;AACjC,MAAA,OAAA,CAAQ,KAAK,SAAU,CAAA,aAAA,KAAkB,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,SAAS,CAAA,CAAA,CAAA;AAAA,KAC5E;AACA,IAAA,OAAO,MAAM;AAAA,MACX,WAAY,CAAA,QAAA,EAAU,EAAE,EAAA,EAAI,eAAiB,EAAA,CAAC,CAAE,CAAA,SAAA,IAAa,MAAQ,EAAA,KAAA,CAAM,OAAQ,CAAA,KAAK,CAAC,CAAC,CAAA;AAAA,KAC5F,CAAA;AAAA,GACF;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs b/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs new file mode 100644 index 00000000..ecf279a2 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs @@ -0,0 +1,75 @@ +import { defineComponent, h, inject, computed, unref, Transition } from 'vue'; +import { l as layouts, d as appLayoutTransition, _ as _wrapIf } from '../server.mjs'; +import { f as useRoute } from './app.config-832f5f68.mjs'; +import { useRoute as useRoute$1 } from 'vue-router'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'unctx'; +import 'h3'; +import 'ufo'; +import './useDocus-928368c4.mjs'; +import 'ohash'; +import './query-dd064fd9.mjs'; +import 'cookie-es'; +import 'destr'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import 'hookable'; +import '../../nitro/config.mjs'; + +const LayoutLoader = defineComponent({ + name: "LayoutLoader", + inheritAttrs: false, + props: { + name: String, + ...{} + }, + async setup(props, context) { + const LayoutComponent = await layouts[props.name]().then((r) => r.default || r); + return () => { + return h(LayoutComponent, context.attrs, context.slots); + }; + } +}); +const __nuxt_component_0 = defineComponent({ + name: "NuxtLayout", + inheritAttrs: false, + props: { + name: { + type: [String, Boolean, Object], + default: null + } + }, + setup(props, context) { + const injectedRoute = inject("_route"); + const route = injectedRoute === useRoute() ? useRoute$1() : injectedRoute; + const layout = computed(() => { + var _a, _b; + return (_b = (_a = unref(props.name)) != null ? _a : route.meta.layout) != null ? _b : "default"; + }); + return () => { + var _a; + const hasLayout = layout.value && layout.value in layouts; + const transitionProps = (_a = route.meta.layoutTransition) != null ? _a : appLayoutTransition; + return _wrapIf(Transition, hasLayout && transitionProps, { + default: () => _wrapIf(LayoutLoader, hasLayout && { + key: layout.value, + name: layout.value, + ...{}, + ...context.attrs + }, context.slots).default() + }).default(); + }; + } +}); + +export { __nuxt_component_0 as default }; +//# sourceMappingURL=layout-88ff67c1.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map b/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map new file mode 100644 index 00000000..82096981 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"layout-88ff67c1.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/layout-88ff67c1.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,MAAM,eAAe,eAAgB,CAAA;AAAA,EACnC,IAAM,EAAA,cAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,IAAM,EAAA,MAAA;AAAA,IACN,GAAG,EAAC;AAAA,GACN;AAAA,EACA,MAAM,KAAM,CAAA,KAAA,EAAO,OAAS,EAAA;AAC1B,IAAA,MAAM,eAAkB,GAAA,MAAM,OAAQ,CAAA,KAAA,CAAM,IAAI,CAAA,EAAI,CAAA,IAAA,CAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAA,CAAA;AAC9E,IAAA,OAAO,MAAM;AACX,MAAA,OAAO,CAAE,CAAA,eAAA,EAAiB,OAAQ,CAAA,KAAA,EAAO,QAAQ,KAAK,CAAA,CAAA;AAAA,KACxD,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AACD,MAAM,qBAAqB,eAAgB,CAAA;AAAA,EACzC,IAAM,EAAA,YAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,CAAC,MAAQ,EAAA,OAAA,EAAS,MAAM,CAAA;AAAA,MAC9B,OAAS,EAAA,IAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,KAAA,CAAM,OAAO,OAAS,EAAA;AACpB,IAAM,MAAA,aAAA,GAAgB,OAAO,QAAQ,CAAA,CAAA;AACrC,IAAA,MAAM,KAAQ,GAAA,aAAA,KAAkB,QAAS,EAAA,GAAI,YAAe,GAAA,aAAA,CAAA;AAC5D,IAAM,MAAA,MAAA,GAAS,SAAS,MAAG;AArD/B,MAAA,IAAA,EAAA,EAAA,EAAA,CAAA;AAqDkC,MAAA,OAAA,CAAA,EAAA,GAAA,CAAA,EAAA,GAAA,KAAA,CAAM,MAAM,IAAI,CAAA,KAAhB,YAAqB,KAAM,CAAA,IAAA,CAAK,WAAhC,IAA0C,GAAA,EAAA,GAAA,SAAA,CAAA;AAAA,KAAS,CAAA,CAAA;AACjF,IAAA,OAAO,MAAM;AAtDjB,MAAA,IAAA,EAAA,CAAA;AAuDM,MAAA,MAAM,SAAY,GAAA,MAAA,CAAO,KAAS,IAAA,MAAA,CAAO,KAAS,IAAA,OAAA,CAAA;AAClD,MAAA,MAAM,eAAkB,GAAA,CAAA,EAAA,GAAA,KAAA,CAAM,IAAK,CAAA,gBAAA,KAAX,IAA+B,GAAA,EAAA,GAAA,mBAAA,CAAA;AACvD,MAAO,OAAA,OAAA,CAAQ,UAAY,EAAA,SAAA,IAAa,eAAiB,EAAA;AAAA,QACvD,OAAS,EAAA,MAAM,OAAQ,CAAA,YAAA,EAAc,SAAa,IAAA;AAAA,UAChD,KAAK,MAAO,CAAA,KAAA;AAAA,UACZ,MAAM,MAAO,CAAA,KAAA;AAAA,UACb,GAAG,EAAC;AAAA,UACJ,GAAG,OAAQ,CAAA,KAAA;AAAA,SACV,EAAA,OAAA,CAAQ,KAAK,CAAA,CAAE,OAAQ,EAAA;AAAA,OAC3B,EAAE,OAAQ,EAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs b/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs new file mode 100644 index 00000000..47a392e3 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs @@ -0,0 +1,55 @@ +import { _ as _export_sfc, a as __nuxt_component_0 } from './Container-1291608c.mjs'; +import { b as useDocus } from './useDocus-928368c4.mjs'; +import { useSSRContext, defineComponent, mergeProps, unref, withCtx, createVNode, renderSlot } from 'vue'; +import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import './app.config-832f5f68.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; + +const _sfc_main = /* @__PURE__ */ defineComponent({ + __name: "page", + __ssrInlineRender: true, + setup(__props) { + const { config } = useDocus(); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b, _c, _d; + const _component_Container = __nuxt_component_0; + _push(``); + _push(ssrRenderComponent(_component_Container, { + fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.main) == null ? void 0 : _b.fluid, + padded: (_d = (_c = unref(config)) == null ? void 0 : _c.main) == null ? void 0 : _d.padded + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`
    `); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); + _push2(`
    `); + } else { + return [ + createVNode("article", null, [ + renderSlot(_ctx.$slots, "default", {}, void 0, true) + ]) + ]; + } + }), + _: 3 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/layouts/page.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +const page = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-415bdc86"]]); + +export { page as default }; +//# sourceMappingURL=page-26ac7e13.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map b/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map new file mode 100644 index 00000000..e782b088 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"page-26ac7e13.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/page-26ac7e13.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;AAaA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,MAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,MAAO,EAAA,GAAI,QAAS,EAAA,CAAA;AAC5B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAI,IAAA,EAAA,EAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AAChB,MAAA,MAAM,oBAAuB,GAAA,kBAAA,CAAA;AAC7B,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,aAAc,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC5F,MAAA,KAAA,CAAM,mBAAmB,oBAAsB,EAAA;AAAA,QAC7C,KAAQ,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,KAAA;AAAA,QACpF,MAAS,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,MAAA;AAAA,OACpF,EAAA;AAAA,QACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAA,MAAA,CAAO,2BAA2B,QAAW,CAAA,CAAA,CAAA,CAAA,CAAA;AAC7C,YAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAC1E,YAAA,MAAA,CAAO,CAAY,UAAA,CAAA,CAAA,CAAA;AAAA,WACd,MAAA;AACL,YAAO,OAAA;AAAA,cACL,WAAA,CAAY,WAAW,IAAM,EAAA;AAAA,gBAC3B,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,eACpD,CAAA;AAAA,aACH,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,kDAAkD,CAAA,CAAA;AAC/H,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,IAAA,+BAAmC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs b/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs new file mode 100644 index 00000000..66442ae3 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs @@ -0,0 +1,6 @@ +const page_vue_vue_type_style_index_0_scoped_415bdc86_transformed_true_lang = ".page-layout[data-v-415bdc86]{display:flex;flex-direction:column;position:relative}"; + +const pageStyles_df5d38b1 = [page_vue_vue_type_style_index_0_scoped_415bdc86_transformed_true_lang]; + +export { pageStyles_df5d38b1 as default }; +//# sourceMappingURL=page-styles.df5d38b1.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map b/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map new file mode 100644 index 00000000..a0a50859 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"page-styles.df5d38b1.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/page-styles-1.mjs-f4528a37.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/page-styles.df5d38b1.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,qEAAwE,GAAA,qFAAA;;ACC9E,4BAAe,CAACA,qEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs b/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs new file mode 100644 index 00000000..4d227213 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs @@ -0,0 +1,6 @@ +const tailwind = "*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}"; + +const pinceauNuxtPlugin_serverStyles_1bf5bf59 = [tailwind]; + +export { pinceauNuxtPlugin_serverStyles_1bf5bf59 as default }; +//# sourceMappingURL=pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map b/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map new file mode 100644 index 00000000..07e2a4ce --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/pinceau-nuxt-plugin.server-styles-1.mjs-257bea56.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,QAAW,GAAA,2nEAAA;;ACCjB,gDAAe,CAACA,QAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs b/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs new file mode 100644 index 00000000..d462fd58 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs @@ -0,0 +1,154 @@ +import { ref } from 'vue'; +import { parse, serialize } from 'cookie-es'; +import { appendHeader } from 'h3'; +import destr from 'destr'; +import { isEqual } from 'ohash'; +import { u as useNuxtApp, e as useRequestEvent } from './app.config-832f5f68.mjs'; + +const CookieDefaults = { + path: "/", + watch: true, + decode: (val) => destr(decodeURIComponent(val)), + encode: (val) => encodeURIComponent(typeof val === "string" ? val : JSON.stringify(val)) +}; +function useCookie(name, _opts) { + var _a2; + var _a; + const opts = { ...CookieDefaults, ..._opts }; + const cookies = readRawCookies(opts) || {}; + const cookie = ref((_a2 = cookies[name]) != null ? _a2 : (_a = opts.default) == null ? void 0 : _a.call(opts)); + { + const nuxtApp = useNuxtApp(); + const writeFinalCookieValue = () => { + if (!isEqual(cookie.value, cookies[name])) { + writeServerCookie(useRequestEvent(nuxtApp), name, cookie.value, opts); + } + }; + const unhook = nuxtApp.hooks.hookOnce("app:rendered", writeFinalCookieValue); + nuxtApp.hooks.hookOnce("app:redirected", () => { + unhook(); + return writeFinalCookieValue(); + }); + } + return cookie; +} +function readRawCookies(opts = {}) { + var _a; + { + return parse(((_a = useRequestEvent()) == null ? void 0 : _a.req.headers.cookie) || "", opts); + } +} +function serializeCookie(name, value, opts = {}) { + if (value === null || value === void 0) { + return serialize(name, value, { ...opts, maxAge: -1 }); + } + return serialize(name, value, opts); +} +function writeServerCookie(event, name, value, opts = {}) { + if (event) { + appendHeader(event, "Set-Cookie", serializeCookie(name, value, opts)); + } +} +const get = (obj, path) => path.split(".").reduce((acc, part) => acc && acc[part], obj); +const _pick = (obj, condition) => Object.keys(obj).filter(condition).reduce((newObj, key) => Object.assign(newObj, { [key]: obj[key] }), {}); +const apply = (fn) => (data) => Array.isArray(data) ? data.map((item) => fn(item)) : fn(data); +const detectProperties = (keys) => { + const prefixes = []; + const properties = []; + for (const key of keys) { + if (["$", "_"].includes(key)) { + prefixes.push(key); + } else { + properties.push(key); + } + } + return { prefixes, properties }; +}; +const withoutKeys = (keys = []) => (obj) => { + if (keys.length === 0 || !obj) { + return obj; + } + const { prefixes, properties } = detectProperties(keys); + return _pick(obj, (key) => !properties.includes(key) && !prefixes.includes(key[0])); +}; +const withKeys = (keys = []) => (obj) => { + if (keys.length === 0 || !obj) { + return obj; + } + const { prefixes, properties } = detectProperties(keys); + return _pick(obj, (key) => properties.includes(key) || prefixes.includes(key[0])); +}; +const sortList = (data, params) => { + const comperable = new Intl.Collator(params.$locale, { + numeric: params.$numeric, + caseFirst: params.$caseFirst, + sensitivity: params.$sensitivity + }); + const keys = Object.keys(params).filter((key) => !key.startsWith("$")); + for (const key of keys) { + data = data.sort((a, b) => { + const values = [get(a, key), get(b, key)].map((value) => { + if (value === null) { + return void 0; + } + if (value instanceof Date) { + return value.toISOString(); + } + return value; + }); + if (params[key] === -1) { + values.reverse(); + } + return comperable.compare(values[0], values[1]); + }); + } + return data; +}; +const assertArray = (value, message = "Expected an array") => { + if (!Array.isArray(value)) { + throw new TypeError(message); + } +}; +const ensureArray = (value) => Array.isArray(value) ? value : value ? [value] : []; +const arrayParams = ["sort", "where", "only", "without"]; +const createQuery = (fetcher, intitialParams) => { + const queryParams = { + ...intitialParams + }; + for (const key of arrayParams) { + if (queryParams[key]) { + queryParams[key] = ensureArray(queryParams[key]); + } + } + const $set = (key, fn = (v) => v) => { + return (...values) => { + queryParams[key] = fn(...values); + return query; + }; + }; + const query = { + params: () => queryParams, + only: $set("only", ensureArray), + without: $set("without", ensureArray), + where: $set("where", (q) => [...ensureArray(queryParams.where), q]), + sort: $set("sort", (sort) => [...ensureArray(queryParams.sort), ...ensureArray(sort)]), + limit: $set("limit", (v) => parseInt(String(v), 10)), + skip: $set("skip", (v) => parseInt(String(v), 10)), + // find + find: () => fetcher(query), + findOne: () => { + queryParams.first = true; + return fetcher(query); + }, + findSurround: (surroundQuery, options) => { + queryParams.surround = { query: surroundQuery, ...options }; + return fetcher(query); + }, + // locale + locale: (_locale) => query.where({ _locale }) + }; + return query; +}; + +export { assertArray as a, apply as b, createQuery as c, withKeys as d, ensureArray as e, get as g, sortList as s, useCookie as u, withoutKeys as w }; +//# sourceMappingURL=query-dd064fd9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map b/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map new file mode 100644 index 00000000..7fc8e4e0 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"query-dd064fd9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/query-dd064fd9.js"],"sourcesContent":null,"names":["_a"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs b/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs new file mode 100644 index 00000000..44f3341c --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs @@ -0,0 +1,235 @@ +import { toRef, isRef, reactive, computed } from 'vue'; +import { u as useNuxtApp, l as __appConfig, f as useRoute } from './app.config-832f5f68.mjs'; +import { withoutTrailingSlash } from 'ufo'; + +function useState(...args) { + const autoKey = typeof args[args.length - 1] === "string" ? args.pop() : void 0; + if (typeof args[0] !== "string") { + args.unshift(autoKey); + } + const [_key, init] = args; + if (!_key || typeof _key !== "string") { + throw new TypeError("[nuxt] [useState] key must be a string: " + _key); + } + if (init !== void 0 && typeof init !== "function") { + throw new Error("[nuxt] [useState] init must be a function: " + init); + } + const key = "$s" + _key; + const nuxt = useNuxtApp(); + const state = toRef(nuxt.payload.state, key); + if (state.value === void 0 && init) { + const initialValue = init(); + if (isRef(initialValue)) { + nuxt.payload.state[key] = initialValue; + return initialValue; + } + state.value = initialValue; + } + return state; +} +function useAppConfig() { + const nuxtApp = useNuxtApp(); + if (!nuxtApp._appConfig) { + nuxtApp._appConfig = reactive(__appConfig); + } + return nuxtApp._appConfig; +} +const navBottomLink = (link) => { + if (!link.children) { + return link._path; + } + for (const child of (link == null ? void 0 : link.children) || []) { + const result = navBottomLink(child); + if (result) { + return result; + } + } +}; +const navDirFromPath = (path, tree) => { + for (const file of tree) { + if (file._path === path && !file._id) { + return file.children; + } + if (file.children) { + const result = navDirFromPath(path, file.children); + if (result) { + return result; + } + } + } +}; +const navPageFromPath = (path, tree) => { + for (const file of tree) { + if (file._path === path) { + return file; + } + if (file.children) { + const result = navPageFromPath(path, file.children); + if (result) { + return result; + } + } + } +}; +const navKeyFromPath = (path, key, tree) => { + let value; + const goDeep = (path2, tree2) => { + for (const file of tree2) { + if ((path2 == null ? void 0 : path2.startsWith(file._path)) && file[key]) { + value = file[key]; + } + if (file._path === path2) { + return; + } + if (file.children) { + goDeep(path2, file.children); + } + } + }; + goDeep(path, tree); + return value; +}; +const useContentHelpers = () => { + return { + navBottomLink, + navDirFromPath, + navPageFromPath, + navKeyFromPath + }; +}; +const useContentState = () => { + const pages = useState("dd-pages", () => ({})); + const surrounds = useState("dd-surrounds", () => ({})); + const navigation = useState("dd-navigation"); + const globals = useState("dd-globals", () => ({})); + return { + pages, + surrounds, + navigation, + globals + }; +}; +const useContent = () => { + const { navigation, pages, surrounds, globals } = useContentState(); + const _path = computed(() => withoutTrailingSlash(useRoute().path)); + const page = computed(() => pages.value[_path.value]); + const surround = computed(() => surrounds.value[_path.value]); + const toc = computed(() => { + var _a, _b; + return (_b = (_a = page == null ? void 0 : page.value) == null ? void 0 : _a.body) == null ? void 0 : _b.toc; + }); + const type = computed(() => { + var _a; + return (_a = page.value) == null ? void 0 : _a.type; + }); + const excerpt = computed(() => { + var _a; + return (_a = page.value) == null ? void 0 : _a.excerpt; + }); + const layout = computed(() => { + var _a; + return (_a = page.value) == null ? void 0 : _a.layout; + }); + const next = computed(() => { + var _a; + return (_a = surround.value) == null ? void 0 : _a[1]; + }); + const prev = computed(() => { + var _a; + return (_a = surround.value) == null ? void 0 : _a[0]; + }); + return { + // Refs + globals, + navigation, + surround, + page, + // From page + excerpt, + toc, + type, + layout, + // From surround + next, + prev + }; +}; +const useDocus = () => { + const docus = computed(() => { + var _a; + return ((_a = useAppConfig()) == null ? void 0 : _a.docus) || {}; + }); + const { navPageFromPath: navPageFromPath2, navDirFromPath: navDirFromPath2, navKeyFromPath: navKeyFromPath2 } = useContentHelpers(); + const { navigation, page } = useContent(); + const route = useRoute(); + const config = computed( + () => { + var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k; + const titleTemplate = ((_a = docus == null ? void 0 : docus.value) == null ? void 0 : _a.titleTemplate) || navKeyFromPath2((_b = page == null ? void 0 : page.value) == null ? void 0 : _b._path, "titleTemplate", navigation.value || []) || `%s \xB7 ${((_c = docus == null ? void 0 : docus.value) == null ? void 0 : _c.title) || "Docus"}`; + const main = ((_d = docus == null ? void 0 : docus.value) == null ? void 0 : _d.main) || {}; + const header = ((_e = docus == null ? void 0 : docus.value) == null ? void 0 : _e.header) || {}; + const aside = ((_f = docus == null ? void 0 : docus.value) == null ? void 0 : _f.aside) || {}; + const footer = ((_g = docus == null ? void 0 : docus.value) == null ? void 0 : _g.footer) || {}; + return { + // Raw appConfig + ...docus.value, + // Merged attributes + titleTemplate, + main: { + ...main, + ...navKeyFromPath2(route.path, "main", navigation.value || []), + ...(_h = page.value) == null ? void 0 : _h.main + }, + header: { + ...header, + ...navKeyFromPath2(route.path, "header", navigation.value || []), + ...(_i = page.value) == null ? void 0 : _i.header + }, + aside: { + ...aside, + ...navKeyFromPath2(route.path, "aside", navigation.value || []), + ...(_j = page.value) == null ? void 0 : _j.aside + }, + footer: { + ...footer, + ...navKeyFromPath2(route.path, "footer", navigation.value || []), + ...(_k = page.value) == null ? void 0 : _k.footer + } + }; + } + ); + const tree = computed(() => { + var _a, _b, _c, _d, _e; + let nav = navigation.value || []; + const _path = route.path; + const level = ((_b = (_a = config == null ? void 0 : config.value) == null ? void 0 : _a.aside) == null ? void 0 : _b.level) || 0; + const filtered = ((_d = (_c = config == null ? void 0 : config.value) == null ? void 0 : _c.aside) == null ? void 0 : _d.exclude) || []; + if (level) { + const path = _path.split("/"); + const leveledPath = path.splice(0, 1 + level).join("/"); + nav = navDirFromPath2(leveledPath, nav) || []; + if (!Array.isArray(nav)) { + nav = [nav]; + } + } + if (nav.length === 0) { + nav = navPageFromPath2(((_e = page.value) == null ? void 0 : _e._path) || "/", navigation.value || []); + if (!nav) { + return []; + } + if (!Array.isArray(nav)) { + nav = [nav]; + } + } + return nav.filter((item) => { + if (filtered.includes(item._path)) { + return false; + } + return true; + }); + }); + return { tree, config }; +}; + +export { useAppConfig as a, useDocus as b, useContent as c, useContentState as d, useContentHelpers as e, useState as u }; +//# sourceMappingURL=useDocus-928368c4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map b/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map new file mode 100644 index 00000000..4155d2b5 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"useDocus-928368c4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/useDocus-928368c4.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs b/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs new file mode 100644 index 00000000..57bc0c0a --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs @@ -0,0 +1,70 @@ +import { e as useRequestEvent } from './app.config-832f5f68.mjs'; + +const useGithub = () => { + const fetchRepository = (query) => { + const url = `/api/_github/repository/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchRelease = (query) => { + const url = `/api/_github/releases/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchLastRelease = (query) => { + const url = `/api/_github/releases/${encodeParams({ ...query, last: true })}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchReleases = (query) => { + const url = `/api/_github/releases/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchContributors = (query) => { + const url = `/api/_github/contributors/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchFileContributors = (query) => { + const url = `/api/_github/contributors/file/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchReadme = (query) => { + const url = `/api/_github/readme/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + const fetchCommits = (query) => { + const url = `/api/_github/commits/${encodeParams(query)}.json`; + addPrerenderPath(url); + return $fetch(url, { responseType: "json" }); + }; + return { + fetchRepository, + fetchReleases, + fetchRelease, + fetchLastRelease, + fetchContributors, + fetchFileContributors, + fetchReadme, + fetchCommits + }; +}; +function encodeParams(params) { + return Object.entries(params).map(([key, value]) => `${key}_${String(value)}`).join(":"); +} +function addPrerenderPath(path) { + const event = useRequestEvent(); + event.res.setHeader( + "x-nitro-prerender", + [ + event.res.getHeader("x-nitro-prerender"), + path + ].filter(Boolean).join(",") + ); +} + +export { useGithub as u }; +//# sourceMappingURL=useGithub-94614457.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map b/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map new file mode 100644 index 00000000..f8c08712 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"useGithub-94614457.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/useGithub-94614457.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs b/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs new file mode 100644 index 00000000..08e91c07 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs @@ -0,0 +1,228 @@ +import { u as useNuxtApp, b as useRuntimeConfig, c as callWithNuxt } from './app.config-832f5f68.mjs'; +import { createApp } from 'vue'; +import { r as refreshNuxtData } from './asyncData-c43d4319.mjs'; +import { u as useState, a as useAppConfig } from './useDocus-928368c4.mjs'; +import { u as useCookie } from './query-dd064fd9.mjs'; +import ContentPreviewMode from './ContentPreviewMode-97e009a4.mjs'; +import 'hookable'; +import 'unctx'; +import 'ufo'; +import 'h3'; +import '../server.mjs'; +import 'ofetch'; +import '@unhead/vue'; +import '@unhead/dom'; +import '@unhead/ssr'; +import 'vue-router'; +import 'ohash'; +import './DocsAsideTree-136bd08b.mjs'; +import 'vue/server-renderer'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import './Container-1291608c.mjs'; +import 'nanoid'; +import 'scule'; +import 'defu'; +import '../../nitro/config.mjs'; +import 'destr'; +import 'cookie-es'; + +const mergeDraft = (dbFiles = [], draftAdditions, draftDeletions) => { + const additions = [...draftAdditions || []]; + const deletions = [...draftDeletions || []]; + const mergedFiles = JSON.parse(JSON.stringify(dbFiles)); + for (const addition of additions) { + if (addition.oldPath) { + deletions.splice(deletions.findIndex((d) => d.path === addition.oldPath), 1); + const oldPathExistInCache = additions.find((a) => a.path === addition.oldPath); + if (oldPathExistInCache) { + mergedFiles.push({ path: addition.path, parsed: addition.parsed }); + } else { + const file = mergedFiles.find((f) => f.path === addition.oldPath); + if (file) { + file.path = addition.path; + if (addition.parsed) { + file.parsed = addition.parsed; + } else if (addition.pathMeta) { + ["_file", "_path", "_id", "_locale"].forEach((key) => { + file.parsed[key] = addition.pathMeta[key]; + }); + } + } + } + } else if (addition.new) { + mergedFiles.push({ path: addition.path, parsed: addition.parsed }); + } else { + const file = mergedFiles.find((f) => f.path === addition.path); + if (file) { + Object.assign(file, { path: addition.path, parsed: addition.parsed }); + } + } + } + for (const deletion of deletions) { + mergedFiles.splice(mergedFiles.findIndex((f) => f.path === deletion.path), 1); + } + const comperable = new Intl.Collator(void 0, { numeric: true }); + mergedFiles.sort((a, b) => comperable.compare(a.path, b.path)); + return mergedFiles; +}; +const StudioConfigRoot = ".studio"; +const StudioConfigFiles = { + appConfig: `${StudioConfigRoot}/app.config.json`, + tokensConfig: `${StudioConfigRoot}/tokens.config.json` +}; +const createSingleton = (fn) => { + let instance; + return (...args) => { + if (!instance) { + instance = fn(); + } + return instance; + }; +}; +function deepDelete(obj, newObj) { + for (const key in obj) { + const val = newObj[key]; + if (!(key in newObj)) { + delete obj[key]; + } + if (val !== null && typeof val === "object") { + deepDelete(obj[key], newObj[key]); + } + } +} +function deepAssign(obj, newObj) { + for (const key in newObj) { + const val = newObj[key]; + if (val !== null && typeof val === "object") { + obj[key] = obj[key] || {}; + deepAssign(obj[key], val); + } else { + obj[key] = val; + } + } +} +const useDefaultAppConfig = createSingleton(() => JSON.parse(JSON.stringify(useAppConfig()))); +const useStudio = () => { + const nuxtApp = useNuxtApp(); + const runtimeConfig = useRuntimeConfig().public.studio || {}; + const initialAppConfig = useDefaultAppConfig(); + let initialTokensConfig; + const storage = useState("studio-client-db", () => null); + const dbFiles = useState("studio-preview-db-files", () => []); + nuxtApp.hook("content:storage", (_storage) => { + storage.value = _storage; + }); + const syncPreviewFiles = async (contentStorage, files, ignoreBuiltContents = true) => { + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + const keys = await contentStorage.getKeys(`${previewToken.value}:`); + await Promise.all(keys.map((key) => contentStorage.removeItem(key))); + await contentStorage.setItem(`${previewToken.value}$`, JSON.stringify({ ignoreBuiltContents })); + await Promise.all( + files.map((item) => { + var _a; + return contentStorage.setItem(`${previewToken.value}:${(_a = item.parsed) == null ? void 0 : _a._id}`, JSON.stringify(item.parsed)); + }) + ); + }; + const syncPreviewAppConfig = (appConfig) => { + const _appConfig = callWithNuxt(nuxtApp, useAppConfig); + deepAssign(_appConfig, appConfig || initialAppConfig); + if (!appConfig) { + deepDelete(_appConfig, initialAppConfig); + } + }; + const syncPreviewTokensConfig = (tokensConfig) => { + var _a, _b, _c, _d; + const themeSheet = (_d = (_c = (_b = (_a = nuxtApp == null ? void 0 : nuxtApp.vueApp) == null ? void 0 : _a._context) == null ? void 0 : _b.config) == null ? void 0 : _c.globalProperties) == null ? void 0 : _d.$pinceauTheme; + if (!themeSheet || !(themeSheet == null ? void 0 : themeSheet.updateTheme)) { + return; + } + if (!initialTokensConfig) { + initialTokensConfig = JSON.parse(JSON.stringify((themeSheet == null ? void 0 : themeSheet.theme.value) || {})); + } + callWithNuxt(nuxtApp, themeSheet.updateTheme, [tokensConfig || initialTokensConfig]); + }; + const syncPreview = async (data) => { + dbFiles.value = data.files = data.files || dbFiles.value || []; + if (!storage.value) { + return false; + } + const mergedFiles = mergeDraft(data.files, data.additions, data.deletions); + const contentFiles = mergedFiles.filter((item) => !item.path.startsWith(StudioConfigRoot)); + await syncPreviewFiles(storage.value, contentFiles, (data.files || []).length !== 0); + const appConfig = mergedFiles.find((item) => item.path === StudioConfigFiles.appConfig); + syncPreviewAppConfig(appConfig == null ? void 0 : appConfig.parsed); + const tokensConfig = mergedFiles.find((item) => item.path === StudioConfigFiles.tokensConfig); + syncPreviewTokensConfig(tokensConfig == null ? void 0 : tokensConfig.parsed); + requestRerender(); + return true; + }; + const requestPreviewSynchronization = async () => { + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + await $fetch("api/projects/preview/sync", { + baseURL: runtimeConfig.apiURL, + method: "POST", + params: { + token: previewToken.value + } + }); + }; + const mountPreviewUI = () => { + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + const el = document.createElement("div"); + el.id = "__nuxt_preview_wrapper"; + document.body.appendChild(el); + createApp(ContentPreviewMode, { + previewToken, + apiURL: runtimeConfig.apiURL, + syncPreview, + requestPreviewSyncAPI: requestPreviewSynchronization + }).mount(el); + }; + const findContentWithId = async (path) => { + var _a, _b; + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + if (!path) { + return null; + } + path = path.replace(/\/$/, ""); + let content = await ((_a = storage.value) == null ? void 0 : _a.getItem(`${previewToken.value}:${path}`)); + if (!content) { + content = await ((_b = storage.value) == null ? void 0 : _b.getItem(path)); + } + return content; + }; + const updateContent = (content) => { + var _a; + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + if (!storage.value) { + return; + } + storage.value.setItem(`${previewToken.value}:${(_a = content.parsed) == null ? void 0 : _a._id}`, JSON.stringify(content.parsed)); + }; + const removeContentWithId = async (path) => { + var _a; + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + await ((_a = storage.value) == null ? void 0 : _a.removeItem(`${previewToken.value}:${path}`)); + }; + const requestRerender = () => { + callWithNuxt(nuxtApp, refreshNuxtData); + }; + return { + apiURL: runtimeConfig.apiURL, + contentStorage: storage, + syncPreviewFiles, + syncPreviewAppConfig, + syncPreviewTokensConfig, + requestPreviewSynchronization, + mountPreviewUI, + findContentWithId, + updateContent, + removeContentWithId, + requestRerender + }; +}; + +export { useStudio }; +//# sourceMappingURL=useStudio-7ec450fb.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map b/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map new file mode 100644 index 00000000..082fba48 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"useStudio-7ec450fb.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/useStudio-7ec450fb.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs b/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs new file mode 100644 index 00000000..c5998790 --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs @@ -0,0 +1,6 @@ +const welcome_vue_vue_type_style_index_0_scoped_a75d3b4d_lang = "@media (prefers-color-scheme:light){.get-started-gradient-border[data-v-a75d3b4d]{background:linear-gradient(90deg,#fff,#fff),linear-gradient(90deg,#00dc82,#1de0b1,#36e4da)}.gradient-border-modules[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#f7d14c,rgba(247,209,76,.6),hsla(0,0%,100%,.8),#f7d14c)}.gradient-border-examples[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#8deaff,rgba(141,234,255,.6),hsla(0,0%,100%,.8),#8deaff)}.gradient-border-documentation[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#00dc82,rgba(0,220,130,.6),hsla(0,0%,100%,.8),#00dc82)}}@media (prefers-color-scheme:dark){html:not(.light) .get-started-gradient-border[data-v-a75d3b4d]{background:linear-gradient(90deg,#18181b,#18181b),linear-gradient(90deg,#00dc82,#1de0b1,#36e4da)}html:not(.light) .gradient-border-modules[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#f7d14c,#a38108,hsla(0,0%,100%,.3),#a38108)}html:not(.light) .gradient-border-examples[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#8deaff,#008aa9,hsla(0,0%,100%,.3),#008aa9)}html:not(.light) .gradient-border-documentation[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#00dc82,#003f25,hsla(0,0%,100%,.2),#003f25)}}html.dark .get-started-gradient-border[data-v-a75d3b4d]{background:linear-gradient(90deg,#18181b,#18181b),linear-gradient(90deg,#00dc82,#1de0b1,#36e4da)}html.dark .gradient-border-modules[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#f7d14c,#a38108,hsla(0,0%,100%,.3),#a38108)}html.dark .gradient-border-examples[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#8deaff,#008aa9,hsla(0,0%,100%,.3),#008aa9)}html.dark .gradient-border-documentation[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#00dc82,#003f25,hsla(0,0%,100%,.2),#003f25)}.get-started-gradient-border[data-v-a75d3b4d]{background-clip:padding-box,border-box;background-origin:padding-box,border-box;border-color:transparent;border-radius:12px;border-width:1px}.get-started-gradient-border[data-v-a75d3b4d]:hover>:is(.get-started-gradient-left,.get-started-gradient-right){opacity:.2}.get-started-gradient-left[data-v-a75d3b4d],.get-started-gradient-right[data-v-a75d3b4d]{opacity:0}.gradient-border[data-v-a75d3b4d]{border-radius:12px;left:0;opacity:0;position:absolute;top:0;transform:translate(-1px,-1px);width:calc(100% + 2px);z-index:-1}.gradient-border-rect[data-v-a75d3b4d]{height:calc(100% + 2px)}@media (min-width:1024px){.gradient-border-rect[data-v-a75d3b4d]{height:calc(100% + 1px)}}.gradient-border-square[data-v-a75d3b4d]{height:calc(100% + 2px)}.modules-gradient-right[data-v-a75d3b4d]{opacity:0}.documentation-container:hover>.gradient-border[data-v-a75d3b4d],.examples-container:hover>.gradient-border[data-v-a75d3b4d],.modules-container:hover>.gradient-border[data-v-a75d3b4d]{animation:gradient-rotate 5s linear 0s infinite reverse;opacity:1;transition:all .3s linear}.examples-container:hover>.examples-gradient-right[data-v-a75d3b4d],.modules-container:hover>.modules-gradient-right[data-v-a75d3b4d]{opacity:.2}.examples-gradient-right[data-v-a75d3b4d]{opacity:0}.documentation-image-color-dark[data-v-a75d3b4d],.documentation-image-color-light[data-v-a75d3b4d],.examples-image-color-dark[data-v-a75d3b4d],.examples-image-color-light[data-v-a75d3b4d],.modules-image-color-dark[data-v-a75d3b4d],.modules-image-color-light[data-v-a75d3b4d]{display:none}@media (prefers-color-scheme:light){.modules-image-light[data-v-a75d3b4d]{display:block}.modules-container:hover>a>.modules-image-light[data-v-a75d3b4d],.modules-image-dark[data-v-a75d3b4d]{display:none}.examples-image-light[data-v-a75d3b4d],.modules-container:hover>a>.modules-image-color-light[data-v-a75d3b4d]{display:block}.examples-container:hover>a>.examples-image-light[data-v-a75d3b4d],.examples-image-dark[data-v-a75d3b4d]{display:none}.documentation-image-light[data-v-a75d3b4d],.examples-container:hover>a>.examples-image-color-light[data-v-a75d3b4d]{display:block}.documentation-container:hover>a>div>.documentation-image-light[data-v-a75d3b4d],.documentation-image-dark[data-v-a75d3b4d]{display:none}.documentation-container:hover>a>div>.documentation-image-color-light[data-v-a75d3b4d]{display:block}}@media (prefers-color-scheme:dark){html:not(.light) .modules-image-dark[data-v-a75d3b4d]{display:block}html:not(.light) .modules-image-light[data-v-a75d3b4d]{display:none}html:not(.light) .modules-container:hover>a>.modules-image-color-dark[data-v-a75d3b4d]{display:block}html:not(.light) .modules-container:hover>a>.modules-image-dark[data-v-a75d3b4d]{display:none}html:not(.light) .examples-image-dark[data-v-a75d3b4d]{display:block}html:not(.light) .examples-image-light[data-v-a75d3b4d]{display:none}html:not(.light) .examples-container:hover>a>.examples-image-color-dark[data-v-a75d3b4d]{display:block}html:not(.light) .examples-container:hover>a>.examples-image-dark[data-v-a75d3b4d]{display:none}html:not(.light) .documentation-image-dark[data-v-a75d3b4d]{display:block}html:not(.light) .documentation-image-light[data-v-a75d3b4d]{display:none}html:not(.light) .documentation-container:hover>a>div>.documentation-image-color-dark[data-v-a75d3b4d]{display:block}html:not(.light) .documentation-container:hover>a>div>.documentation-image-dark[data-v-a75d3b4d]{display:none}}html.dark .modules-image-dark[data-v-a75d3b4d]{display:block}html.dark .modules-image-light[data-v-a75d3b4d]{display:none}html.dark .modules-container:hover>a>.modules-image-color-dark[data-v-a75d3b4d]{display:block}html.dark .modules-container:hover>a>.modules-image-dark[data-v-a75d3b4d]{display:none}html.dark .examples-image-dark[data-v-a75d3b4d]{display:block}html.dark .examples-image-light[data-v-a75d3b4d]{display:none}html.dark .examples-container:hover>a>.examples-image-color-dark[data-v-a75d3b4d]{display:block}html.dark .examples-container:hover>a>.examples-image-dark[data-v-a75d3b4d]{display:none}html.dark .documentation-image-dark[data-v-a75d3b4d]{display:block}html.dark .documentation-image-light[data-v-a75d3b4d]{display:none}html.dark .documentation-container:hover>a>div>.documentation-image-color-dark[data-v-a75d3b4d]{display:block}html.dark .documentation-container:hover>a>div>.documentation-image-dark[data-v-a75d3b4d]{display:none}.bg-white[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-gray-100[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#eee;background-color:rgba(238,238,238,var(--tw-bg-opacity))}.bg-gradient-to-r[data-v-a75d3b4d]{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-l[data-v-a75d3b4d]{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.from-green-400[data-v-a75d3b4d]{--tw-gradient-from:rgba(55,233,144,var(--tw-from-opacity,1));--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.from-blue-400[data-v-a75d3b4d]{--tw-gradient-from:rgba(56,189,248,var(--tw-from-opacity,1));--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.from-yellow-400[data-v-a75d3b4d]{--tw-gradient-from:rgba(251,191,36,var(--tw-from-opacity,1));--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.to-transparent[data-v-a75d3b4d]{--tw-gradient-to:transparent}.border-gray-200[data-v-a75d3b4d]{--tw-border-opacity:1;border-color:#e0e0e0;border-color:rgba(224,224,224,var(--tw-border-opacity))}.hover\\:border-transparent[data-v-a75d3b4d]:hover{border-color:transparent}.rounded-xl[data-v-a75d3b4d]{border-radius:.75rem}.rounded[data-v-a75d3b4d]{border-radius:.25rem}.border[data-v-a75d3b4d]{border-width:1px}.border-t[data-v-a75d3b4d]{border-top-width:1px}.flex[data-v-a75d3b4d]{display:flex}.grid[data-v-a75d3b4d]{display:grid}.hidden[data-v-a75d3b4d]{display:none}.flex-col[data-v-a75d3b4d]{flex-direction:column}.flex-col-reverse[data-v-a75d3b4d]{flex-direction:column-reverse}.place-content-center[data-v-a75d3b4d]{place-content:center}.items-center[data-v-a75d3b4d]{align-items:center}.justify-end[data-v-a75d3b4d]{justify-content:flex-end}.justify-center[data-v-a75d3b4d]{justify-content:center}.flex-1[data-v-a75d3b4d]{flex:1 1 0%}.order-last[data-v-a75d3b4d]{order:9999}.font-mono[data-v-a75d3b4d]{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-semibold[data-v-a75d3b4d]{font-weight:600}.font-bold[data-v-a75d3b4d]{font-weight:700}.h-32[data-v-a75d3b4d]{height:8rem}.h-\\[70px\\][data-v-a75d3b4d]{height:70px}.text-4xl[data-v-a75d3b4d]{font-size:2.25rem;line-height:2.5rem}.text-xl[data-v-a75d3b4d]{font-size:1.25rem;line-height:1.75rem}.text-sm[data-v-a75d3b4d]{font-size:.875rem;line-height:1.25rem}.text-2xl[data-v-a75d3b4d]{font-size:1.5rem;line-height:2rem}.mx-auto[data-v-a75d3b4d]{margin-left:auto;margin-right:auto}.mb-2[data-v-a75d3b4d]{margin-bottom:.5rem}.max-w-\\[960px\\][data-v-a75d3b4d]{max-width:960px}.min-h-screen[data-v-a75d3b4d]{min-height:100vh}.p-1[data-v-a75d3b4d]{padding:.25rem}.px-4[data-v-a75d3b4d]{padding-left:1rem;padding-right:1rem}.py-14[data-v-a75d3b4d]{padding-bottom:3.5rem;padding-top:3.5rem}.py-6[data-v-a75d3b4d]{padding-bottom:1.5rem;padding-top:1.5rem}.px-5[data-v-a75d3b4d]{padding-left:1.25rem;padding-right:1.25rem}.pt-\\[58px\\][data-v-a75d3b4d]{padding-top:58px}.pb-6[data-v-a75d3b4d]{padding-bottom:1.5rem}.absolute[data-v-a75d3b4d]{position:absolute}.relative[data-v-a75d3b4d]{position:relative}.inset-y-0[data-v-a75d3b4d]{bottom:0;top:0}.inset-x-0[data-v-a75d3b4d]{left:0;right:0}.left-0[data-v-a75d3b4d]{left:0}.right-0[data-v-a75d3b4d]{right:0}.-top-\\[58px\\][data-v-a75d3b4d]{top:-58px}.-top-3[data-v-a75d3b4d]{top:-.75rem}.focus-visible\\:ring-2[data-v-a75d3b4d]:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color),var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color),0 0 #0000;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.text-center[data-v-a75d3b4d]{text-align:center}.text-black[data-v-a75d3b4d]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.text-gray-700[data-v-a75d3b4d]{--tw-text-opacity:1;color:#424242;color:rgba(66,66,66,var(--tw-text-opacity))}.hover\\:text-black[data-v-a75d3b4d]:hover{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-a75d3b4d]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-a75d3b4d]{width:100%}.w-\\[20\\%\\][data-v-a75d3b4d]{width:20%}.z-10[data-v-a75d3b4d]{z-index:10}.z-1[data-v-a75d3b4d]{z-index:1}.gap-6[data-v-a75d3b4d]{grid-gap:1.5rem;gap:1.5rem}.gap-3[data-v-a75d3b4d]{grid-gap:.75rem;gap:.75rem}.gap-x-4[data-v-a75d3b4d]{grid-column-gap:1rem;-webkit-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.gap-y-16[data-v-a75d3b4d]{grid-row-gap:4rem;-webkit-row-gap:4rem;-moz-row-gap:4rem;row-gap:4rem}.gap-y-4[data-v-a75d3b4d]{grid-row-gap:1rem;-webkit-row-gap:1rem;-moz-row-gap:1rem;row-gap:1rem}.gap-y-2[data-v-a75d3b4d]{grid-row-gap:.5rem;-webkit-row-gap:.5rem;-moz-row-gap:.5rem;row-gap:.5rem}.grid-cols-2[data-v-a75d3b4d]{grid-template-columns:repeat(2,minmax(0,1fr))}.col-span-2[data-v-a75d3b4d]{-ms-grid-column-span:span 2/span 2;grid-column:span 2/span 2}.row-span-2[data-v-a75d3b4d]{-ms-grid-row-span:span 2/span 2;grid-row:span 2/span 2}.transition-opacity[data-v-a75d3b4d]{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-300[data-v-a75d3b4d]{transition-duration:.3s}@media (min-width:640px){.sm\\:flex-row[data-v-a75d3b4d]{flex-direction:row}.sm\\:justify-between[data-v-a75d3b4d]{justify-content:space-between}.sm\\:h-34[data-v-a75d3b4d]{height:8.5rem}.sm\\:text-base[data-v-a75d3b4d]{font-size:1rem;line-height:1.5rem}.sm\\:text-5xl[data-v-a75d3b4d]{font-size:3rem;line-height:1}.sm\\:min-h-\\[220px\\][data-v-a75d3b4d]{min-height:220px}.sm\\:px-6[data-v-a75d3b4d]{padding-left:1.5rem;padding-right:1.5rem}.sm\\:px-28[data-v-a75d3b4d]{padding-left:7rem;padding-right:7rem}.sm\\:col-span-1[data-v-a75d3b4d]{-ms-grid-column-span:span 1/span 1;grid-column:span 1/span 1}}@media (min-width:768px){.md\\:min-h-\\[180px\\][data-v-a75d3b4d]{min-height:180px}}@media (min-width:1024px){.lg\\:flex-col[data-v-a75d3b4d]{flex-direction:column}.lg\\:order-none[data-v-a75d3b4d]{order:0}.lg\\:min-h-min[data-v-a75d3b4d]{min-height:-moz-min-content;min-height:min-content}.lg\\:py-7[data-v-a75d3b4d]{padding-bottom:1.75rem;padding-top:1.75rem}.lg\\:px-8[data-v-a75d3b4d]{padding-left:2rem;padding-right:2rem}.lg\\:grid-cols-10[data-v-a75d3b4d]{grid-template-columns:repeat(10,minmax(0,1fr))}.lg\\:col-span-10[data-v-a75d3b4d]{-ms-grid-column-span:span 10/span 10;grid-column:span 10/span 10}.lg\\:col-span-6[data-v-a75d3b4d]{-ms-grid-column-span:span 6/span 6;grid-column:span 6/span 6}.lg\\:col-span-4[data-v-a75d3b4d]{-ms-grid-column-span:span 4/span 4;grid-column:span 4/span 4}}@media (prefers-color-scheme:dark){html:not(.light) .dark\\:bg-black[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\\:bg-white\\/10[data-v-a75d3b4d]{--tw-bg-opacity:.1;background-color:hsla(0,0%,100%,.1);background-color:rgba(255,255,255,var(--tw-bg-opacity))}html:not(.light) .dark\\:bg-gray-900[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#18181b;background-color:rgba(24,24,27,var(--tw-bg-opacity))}html:not(.light) .dark\\:border-transparent[data-v-a75d3b4d]{border-color:transparent}html:not(.light) .dark\\:border-gray-900[data-v-a75d3b4d]{--tw-border-opacity:1;border-color:#18181b;border-color:rgba(24,24,27,var(--tw-border-opacity))}html:not(.light) .dark\\:border-none[data-v-a75d3b4d]{border-style:none}html:not(.light) .dark\\:block[data-v-a75d3b4d]{display:block}html:not(.light) .dark\\:hidden[data-v-a75d3b4d]{display:none}html:not(.light) .dark\\:text-white[data-v-a75d3b4d]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}html:not(.light) .dark\\:text-gray-300[data-v-a75d3b4d]{--tw-text-opacity:1;color:#bdbdbd;color:rgba(189,189,189,var(--tw-text-opacity))}html:not(.light) .dark\\:hover\\:text-white[data-v-a75d3b4d]:hover{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\\:bg-black[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\\:bg-white\\/10[data-v-a75d3b4d]{--tw-bg-opacity:.1;background-color:hsla(0,0%,100%,.1);background-color:rgba(255,255,255,var(--tw-bg-opacity))}html.dark .dark\\:bg-gray-900[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#18181b;background-color:rgba(24,24,27,var(--tw-bg-opacity))}html.dark .dark\\:border-transparent[data-v-a75d3b4d]{border-color:transparent}html.dark .dark\\:border-gray-900[data-v-a75d3b4d]{--tw-border-opacity:1;border-color:#18181b;border-color:rgba(24,24,27,var(--tw-border-opacity))}html.dark .dark\\:border-none[data-v-a75d3b4d]{border-style:none}html.dark .dark\\:block[data-v-a75d3b4d]{display:block}html.dark .dark\\:hidden[data-v-a75d3b4d]{display:none}html.dark .dark\\:text-white[data-v-a75d3b4d]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}html.dark .dark\\:text-gray-300[data-v-a75d3b4d]{--tw-text-opacity:1;color:#bdbdbd;color:rgba(189,189,189,var(--tw-text-opacity))}html.dark .dark\\:hover\\:text-white[data-v-a75d3b4d]:hover{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}"; + +const welcomeStyles_85286bcd = [welcome_vue_vue_type_style_index_0_scoped_a75d3b4d_lang]; + +export { welcomeStyles_85286bcd as default }; +//# sourceMappingURL=welcome-styles.85286bcd.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map b/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map new file mode 100644 index 00000000..57873aab --- /dev/null +++ b/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"welcome-styles.85286bcd.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/welcome-styles-1.mjs-e860ea16.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/welcome-styles.85286bcd.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uDAA0D,GAAA,4+eAAA;;ACChE,+BAAe,CAACA,uDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/client.manifest.mjs b/docs/.output/server/chunks/app/client.manifest.mjs new file mode 100644 index 00000000..148bd27d --- /dev/null +++ b/docs/.output/server/chunks/app/client.manifest.mjs @@ -0,0 +1,2847 @@ +const client_manifest = { + "Alert.css": { + "resourceType": "style", + "file": "Alert.f24f4058.css", + "src": "Alert.css" + }, + "BlockHero.css": { + "resourceType": "style", + "file": "BlockHero.4aa0ef8d.css", + "src": "BlockHero.css" + }, + "ButtonLink.css": { + "resourceType": "style", + "file": "ButtonLink.1b73392c.css", + "src": "ButtonLink.css" + }, + "Callout.css": { + "resourceType": "style", + "file": "Callout.a5db879a.css", + "src": "Callout.css" + }, + "Card.css": { + "resourceType": "style", + "file": "Card.5dfb7f30.css", + "src": "Card.css" + }, + "CardGrid.css": { + "resourceType": "style", + "file": "CardGrid.54558efd.css", + "src": "CardGrid.css" + }, + "CodeBlock.css": { + "resourceType": "style", + "file": "CodeBlock.e4cadaca.css", + "src": "CodeBlock.css" + }, + "CodeGroup.css": { + "resourceType": "style", + "file": "CodeGroup.92ac881c.css", + "src": "CodeGroup.css" + }, + "ComponentPlayground.css": { + "resourceType": "style", + "file": "ComponentPlayground.3f4b16b9.css", + "src": "ComponentPlayground.css" + }, + "Container.css": { + "resourceType": "style", + "file": "Container.dc145a5e.css", + "src": "Container.css" + }, + "ContentPreviewMode.css": { + "resourceType": "style", + "file": "ContentPreviewMode.dea45f14.css", + "src": "ContentPreviewMode.css" + }, + "DocsAside.css": { + "resourceType": "style", + "file": "DocsAside.d7386185.css", + "src": "DocsAside.css" + }, + "DocsAsideTree.css": { + "resourceType": "style", + "file": "DocsAsideTree.b13c5d2f.css", + "src": "DocsAsideTree.css" + }, + "DocsPageBottom.css": { + "resourceType": "style", + "file": "DocsPageBottom.d9d559e1.css", + "src": "DocsPageBottom.css" + }, + "DocsPageLayout.css": { + "resourceType": "style", + "file": "DocsPageLayout.0537ea8c.css", + "src": "DocsPageLayout.css" + }, + "DocsPrevNext.css": { + "resourceType": "style", + "file": "DocsPrevNext.6bb4ff17.css", + "src": "DocsPrevNext.css" + }, + "DocsToc.css": { + "resourceType": "style", + "file": "DocsToc.6b8d2996.css", + "src": "DocsToc.css" + }, + "DocsTocLinks.css": { + "resourceType": "style", + "file": "DocsTocLinks.2846f127.css", + "src": "DocsTocLinks.css" + }, + "DocumentDrivenNotFound.css": { + "resourceType": "style", + "file": "DocumentDrivenNotFound.434430ce.css", + "src": "DocumentDrivenNotFound.css" + }, + "HeroAnnouncement.css": { + "resourceType": "style", + "file": "HeroAnnouncement.c8294d82.css", + "src": "HeroAnnouncement.css" + }, + "IconNuxtStudio.css": { + "resourceType": "style", + "file": "IconNuxtStudio.34390cd8.css", + "src": "IconNuxtStudio.css" + }, + "List.css": { + "resourceType": "style", + "file": "List.a65f0e81.css", + "src": "List.css" + }, + "MyButton.css": { + "resourceType": "style", + "file": "MyButton.c36465b2.css", + "src": "MyButton.css" + }, + "PropInspector.css": { + "resourceType": "style", + "file": "PropInspector.8b357721.css", + "src": "PropInspector.css" + }, + "ProseA.css": { + "resourceType": "style", + "file": "ProseA.89c7f0ff.css", + "src": "ProseA.css" + }, + "ProseBlockquote.css": { + "resourceType": "style", + "file": "ProseBlockquote.e233c07e.css", + "src": "ProseBlockquote.css" + }, + "ProseCode.css": { + "resourceType": "style", + "file": "ProseCode.69d80bcc.css", + "src": "ProseCode.css" + }, + "ProseEm.css": { + "resourceType": "style", + "file": "ProseEm.26a085fc.css", + "src": "ProseEm.css" + }, + "ProseH1.css": { + "resourceType": "style", + "file": "ProseH1.e8ed25c4.css", + "src": "ProseH1.css" + }, + "ProseH2.css": { + "resourceType": "style", + "file": "ProseH2.39cb29c9.css", + "src": "ProseH2.css" + }, + "ProseH3.css": { + "resourceType": "style", + "file": "ProseH3.185f3970.css", + "src": "ProseH3.css" + }, + "ProseH5.css": { + "resourceType": "style", + "file": "ProseH5.85b0a165.css", + "src": "ProseH5.css" + }, + "ProseH6.css": { + "resourceType": "style", + "file": "ProseH6.c7358255.css", + "src": "ProseH6.css" + }, + "ProseHr.css": { + "resourceType": "style", + "file": "ProseHr.c7c78bbe.css", + "src": "ProseHr.css" + }, + "ProseImg.css": { + "resourceType": "style", + "file": "ProseImg.018721e2.css", + "src": "ProseImg.css" + }, + "ProseLi.css": { + "resourceType": "style", + "file": "ProseLi.ac05b421.css", + "src": "ProseLi.css" + }, + "ProseOl.css": { + "resourceType": "style", + "file": "ProseOl.d78cb0de.css", + "src": "ProseOl.css" + }, + "ProseStrong.css": { + "resourceType": "style", + "file": "ProseStrong.263d77e1.css", + "src": "ProseStrong.css" + }, + "ProseUl.css": { + "resourceType": "style", + "file": "ProseUl.85b434de.css", + "src": "ProseUl.css" + }, + "Sandbox.css": { + "resourceType": "style", + "file": "Sandbox.68fd6c5d.css", + "src": "Sandbox.css" + }, + "Terminal.css": { + "resourceType": "style", + "file": "Terminal.55a17588.css", + "src": "Terminal.css" + }, + "VideoPlayer.css": { + "resourceType": "style", + "file": "VideoPlayer.e2296f21.css", + "src": "VideoPlayer.css" + }, + "VoltaBoard.css": { + "resourceType": "style", + "file": "VoltaBoard.a5d6b336.css", + "src": "VoltaBoard.css" + }, + "_CodeGroup.vue.e138b097.js": { + "resourceType": "script", + "module": true, + "css": [ + "CodeGroup.92ac881c.css" + ], + "file": "CodeGroup.vue.e138b097.js", + "imports": [ + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "CodeGroup.92ac881c.css": { + "file": "CodeGroup.92ac881c.css", + "resourceType": "style" + }, + "_ComponentPlayground.vue.1e5cc557.js": { + "resourceType": "script", + "module": true, + "css": [ + "ComponentPlayground.3f4b16b9.css" + ], + "file": "ComponentPlayground.vue.1e5cc557.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "_runtime-core.esm-bundler.6894272a.js", + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue" + ] + }, + "ComponentPlayground.3f4b16b9.css": { + "file": "ComponentPlayground.3f4b16b9.css", + "resourceType": "style" + }, + "_ComponentPlaygroundSlots.vue.d9207f3c.js": { + "resourceType": "script", + "module": true, + "file": "ComponentPlaygroundSlots.vue.d9207f3c.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_ComponentPlaygroundTokens.vue.43c587d1.js": { + "resourceType": "script", + "module": true, + "file": "ComponentPlaygroundTokens.vue.43c587d1.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_Container.f1017aa2.js": { + "resourceType": "script", + "module": true, + "css": [ + "Container.dc145a5e.css" + ], + "dynamicImports": [ + "node_modules/pinceau/dist/chunks/debug.mjs" + ], + "file": "Container.f1017aa2.js", + "imports": [ + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true + }, + "Container.dc145a5e.css": { + "file": "Container.dc145a5e.css", + "resourceType": "style" + }, + "_DocsAsideTree.b95e55e0.js": { + "resourceType": "script", + "module": true, + "css": [ + "DocsAsideTree.b13c5d2f.css" + ], + "file": "DocsAsideTree.b95e55e0.js", + "imports": [ + "_app.config.f41ab05d.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js" + ], + "isDynamicEntry": true + }, + "DocsAsideTree.b13c5d2f.css": { + "file": "DocsAsideTree.b13c5d2f.css", + "resourceType": "style" + }, + "_EditOnLink.vue.1d2292f2.js": { + "resourceType": "script", + "module": true, + "file": "EditOnLink.vue.1d2292f2.js", + "imports": [ + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_List.vue.98cb48bf.js": { + "resourceType": "script", + "module": true, + "css": [ + "List.a65f0e81.css" + ], + "file": "List.vue.98cb48bf.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "List.a65f0e81.css": { + "file": "List.a65f0e81.css", + "resourceType": "style" + }, + "_NuxtImg.vue.a13022c3.js": { + "resourceType": "script", + "module": true, + "file": "NuxtImg.vue.a13022c3.js", + "imports": [ + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_app.config.f41ab05d.js": { + "resourceType": "script", + "module": true, + "file": "app.config.f41ab05d.js", + "imports": [ + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true + }, + "_asyncData.7c06b2d5.js": { + "resourceType": "script", + "module": true, + "file": "asyncData.7c06b2d5.js", + "imports": [ + "_app.config.f41ab05d.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_cookie.b9cff64d.js": { + "resourceType": "script", + "module": true, + "file": "cookie.b9cff64d.js", + "imports": [ + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_index.889aa611.js": { + "resourceType": "script", + "module": true, + "file": "index.889aa611.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_index.d2b0cb5e.js": { + "resourceType": "script", + "module": true, + "file": "index.d2b0cb5e.js" + }, + "_query.c3f7607a.js": { + "resourceType": "script", + "module": true, + "file": "query.c3f7607a.js" + }, + "_runtime-core.esm-bundler.6894272a.js": { + "resourceType": "script", + "module": true, + "file": "runtime-core.esm-bundler.6894272a.js" + }, + "_useDocus.41ab1ca5.js": { + "resourceType": "script", + "module": true, + "file": "useDocus.41ab1ca5.js", + "imports": [ + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js" + ] + }, + "_useGithub.1972ce55.js": { + "resourceType": "script", + "module": true, + "file": "useGithub.1972ce55.js", + "imports": [ + "_app.config.f41ab05d.js" + ] + }, + "components/content/Example/ExampleCard.vue": { + "resourceType": "script", + "module": true, + "file": "ExampleCard.26f9bb19.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "components/content/Example/ExampleCard.vue" + }, + "components/content/Example/ExampleHero.vue": { + "resourceType": "script", + "module": true, + "file": "ExampleHero.02aa09cf.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "components/content/Example/ExampleHero.vue" + }, + "components/content/Example/ExampleIconCard.vue": { + "resourceType": "script", + "module": true, + "file": "ExampleIconCard.07caa17e.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "components/content/Example/ExampleIconCard.vue" + }, + "components/content/Example/ExampleMultiselect.vue": { + "resourceType": "script", + "module": true, + "file": "ExampleMultiselect.edfb3bb6.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "components/content/Example/ExampleMultiselect.vue" + }, + "components/content/Example/ExampleTheTitle.vue": { + "resourceType": "script", + "module": true, + "file": "ExampleTheTitle.f00d8fad.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "components/content/Example/ExampleTheTitle.vue" + }, + "components/content/HeroAnnouncement.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "HeroAnnouncement.15bcf84c.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "components/content/HeroAnnouncement.vue" + }, + "HeroAnnouncement.c8294d82.css": { + "file": "HeroAnnouncement.c8294d82.css", + "resourceType": "style" + }, + "components/content/IconMarkdown.vue": { + "resourceType": "script", + "module": true, + "file": "IconMarkdown.abd5e80b.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "components/content/IconMarkdown.vue" + }, + "components/content/MyButton.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "MyButton.67bdaa98.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "components/content/MyButton.vue" + }, + "MyButton.c36465b2.css": { + "file": "MyButton.c36465b2.css", + "resourceType": "style" + }, + "components/content/PropInspector.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "PropInspector.83153412.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "components/content/PropInspector.vue" + }, + "PropInspector.8b357721.css": { + "file": "PropInspector.8b357721.css", + "resourceType": "style" + }, + "components/content/ReadMore.vue": { + "resourceType": "script", + "module": true, + "css": [ + "Alert.f24f4058.css" + ], + "file": "ReadMore.4d40ce3f.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" + ], + "isDynamicEntry": true, + "src": "components/content/ReadMore.vue" + }, + "Alert.f24f4058.css": { + "file": "Alert.f24f4058.css", + "resourceType": "style" + }, + "layouts/docs-page.css": { + "resourceType": "style", + "file": "docs-page.5b0d6071.css", + "src": "layouts/docs-page.css" + }, + "layouts/docs-page.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "docs-page.436b5c87.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "layouts/docs-page.vue" + }, + "docs-page.5b0d6071.css": { + "file": "docs-page.5b0d6071.css", + "resourceType": "style" + }, + "node_modules/@docsearch/css/dist/style.css": { + "resourceType": "style", + "file": "style.6a49f87f.css", + "src": "node_modules/@docsearch/css/dist/style.css" + }, + "node_modules/@docsearch/js/dist/esm/index.js": { + "resourceType": "script", + "module": true, + "file": "index.ade63bb5.js", + "isDynamicEntry": true, + "src": "node_modules/@docsearch/js/dist/esm/index.js" + }, + "node_modules/@nuxt-themes/docus/components/app/AppLayout.vue": { + "resourceType": "script", + "module": true, + "file": "AppLayout.7354fe11.js", + "imports": [ + "node_modules/nuxt/dist/app/entry.mjs", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/app/AppLayout.vue" + }, + "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocumentDrivenNotFound.66d77c6e.js", + "imports": [ + "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue" + }, + "DocumentDrivenNotFound.434430ce.css": { + "file": "DocumentDrivenNotFound.434430ce.css", + "resourceType": "style" + }, + "ButtonLink.1b73392c.css": { + "file": "ButtonLink.1b73392c.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocsAside.08a0955d.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue" + }, + "DocsAside.d7386185.css": { + "file": "DocsAside.d7386185.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocsPageBottom.b38ecc43.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", + "_EditOnLink.vue.1d2292f2.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue" + }, + "DocsPageBottom.d9d559e1.css": { + "file": "DocsPageBottom.d9d559e1.css", + "resourceType": "style" + }, + "ProseA.89c7f0ff.css": { + "file": "ProseA.89c7f0ff.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocsPageLayout.d352cf62.js", + "imports": [ + "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue", + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue", + "_Container.f1017aa2.js", + "_useDocus.41ab1ca5.js", + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", + "_EditOnLink.vue.1d2292f2.js", + "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue" + }, + "DocsPageLayout.0537ea8c.css": { + "file": "DocsPageLayout.0537ea8c.css", + "resourceType": "style" + }, + "DocsPrevNext.6bb4ff17.css": { + "file": "DocsPrevNext.6bb4ff17.css", + "resourceType": "style" + }, + "DocsTocLinks.2846f127.css": { + "file": "DocsTocLinks.2846f127.css", + "resourceType": "style" + }, + "DocsToc.6b8d2996.css": { + "file": "DocsToc.6b8d2996.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocsPrevNext.2b9ea48f.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue" + }, + "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocsToc.55846f28.js", + "imports": [ + "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue" + }, + "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "DocsTocLinks.644c91ee.js", + "imports": [ + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_DocsAsideTree.b95e55e0.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue" + }, + "node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue": { + "resourceType": "script", + "module": true, + "file": "EditOnLink.77af6984.js", + "imports": [ + "_EditOnLink.vue.1d2292f2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue" + }, + "node_modules/@nuxt-themes/docus/layouts/default.vue": { + "resourceType": "script", + "module": true, + "css": [ + "DocsAside.d7386185.css", + "Alert.f24f4058.css", + "ProseA.89c7f0ff.css", + "DocsPageBottom.d9d559e1.css", + "DocsPrevNext.6bb4ff17.css", + "DocsTocLinks.2846f127.css", + "DocsToc.6b8d2996.css", + "DocsPageLayout.0537ea8c.css" + ], + "file": "default.aab8fc36.js", + "imports": [ + "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", + "_EditOnLink.vue.1d2292f2.js", + "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/layouts/default.vue" + }, + "node_modules/@nuxt-themes/docus/layouts/page.css": { + "resourceType": "style", + "file": "page.70291227.css", + "src": "node_modules/@nuxt-themes/docus/layouts/page.css" + }, + "node_modules/@nuxt-themes/docus/layouts/page.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "page.f33b5a13.js", + "imports": [ + "_Container.f1017aa2.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_app.config.f41ab05d.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/docus/layouts/page.vue" + }, + "page.70291227.css": { + "file": "page.70291227.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/Alert.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Alert.41cb256b.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Alert.vue" + }, + "node_modules/@nuxt-themes/elements/components/globals/Badge.css": { + "resourceType": "style", + "file": "Badge.05529646.css", + "src": "node_modules/@nuxt-themes/elements/components/globals/Badge.css" + }, + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Badge.af643d4e.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Badge.vue" + }, + "Badge.05529646.css": { + "file": "Badge.05529646.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ButtonLink.91883881.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_app.config.f41ab05d.js", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue" + }, + "node_modules/@nuxt-themes/elements/components/globals/Callout.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Callout.12d57ced.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_DocsAsideTree.b95e55e0.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Callout.vue" + }, + "Callout.a5db879a.css": { + "file": "Callout.a5db879a.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "CodeBlock.163820c8.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue" + }, + "CodeBlock.e4cadaca.css": { + "file": "CodeBlock.e4cadaca.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue": { + "resourceType": "script", + "module": true, + "file": "CodeGroup.c21eec3c.js", + "imports": [ + "_CodeGroup.vue.e138b097.js", + "_Container.f1017aa2.js", + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue", + "css": [] + }, + "node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue": { + "resourceType": "script", + "module": true, + "file": "CopyButton.f7858c79.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_index.889aa611.js", + "_runtime-core.esm-bundler.6894272a.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue" + }, + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.css": { + "resourceType": "style", + "file": "Ellipsis.f7ff00dc.css", + "src": "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.css" + }, + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Ellipsis.50580cd1.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue" + }, + "Ellipsis.f7ff00dc.css": { + "file": "Ellipsis.f7ff00dc.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/List.vue": { + "resourceType": "script", + "module": true, + "file": "List.63030545.js", + "imports": [ + "_List.vue.98cb48bf.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/List.vue", + "css": [] + }, + "node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue": { + "resourceType": "script", + "module": true, + "file": "NuxtImg.66944f8e.js", + "imports": [ + "_NuxtImg.vue.a13022c3.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue" + }, + "node_modules/@nuxt-themes/elements/components/globals/Props.vue": { + "resourceType": "script", + "module": true, + "file": "Props.876d937c.js", + "imports": [ + "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "_index.d2b0cb5e.js", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Props.vue" + }, + "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Sandbox.b8bdb0c7.js", + "imports": [ + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "node_modules/nuxt/dist/app/entry.mjs", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue" + }, + "Sandbox.68fd6c5d.css": { + "file": "Sandbox.68fd6c5d.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue": { + "resourceType": "script", + "module": true, + "file": "SourceLink.8b39af38.js", + "imports": [ + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue" + }, + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.css": { + "resourceType": "style", + "file": "TabsHeader.fed4d9b4.css", + "src": "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.css" + }, + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "TabsHeader.f80c17f8.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue" + }, + "TabsHeader.fed4d9b4.css": { + "file": "TabsHeader.fed4d9b4.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Terminal.e111a4e9.js", + "imports": [ + "_index.889aa611.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue" + }, + "Terminal.55a17588.css": { + "file": "Terminal.55a17588.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "VideoPlayer.065c6aeb.js", + "imports": [ + "_NuxtImg.vue.a13022c3.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue" + }, + "VideoPlayer.e2296f21.css": { + "file": "VideoPlayer.e2296f21.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue": { + "resourceType": "script", + "module": true, + "file": "IconCodeSandBox.c8242608.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue": { + "resourceType": "script", + "module": true, + "file": "IconDocus.288d04af.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue": { + "resourceType": "script", + "module": true, + "file": "IconNuxt.fcd0b256.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue": { + "resourceType": "script", + "module": true, + "file": "IconNuxtContent.e8429861.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue": { + "resourceType": "script", + "module": true, + "file": "IconNuxtLabs.d57bf3c9.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "IconNuxtStudio.af5044e4.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue" + }, + "IconNuxtStudio.34390cd8.css": { + "file": "IconNuxtStudio.34390cd8.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue": { + "resourceType": "script", + "module": true, + "file": "IconStackBlitz.8b1569eb.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue" + }, + "node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue": { + "resourceType": "script", + "module": true, + "file": "IconVueTelescope.e930811b.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue" + }, + "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "BlockHero.495ede00.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", + "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_index.889aa611.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue" + }, + "BlockHero.4aa0ef8d.css": { + "file": "BlockHero.4aa0ef8d.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/landing/Card.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "Card.178cbb97.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/landing/Card.vue" + }, + "Card.5dfb7f30.css": { + "file": "Card.5dfb7f30.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "CardGrid.e3a9f75d.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue" + }, + "CardGrid.54558efd.css": { + "file": "CardGrid.54558efd.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue": { + "resourceType": "script", + "module": true, + "file": "ComponentPlayground.3c424a18.js", + "imports": [ + "_ComponentPlayground.vue.1e5cc557.js", + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js", + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", + "_index.889aa611.js", + "_ComponentPlaygroundSlots.vue.d9207f3c.js", + "_ComponentPlaygroundTokens.vue.43c587d1.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue", + "css": [] + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.css": { + "resourceType": "style", + "file": "ComponentPlaygroundData.2ba66f99.css", + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.css" + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ComponentPlaygroundData.8cb96cd4.js", + "imports": [ + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", + "_ComponentPlaygroundSlots.vue.d9207f3c.js", + "_ComponentPlaygroundTokens.vue.43c587d1.js", + "_index.889aa611.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js", + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue" + }, + "ComponentPlaygroundData.2ba66f99.css": { + "file": "ComponentPlaygroundData.2ba66f99.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.css": { + "resourceType": "style", + "file": "ComponentPlaygroundProps.54f42c7a.css", + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.css" + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ComponentPlaygroundProps.583c9bda.js", + "imports": [ + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", + "_index.889aa611.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue" + }, + "ComponentPlaygroundProps.54f42c7a.css": { + "file": "ComponentPlaygroundProps.54f42c7a.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue": { + "resourceType": "script", + "module": true, + "file": "ComponentPlaygroundSlots.71fbb170.js", + "imports": [ + "_ComponentPlaygroundSlots.vue.d9207f3c.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue" + }, + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue": { + "resourceType": "script", + "module": true, + "file": "ComponentPlaygroundTokens.334d4f7a.js", + "imports": [ + "_ComponentPlaygroundTokens.vue.43c587d1.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue" + }, + "node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue": { + "resourceType": "script", + "module": true, + "file": "TokensPlayground.961c6dbe.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue" + }, + "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "VoltaBoard.1d961799.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue" + }, + "VoltaBoard.a5d6b336.css": { + "file": "VoltaBoard.a5d6b336.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue": { + "resourceType": "script", + "module": true, + "css": [ + "ProseCode.69d80bcc.css" + ], + "file": "ProseCodeCopyButton.29965c5a.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_index.889aa611.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue" + }, + "ProseCode.69d80bcc.css": { + "file": "ProseCode.69d80bcc.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseA.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseA.a4d07cc8.js", + "imports": [ + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseA.vue" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseBlockquote.ecc3d96f.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue" + }, + "ProseBlockquote.e233c07e.css": { + "file": "ProseBlockquote.e233c07e.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseCode.vue": { + "resourceType": "script", + "module": true, + "css": [ + "ProseCode.69d80bcc.css" + ], + "file": "ProseCode.0e5c7be6.js", + "imports": [ + "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_index.889aa611.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseCode.vue" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.css": { + "resourceType": "style", + "file": "ProseCodeInline.aab68857.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseCodeInline.dca1a534.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue" + }, + "ProseCodeInline.aab68857.css": { + "file": "ProseCodeInline.aab68857.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseEm.35693543.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue" + }, + "ProseEm.26a085fc.css": { + "file": "ProseEm.26a085fc.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseH1.c24b90eb.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue" + }, + "ProseH1.e8ed25c4.css": { + "file": "ProseH1.e8ed25c4.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseH2.957cbe8e.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue" + }, + "ProseH2.39cb29c9.css": { + "file": "ProseH2.39cb29c9.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseH3.cb2444de.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue" + }, + "ProseH3.185f3970.css": { + "file": "ProseH3.185f3970.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH4.css": { + "resourceType": "style", + "file": "ProseH4.63359073.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH4.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseH4.77a5278f.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue" + }, + "ProseH4.63359073.css": { + "file": "ProseH4.63359073.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseH5.8dc93198.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue" + }, + "ProseH5.85b0a165.css": { + "file": "ProseH5.85b0a165.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseH6.bdc78e01.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_useDocus.41ab1ca5.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue" + }, + "ProseH6.c7358255.css": { + "file": "ProseH6.c7358255.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseHr.75e3ac21.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue" + }, + "ProseHr.c7c78bbe.css": { + "file": "ProseHr.c7c78bbe.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseImg.16c4c81d.js", + "imports": [ + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue" + }, + "ProseImg.018721e2.css": { + "file": "ProseImg.018721e2.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseLi.171f9b22.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue" + }, + "ProseLi.ac05b421.css": { + "file": "ProseLi.ac05b421.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseOl.8e9d7d6a.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue" + }, + "ProseOl.d78cb0de.css": { + "file": "ProseOl.d78cb0de.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseP.css": { + "resourceType": "style", + "file": "ProseP.945916cd.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseP.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseP.9fd9b629.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseP.vue" + }, + "ProseP.945916cd.css": { + "file": "ProseP.945916cd.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseStrong.3de7628e.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue" + }, + "ProseStrong.263d77e1.css": { + "file": "ProseStrong.263d77e1.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTable.css": { + "resourceType": "style", + "file": "ProseTable.c65fbffe.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTable.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseTable.a85f8bca.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue" + }, + "ProseTable.c65fbffe.css": { + "file": "ProseTable.c65fbffe.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue": { + "resourceType": "script", + "module": true, + "file": "ProseTbody.37a7db42.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTd.css": { + "resourceType": "style", + "file": "ProseTd.4df19d93.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTd.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseTd.921f02a8.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue" + }, + "ProseTd.4df19d93.css": { + "file": "ProseTd.4df19d93.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTh.css": { + "resourceType": "style", + "file": "ProseTh.348cb47e.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTh.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseTh.d24c1b52.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue" + }, + "ProseTh.348cb47e.css": { + "file": "ProseTh.348cb47e.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseThead.css": { + "resourceType": "style", + "file": "ProseThead.65d34604.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseThead.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseThead.40eb8658.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue" + }, + "ProseThead.65d34604.css": { + "file": "ProseThead.65d34604.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTr.css": { + "resourceType": "style", + "file": "ProseTr.65bec588.css", + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTr.css" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseTr.d0d94723.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue" + }, + "ProseTr.65bec588.css": { + "file": "ProseTr.65bec588.css", + "resourceType": "style" + }, + "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "ProseUl.5ba8de5b.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue" + }, + "ProseUl.85b434de.css": { + "file": "ProseUl.85b434de.css", + "resourceType": "style" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue": { + "resourceType": "script", + "module": true, + "file": "ContentDoc.cbc50263.js", + "imports": [ + "_app.config.f41ab05d.js", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", + "_asyncData.7c06b2d5.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue": { + "resourceType": "script", + "module": true, + "file": "ContentList.e8a9fb87.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.css": { + "resourceType": "style", + "file": "ContentNavigation.df5077be.css", + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.css" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue": { + "resourceType": "script", + "module": true, + "css": [ + "ContentNavigation.df5077be.css", + "HeroAnnouncement.c8294d82.css", + "MyButton.c36465b2.css", + "PropInspector.8b357721.css", + "Alert.f24f4058.css", + "ButtonLink.1b73392c.css", + "DocumentDrivenNotFound.434430ce.css", + "DocsAside.d7386185.css", + "ProseA.89c7f0ff.css", + "DocsPageBottom.d9d559e1.css", + "DocsPrevNext.6bb4ff17.css", + "DocsTocLinks.2846f127.css", + "DocsToc.6b8d2996.css", + "DocsPageLayout.0537ea8c.css", + "ProseBlockquote.e233c07e.css", + "ProseCode.69d80bcc.css", + "ProseEm.26a085fc.css", + "ProseH1.e8ed25c4.css", + "ProseH2.39cb29c9.css", + "ProseH3.185f3970.css", + "ProseH5.85b0a165.css", + "ProseH6.c7358255.css", + "ProseHr.c7c78bbe.css", + "ProseImg.018721e2.css", + "ProseLi.ac05b421.css", + "ProseOl.d78cb0de.css", + "ProseStrong.263d77e1.css", + "ProseUl.85b434de.css", + "Callout.a5db879a.css", + "CodeBlock.e4cadaca.css", + "Sandbox.68fd6c5d.css", + "Terminal.55a17588.css", + "VideoPlayer.e2296f21.css", + "IconNuxtStudio.34390cd8.css", + "BlockHero.4aa0ef8d.css", + "Card.5dfb7f30.css", + "CardGrid.54558efd.css", + "VoltaBoard.a5d6b336.css", + "ContentPreviewMode.dea45f14.css" + ], + "dynamicImports": [ + "components/content/Example/ExampleCard.vue", + "components/content/Example/ExampleHero.vue", + "components/content/Example/ExampleIconCard.vue", + "components/content/Example/ExampleMultiselect.vue", + "components/content/Example/ExampleTheTitle.vue", + "components/content/HeroAnnouncement.vue", + "components/content/IconMarkdown.vue", + "node_modules/nuxt/dist/app/entry.mjs", + "components/content/MyButton.vue", + "components/content/PropInspector.vue", + "components/content/ReadMore.vue", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/@nuxt-themes/docus/components/app/AppLayout.vue", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue", + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue", + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue", + "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue", + "node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseCode.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue", + "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue", + "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", + "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", + "node_modules/@nuxt-themes/elements/components/globals/Callout.vue", + "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue", + "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue", + "_Container.f1017aa2.js", + "node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue", + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", + "node_modules/@nuxt-themes/elements/components/globals/List.vue", + "node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue", + "node_modules/@nuxt-themes/elements/components/globals/Props.vue", + "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue", + "node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue", + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue", + "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue", + "node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue", + "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue", + "node_modules/@nuxt-themes/elements/components/landing/Card.vue", + "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue", + "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue", + "node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue", + "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", + "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue", + "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue", + "node_modules/nuxt/dist/app/components/layout.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "_app.config.f41ab05d.js", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs", + "node_modules/nuxt/dist/app/entry.mjs", + "_DocsAsideTree.b95e55e0.js", + "node_modules/nuxt/dist/app/entry.mjs" + ], + "file": "ContentNavigation.cefda237.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "_useDocus.41ab1ca5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_Container.f1017aa2.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_DocsAsideTree.b95e55e0.js", + "_EditOnLink.vue.1d2292f2.js", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", + "_CodeGroup.vue.e138b097.js", + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", + "_List.vue.98cb48bf.js", + "_NuxtImg.vue.a13022c3.js", + "node_modules/@nuxt-themes/elements/components/globals/Props.vue", + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "_ComponentPlayground.vue.1e5cc557.js", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue", + "_runtime-core.esm-bundler.6894272a.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", + "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", + "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue", + "node_modules/nuxt/dist/app/components/layout.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_query.c3f7607a.js", + "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", + "_index.889aa611.js", + "_ComponentPlaygroundSlots.vue.d9207f3c.js", + "_ComponentPlaygroundTokens.vue.43c587d1.js", + "_useGithub.1972ce55.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue" + }, + "ContentNavigation.df5077be.css": { + "file": "ContentNavigation.df5077be.css", + "resourceType": "style" + }, + "ContentPreviewMode.dea45f14.css": { + "file": "ContentPreviewMode.dea45f14.css", + "resourceType": "style" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue": { + "resourceType": "script", + "module": true, + "file": "ContentQuery.9f33890e.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue": { + "resourceType": "script", + "module": true, + "file": "ContentRenderer.b7732722.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue": { + "resourceType": "script", + "module": true, + "file": "ContentRendererMarkdown.e52b62de.js", + "imports": [ + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js", + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue": { + "resourceType": "script", + "module": true, + "file": "ContentSlot.c5067a4f.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_runtime-core.esm-bundler.6894272a.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue": { + "resourceType": "script", + "module": true, + "file": "DocumentDrivenEmpty.7ceddd7c.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue" + }, + "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue": { + "resourceType": "script", + "module": true, + "file": "Markdown.7f24e431.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_runtime-core.esm-bundler.6894272a.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue" + }, + "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs": { + "resourceType": "script", + "module": true, + "file": "client-db.514bef37.js", + "imports": [ + "_cookie.b9cff64d.js", + "_app.config.f41ab05d.js", + "_query.c3f7607a.js", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs" + }, + "node_modules/@nuxt/content/dist/runtime/pages/document-driven.vue": { + "resourceType": "script", + "module": true, + "css": [ + "ButtonLink.1b73392c.css", + "DocumentDrivenNotFound.434430ce.css" + ], + "file": "document-driven.2bce7a6e.js", + "imports": [ + "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", + "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue", + "node_modules/nuxt/dist/app/components/layout.mjs", + "_useDocus.41ab1ca5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", + "_cookie.b9cff64d.js", + "_index.d2b0cb5e.js", + "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", + "_DocsAsideTree.b95e55e0.js", + "_Container.f1017aa2.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/content/dist/runtime/pages/document-driven.vue" + }, + "node_modules/@nuxt/ui-templates/dist/templates/error-404.css": { + "resourceType": "style", + "file": "error-404.97011ca1.css", + "src": "node_modules/@nuxt/ui-templates/dist/templates/error-404.css" + }, + "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "error-404.1576ed15.js", + "imports": [ + "_app.config.f41ab05d.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue" + }, + "error-404.97011ca1.css": { + "file": "error-404.97011ca1.css", + "resourceType": "style" + }, + "node_modules/@nuxt/ui-templates/dist/templates/error-500.css": { + "resourceType": "style", + "file": "error-500.82e14f63.css", + "src": "node_modules/@nuxt/ui-templates/dist/templates/error-500.css" + }, + "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "error-500.421dc5a9.js", + "imports": [ + "node_modules/nuxt/dist/app/entry.mjs", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue" + }, + "error-500.82e14f63.css": { + "file": "error-500.82e14f63.css", + "resourceType": "style" + }, + "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue": { + "resourceType": "script", + "module": true, + "css": [], + "file": "welcome.4086e1c1.js", + "imports": [ + "node_modules/nuxt/dist/app/entry.mjs", + "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_DocsAsideTree.b95e55e0.js", + "_app.config.f41ab05d.js", + "_index.d2b0cb5e.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js", + "_asyncData.7c06b2d5.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", + "_EditOnLink.vue.1d2292f2.js", + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", + "_CodeGroup.vue.e138b097.js", + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", + "_List.vue.98cb48bf.js", + "_NuxtImg.vue.a13022c3.js", + "node_modules/@nuxt-themes/elements/components/globals/Props.vue", + "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", + "_ComponentPlayground.vue.1e5cc557.js", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", + "_index.889aa611.js", + "_ComponentPlaygroundSlots.vue.d9207f3c.js", + "_ComponentPlaygroundTokens.vue.43c587d1.js", + "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", + "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue", + "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", + "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue", + "node_modules/nuxt/dist/app/components/layout.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs", + "_useGithub.1972ce55.js", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs", + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue" + }, + "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue": { + "resourceType": "script", + "module": true, + "css": [], + "dynamicImports": [ + "node_modules/socket.io-client/build/esm/index.js" + ], + "file": "ContentPreviewMode.ea418cb0.js", + "imports": [ + "_Container.f1017aa2.js", + "_app.config.f41ab05d.js", + "_DocsAsideTree.b95e55e0.js", + "_asyncData.7c06b2d5.js", + "_cookie.b9cff64d.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_useDocus.41ab1ca5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue" + }, + "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs": { + "resourceType": "script", + "module": true, + "css": [ + "ContentPreviewMode.dea45f14.css" + ], + "file": "useStudio.ef34e52b.js", + "imports": [ + "_app.config.f41ab05d.js", + "_DocsAsideTree.b95e55e0.js", + "_asyncData.7c06b2d5.js", + "_useDocus.41ab1ca5.js", + "_cookie.b9cff64d.js", + "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue", + "node_modules/nuxt/dist/app/entry.mjs", + "_index.d2b0cb5e.js", + "_runtime-core.esm-bundler.6894272a.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs" + }, + "node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue": { + "resourceType": "script", + "module": true, + "file": "empty.9bcab498.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubCommits.35c65eac.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubContributors.9ddddad6.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubFileContributors.1ad6f7bf.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubLastRelease.a4aeb30e.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubLink.6cd695ea.js", + "imports": [ + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubReadme.5eafd6e1.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubRelease.d892113d.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubReleases.05c52708.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs" + }, + "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs": { + "resourceType": "script", + "module": true, + "file": "GithubRepository.345038c7.js", + "imports": [ + "_app.config.f41ab05d.js", + "_asyncData.7c06b2d5.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_useGithub.1972ce55.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js", + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs" + }, + "node_modules/nuxt/dist/app/components/layout.mjs": { + "resourceType": "script", + "module": true, + "file": "layout.0a22fa4a.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "node_modules/nuxt/dist/app/entry.mjs", + "_app.config.f41ab05d.js", + "_runtime-core.esm-bundler.6894272a.js", + "_cookie.b9cff64d.js", + "_useDocus.41ab1ca5.js", + "_Container.f1017aa2.js", + "_index.d2b0cb5e.js", + "_query.c3f7607a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/nuxt/dist/app/components/layout.mjs" + }, + "node_modules/nuxt/dist/app/entry.css": { + "resourceType": "style", + "file": "entry.2e7e04dc.css", + "src": "node_modules/nuxt/dist/app/entry.css" + }, + "node_modules/nuxt/dist/app/entry.mjs": { + "resourceType": "script", + "module": true, + "css": [ + "entry.2e7e04dc.css" + ], + "dynamicImports": [ + "_DocsAsideTree.b95e55e0.js", + "_Container.f1017aa2.js", + "_DocsAsideTree.b95e55e0.js", + "node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue", + "layouts/docs-page.vue", + "node_modules/@nuxt-themes/docus/layouts/default.vue", + "node_modules/@nuxt-themes/docus/layouts/page.vue", + "node_modules/@docsearch/js/dist/esm/index.js", + "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs", + "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs", + "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs", + "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs", + "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/error-component.mjs" + ], + "file": "entry.f3791b9c.js", + "imports": [ + "_DocsAsideTree.b95e55e0.js", + "_cookie.b9cff64d.js", + "_app.config.f41ab05d.js", + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_useDocus.41ab1ca5.js", + "_query.c3f7607a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "isEntry": true, + "src": "node_modules/nuxt/dist/app/entry.mjs" + }, + "entry.2e7e04dc.css": { + "file": "entry.2e7e04dc.css", + "resourceType": "style" + }, + "node_modules/pinceau/dist/chunks/debug.mjs": { + "resourceType": "script", + "module": true, + "file": "debug.ac300508.js", + "imports": [ + "_runtime-core.esm-bundler.6894272a.js" + ], + "isDynamicEntry": true, + "src": "node_modules/pinceau/dist/chunks/debug.mjs" + }, + "node_modules/socket.io-client/build/esm/index.js": { + "resourceType": "script", + "module": true, + "file": "index.e2533f77.js", + "isDynamicEntry": true, + "src": "node_modules/socket.io-client/build/esm/index.js" + }, + "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/error-component.mjs": { + "resourceType": "script", + "module": true, + "dynamicImports": [ + "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue", + "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue" + ], + "file": "error-component.9c8606a2.js", + "imports": [ + "_Container.f1017aa2.js", + "_runtime-core.esm-bundler.6894272a.js", + "_index.d2b0cb5e.js" + ], + "isDynamicEntry": true, + "src": "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/error-component.mjs" + } +}; + +export { client_manifest as default }; +//# sourceMappingURL=client.manifest.mjs.map diff --git a/docs/.output/server/chunks/app/client.manifest.mjs.map b/docs/.output/server/chunks/app/client.manifest.mjs.map new file mode 100644 index 00000000..6e5ef4a5 --- /dev/null +++ b/docs/.output/server/chunks/app/client.manifest.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"client.manifest.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/client.manifest.mjs"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/server.mjs b/docs/.output/server/chunks/app/server.mjs new file mode 100644 index 00000000..e693e2b6 --- /dev/null +++ b/docs/.output/server/chunks/app/server.mjs @@ -0,0 +1,24669 @@ +import { version, defineAsyncComponent, useSSRContext, defineComponent, ref, createElementBlock, unref, watch, h, Suspense, nextTick, Transition, computed, provide, reactive, shallowRef, isReadonly, mergeProps, withCtx, openBlock, createBlock, createCommentVNode, createVNode, resolveDynamicComponent, toDisplayString, createTextVNode, createElementVNode, Fragment as Fragment$1, renderList, createApp, toRef, onErrorCaptured, onServerPrefetch } from 'vue'; +import { $fetch as $fetch$1 } from 'ofetch'; +import { u as useNuxtApp, d as defineNuxtPlugin, a as defineNuxtRouteMiddleware, b as useRuntimeConfig$1, f as useRoute, i as normalizePlugins, c as callWithNuxt, g as useRouter, h as addRouteMiddleware, e as useRequestEvent, j as createNuxtApp, k as applyPlugins, n as navigateTo, _ as __nuxt_component_0$2 } from './_nuxt/app.config-832f5f68.mjs'; +import { useHead as useHead$1, createHead as createHead$1 } from '@unhead/vue'; +import { renderDOMHead, debouncedRenderDOMHead } from '@unhead/dom'; +import { renderSSRHead } from '@unhead/ssr'; +import { executeAsync } from 'unctx'; +import { RouterView, createMemoryHistory, createRouter } from 'vue-router'; +import { createError as createError$1 } from 'h3'; +import { withLeadingSlash, joinURL, withoutTrailingSlash, isEqual, hasProtocol, withTrailingSlash } from 'ufo'; +import { u as useState, a as useAppConfig, b as useDocus, c as useContent, d as useContentState, e as useContentHelpers } from './_nuxt/useDocus-928368c4.mjs'; +import { hash } from 'ohash'; +import { c as createQuery, u as useCookie } from './_nuxt/query-dd064fd9.mjs'; +import { w as withContentBase, a as addPrerenderPath, s as shouldUseClientDB, _ as __nuxt_component_0$1$1, b as __nuxt_component_0$3 } from './_nuxt/DocsAsideTree-136bd08b.mjs'; +import { p as plugin, _ as _export_sfc, a as __nuxt_component_0$4 } from './_nuxt/Container-1291608c.mjs'; +import { ssrRenderAttrs, ssrRenderList, ssrRenderComponent, ssrRenderTeleport, ssrRenderVNode, ssrInterpolate, ssrRenderAttr, ssrRenderSlot, ssrRenderSuspense } from 'vue/server-renderer'; +import { defu } from 'defu'; +import { u as useRuntimeConfig } from '../nitro/config.mjs'; +import 'hookable'; +import 'cookie-es'; +import 'destr'; +import '@iconify/vue/dist/offline'; +import '@iconify/vue'; +import 'nanoid'; +import 'scule'; + +const appConfig = useRuntimeConfig().app; +const baseURL = () => appConfig.baseURL; +const useError = () => toRef(useNuxtApp().payload, "error"); +const showError = (_err) => { + const err = createError(_err); + try { + const nuxtApp = useNuxtApp(); + nuxtApp.callHook("app:error", err); + const error = useError(); + error.value = error.value || err; + } catch { + throw err; + } + return err; +}; +const createError = (err) => { + const _err = createError$1(err); + _err.__nuxt_error = true; + return _err; +}; +function createHead(initHeadObject) { + const unhead = createHead$1(); + const legacyHead = { + unhead, + install(app) { + if (version.startsWith("3")) { + app.config.globalProperties.$head = unhead; + app.provide("usehead", unhead); + } + }, + use(plugin2) { + unhead.use(plugin2); + }, + resolveTags() { + return unhead.resolveTags(); + }, + headEntries() { + return unhead.headEntries(); + }, + headTags() { + return unhead.resolveTags(); + }, + push(input, options) { + return unhead.push(input, options); + }, + addEntry(input, options) { + return unhead.push(input, options); + }, + addHeadObjs(input, options) { + return unhead.push(input, options); + }, + addReactiveEntry(input, options) { + const api = useHead$1(input, options); + if (typeof api !== "undefined") + return api.dispose; + return () => { + }; + }, + removeHeadObjs() { + }, + updateDOM(document2, force) { + if (force) + renderDOMHead(unhead, { document: document2 }); + else + debouncedRenderDOMHead(unhead, { delayFn: (fn) => setTimeout(() => fn(), 50), document: document2 }); + }, + internalHooks: unhead.hooks, + hooks: { + "before:dom": [], + "resolved:tags": [], + "resolved:entries": [] + } + }; + unhead.addHeadObjs = legacyHead.addHeadObjs; + unhead.updateDOM = legacyHead.updateDOM; + unhead.hooks.hook("dom:beforeRender", (ctx) => { + for (const hook of legacyHead.hooks["before:dom"]) { + if (hook() === false) + ctx.shouldRender = false; + } + }); + if (initHeadObject) + legacyHead.addHeadObjs(initHeadObject); + return legacyHead; +} +version.startsWith("2."); +function useHead(input, options) { + return useNuxtApp()._useHead(input, options); +} +const components = { + ExampleCard: defineAsyncComponent(() => import( + './_nuxt/ExampleCard-95e9f743.mjs' + /* webpackChunkName: "components/example-card" */ + ).then((c) => c.default || c)), + ExampleHero: defineAsyncComponent(() => import( + './_nuxt/ExampleHero-8fe98ee8.mjs' + /* webpackChunkName: "components/example-hero" */ + ).then((c) => c.default || c)), + ExampleIconCard: defineAsyncComponent(() => import( + './_nuxt/ExampleIconCard-a87d1258.mjs' + /* webpackChunkName: "components/example-icon-card" */ + ).then((c) => c.default || c)), + ExampleMultiselect: defineAsyncComponent(() => import( + './_nuxt/ExampleMultiselect-915c74fe.mjs' + /* webpackChunkName: "components/example-multiselect" */ + ).then((c) => c.default || c)), + ExampleTheTitle: defineAsyncComponent(() => import( + './_nuxt/ExampleTheTitle-9f1c4a8d.mjs' + /* webpackChunkName: "components/example-the-title" */ + ).then((c) => c.default || c)), + HeroAnnouncement: defineAsyncComponent(() => import( + './_nuxt/HeroAnnouncement-a479df93.mjs' + /* webpackChunkName: "components/hero-announcement" */ + ).then((c) => c.default || c)), + IconMarkdown: defineAsyncComponent(() => import( + './_nuxt/IconMarkdown-092c828f.mjs' + /* webpackChunkName: "components/icon-markdown" */ + ).then((c) => c.default || c)), + Logo: defineAsyncComponent(() => Promise.resolve().then(function() { + return Logo; + }).then((c) => c.default || c)), + MyButton: defineAsyncComponent(() => import( + './_nuxt/MyButton-a7c11108.mjs' + /* webpackChunkName: "components/my-button" */ + ).then((c) => c.default || c)), + PropInspector: defineAsyncComponent(() => import( + './_nuxt/PropInspector-d4a70134.mjs' + /* webpackChunkName: "components/prop-inspector" */ + ).then((c) => c.default || c)), + ReadMore: defineAsyncComponent(() => import( + './_nuxt/ReadMore-4e2f1622.mjs' + /* webpackChunkName: "components/read-more" */ + ).then((c) => c.default || c)), + AppFooter: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppFooter; + }).then((c) => c.default || c)), + AppHeader: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppHeader; + }).then((c) => c.default || c)), + AppHeaderDialog: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppHeaderDialog; + }).then((c) => c.default || c)), + AppHeaderLogo: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppHeaderLogo; + }).then((c) => c.default || c)), + AppHeaderNavigation: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppHeaderNavigation; + }).then((c) => c.default || c)), + AppLayout: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppLayout; + }).then((c) => c.default || c)), + AppLoadingBar: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppLoadingBar; + }).then((c) => c.default || c)), + AppSearch: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppSearch; + }).then((c) => c.default || c)), + AppSocialIcons: defineAsyncComponent(() => Promise.resolve().then(function() { + return AppSocialIcons; + }).then((c) => c.default || c)), + DocumentDrivenNotFound: defineAsyncComponent(() => import( + './_nuxt/DocumentDrivenNotFound-4b73ea08.mjs' + /* webpackChunkName: "components/document-driven-not-found" */ + ).then((c) => c.default || c)), + ThemeSelect: defineAsyncComponent(() => Promise.resolve().then(function() { + return ThemeSelect; + }).then((c) => c.default || c)), + DocsAside: defineAsyncComponent(() => import( + './_nuxt/DocsAside-a41d5eb9.mjs' + /* webpackChunkName: "components/docs-aside" */ + ).then((c) => c.default || c)), + DocsAsideTree: defineAsyncComponent(() => import( + './_nuxt/DocsAsideTree-136bd08b.mjs' + /* webpackChunkName: "components/docs-aside-tree" */ + ).then(function(n) { + return n.D; + }).then((c) => c.default || c)), + DocsPageBottom: defineAsyncComponent(() => import( + './_nuxt/DocsPageBottom-270eacfc.mjs' + /* webpackChunkName: "components/docs-page-bottom" */ + ).then((c) => c.default || c)), + DocsPageLayout: defineAsyncComponent(() => import( + './_nuxt/DocsPageLayout-4c2ead4a.mjs' + /* webpackChunkName: "components/docs-page-layout" */ + ).then((c) => c.default || c)), + DocsPrevNext: defineAsyncComponent(() => import( + './_nuxt/DocsPrevNext-7858c09b.mjs' + /* webpackChunkName: "components/docs-prev-next" */ + ).then((c) => c.default || c)), + DocsToc: defineAsyncComponent(() => import( + './_nuxt/DocsToc-e4f6bd56.mjs' + /* webpackChunkName: "components/docs-toc" */ + ).then((c) => c.default || c)), + DocsTocLinks: defineAsyncComponent(() => import( + './_nuxt/DocsTocLinks-95d48629.mjs' + /* webpackChunkName: "components/docs-toc-links" */ + ).then((c) => c.default || c)), + EditOnLink: defineAsyncComponent(() => import( + './_nuxt/EditOnLink-e55cd3a0.mjs' + /* webpackChunkName: "components/edit-on-link" */ + ).then((c) => c.default || c)), + ProseA: defineAsyncComponent(() => import( + './_nuxt/ProseA-86ef3985.mjs' + /* webpackChunkName: "components/prose-a" */ + ).then((c) => c.default || c)), + ProseBlockquote: defineAsyncComponent(() => import( + './_nuxt/ProseBlockquote-faf6e310.mjs' + /* webpackChunkName: "components/prose-blockquote" */ + ).then((c) => c.default || c)), + ProseCode: defineAsyncComponent(() => import( + './_nuxt/ProseCode-94b7281d.mjs' + /* webpackChunkName: "components/prose-code" */ + ).then(function(n) { + return n.a; + }).then((c) => c.default || c)), + ProseCodeInline: defineAsyncComponent(() => import( + './_nuxt/ProseCodeInline-960b9a43.mjs' + /* webpackChunkName: "components/prose-code-inline" */ + ).then((c) => c.default || c)), + ProseEm: defineAsyncComponent(() => import( + './_nuxt/ProseEm-f52fc33d.mjs' + /* webpackChunkName: "components/prose-em" */ + ).then((c) => c.default || c)), + ProseH1: defineAsyncComponent(() => import( + './_nuxt/ProseH1-81b8c44a.mjs' + /* webpackChunkName: "components/prose-h1" */ + ).then((c) => c.default || c)), + ProseH2: defineAsyncComponent(() => import( + './_nuxt/ProseH2-abc0d7da.mjs' + /* webpackChunkName: "components/prose-h2" */ + ).then((c) => c.default || c)), + ProseH3: defineAsyncComponent(() => import( + './_nuxt/ProseH3-6c54494a.mjs' + /* webpackChunkName: "components/prose-h3" */ + ).then((c) => c.default || c)), + ProseH4: defineAsyncComponent(() => import( + './_nuxt/ProseH4-4f0da863.mjs' + /* webpackChunkName: "components/prose-h4" */ + ).then((c) => c.default || c)), + ProseH5: defineAsyncComponent(() => import( + './_nuxt/ProseH5-0c6e8cd8.mjs' + /* webpackChunkName: "components/prose-h5" */ + ).then((c) => c.default || c)), + ProseH6: defineAsyncComponent(() => import( + './_nuxt/ProseH6-cffb1b40.mjs' + /* webpackChunkName: "components/prose-h6" */ + ).then((c) => c.default || c)), + ProseHr: defineAsyncComponent(() => import( + './_nuxt/ProseHr-fa0af264.mjs' + /* webpackChunkName: "components/prose-hr" */ + ).then((c) => c.default || c)), + ProseImg: defineAsyncComponent(() => import( + './_nuxt/ProseImg-f3012414.mjs' + /* webpackChunkName: "components/prose-img" */ + ).then((c) => c.default || c)), + ProseLi: defineAsyncComponent(() => import( + './_nuxt/ProseLi-948accef.mjs' + /* webpackChunkName: "components/prose-li" */ + ).then((c) => c.default || c)), + ProseOl: defineAsyncComponent(() => import( + './_nuxt/ProseOl-b8e80875.mjs' + /* webpackChunkName: "components/prose-ol" */ + ).then((c) => c.default || c)), + ProseP: defineAsyncComponent(() => import( + './_nuxt/ProseP-a91aeff7.mjs' + /* webpackChunkName: "components/prose-p" */ + ).then((c) => c.default || c)), + ProseStrong: defineAsyncComponent(() => import( + './_nuxt/ProseStrong-246281a0.mjs' + /* webpackChunkName: "components/prose-strong" */ + ).then((c) => c.default || c)), + ProseTable: defineAsyncComponent(() => import( + './_nuxt/ProseTable-425d227b.mjs' + /* webpackChunkName: "components/prose-table" */ + ).then((c) => c.default || c)), + ProseTbody: defineAsyncComponent(() => import( + './_nuxt/ProseTbody-f622755a.mjs' + /* webpackChunkName: "components/prose-tbody" */ + ).then((c) => c.default || c)), + ProseTd: defineAsyncComponent(() => import( + './_nuxt/ProseTd-ce60dd42.mjs' + /* webpackChunkName: "components/prose-td" */ + ).then((c) => c.default || c)), + ProseTh: defineAsyncComponent(() => import( + './_nuxt/ProseTh-8250ce9f.mjs' + /* webpackChunkName: "components/prose-th" */ + ).then((c) => c.default || c)), + ProseThead: defineAsyncComponent(() => import( + './_nuxt/ProseThead-7ba76e48.mjs' + /* webpackChunkName: "components/prose-thead" */ + ).then((c) => c.default || c)), + ProseTr: defineAsyncComponent(() => import( + './_nuxt/ProseTr-6559f7d8.mjs' + /* webpackChunkName: "components/prose-tr" */ + ).then((c) => c.default || c)), + ProseUl: defineAsyncComponent(() => import( + './_nuxt/ProseUl-79ecc4c5.mjs' + /* webpackChunkName: "components/prose-ul" */ + ).then((c) => c.default || c)), + Alert: defineAsyncComponent(() => import( + './_nuxt/Alert-2b29f746.mjs' + /* webpackChunkName: "components/alert" */ + ).then((c) => c.default || c)), + Badge: defineAsyncComponent(() => import( + './_nuxt/Badge-5f9ab214.mjs' + /* webpackChunkName: "components/badge" */ + ).then((c) => c.default || c)), + ButtonLink: defineAsyncComponent(() => import( + './_nuxt/ButtonLink-df4791d5.mjs' + /* webpackChunkName: "components/button-link" */ + ).then((c) => c.default || c)), + Callout: defineAsyncComponent(() => import( + './_nuxt/Callout-fc92c8b7.mjs' + /* webpackChunkName: "components/callout" */ + ).then((c) => c.default || c)), + CodeBlock: defineAsyncComponent(() => import( + './_nuxt/CodeBlock-f6f4711b.mjs' + /* webpackChunkName: "components/code-block" */ + ).then((c) => c.default || c)), + CodeGroup: defineAsyncComponent(() => import( + './_nuxt/CodeGroup-67aa2302.mjs' + /* webpackChunkName: "components/code-group" */ + ).then((c) => c.default || c)), + Container: defineAsyncComponent(() => import( + './_nuxt/Container-1291608c.mjs' + /* webpackChunkName: "components/container" */ + ).then(function(n) { + return n.C; + }).then((c) => c.default || c)), + CopyButton: defineAsyncComponent(() => import( + './_nuxt/CopyButton-155eba98.mjs' + /* webpackChunkName: "components/copy-button" */ + ).then((c) => c.default || c)), + Ellipsis: defineAsyncComponent(() => import( + './_nuxt/Ellipsis-b69b027e.mjs' + /* webpackChunkName: "components/ellipsis" */ + ).then((c) => c.default || c)), + List: defineAsyncComponent(() => import( + './_nuxt/List-12ebf73c.mjs' + /* webpackChunkName: "components/list" */ + ).then((c) => c.default || c)), + NuxtImg: defineAsyncComponent(() => import( + './_nuxt/NuxtImg-89991070.mjs' + /* webpackChunkName: "components/nuxt-img" */ + ).then((c) => c.default || c)), + Props: defineAsyncComponent(() => import( + './_nuxt/Props-c617d5b2.mjs' + /* webpackChunkName: "components/props" */ + ).then((c) => c.default || c)), + Sandbox: defineAsyncComponent(() => import( + './_nuxt/Sandbox-3e5bdd00.mjs' + /* webpackChunkName: "components/sandbox" */ + ).then((c) => c.default || c)), + SourceLink: defineAsyncComponent(() => import( + './_nuxt/SourceLink-c27fde85.mjs' + /* webpackChunkName: "components/source-link" */ + ).then((c) => c.default || c)), + TabsHeader: defineAsyncComponent(() => import( + './_nuxt/TabsHeader-c9b56dab.mjs' + /* webpackChunkName: "components/tabs-header" */ + ).then((c) => c.default || c)), + Terminal: defineAsyncComponent(() => import( + './_nuxt/Terminal-35e8f795.mjs' + /* webpackChunkName: "components/terminal" */ + ).then((c) => c.default || c)), + VideoPlayer: defineAsyncComponent(() => import( + './_nuxt/VideoPlayer-2b282302.mjs' + /* webpackChunkName: "components/video-player" */ + ).then((c) => c.default || c)), + IconCodeSandBox: defineAsyncComponent(() => import( + './_nuxt/IconCodeSandBox-289e2c7f.mjs' + /* webpackChunkName: "components/icon-code-sand-box" */ + ).then((c) => c.default || c)), + IconDocus: defineAsyncComponent(() => import( + './_nuxt/IconDocus-12d300be.mjs' + /* webpackChunkName: "components/icon-docus" */ + ).then((c) => c.default || c)), + IconNuxt: defineAsyncComponent(() => import( + './_nuxt/IconNuxt-c11c3c9c.mjs' + /* webpackChunkName: "components/icon-nuxt" */ + ).then((c) => c.default || c)), + IconNuxtContent: defineAsyncComponent(() => import( + './_nuxt/IconNuxtContent-f8fb6ffc.mjs' + /* webpackChunkName: "components/icon-nuxt-content" */ + ).then((c) => c.default || c)), + IconNuxtLabs: defineAsyncComponent(() => import( + './_nuxt/IconNuxtLabs-1b2b0005.mjs' + /* webpackChunkName: "components/icon-nuxt-labs" */ + ).then((c) => c.default || c)), + IconNuxtStudio: defineAsyncComponent(() => import( + './_nuxt/IconNuxtStudio-8ac5eaa5.mjs' + /* webpackChunkName: "components/icon-nuxt-studio" */ + ).then((c) => c.default || c)), + IconStackBlitz: defineAsyncComponent(() => import( + './_nuxt/IconStackBlitz-def46545.mjs' + /* webpackChunkName: "components/icon-stack-blitz" */ + ).then((c) => c.default || c)), + IconVueTelescope: defineAsyncComponent(() => import( + './_nuxt/IconVueTelescope-96109b9a.mjs' + /* webpackChunkName: "components/icon-vue-telescope" */ + ).then((c) => c.default || c)), + BlockHero: defineAsyncComponent(() => import( + './_nuxt/BlockHero-f586796f.mjs' + /* webpackChunkName: "components/block-hero" */ + ).then((c) => c.default || c)), + Card: defineAsyncComponent(() => import( + './_nuxt/Card-2052047f.mjs' + /* webpackChunkName: "components/card" */ + ).then((c) => c.default || c)), + CardGrid: defineAsyncComponent(() => import( + './_nuxt/CardGrid-160bcd85.mjs' + /* webpackChunkName: "components/card-grid" */ + ).then((c) => c.default || c)), + VoltaBoard: defineAsyncComponent(() => import( + './_nuxt/VoltaBoard-98820156.mjs' + /* webpackChunkName: "components/volta-board" */ + ).then((c) => c.default || c)), + ComponentPlayground: defineAsyncComponent(() => import( + './_nuxt/ComponentPlayground-c7ca07d7.mjs' + /* webpackChunkName: "components/component-playground" */ + ).then((c) => c.default || c)), + ComponentPlaygroundData: defineAsyncComponent(() => import( + './_nuxt/ComponentPlaygroundData-d25a0f8e.mjs' + /* webpackChunkName: "components/component-playground-data" */ + ).then((c) => c.default || c)), + ComponentPlaygroundProps: defineAsyncComponent(() => import( + './_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs' + /* webpackChunkName: "components/component-playground-props" */ + ).then((c) => c.default || c)), + ComponentPlaygroundSlots: defineAsyncComponent(() => import( + './_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs' + /* webpackChunkName: "components/component-playground-slots" */ + ).then((c) => c.default || c)), + ComponentPlaygroundTokens: defineAsyncComponent(() => import( + './_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs' + /* webpackChunkName: "components/component-playground-tokens" */ + ).then((c) => c.default || c)), + TokensPlayground: defineAsyncComponent(() => import( + './_nuxt/TokensPlayground-84b52014.mjs' + /* webpackChunkName: "components/tokens-playground" */ + ).then((c) => c.default || c)), + ContentDoc: defineAsyncComponent(() => import( + './_nuxt/ContentDoc-608dc79a.mjs' + /* webpackChunkName: "components/content-doc" */ + ).then((c) => c.default || c)), + ContentList: defineAsyncComponent(() => import( + './_nuxt/ContentList-b4b0de0d.mjs' + /* webpackChunkName: "components/content-list" */ + ).then((c) => c.default || c)), + ContentNavigation: defineAsyncComponent(() => import( + './_nuxt/ContentNavigation-8bed293a.mjs' + /* webpackChunkName: "components/content-navigation" */ + ).then((c) => c.default || c)), + ContentQuery: defineAsyncComponent(() => import( + './_nuxt/ContentQuery-8668b0af.mjs' + /* webpackChunkName: "components/content-query" */ + ).then((c) => c.default || c)), + ContentRenderer: defineAsyncComponent(() => import( + './_nuxt/ContentRenderer-06a7c657.mjs' + /* webpackChunkName: "components/content-renderer" */ + ).then((c) => c.default || c)), + ContentRendererMarkdown: defineAsyncComponent(() => import( + './_nuxt/ContentRendererMarkdown-bebf42c8.mjs' + /* webpackChunkName: "components/content-renderer-markdown" */ + ).then((c) => c.default || c)), + ContentSlot: defineAsyncComponent(() => import( + './_nuxt/ContentSlot-deb25102.mjs' + /* webpackChunkName: "components/content-slot" */ + ).then((c) => c.default || c)), + DocumentDrivenEmpty: defineAsyncComponent(() => import( + './_nuxt/DocumentDrivenEmpty-8338ce9f.mjs' + /* webpackChunkName: "components/document-driven-empty" */ + ).then((c) => c.default || c)), + Markdown: defineAsyncComponent(() => import( + './_nuxt/Markdown-1885a814.mjs' + /* webpackChunkName: "components/markdown" */ + ).then((c) => c.default || c)), + GithubRepository: defineAsyncComponent(() => import( + './_nuxt/GithubRepository-8db11ede.mjs' + /* webpackChunkName: "components/github-repository" */ + ).then((c) => c.default || c)), + GithubLink: defineAsyncComponent(() => import( + './_nuxt/GithubLink-f632fd3b.mjs' + /* webpackChunkName: "components/github-link" */ + ).then((c) => c.default || c)), + GithubReadme: defineAsyncComponent(() => import( + './_nuxt/GithubReadme-9e48e600.mjs' + /* webpackChunkName: "components/github-readme" */ + ).then((c) => c.default || c)), + GithubReleases: defineAsyncComponent(() => import( + './_nuxt/GithubReleases-2ab96fb8.mjs' + /* webpackChunkName: "components/github-releases" */ + ).then((c) => c.default || c)), + GithubLastRelease: defineAsyncComponent(() => import( + './_nuxt/GithubLastRelease-b4d6e912.mjs' + /* webpackChunkName: "components/github-last-release" */ + ).then((c) => c.default || c)), + GithubRelease: defineAsyncComponent(() => import( + './_nuxt/GithubRelease-140d3d2e.mjs' + /* webpackChunkName: "components/github-release" */ + ).then((c) => c.default || c)), + GithubContributors: defineAsyncComponent(() => import( + './_nuxt/GithubContributors-1aa0f22f.mjs' + /* webpackChunkName: "components/github-contributors" */ + ).then((c) => c.default || c)), + GithubFileContributors: defineAsyncComponent(() => import( + './_nuxt/GithubFileContributors-285e4522.mjs' + /* webpackChunkName: "components/github-file-contributors" */ + ).then((c) => c.default || c)), + GithubCommits: defineAsyncComponent(() => import( + './_nuxt/GithubCommits-b7b81c66.mjs' + /* webpackChunkName: "components/github-commits" */ + ).then((c) => c.default || c)), + Icon: defineAsyncComponent(() => import( + './_nuxt/DocsAsideTree-136bd08b.mjs' + /* webpackChunkName: "components/icon" */ + ).then(function(n) { + return n.I; + }).then((c) => c.default || c)) +}; +const components_plugin_KR1HBZs4kY = defineNuxtPlugin((nuxtApp) => { + for (const name in components) { + nuxtApp.vueApp.component(name, components[name]); + nuxtApp.vueApp.component("Lazy" + name, components[name]); + } +}); +const appHead = { "meta": [{ "name": "viewport", "content": "width=device-width, initial-scale=1" }, { "charset": "utf-8" }], "link": [], "style": [], "script": [{ "defer": true, "data-domain": "frontier.realdecoy.com", "src": "https://plausible.io/js/script.js" }], "noscript": [] }; +const appLayoutTransition = false; +const appPageTransition = false; +const appKeepalive = false; +const vueuse_head_plugin_D7WGfuP1A0 = defineNuxtPlugin((nuxtApp) => { + const head = createHead(); + head.push(appHead); + nuxtApp.vueApp.use(head); + nuxtApp._useHead = useHead$1; + { + nuxtApp.ssrContext.renderMeta = async () => { + const meta = await renderSSRHead(head.unhead); + return { + ...meta, + bodyScriptsPrepend: meta.bodyTagsOpen, + // resolves naming difference with NuxtMeta and @vueuse/head + bodyScripts: meta.bodyTags + }; + }; + } +}); +const __nuxt_page_meta$1 = {}; +const __nuxt_page_meta = {}; +const _routes = [ + { + name: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.name) ?? "slug", + path: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.path) ?? "/:slug(.*)*", + children: [], + meta: __nuxt_page_meta$1, + alias: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.alias) || [], + redirect: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.redirect) || void 0, + component: () => import('./_nuxt/document-driven-27005915.mjs').then((m) => m.default || m) + }, + { + name: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.name) ?? "__app_config.json", + path: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.path) ?? "/__app_config.json", + children: [], + meta: __nuxt_page_meta, + alias: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.alias) || [], + redirect: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.redirect) || void 0, + component: () => import('./_nuxt/empty-446a838e.mjs').then((m) => m.default || m) + } +]; +const routerOptions0 = { + scrollBehavior(to, _form, savedPosition) { + if (history.state.stop) { + return; + } + if (history.state.smooth) { + return { + el: history.state.smooth, + behavior: "smooth" + }; + } + if (to.hash) { + const el = document.querySelector(to.hash); + if (!el) { + return; + } + const { marginTop } = getComputedStyle(el); + const marginTopValue = parseInt(marginTop); + const offset = document.querySelector(to.hash).offsetTop - marginTopValue; + return { + top: offset, + behavior: "smooth" + }; + } + if (savedPosition) { + return savedPosition; + } else { + return { top: 0 }; + } + } +}; +const routerOptions1 = { + scrollBehavior(to, from, savedPosition) { + const nuxtApp = useNuxtApp(); + let position = savedPosition || void 0; + if (!position && from && to && to.meta.scrollToTop !== false && _isDifferentRoute(from, to)) { + position = { left: 0, top: 0 }; + } + if (to.path === from.path) { + if (from.hash && !to.hash) { + return { left: 0, top: 0 }; + } + if (to.hash) { + return { el: to.hash, top: _getHashElementScrollMarginTop(to.hash) }; + } + } + const hasTransition = (route) => !!(route.meta.pageTransition ?? appPageTransition); + const hookToWait = hasTransition(from) && hasTransition(to) ? "page:transition:finish" : "page:finish"; + return new Promise((resolve) => { + nuxtApp.hooks.hookOnce(hookToWait, async () => { + await nextTick(); + if (to.hash) { + position = { el: to.hash, top: _getHashElementScrollMarginTop(to.hash) }; + } + resolve(position); + }); + }); + } +}; +function _getHashElementScrollMarginTop(selector) { + try { + const elem = document.querySelector(selector); + if (elem) { + return parseFloat(getComputedStyle(elem).scrollMarginTop); + } + } catch { + } + return 0; +} +function _isDifferentRoute(a, b) { + const samePageComponent = a.matched[0] === b.matched[0]; + if (!samePageComponent) { + return true; + } + if (samePageComponent && JSON.stringify(a.params) !== JSON.stringify(b.params)) { + return true; + } + return false; +} +const configRouterOptions = {}; +const routerOptions = { + ...configRouterOptions, + ...routerOptions1, + ...routerOptions0 +}; +const validate = defineNuxtRouteMiddleware(async (to) => { + var _a; + let __temp, __restore; + if (!((_a = to.meta) == null ? void 0 : _a.validate)) { + return; + } + const result = ([__temp, __restore] = executeAsync(() => Promise.resolve(to.meta.validate(to))), __temp = await __temp, __restore(), __temp); + if (result === true) { + return; + } + return result; +}); +const globalMiddleware = [ + validate +]; +const namedMiddleware = {}; +const router_Pg0DINazwm = defineNuxtPlugin(async (nuxtApp) => { + var _a, _b; + let __temp, __restore; + let routerBase = useRuntimeConfig$1().app.baseURL; + if (routerOptions.hashMode && !routerBase.includes("#")) { + routerBase += "#"; + } + const history2 = ((_a = routerOptions.history) == null ? void 0 : _a.call(routerOptions, routerBase)) ?? createMemoryHistory(routerBase); + const routes = ((_b = routerOptions.routes) == null ? void 0 : _b.call(routerOptions, _routes)) ?? _routes; + const initialURL = nuxtApp.ssrContext.url; + const router = createRouter({ + ...routerOptions, + history: history2, + routes + }); + nuxtApp.vueApp.use(router); + const previousRoute = shallowRef(router.currentRoute.value); + router.afterEach((_to, from) => { + previousRoute.value = from; + }); + Object.defineProperty(nuxtApp.vueApp.config.globalProperties, "previousRoute", { + get: () => previousRoute.value + }); + const _route = shallowRef(router.resolve(initialURL)); + const syncCurrentRoute = () => { + _route.value = router.currentRoute.value; + }; + nuxtApp.hook("page:finish", syncCurrentRoute); + router.afterEach((to, from) => { + var _a2, _b2, _c, _d; + if (((_b2 = (_a2 = to.matched[0]) == null ? void 0 : _a2.components) == null ? void 0 : _b2.default) === ((_d = (_c = from.matched[0]) == null ? void 0 : _c.components) == null ? void 0 : _d.default)) { + syncCurrentRoute(); + } + }); + const route = {}; + for (const key in _route.value) { + route[key] = computed(() => _route.value[key]); + } + nuxtApp._route = reactive(route); + nuxtApp._middleware = nuxtApp._middleware || { + global: [], + named: {} + }; + useError(); + try { + if (true) { + ; + [__temp, __restore] = executeAsync(() => router.push(initialURL)), await __temp, __restore(); + ; + } + ; + [__temp, __restore] = executeAsync(() => router.isReady()), await __temp, __restore(); + ; + } catch (error2) { + [__temp, __restore] = executeAsync(() => callWithNuxt(nuxtApp, showError, [error2])), await __temp, __restore(); + } + const initialLayout = useState("_layout"); + router.beforeEach(async (to, from) => { + var _a2; + to.meta = reactive(to.meta); + if (nuxtApp.isHydrating && initialLayout.value && !isReadonly(to.meta.layout)) { + to.meta.layout = initialLayout.value; + } + nuxtApp._processingMiddleware = true; + const middlewareEntries = /* @__PURE__ */ new Set([...globalMiddleware, ...nuxtApp._middleware.global]); + for (const component of to.matched) { + const componentMiddleware = component.meta.middleware; + if (!componentMiddleware) { + continue; + } + if (Array.isArray(componentMiddleware)) { + for (const entry2 of componentMiddleware) { + middlewareEntries.add(entry2); + } + } else { + middlewareEntries.add(componentMiddleware); + } + } + for (const entry2 of middlewareEntries) { + const middleware = typeof entry2 === "string" ? nuxtApp._middleware.named[entry2] || await ((_a2 = namedMiddleware[entry2]) == null ? void 0 : _a2.call(namedMiddleware).then((r) => r.default || r)) : entry2; + if (!middleware) { + throw new Error(`Unknown route middleware: '${entry2}'.`); + } + const result = await callWithNuxt(nuxtApp, middleware, [to, from]); + { + if (result === false || result instanceof Error) { + const error2 = result || createError$1({ + statusCode: 404, + statusMessage: `Page Not Found: ${initialURL}` + }); + await callWithNuxt(nuxtApp, showError, [error2]); + return false; + } + } + if (result || result === false) { + return result; + } + } + }); + router.afterEach(async (to) => { + delete nuxtApp._processingMiddleware; + if (to.matched.length === 0) { + await callWithNuxt(nuxtApp, showError, [createError$1({ + statusCode: 404, + fatal: false, + statusMessage: `Page not found: ${to.fullPath}` + })]); + } else { + const currentURL = to.fullPath || "/"; + if (!isEqual(currentURL, initialURL)) { + const event = await callWithNuxt(nuxtApp, useRequestEvent); + const options = { redirectCode: event.node.res.statusCode !== 200 ? event.node.res.statusCode || 302 : 302 }; + await callWithNuxt(nuxtApp, navigateTo, [currentURL, options]); + } + } + }); + nuxtApp.hooks.hookOnce("app:created", async () => { + try { + await router.replace({ + ...router.resolve(initialURL), + name: void 0, + // #4920, #$4982 + force: true + }); + } catch (error2) { + await callWithNuxt(nuxtApp, showError, [error2]); + } + }); + return { provide: { router } }; +}); +const docsearch_hvQai9BtgI = defineNuxtPlugin(() => { + const config = useRuntimeConfig$1(); + const docSearchElement = ref(); + const hasDocSearch = computed(() => { + var _a, _b; + return (_b = (_a = config == null ? void 0 : config.public) == null ? void 0 : _a.algolia) == null ? void 0 : _b.docSearch; + }); + if (hasDocSearch.value) { + useRoute(); + useRouter(); + computed(() => { + const { algolia } = useRuntimeConfig$1(); + if (algolia && algolia.docSearch) { + return algolia; + } + return {}; + }); + } + return { + provide: { + docSearch: { + element: docSearchElement, + hasDocSearch + } + } + }; +}); +function jsonStringify(value) { + return JSON.stringify(value, regExpReplacer); +} +function regExpReplacer(_key, value) { + if (value instanceof RegExp) { + return `--REGEX ${value.toString()}`; + } + return value; +} +const encodeQueryParams = (params) => { + let encoded = jsonStringify(params); + encoded = typeof Buffer !== "undefined" ? Buffer.from(encoded).toString("base64") : btoa(encoded); + encoded = encoded.replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, ""); + const chunks = encoded.match(/.{1,100}/g) || []; + return chunks.join("/"); +}; +const createQueryFetch = () => async (query) => { + const { content } = useRuntimeConfig$1().public; + const params = query.params(); + const apiPath = content.experimental.stripQueryParameters ? withContentBase(`/query/${`${hash(params)}.${content.integrity}`}/${encodeQueryParams(params)}.json`) : withContentBase(`/query/${hash(params)}.${content.integrity}.json`); + { + addPrerenderPath(apiPath); + } + if (shouldUseClientDB()) { + const db = await import('./_nuxt/client-db-fd379c8e.mjs').then((m) => m.useContentDatabase()); + return db.fetch(query); + } + const data = await $fetch(apiPath, { + method: "GET", + responseType: "json", + params: content.experimental.stripQueryParameters ? void 0 : { + _params: jsonStringify(params), + previewToken: useCookie("previewToken").value + } + }); + if (typeof data === "string" && data.startsWith("")) { + throw new Error("Not found"); + } + return data; +}; +function queryContent(query, ...pathParts) { + const { content } = useRuntimeConfig$1().public; + const queryBuilder = createQuery(createQueryFetch(), typeof query !== "string" ? query : {}); + let path; + if (typeof query === "string") { + path = withLeadingSlash(joinURL(query, ...pathParts)); + } + const originalParamsFn = queryBuilder.params; + queryBuilder.params = () => { + var _a, _b, _c; + const params = originalParamsFn(); + if (path) { + params.where = params.where || []; + if (params.first && (params.where || []).length === 0) { + params.where.push({ _path: withoutTrailingSlash(path) }); + } else { + params.where.push({ _path: new RegExp(`^${path.replace(/[-[\]{}()*+.,^$\s/]/g, "\\$&")}`) }); + } + } + if (!((_a = params.sort) == null ? void 0 : _a.length)) { + params.sort = [{ _file: 1, $numeric: true }]; + } + if (content.locales.length) { + const queryLocale = (_c = (_b = params.where) == null ? void 0 : _b.find((w) => w._locale)) == null ? void 0 : _c._locale; + if (!queryLocale) { + params.where = params.where || []; + params.where.push({ _locale: content.defaultLocale }); + } + } + return params; + }; + return queryBuilder; +} +const fetchContentNavigation = async (queryBuilder) => { + const { content } = useRuntimeConfig$1().public; + if (typeof (queryBuilder == null ? void 0 : queryBuilder.params) !== "function") { + queryBuilder = queryContent(queryBuilder); + } + const params = queryBuilder.params(); + const apiPath = content.experimental.stripQueryParameters ? withContentBase(`/navigation/${`${hash(params)}.${content.integrity}`}/${encodeQueryParams(params)}.json`) : withContentBase(`/navigation/${hash(params)}.${content.integrity}.json`); + { + addPrerenderPath(apiPath); + } + if (shouldUseClientDB()) { + const generateNavigation = await import('./_nuxt/client-db-fd379c8e.mjs').then((m) => m.generateNavigation); + return generateNavigation(params); + } + const data = await $fetch(apiPath, { + method: "GET", + responseType: "json", + params: content.experimental.stripQueryParameters ? void 0 : { + _params: jsonStringify(params), + previewToken: useCookie("previewToken").value + } + }); + if (typeof data === "string" && data.startsWith("")) { + throw new Error("Not found"); + } + return data; +}; +const layouts = { + "docs-page": () => import('./_nuxt/docs-page-75eace63.mjs').then((m) => m.default || m), + default: () => import('./_nuxt/default-cafbf0bc.mjs').then((m) => m.default || m), + page: () => import('./_nuxt/page-26ac7e13.mjs').then((m) => m.default || m) +}; +const documentDriven_9cX98v59ZY = defineNuxtPlugin((nuxt) => { + var _a, _b; + const { documentDriven: moduleOptions, experimental } = (_b = (_a = useRuntimeConfig$1()) == null ? void 0 : _a.public) == null ? void 0 : _b.content; + const findLayout = (to, page2, navigation, globals) => { + var _a2; + if (page2 && (page2 == null ? void 0 : page2.layout)) { + return page2.layout; + } + if (to.matched.length && ((_a2 = to.matched[0].meta) == null ? void 0 : _a2.layout)) { + return to.matched[0].meta.layout; + } + if (navigation && page2) { + const { navKeyFromPath } = useContentHelpers(); + const layoutFromNav = navKeyFromPath(page2._path, "layout", navigation); + if (layoutFromNav) { + return layoutFromNav; + } + } + if (moduleOptions.layoutFallbacks && globals) { + let layoutFallback; + for (const fallback of moduleOptions.layoutFallbacks) { + if (globals[fallback] && globals[fallback].layout) { + layoutFallback = globals[fallback].layout; + break; + } + } + if (layoutFallback) { + return layoutFallback; + } + } + return "default"; + }; + const refresh = async (to, dedup = false) => { + nuxt.callHook("content:document-driven:start", { route: to, dedup }); + const routeConfig = to.meta.documentDriven || {}; + if (to.meta.documentDriven === false) { + return; + } + const { navigation, pages, globals, surrounds } = useContentState(); + const _path = withoutTrailingSlash(to.path); + const promises = []; + if (moduleOptions.navigation && routeConfig.navigation !== false) { + const navigationQuery = () => { + const { navigation: navigation2 } = useContentState(); + if (navigation2.value && !dedup) { + return navigation2.value; + } + return fetchContentNavigation().then((_navigation) => { + navigation2.value = _navigation; + return _navigation; + }).catch(() => null); + }; + promises.push(navigationQuery); + } else { + promises.push(() => Promise.resolve(null)); + } + if (moduleOptions.globals) { + const globalsQuery = () => { + const { globals: globals2 } = useContentState(); + if (typeof moduleOptions.globals === "object" && Array.isArray(moduleOptions.globals)) { + console.log("Globals must be a list of keys with QueryBuilderParams as a value."); + return; + } + return Promise.all( + Object.entries(moduleOptions.globals).map( + ([key, query]) => { + if (!dedup && globals2.value[key]) { + return globals2.value[key]; + } + let type = "findOne"; + if (query == null ? void 0 : query.type) { + type = query.type; + } + return queryContent(query)[type]().catch(() => null); + } + ) + ).then( + (values) => { + return values.reduce( + (acc, value, index) => { + const key = Object.keys(moduleOptions.globals)[index]; + acc[key] = value; + return acc; + }, + {} + ); + } + ); + }; + promises.push(globalsQuery); + } else { + promises.push(() => Promise.resolve(null)); + } + if (moduleOptions.page && routeConfig.page !== false) { + let where = { _path }; + if (typeof routeConfig.page === "string") { + where = { _path: routeConfig.page }; + } + if (typeof routeConfig.page === "object") { + where = routeConfig.page; + } + const pageQuery = () => { + const { pages: pages2 } = useContentState(); + if (!dedup && pages2.value[_path] && pages2.value[_path]._path === _path) { + return pages2.value[_path]; + } + return queryContent().where(where).findOne().catch(() => null); + }; + promises.push(pageQuery); + } else { + promises.push(() => Promise.resolve(null)); + } + if (moduleOptions.surround && routeConfig.surround !== false) { + let surround = _path; + if (["string", "object"].includes(typeof routeConfig.page)) { + surround = routeConfig.page; + } + if (["string", "object"].includes(typeof routeConfig.surround)) { + surround = routeConfig.surround; + } + const surroundQuery = () => { + const { surrounds: surrounds2 } = useContentState(); + if (!dedup && surrounds2.value[_path]) { + return surrounds2.value[_path]; + } + return queryContent().where({ + _partial: { $not: true }, + navigation: { $not: false } + }).without(["body"]).findSurround(surround).catch(() => null); + }; + promises.push(surroundQuery); + } else { + promises.push(() => Promise.resolve(null)); + } + return await Promise.all(promises.map((promise) => promise())).then(async ([ + _navigation, + _globals, + _page, + _surround + ]) => { + var _a2, _b2; + if (_navigation) { + navigation.value = _navigation; + } + if (_globals) { + globals.value = _globals; + } + if (_surround) { + surrounds.value[_path] = _surround; + } + const redirectTo = (_page == null ? void 0 : _page.redirect) || ((_b2 = (_a2 = _page == null ? void 0 : _page._dir) == null ? void 0 : _a2.navigation) == null ? void 0 : _b2.redirect); + if (redirectTo) { + pages.value[_path] = _page; + return redirectTo; + } + if (_page) { + const layoutName = findLayout(to, _page, _navigation, _globals); + const layout = layouts[layoutName]; + if (layout && typeof layout === "function") { + await layout(); + } + to.meta.layout = layoutName; + _page.layout = layoutName; + pages.value[_path] = _page; + } + await nuxt.callHook("content:document-driven:finish", { route: to, dedup, page: _page, navigation: _navigation, globals: _globals, surround: _surround }); + }); + }; + addRouteMiddleware(async (to, from) => { + if (to.path.includes("favicon.ico")) { + return; + } + const redirect = await refresh(to, false); + if (redirect) { + if (hasProtocol(redirect)) { + return callWithNuxt(nuxt, navigateTo, [redirect, { external: true }]); + } else { + return redirect; + } + } + }); + { + delete nuxt.payload.prerenderedAt; + } + nuxt.hook("app:data:refresh", async () => false); +}); +const stateColors = (value) => { + return { + color: `{elements.state.${value}.color.primary} !important`, + backgroundColor: `{elements.state.${value}.backgroundColor.primary} !important`, + borderColor: `{elements.state.${value}.borderColor.primary} !important`, + ":deep(p code)": { + color: `{elements.state.${value}.color.secondary} !important`, + backgroundColor: `{elements.state.${value}.backgroundColor.secondary} !important` + }, + ":deep(code)": { + color: `{elements.state.${value}.color.primary} !important`, + backgroundColor: `{elements.state.${value}.backgroundColor.secondary} !important` + }, + ":deep(a code)": { + borderColor: `{elements.state.${value}.borderColor.primary} !important` + }, + ":deep(a)": { + borderColor: "currentColor", + code: { + backgroundColor: `{elements.state.${value}.backgroundColor.primary} !important` + }, + "&:hover": { + color: `{elements.state.${value}.color.secondary} !important`, + borderColor: "currentColor !important", + code: { + backgroundColor: `{elements.state.${value}.backgroundColor.secondary} !important`, + color: `{elements.state.${value}.color.secondary} !important`, + borderColor: `{elements.state.${value}.borderColor.secondary} !important` + } + } + } + }; +}; +const my = (value) => { + return { + marginTop: value, + marginBottom: value + }; +}; +const mx = (value) => { + return { + marginLeft: value, + marginRight: value + }; +}; +const py = (value) => { + return { + paddingTop: value, + paddingBottom: value + }; +}; +const px = (value) => { + return { + paddingLeft: value, + paddingRight: value + }; +}; +const truncate = { + overflow: "hidden", + textOverflow: "ellipsis", + whiteSpace: "nowrap" +}; +const lineClamp = (lines) => ({ + "overflow": "hidden", + "display": "-webkit-box", + "-webkit-box-orient": "vertical", + "-webkit-line-clamp": lines +}); +const text = (size) => ({ + fontSize: `{text.${size}.fontSize}`, + lineHeight: `{text.${size}.lineHeight}` +}); +const utils = { stateColors, my, mx, py, px, truncate, lineClamp, text }; +const theme = { + "color": { + "primary": { + "50": { + "value": "#fff2cc", + "variable": "var(--color-primary-50)", + "original": "#fff2cc" + }, + "100": { + "value": "#ffe599", + "variable": "var(--color-primary-100)", + "original": "#ffe599" + }, + "200": { + "value": "#ffd966", + "variable": "var(--color-primary-200)", + "original": "#ffd966" + }, + "300": { + "value": "#f1c232", + "variable": "var(--color-primary-300)", + "original": "#f1c232" + }, + "400": { + "value": "#f1c232", + "variable": "var(--color-primary-400)", + "original": "#f1c232" + }, + "500": { + "value": "#f1c232", + "variable": "var(--color-primary-500)", + "original": "#f1c232" + }, + "600": { + "value": "#f1c232", + "variable": "var(--color-primary-600)", + "original": "#f1c232" + }, + "700": { + "value": "#f1c232", + "variable": "var(--color-primary-700)", + "original": "#f1c232" + }, + "800": { + "value": "#f1c232", + "variable": "var(--color-primary-800)", + "original": "#f1c232" + }, + "900": { + "value": "#f1c232", + "variable": "var(--color-primary-900)", + "original": "#f1c232" + } + }, + "white": { + "value": "#ffffff", + "variable": "var(--color-white)", + "original": "#ffffff" + }, + "black": { + "value": "#0c0c0d", + "variable": "var(--color-black)", + "original": "#0c0c0d" + }, + "secondary": { + "50": { + "value": "var(--color-gray-50)", + "variable": "var(--color-secondary-50)", + "original": "{color.gray.50}" + }, + "100": { + "value": "var(--color-gray-100)", + "variable": "var(--color-secondary-100)", + "original": "{color.gray.100}" + }, + "200": { + "value": "var(--color-gray-200)", + "variable": "var(--color-secondary-200)", + "original": "{color.gray.200}" + }, + "300": { + "value": "var(--color-gray-300)", + "variable": "var(--color-secondary-300)", + "original": "{color.gray.300}" + }, + "400": { + "value": "var(--color-gray-400)", + "variable": "var(--color-secondary-400)", + "original": "{color.gray.400}" + }, + "500": { + "value": "var(--color-gray-500)", + "variable": "var(--color-secondary-500)", + "original": "{color.gray.500}" + }, + "600": { + "value": "var(--color-gray-600)", + "variable": "var(--color-secondary-600)", + "original": "{color.gray.600}" + }, + "700": { + "value": "var(--color-gray-700)", + "variable": "var(--color-secondary-700)", + "original": "{color.gray.700}" + }, + "800": { + "value": "var(--color-gray-800)", + "variable": "var(--color-secondary-800)", + "original": "{color.gray.800}" + }, + "900": { + "value": "var(--color-gray-900)", + "variable": "var(--color-secondary-900)", + "original": "{color.gray.900}" + } + }, + "gray": { + "50": { + "value": "#fafafa", + "variable": "var(--color-gray-50)", + "original": "#fafafa" + }, + "100": { + "value": "#f4f4f5", + "variable": "var(--color-gray-100)", + "original": "#f4f4f5" + }, + "200": { + "value": "#e4e4e7", + "variable": "var(--color-gray-200)", + "original": "#e4e4e7" + }, + "300": { + "value": "#D4d4d8", + "variable": "var(--color-gray-300)", + "original": "#D4d4d8" + }, + "400": { + "value": "#a1a1aa", + "variable": "var(--color-gray-400)", + "original": "#a1a1aa" + }, + "500": { + "value": "#71717A", + "variable": "var(--color-gray-500)", + "original": "#71717A" + }, + "600": { + "value": "#52525B", + "variable": "var(--color-gray-600)", + "original": "#52525B" + }, + "700": { + "value": "#3f3f46", + "variable": "var(--color-gray-700)", + "original": "#3f3f46" + }, + "800": { + "value": "#27272A", + "variable": "var(--color-gray-800)", + "original": "#27272A" + }, + "900": { + "value": "#18181B", + "variable": "var(--color-gray-900)", + "original": "#18181B" + } + }, + "green": { + "50": { + "value": "#d6ffee", + "variable": "var(--color-green-50)", + "original": "#d6ffee" + }, + "100": { + "value": "#acffdd", + "variable": "var(--color-green-100)", + "original": "#acffdd" + }, + "200": { + "value": "#83ffcc", + "variable": "var(--color-green-200)", + "original": "#83ffcc" + }, + "300": { + "value": "#30ffaa", + "variable": "var(--color-green-300)", + "original": "#30ffaa" + }, + "400": { + "value": "#00dc82", + "variable": "var(--color-green-400)", + "original": "#00dc82" + }, + "500": { + "value": "#00bd6f", + "variable": "var(--color-green-500)", + "original": "#00bd6f" + }, + "600": { + "value": "#009d5d", + "variable": "var(--color-green-600)", + "original": "#009d5d" + }, + "700": { + "value": "#007e4a", + "variable": "var(--color-green-700)", + "original": "#007e4a" + }, + "800": { + "value": "#005e38", + "variable": "var(--color-green-800)", + "original": "#005e38" + }, + "900": { + "value": "#003f25", + "variable": "var(--color-green-900)", + "original": "#003f25" + } + }, + "yellow": { + "50": { + "value": "#fdf6db", + "variable": "var(--color-yellow-50)", + "original": "#fdf6db" + }, + "100": { + "value": "#fcedb7", + "variable": "var(--color-yellow-100)", + "original": "#fcedb7" + }, + "200": { + "value": "#fae393", + "variable": "var(--color-yellow-200)", + "original": "#fae393" + }, + "300": { + "value": "#f8da70", + "variable": "var(--color-yellow-300)", + "original": "#f8da70" + }, + "400": { + "value": "#f7d14c", + "variable": "var(--color-yellow-400)", + "original": "#f7d14c" + }, + "500": { + "value": "#f5c828", + "variable": "var(--color-yellow-500)", + "original": "#f5c828" + }, + "600": { + "value": "#daac0a", + "variable": "var(--color-yellow-600)", + "original": "#daac0a" + }, + "700": { + "value": "#a38108", + "variable": "var(--color-yellow-700)", + "original": "#a38108" + }, + "800": { + "value": "#6d5605", + "variable": "var(--color-yellow-800)", + "original": "#6d5605" + }, + "900": { + "value": "#362b03", + "variable": "var(--color-yellow-900)", + "original": "#362b03" + } + }, + "orange": { + "50": { + "value": "#ffe9d9", + "variable": "var(--color-orange-50)", + "original": "#ffe9d9" + }, + "100": { + "value": "#ffd3b3", + "variable": "var(--color-orange-100)", + "original": "#ffd3b3" + }, + "200": { + "value": "#ffbd8d", + "variable": "var(--color-orange-200)", + "original": "#ffbd8d" + }, + "300": { + "value": "#ffa666", + "variable": "var(--color-orange-300)", + "original": "#ffa666" + }, + "400": { + "value": "#ff9040", + "variable": "var(--color-orange-400)", + "original": "#ff9040" + }, + "500": { + "value": "#ff7a1a", + "variable": "var(--color-orange-500)", + "original": "#ff7a1a" + }, + "600": { + "value": "#e15e00", + "variable": "var(--color-orange-600)", + "original": "#e15e00" + }, + "700": { + "value": "#a94700", + "variable": "var(--color-orange-700)", + "original": "#a94700" + }, + "800": { + "value": "#702f00", + "variable": "var(--color-orange-800)", + "original": "#702f00" + }, + "900": { + "value": "#381800", + "variable": "var(--color-orange-900)", + "original": "#381800" + } + }, + "red": { + "50": { + "value": "#ffdbd9", + "variable": "var(--color-red-50)", + "original": "#ffdbd9" + }, + "100": { + "value": "#ffb7b3", + "variable": "var(--color-red-100)", + "original": "#ffb7b3" + }, + "200": { + "value": "#ff948d", + "variable": "var(--color-red-200)", + "original": "#ff948d" + }, + "300": { + "value": "#ff7066", + "variable": "var(--color-red-300)", + "original": "#ff7066" + }, + "400": { + "value": "#ff4c40", + "variable": "var(--color-red-400)", + "original": "#ff4c40" + }, + "500": { + "value": "#ff281a", + "variable": "var(--color-red-500)", + "original": "#ff281a" + }, + "600": { + "value": "#e10e00", + "variable": "var(--color-red-600)", + "original": "#e10e00" + }, + "700": { + "value": "#a90a00", + "variable": "var(--color-red-700)", + "original": "#a90a00" + }, + "800": { + "value": "#700700", + "variable": "var(--color-red-800)", + "original": "#700700" + }, + "900": { + "value": "#380300", + "variable": "var(--color-red-900)", + "original": "#380300" + } + }, + "pear": { + "50": { + "value": "#f7f8dc", + "variable": "var(--color-pear-50)", + "original": "#f7f8dc" + }, + "100": { + "value": "#eff0ba", + "variable": "var(--color-pear-100)", + "original": "#eff0ba" + }, + "200": { + "value": "#e8e997", + "variable": "var(--color-pear-200)", + "original": "#e8e997" + }, + "300": { + "value": "#e0e274", + "variable": "var(--color-pear-300)", + "original": "#e0e274" + }, + "400": { + "value": "#d8da52", + "variable": "var(--color-pear-400)", + "original": "#d8da52" + }, + "500": { + "value": "#d0d32f", + "variable": "var(--color-pear-500)", + "original": "#d0d32f" + }, + "600": { + "value": "#a8aa24", + "variable": "var(--color-pear-600)", + "original": "#a8aa24" + }, + "700": { + "value": "#7e801b", + "variable": "var(--color-pear-700)", + "original": "#7e801b" + }, + "800": { + "value": "#545512", + "variable": "var(--color-pear-800)", + "original": "#545512" + }, + "900": { + "value": "#2a2b09", + "variable": "var(--color-pear-900)", + "original": "#2a2b09" + } + }, + "teal": { + "50": { + "value": "#d7faf8", + "variable": "var(--color-teal-50)", + "original": "#d7faf8" + }, + "100": { + "value": "#aff4f0", + "variable": "var(--color-teal-100)", + "original": "#aff4f0" + }, + "200": { + "value": "#87efe9", + "variable": "var(--color-teal-200)", + "original": "#87efe9" + }, + "300": { + "value": "#5fe9e1", + "variable": "var(--color-teal-300)", + "original": "#5fe9e1" + }, + "400": { + "value": "#36e4da", + "variable": "var(--color-teal-400)", + "original": "#36e4da" + }, + "500": { + "value": "#1cd1c6", + "variable": "var(--color-teal-500)", + "original": "#1cd1c6" + }, + "600": { + "value": "#16a79e", + "variable": "var(--color-teal-600)", + "original": "#16a79e" + }, + "700": { + "value": "#117d77", + "variable": "var(--color-teal-700)", + "original": "#117d77" + }, + "800": { + "value": "#0b544f", + "variable": "var(--color-teal-800)", + "original": "#0b544f" + }, + "900": { + "value": "#062a28", + "variable": "var(--color-teal-900)", + "original": "#062a28" + } + }, + "lightblue": { + "50": { + "value": "#d9f8ff", + "variable": "var(--color-lightblue-50)", + "original": "#d9f8ff" + }, + "100": { + "value": "#b3f1ff", + "variable": "var(--color-lightblue-100)", + "original": "#b3f1ff" + }, + "200": { + "value": "#8deaff", + "variable": "var(--color-lightblue-200)", + "original": "#8deaff" + }, + "300": { + "value": "#66e4ff", + "variable": "var(--color-lightblue-300)", + "original": "#66e4ff" + }, + "400": { + "value": "#40ddff", + "variable": "var(--color-lightblue-400)", + "original": "#40ddff" + }, + "500": { + "value": "#1ad6ff", + "variable": "var(--color-lightblue-500)", + "original": "#1ad6ff" + }, + "600": { + "value": "#00b9e1", + "variable": "var(--color-lightblue-600)", + "original": "#00b9e1" + }, + "700": { + "value": "#008aa9", + "variable": "var(--color-lightblue-700)", + "original": "#008aa9" + }, + "800": { + "value": "#005c70", + "variable": "var(--color-lightblue-800)", + "original": "#005c70" + }, + "900": { + "value": "#002e38", + "variable": "var(--color-lightblue-900)", + "original": "#002e38" + } + }, + "blue": { + "50": { + "value": "#d9f1ff", + "variable": "var(--color-blue-50)", + "original": "#d9f1ff" + }, + "100": { + "value": "#b3e4ff", + "variable": "var(--color-blue-100)", + "original": "#b3e4ff" + }, + "200": { + "value": "#8dd6ff", + "variable": "var(--color-blue-200)", + "original": "#8dd6ff" + }, + "300": { + "value": "#66c8ff", + "variable": "var(--color-blue-300)", + "original": "#66c8ff" + }, + "400": { + "value": "#40bbff", + "variable": "var(--color-blue-400)", + "original": "#40bbff" + }, + "500": { + "value": "#1aadff", + "variable": "var(--color-blue-500)", + "original": "#1aadff" + }, + "600": { + "value": "#0090e1", + "variable": "var(--color-blue-600)", + "original": "#0090e1" + }, + "700": { + "value": "#006ca9", + "variable": "var(--color-blue-700)", + "original": "#006ca9" + }, + "800": { + "value": "#004870", + "variable": "var(--color-blue-800)", + "original": "#004870" + }, + "900": { + "value": "#002438", + "variable": "var(--color-blue-900)", + "original": "#002438" + } + }, + "indigoblue": { + "50": { + "value": "#d9e5ff", + "variable": "var(--color-indigoblue-50)", + "original": "#d9e5ff" + }, + "100": { + "value": "#b3cbff", + "variable": "var(--color-indigoblue-100)", + "original": "#b3cbff" + }, + "200": { + "value": "#8db0ff", + "variable": "var(--color-indigoblue-200)", + "original": "#8db0ff" + }, + "300": { + "value": "#6696ff", + "variable": "var(--color-indigoblue-300)", + "original": "#6696ff" + }, + "400": { + "value": "#407cff", + "variable": "var(--color-indigoblue-400)", + "original": "#407cff" + }, + "500": { + "value": "#1a62ff", + "variable": "var(--color-indigoblue-500)", + "original": "#1a62ff" + }, + "600": { + "value": "#0047e1", + "variable": "var(--color-indigoblue-600)", + "original": "#0047e1" + }, + "700": { + "value": "#0035a9", + "variable": "var(--color-indigoblue-700)", + "original": "#0035a9" + }, + "800": { + "value": "#002370", + "variable": "var(--color-indigoblue-800)", + "original": "#002370" + }, + "900": { + "value": "#001238", + "variable": "var(--color-indigoblue-900)", + "original": "#001238" + } + }, + "royalblue": { + "50": { + "value": "#dfdbfb", + "variable": "var(--color-royalblue-50)", + "original": "#dfdbfb" + }, + "100": { + "value": "#c0b7f7", + "variable": "var(--color-royalblue-100)", + "original": "#c0b7f7" + }, + "200": { + "value": "#a093f3", + "variable": "var(--color-royalblue-200)", + "original": "#a093f3" + }, + "300": { + "value": "#806ff0", + "variable": "var(--color-royalblue-300)", + "original": "#806ff0" + }, + "400": { + "value": "#614bec", + "variable": "var(--color-royalblue-400)", + "original": "#614bec" + }, + "500": { + "value": "#4127e8", + "variable": "var(--color-royalblue-500)", + "original": "#4127e8" + }, + "600": { + "value": "#2c15c4", + "variable": "var(--color-royalblue-600)", + "original": "#2c15c4" + }, + "700": { + "value": "#211093", + "variable": "var(--color-royalblue-700)", + "original": "#211093" + }, + "800": { + "value": "#160a62", + "variable": "var(--color-royalblue-800)", + "original": "#160a62" + }, + "900": { + "value": "#0b0531", + "variable": "var(--color-royalblue-900)", + "original": "#0b0531" + } + }, + "purple": { + "50": { + "value": "#ead9ff", + "variable": "var(--color-purple-50)", + "original": "#ead9ff" + }, + "100": { + "value": "#d5b3ff", + "variable": "var(--color-purple-100)", + "original": "#d5b3ff" + }, + "200": { + "value": "#c08dff", + "variable": "var(--color-purple-200)", + "original": "#c08dff" + }, + "300": { + "value": "#ab66ff", + "variable": "var(--color-purple-300)", + "original": "#ab66ff" + }, + "400": { + "value": "#9640ff", + "variable": "var(--color-purple-400)", + "original": "#9640ff" + }, + "500": { + "value": "#811aff", + "variable": "var(--color-purple-500)", + "original": "#811aff" + }, + "600": { + "value": "#6500e1", + "variable": "var(--color-purple-600)", + "original": "#6500e1" + }, + "700": { + "value": "#4c00a9", + "variable": "var(--color-purple-700)", + "original": "#4c00a9" + }, + "800": { + "value": "#330070", + "variable": "var(--color-purple-800)", + "original": "#330070" + }, + "900": { + "value": "#190038", + "variable": "var(--color-purple-900)", + "original": "#190038" + } + }, + "pink": { + "50": { + "value": "#ffd9f2", + "variable": "var(--color-pink-50)", + "original": "#ffd9f2" + }, + "100": { + "value": "#ffb3e5", + "variable": "var(--color-pink-100)", + "original": "#ffb3e5" + }, + "200": { + "value": "#ff8dd8", + "variable": "var(--color-pink-200)", + "original": "#ff8dd8" + }, + "300": { + "value": "#ff66cc", + "variable": "var(--color-pink-300)", + "original": "#ff66cc" + }, + "400": { + "value": "#ff40bf", + "variable": "var(--color-pink-400)", + "original": "#ff40bf" + }, + "500": { + "value": "#ff1ab2", + "variable": "var(--color-pink-500)", + "original": "#ff1ab2" + }, + "600": { + "value": "#e10095", + "variable": "var(--color-pink-600)", + "original": "#e10095" + }, + "700": { + "value": "#a90070", + "variable": "var(--color-pink-700)", + "original": "#a90070" + }, + "800": { + "value": "#70004b", + "variable": "var(--color-pink-800)", + "original": "#70004b" + }, + "900": { + "value": "#380025", + "variable": "var(--color-pink-900)", + "original": "#380025" + } + }, + "ruby": { + "50": { + "value": "#ffd9e4", + "variable": "var(--color-ruby-50)", + "original": "#ffd9e4" + }, + "100": { + "value": "#ffb3c9", + "variable": "var(--color-ruby-100)", + "original": "#ffb3c9" + }, + "200": { + "value": "#ff8dae", + "variable": "var(--color-ruby-200)", + "original": "#ff8dae" + }, + "300": { + "value": "#ff6694", + "variable": "var(--color-ruby-300)", + "original": "#ff6694" + }, + "400": { + "value": "#ff4079", + "variable": "var(--color-ruby-400)", + "original": "#ff4079" + }, + "500": { + "value": "#ff1a5e", + "variable": "var(--color-ruby-500)", + "original": "#ff1a5e" + }, + "600": { + "value": "#e10043", + "variable": "var(--color-ruby-600)", + "original": "#e10043" + }, + "700": { + "value": "#a90032", + "variable": "var(--color-ruby-700)", + "original": "#a90032" + }, + "800": { + "value": "#700021", + "variable": "var(--color-ruby-800)", + "original": "#700021" + }, + "900": { + "value": "#380011", + "variable": "var(--color-ruby-900)", + "original": "#380011" + } + } + }, + "elements": { + "text": { + "primary": { + "color": { + "static": { + "value": { + "initial": "var(--color-gray-900)", + "dark": "var(--color-gray-50)" + }, + "variable": "var(--elements-text-primary-color-static)", + "original": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + }, + "secondary": { + "color": { + "static": { + "value": { + "initial": "var(--color-gray-500)", + "dark": "var(--color-gray-400)" + }, + "variable": "var(--elements-text-secondary-color-static)", + "original": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "var(--color-gray-700)", + "dark": "var(--color-gray-200)" + }, + "variable": "var(--elements-text-secondary-color-hover)", + "original": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + }, + "container": { + "maxWidth": { + "value": "80rem", + "variable": "var(--elements-container-maxWidth)", + "original": "80rem" + }, + "padding": { + "mobile": { + "value": "var(--space-4)", + "variable": "var(--elements-container-padding-mobile)", + "original": "{space.4}" + }, + "xs": { + "value": "var(--space-4)", + "variable": "var(--elements-container-padding-xs)", + "original": "{space.4}" + }, + "sm": { + "value": "var(--space-6)", + "variable": "var(--elements-container-padding-sm)", + "original": "{space.6}" + }, + "md": { + "value": "var(--space-6)", + "variable": "var(--elements-container-padding-md)", + "original": "{space.6}" + } + } + }, + "backdrop": { + "filter": { + "value": "saturate(200%) blur(20px)", + "variable": "var(--elements-backdrop-filter)", + "original": "saturate(200%) blur(20px)" + }, + "background": { + "value": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + }, + "variable": "var(--elements-backdrop-background)", + "original": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + }, + "border": { + "primary": { + "static": { + "value": { + "initial": "var(--color-gray-100)", + "dark": "var(--color-gray-900)" + }, + "variable": "var(--elements-border-primary-static)", + "original": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + }, + "hover": { + "value": { + "initial": "var(--color-gray-200)", + "dark": "var(--color-gray-800)" + }, + "variable": "var(--elements-border-primary-hover)", + "original": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "secondary": { + "static": { + "value": { + "initial": "var(--color-gray-200)", + "dark": "var(--color-gray-800)" + }, + "variable": "var(--elements-border-secondary-static)", + "original": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + }, + "hover": { + "value": { + "initial": "", + "dark": "" + }, + "variable": "var(--elements-border-secondary-hover)", + "original": { + "initial": "", + "dark": "" + } + } + } + }, + "surface": { + "background": { + "base": { + "value": { + "initial": "var(--color-gray-100)", + "dark": "var(--color-gray-900)" + }, + "variable": "var(--elements-surface-background-base)", + "original": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + }, + "state": { + "primary": { + "color": { + "primary": { + "value": { + "initial": "var(--color-primary-600)", + "dark": "var(--color-primary-400)" + }, + "variable": "var(--elements-state-primary-color-primary)", + "original": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-primary-700)", + "dark": "var(--color-primary-200)" + }, + "variable": "var(--elements-state-primary-color-secondary)", + "original": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "var(--color-primary-50)", + "dark": "var(--color-primary-900)" + }, + "variable": "var(--elements-state-primary-backgroundColor-primary)", + "original": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-primary-100)", + "dark": "var(--color-primary-800)" + }, + "variable": "var(--elements-state-primary-backgroundColor-secondary)", + "original": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "var(--color-primary-100)", + "dark": "var(--color-primary-800)" + }, + "variable": "var(--elements-state-primary-borderColor-primary)", + "original": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-primary-200)", + "dark": "var(--color-primary-700)" + }, + "variable": "var(--elements-state-primary-borderColor-secondary)", + "original": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + }, + "info": { + "color": { + "primary": { + "value": { + "initial": "var(--color-blue-500)", + "dark": "var(--color-blue-400)" + }, + "variable": "var(--elements-state-info-color-primary)", + "original": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-blue-600)", + "dark": "var(--color-blue-200)" + }, + "variable": "var(--elements-state-info-color-secondary)", + "original": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "var(--color-blue-50)", + "dark": "var(--color-blue-900)" + }, + "variable": "var(--elements-state-info-backgroundColor-primary)", + "original": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-blue-100)", + "dark": "var(--color-blue-800)" + }, + "variable": "var(--elements-state-info-backgroundColor-secondary)", + "original": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "var(--color-blue-100)", + "dark": "var(--color-blue-800)" + }, + "variable": "var(--elements-state-info-borderColor-primary)", + "original": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-blue-200)", + "dark": "var(--color-blue-700)" + }, + "variable": "var(--elements-state-info-borderColor-secondary)", + "original": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + }, + "success": { + "color": { + "primary": { + "value": { + "initial": "var(--color-green-500)", + "dark": "var(--color-green-400)" + }, + "variable": "var(--elements-state-success-color-primary)", + "original": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-green-600)", + "dark": "var(--color-green-200)" + }, + "variable": "var(--elements-state-success-color-secondary)", + "original": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "var(--color-green-50)", + "dark": "var(--color-green-900)" + }, + "variable": "var(--elements-state-success-backgroundColor-primary)", + "original": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-green-100)", + "dark": "var(--color-green-800)" + }, + "variable": "var(--elements-state-success-backgroundColor-secondary)", + "original": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "var(--color-green-100)", + "dark": "var(--color-green-800)" + }, + "variable": "var(--elements-state-success-borderColor-primary)", + "original": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-green-200)", + "dark": "var(--color-green-700)" + }, + "variable": "var(--elements-state-success-borderColor-secondary)", + "original": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + }, + "warning": { + "color": { + "primary": { + "value": { + "initial": "var(--color-yellow-600)", + "dark": "var(--color-yellow-400)" + }, + "variable": "var(--elements-state-warning-color-primary)", + "original": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-yellow-700)", + "dark": "var(--color-yellow-200)" + }, + "variable": "var(--elements-state-warning-color-secondary)", + "original": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "var(--color-yellow-50)", + "dark": "var(--color-yellow-900)" + }, + "variable": "var(--elements-state-warning-backgroundColor-primary)", + "original": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-yellow-100)", + "dark": "var(--color-yellow-800)" + }, + "variable": "var(--elements-state-warning-backgroundColor-secondary)", + "original": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "var(--color-yellow-100)", + "dark": "var(--color-yellow-800)" + }, + "variable": "var(--elements-state-warning-borderColor-primary)", + "original": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-yellow-200)", + "dark": "var(--color-yellow-700)" + }, + "variable": "var(--elements-state-warning-borderColor-secondary)", + "original": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + }, + "danger": { + "color": { + "primary": { + "value": { + "initial": "var(--color-red-500)", + "dark": "var(--color-red-300)" + }, + "variable": "var(--elements-state-danger-color-primary)", + "original": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-red-600)", + "dark": "var(--color-red-200)" + }, + "variable": "var(--elements-state-danger-color-secondary)", + "original": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "var(--color-red-50)", + "dark": "var(--color-red-900)" + }, + "variable": "var(--elements-state-danger-backgroundColor-primary)", + "original": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-red-100)", + "dark": "var(--color-red-800)" + }, + "variable": "var(--elements-state-danger-backgroundColor-secondary)", + "original": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "var(--color-red-100)", + "dark": "var(--color-red-800)" + }, + "variable": "var(--elements-state-danger-borderColor-primary)", + "original": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "var(--color-red-200)", + "dark": "var(--color-red-700)" + }, + "variable": "var(--elements-state-danger-borderColor-secondary)", + "original": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + } + }, + "typography": { + "verticalMargin": { + "sm": { + "value": "16px", + "variable": "var(--typography-verticalMargin-sm)", + "original": "16px" + }, + "base": { + "value": "32px", + "variable": "var(--typography-verticalMargin-base)", + "original": "32px" + } + }, + "letterSpacing": { + "tight": { + "value": "-0.025em", + "variable": "var(--typography-letterSpacing-tight)", + "original": "-0.025em" + }, + "wide": { + "value": "0.025em", + "variable": "var(--typography-letterSpacing-wide)", + "original": "0.025em" + } + }, + "fontSize": { + "xs": { + "value": "12px", + "variable": "var(--typography-fontSize-xs)", + "original": "12px" + }, + "sm": { + "value": "14px", + "variable": "var(--typography-fontSize-sm)", + "original": "14px" + }, + "base": { + "value": "16px", + "variable": "var(--typography-fontSize-base)", + "original": "16px" + }, + "lg": { + "value": "18px", + "variable": "var(--typography-fontSize-lg)", + "original": "18px" + }, + "xl": { + "value": "20px", + "variable": "var(--typography-fontSize-xl)", + "original": "20px" + }, + "2xl": { + "value": "24px", + "variable": "var(--typography-fontSize-2xl)", + "original": "24px" + }, + "3xl": { + "value": "30px", + "variable": "var(--typography-fontSize-3xl)", + "original": "30px" + }, + "4xl": { + "value": "36px", + "variable": "var(--typography-fontSize-4xl)", + "original": "36px" + }, + "5xl": { + "value": "48px", + "variable": "var(--typography-fontSize-5xl)", + "original": "48px" + }, + "6xl": { + "value": "60px", + "variable": "var(--typography-fontSize-6xl)", + "original": "60px" + }, + "7xl": { + "value": "72px", + "variable": "var(--typography-fontSize-7xl)", + "original": "72px" + }, + "8xl": { + "value": "96px", + "variable": "var(--typography-fontSize-8xl)", + "original": "96px" + }, + "9xl": { + "value": "128px", + "variable": "var(--typography-fontSize-9xl)", + "original": "128px" + } + }, + "fontWeight": { + "thin": { + "value": "100", + "variable": "var(--typography-fontWeight-thin)", + "original": "100" + }, + "extralight": { + "value": "200", + "variable": "var(--typography-fontWeight-extralight)", + "original": "200" + }, + "light": { + "value": "300", + "variable": "var(--typography-fontWeight-light)", + "original": "300" + }, + "normal": { + "value": "400", + "variable": "var(--typography-fontWeight-normal)", + "original": "400" + }, + "medium": { + "value": "500", + "variable": "var(--typography-fontWeight-medium)", + "original": "500" + }, + "semibold": { + "value": "600", + "variable": "var(--typography-fontWeight-semibold)", + "original": "600" + }, + "bold": { + "value": "700", + "variable": "var(--typography-fontWeight-bold)", + "original": "700" + }, + "extrabold": { + "value": "800", + "variable": "var(--typography-fontWeight-extrabold)", + "original": "800" + }, + "black": { + "value": "900", + "variable": "var(--typography-fontWeight-black)", + "original": "900" + } + }, + "lead": { + "none": { + "value": "1", + "variable": "var(--typography-lead-none)", + "original": "1" + }, + "tight": { + "value": "1.25", + "variable": "var(--typography-lead-tight)", + "original": "1.25" + }, + "snug": { + "value": "1.375", + "variable": "var(--typography-lead-snug)", + "original": "1.375" + }, + "normal": { + "value": "1.5", + "variable": "var(--typography-lead-normal)", + "original": "1.5" + }, + "relaxed": { + "value": "1.625", + "variable": "var(--typography-lead-relaxed)", + "original": "1.625" + }, + "loose": { + "value": "2", + "variable": "var(--typography-lead-loose)", + "original": "2" + } + }, + "font": { + "display": { + "value": "var(--font-sans)", + "variable": "var(--typography-font-display)", + "original": "{font.sans}" + }, + "body": { + "value": "var(--font-sans)", + "variable": "var(--typography-font-body)", + "original": "{font.sans}" + }, + "code": { + "value": "var(--font-mono)", + "variable": "var(--typography-font-code)", + "original": "{font.mono}" + } + }, + "color": { + "primary": { + "50": { + "value": "var(--color-primary-50)", + "variable": "var(--typography-color-primary-50)", + "original": "{color.primary.50}" + }, + "100": { + "value": "var(--color-primary-100)", + "variable": "var(--typography-color-primary-100)", + "original": "{color.primary.100}" + }, + "200": { + "value": "var(--color-primary-200)", + "variable": "var(--typography-color-primary-200)", + "original": "{color.primary.200}" + }, + "300": { + "value": "var(--color-primary-300)", + "variable": "var(--typography-color-primary-300)", + "original": "{color.primary.300}" + }, + "400": { + "value": "var(--color-primary-400)", + "variable": "var(--typography-color-primary-400)", + "original": "{color.primary.400}" + }, + "500": { + "value": "var(--color-primary-500)", + "variable": "var(--typography-color-primary-500)", + "original": "{color.primary.500}" + }, + "600": { + "value": "var(--color-primary-600)", + "variable": "var(--typography-color-primary-600)", + "original": "{color.primary.600}" + }, + "700": { + "value": "var(--color-primary-700)", + "variable": "var(--typography-color-primary-700)", + "original": "{color.primary.700}" + }, + "800": { + "value": "var(--color-primary-800)", + "variable": "var(--typography-color-primary-800)", + "original": "{color.primary.800}" + }, + "900": { + "value": "var(--color-primary-900)", + "variable": "var(--typography-color-primary-900)", + "original": "{color.primary.900}" + } + }, + "secondary": { + "50": { + "value": "var(--color-gray-50)", + "variable": "var(--typography-color-secondary-50)", + "original": "{color.gray.50}" + }, + "100": { + "value": "var(--color-gray-100)", + "variable": "var(--typography-color-secondary-100)", + "original": "{color.gray.100}" + }, + "200": { + "value": "var(--color-gray-200)", + "variable": "var(--typography-color-secondary-200)", + "original": "{color.gray.200}" + }, + "300": { + "value": "var(--color-gray-300)", + "variable": "var(--typography-color-secondary-300)", + "original": "{color.gray.300}" + }, + "400": { + "value": "var(--color-gray-400)", + "variable": "var(--typography-color-secondary-400)", + "original": "{color.gray.400}" + }, + "500": { + "value": "var(--color-gray-500)", + "variable": "var(--typography-color-secondary-500)", + "original": "{color.gray.500}" + }, + "600": { + "value": "var(--color-gray-600)", + "variable": "var(--typography-color-secondary-600)", + "original": "{color.gray.600}" + }, + "700": { + "value": "var(--color-gray-700)", + "variable": "var(--typography-color-secondary-700)", + "original": "{color.gray.700}" + }, + "800": { + "value": "var(--color-gray-800)", + "variable": "var(--typography-color-secondary-800)", + "original": "{color.gray.800}" + }, + "900": { + "value": "var(--color-gray-900)", + "variable": "var(--typography-color-secondary-900)", + "original": "{color.gray.900}" + } + } + } + }, + "prose": { + "p": { + "fontSize": { + "value": "var(--typography-fontSize-base)", + "variable": "var(--prose-p-fontSize)", + "original": "{typography.fontSize.base}" + }, + "lineHeight": { + "value": "var(--typography-lead-normal)", + "variable": "var(--prose-p-lineHeight)", + "original": "{typography.lead.normal}" + }, + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-p-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "br": { + "margin": { + "value": "var(--typography-verticalMargin-base) 0 0 0", + "variable": "var(--prose-p-br-margin)", + "original": "{typography.verticalMargin.base} 0 0 0" + } + } + }, + "h1": { + "margin": { + "value": "0 0 2rem", + "variable": "var(--prose-h1-margin)", + "original": "0 0 2rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-5xl)", + "variable": "var(--prose-h1-fontSize)", + "original": "{typography.fontSize.5xl}" + }, + "lineHeight": { + "value": "var(--typography-lead-tight)", + "variable": "var(--prose-h1-lineHeight)", + "original": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-bold)", + "variable": "var(--prose-h1-fontWeight)", + "original": "{typography.fontWeight.bold}" + }, + "letterSpacing": { + "value": "var(--typography-letterSpacing-tight)", + "variable": "var(--prose-h1-letterSpacing)", + "original": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "var(--typography-fontSize-3xl)", + "variable": "var(--prose-h1-iconSize)", + "original": "{typography.fontSize.3xl}" + } + }, + "h2": { + "margin": { + "value": "3rem 0 2rem", + "variable": "var(--prose-h2-margin)", + "original": "3rem 0 2rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-4xl)", + "variable": "var(--prose-h2-fontSize)", + "original": "{typography.fontSize.4xl}" + }, + "lineHeight": { + "value": "var(--typography-lead-tight)", + "variable": "var(--prose-h2-lineHeight)", + "original": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-h2-fontWeight)", + "original": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "var(--typography-letterSpacing-tight)", + "variable": "var(--prose-h2-letterSpacing)", + "original": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "var(--typography-fontSize-2xl)", + "variable": "var(--prose-h2-iconSize)", + "original": "{typography.fontSize.2xl}" + } + }, + "h3": { + "margin": { + "value": "3rem 0 2rem", + "variable": "var(--prose-h3-margin)", + "original": "3rem 0 2rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-3xl)", + "variable": "var(--prose-h3-fontSize)", + "original": "{typography.fontSize.3xl}" + }, + "lineHeight": { + "value": "var(--typography-lead-snug)", + "variable": "var(--prose-h3-lineHeight)", + "original": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-h3-fontWeight)", + "original": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "var(--typography-letterSpacing-tight)", + "variable": "var(--prose-h3-letterSpacing)", + "original": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "var(--typography-fontSize-xl)", + "variable": "var(--prose-h3-iconSize)", + "original": "{typography.fontSize.xl}" + } + }, + "h4": { + "margin": { + "value": "3rem 0 2rem", + "variable": "var(--prose-h4-margin)", + "original": "3rem 0 2rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-2xl)", + "variable": "var(--prose-h4-fontSize)", + "original": "{typography.fontSize.2xl}" + }, + "lineHeight": { + "value": "var(--typography-lead-snug)", + "variable": "var(--prose-h4-lineHeight)", + "original": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-h4-fontWeight)", + "original": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "var(--typography-letterSpacing-tight)", + "variable": "var(--prose-h4-letterSpacing)", + "original": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "var(--typography-fontSize-lg)", + "variable": "var(--prose-h4-iconSize)", + "original": "{typography.fontSize.lg}" + } + }, + "h5": { + "margin": { + "value": "3rem 0 2rem", + "variable": "var(--prose-h5-margin)", + "original": "3rem 0 2rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-xl)", + "variable": "var(--prose-h5-fontSize)", + "original": "{typography.fontSize.xl}" + }, + "lineHeight": { + "value": "var(--typography-lead-snug)", + "variable": "var(--prose-h5-lineHeight)", + "original": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-h5-fontWeight)", + "original": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "var(--typography-fontSize-lg)", + "variable": "var(--prose-h5-iconSize)", + "original": "{typography.fontSize.lg}" + } + }, + "h6": { + "margin": { + "value": "3rem 0 2rem", + "variable": "var(--prose-h6-margin)", + "original": "3rem 0 2rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-lg)", + "variable": "var(--prose-h6-fontSize)", + "original": "{typography.fontSize.lg}" + }, + "lineHeight": { + "value": "var(--typography-lead-normal)", + "variable": "var(--prose-h6-lineHeight)", + "original": "{typography.lead.normal}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-h6-fontWeight)", + "original": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "var(--typography-fontSize-base)", + "variable": "var(--prose-h6-iconSize)", + "original": "{typography.fontSize.base}" + } + }, + "strong": { + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-strong-fontWeight)", + "original": "{typography.fontWeight.semibold}" + } + }, + "img": { + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-img-margin)", + "original": "{typography.verticalMargin.base} 0" + } + }, + "a": { + "textDecoration": { + "value": "none", + "variable": "var(--prose-a-textDecoration)", + "original": "none" + }, + "color": { + "static": { + "value": { + "initial": "inherit", + "dark": "inherit" + }, + "variable": "var(--prose-a-color-static)", + "original": { + "initial": "inherit", + "dark": "inherit" + } + }, + "hover": { + "value": { + "initial": "var(--typography-color-primary-500)", + "dark": "var(--typography-color-primary-400)" + }, + "variable": "var(--prose-a-color-hover)", + "original": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + }, + "border": { + "width": { + "value": "1px", + "variable": "var(--prose-a-border-width)", + "original": "1px" + }, + "style": { + "static": { + "value": "dashed", + "variable": "var(--prose-a-border-style-static)", + "original": "dashed" + }, + "hover": { + "value": "solid", + "variable": "var(--prose-a-border-style-hover)", + "original": "solid" + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + }, + "variable": "var(--prose-a-border-color-static)", + "original": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + }, + "variable": "var(--prose-a-border-color-hover)", + "original": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "distance": { + "value": "2px", + "variable": "var(--prose-a-border-distance)", + "original": "2px" + } + }, + "fontWeight": { + "value": "var(--typography-fontWeight-medium)", + "variable": "var(--prose-a-fontWeight)", + "original": "{typography.fontWeight.medium}" + }, + "hasCode": { + "borderBottom": { + "value": "none", + "variable": "var(--prose-a-hasCode-borderBottom)", + "original": "none" + } + }, + "code": { + "border": { + "width": { + "value": "var(--prose-a-border-width)", + "variable": "var(--prose-a-code-border-width)", + "original": "{prose.a.border.width}" + }, + "style": { + "value": "var(--prose-a-border-style-static)", + "variable": "var(--prose-a-code-border-style)", + "original": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "var(--typography-color-secondary-400)", + "dark": "var(--typography-color-secondary-600)" + }, + "variable": "var(--prose-a-code-border-color-static)", + "original": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "var(--typography-color-primary-500)", + "dark": "var(--typography-color-primary-600)" + }, + "variable": "var(--prose-a-code-border-color-hover)", + "original": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + }, + "variable": "var(--prose-a-code-color-static)", + "original": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + }, + "variable": "var(--prose-a-code-color-hover)", + "original": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "background": { + "static": {}, + "hover": { + "value": { + "initial": "var(--typography-color-primary-50)", + "dark": "var(--typography-color-primary-900)" + }, + "variable": "var(--prose-a-code-background-hover)", + "original": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + }, + "blockquote": { + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-blockquote-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 24px", + "variable": "var(--prose-blockquote-padding)", + "original": "0 0 0 24px" + }, + "quotes": { + "value": "'201C' '201D' '2018' '2019'", + "variable": "var(--prose-blockquote-quotes)", + "original": "'201C' '201D' '2018' '2019'" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-500)", + "dark": "var(--typography-color-secondary-400)" + }, + "variable": "var(--prose-blockquote-color)", + "original": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + }, + "border": { + "width": { + "value": "4px", + "variable": "var(--prose-blockquote-border-width)", + "original": "4px" + }, + "style": { + "value": "solid", + "variable": "var(--prose-blockquote-border-style)", + "original": "solid" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-200)", + "dark": "var(--typography-color-secondary-700)" + }, + "variable": "var(--prose-blockquote-border-color)", + "original": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "ul": { + "listStyleType": { + "value": "disc", + "variable": "var(--prose-ul-listStyleType)", + "original": "disc" + }, + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-ul-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px", + "variable": "var(--prose-ul-padding)", + "original": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "var(--typography-color-secondary-400)", + "dark": "var(--typography-color-secondary-500)" + }, + "variable": "var(--prose-ul-li-markerColor)", + "original": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "ol": { + "listStyleType": { + "value": "decimal", + "variable": "var(--prose-ol-listStyleType)", + "original": "decimal" + }, + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-ol-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px", + "variable": "var(--prose-ol-padding)", + "original": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "var(--typography-color-secondary-500)", + "dark": "var(--typography-color-secondary-500)" + }, + "variable": "var(--prose-ol-li-markerColor)", + "original": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "li": { + "margin": { + "value": "var(--typography-verticalMargin-sm) 0", + "variable": "var(--prose-li-margin)", + "original": "{typography.verticalMargin.sm} 0" + }, + "listStylePosition": { + "value": "outside", + "variable": "var(--prose-li-listStylePosition)", + "original": "outside" + } + }, + "hr": { + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-hr-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "style": { + "value": "solid", + "variable": "var(--prose-hr-style)", + "original": "solid" + }, + "width": { + "value": "1px", + "variable": "var(--prose-hr-width)", + "original": "1px" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-200)", + "dark": "var(--typography-color-secondary-800)" + }, + "variable": "var(--prose-hr-color)", + "original": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "table": { + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-table-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "textAlign": { + "value": "left", + "variable": "var(--prose-table-textAlign)", + "original": "left" + }, + "fontSize": { + "value": "var(--typography-fontSize-sm)", + "variable": "var(--prose-table-fontSize)", + "original": "{typography.fontSize.sm}" + }, + "lineHeight": { + "value": "inherit", + "variable": "var(--prose-table-lineHeight)", + "original": "inherit" + } + }, + "thead": { + "border": { + "width": { + "value": "0px", + "variable": "var(--prose-thead-border-width)", + "original": "0px" + }, + "style": { + "value": "solid", + "variable": "var(--prose-thead-border-style)", + "original": "solid" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-300)", + "dark": "var(--typography-color-secondary-600)" + }, + "variable": "var(--prose-thead-border-color)", + "original": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "borderBottom": { + "width": { + "value": "1px", + "variable": "var(--prose-thead-borderBottom-width)", + "original": "1px" + }, + "style": { + "value": "solid", + "variable": "var(--prose-thead-borderBottom-style)", + "original": "solid" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-300)", + "dark": "var(--typography-color-secondary-600)" + }, + "variable": "var(--prose-thead-borderBottom-color)", + "original": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "th": { + "color": { + "value": { + "initial": "var(--typography-color-secondary-600)", + "dark": "var(--typography-color-secondary-400)" + }, + "variable": "var(--prose-th-color)", + "original": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + }, + "padding": { + "value": "0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)", + "variable": "var(--prose-th-padding)", + "original": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-semibold)", + "variable": "var(--prose-th-fontWeight)", + "original": "{typography.fontWeight.semibold}" + } + }, + "tbody": { + "tr": { + "borderBottom": { + "width": { + "value": "1px", + "variable": "var(--prose-tbody-tr-borderBottom-width)", + "original": "1px" + }, + "style": { + "value": "dashed", + "variable": "var(--prose-tbody-tr-borderBottom-style)", + "original": "dashed" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-300)", + "dark": "var(--typography-color-secondary-700)" + }, + "variable": "var(--prose-tbody-tr-borderBottom-color)", + "original": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "td": { + "padding": { + "value": "var(--typography-verticalMargin-sm)", + "variable": "var(--prose-tbody-td-padding)", + "original": "{typography.verticalMargin.sm}" + } + }, + "code": { + "inline": { + "fontSize": { + "value": "var(--typography-fontSize-sm)", + "variable": "var(--prose-tbody-code-inline-fontSize)", + "original": "{typography.fontSize.sm}" + } + } + } + }, + "code": { + "block": { + "fontSize": { + "value": "var(--typography-fontSize-sm)", + "variable": "var(--prose-code-block-fontSize)", + "original": "{typography.fontSize.sm}" + }, + "margin": { + "value": "var(--typography-verticalMargin-base) 0", + "variable": "var(--prose-code-block-margin)", + "original": "{typography.verticalMargin.base} 0" + }, + "border": { + "width": { + "value": "1px", + "variable": "var(--prose-code-block-border-width)", + "original": "1px" + }, + "style": { + "value": "solid", + "variable": "var(--prose-code-block-border-style)", + "original": "solid" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-200)", + "dark": "var(--typography-color-secondary-800)" + }, + "variable": "var(--prose-code-block-border-color)", + "original": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-700)", + "dark": "var(--typography-color-secondary-200)" + }, + "variable": "var(--prose-code-block-color)", + "original": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "var(--typography-color-secondary-100)", + "dark": "var(--typography-color-secondary-900)" + }, + "variable": "var(--prose-code-block-backgroundColor)", + "original": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + }, + "pre": { + "padding": { + "value": "var(--typography-verticalMargin-sm)", + "variable": "var(--prose-code-block-pre-padding)", + "original": "{typography.verticalMargin.sm}" + } + } + }, + "inline": { + "borderRadius": { + "value": "0.375rem", + "variable": "var(--prose-code-inline-borderRadius)", + "original": "0.375rem" + }, + "padding": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem", + "variable": "var(--prose-code-inline-padding)", + "original": "0.25rem 0.375rem 0.25rem 0.375rem" + }, + "fontSize": { + "value": "var(--typography-fontSize-sm)", + "variable": "var(--prose-code-inline-fontSize)", + "original": "{typography.fontSize.sm}" + }, + "fontWeight": { + "value": "var(--typography-fontWeight-normal)", + "variable": "var(--prose-code-inline-fontWeight)", + "original": "{typography.fontWeight.normal}" + }, + "color": { + "value": { + "initial": "var(--typography-color-secondary-700)", + "dark": "var(--typography-color-secondary-200)" + }, + "variable": "var(--prose-code-inline-color)", + "original": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "var(--typography-color-secondary-100)", + "dark": "var(--typography-color-secondary-900)" + }, + "variable": "var(--prose-code-inline-backgroundColor)", + "original": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + } + }, + "radii": { + "sm": { + "value": "0.375rem", + "variable": "var(--radii-sm)", + "original": "0.375rem" + }, + "md": { + "value": "0.5rem", + "variable": "var(--radii-md)", + "original": "0.5rem" + }, + "lg": { + "value": "0.75rem", + "variable": "var(--radii-lg)", + "original": "0.75rem" + }, + "none": { + "value": "0px", + "variable": "var(--radii-none)", + "original": "0px" + }, + "2xs": { + "value": "0.125rem", + "variable": "var(--radii-2xs)", + "original": "0.125rem" + }, + "xs": { + "value": "0.25rem", + "variable": "var(--radii-xs)", + "original": "0.25rem" + }, + "xl": { + "value": "1rem", + "variable": "var(--radii-xl)", + "original": "1rem" + }, + "2xl": { + "value": "1.5rem", + "variable": "var(--radii-2xl)", + "original": "1.5rem" + }, + "3xl": { + "value": "1.75rem", + "variable": "var(--radii-3xl)", + "original": "1.75rem" + }, + "full": { + "value": "9999px", + "variable": "var(--radii-full)", + "original": "9999px" + } + }, + "fontSize": { + "xs": { + "value": "0.75rem", + "variable": "var(--fontSize-xs)", + "original": "0.75rem" + }, + "sm": { + "value": "0.875rem", + "variable": "var(--fontSize-sm)", + "original": "0.875rem" + }, + "base": { + "value": "1rem", + "variable": "var(--fontSize-base)", + "original": "1rem" + }, + "lg": { + "value": "1.125rem", + "variable": "var(--fontSize-lg)", + "original": "1.125rem" + }, + "xl": { + "value": "1.25rem", + "variable": "var(--fontSize-xl)", + "original": "1.25rem" + }, + "2xl": { + "value": "1.5rem", + "variable": "var(--fontSize-2xl)", + "original": "1.5rem" + }, + "3xl": { + "value": "1.875rem", + "variable": "var(--fontSize-3xl)", + "original": "1.875rem" + }, + "4xl": { + "value": "2.25rem", + "variable": "var(--fontSize-4xl)", + "original": "2.25rem" + }, + "5xl": { + "value": "3rem", + "variable": "var(--fontSize-5xl)", + "original": "3rem" + }, + "6xl": { + "value": "3.75rem", + "variable": "var(--fontSize-6xl)", + "original": "3.75rem" + }, + "7xl": { + "value": "4.5rem", + "variable": "var(--fontSize-7xl)", + "original": "4.5rem" + }, + "8xl": { + "value": "6rem", + "variable": "var(--fontSize-8xl)", + "original": "6rem" + }, + "9xl": { + "value": "8rem", + "variable": "var(--fontSize-9xl)", + "original": "8rem" + } + }, + "lead": { + "1": { + "value": ".025rem", + "variable": "var(--lead-1)", + "original": ".025rem" + }, + "2": { + "value": ".5rem", + "variable": "var(--lead-2)", + "original": ".5rem" + }, + "3": { + "value": ".75rem", + "variable": "var(--lead-3)", + "original": ".75rem" + }, + "4": { + "value": "1rem", + "variable": "var(--lead-4)", + "original": "1rem" + }, + "5": { + "value": "1.25rem", + "variable": "var(--lead-5)", + "original": "1.25rem" + }, + "6": { + "value": "1.5rem", + "variable": "var(--lead-6)", + "original": "1.5rem" + }, + "7": { + "value": "1.75rem", + "variable": "var(--lead-7)", + "original": "1.75rem" + }, + "8": { + "value": "2rem", + "variable": "var(--lead-8)", + "original": "2rem" + }, + "9": { + "value": "2.25rem", + "variable": "var(--lead-9)", + "original": "2.25rem" + }, + "10": { + "value": "2.5rem", + "variable": "var(--lead-10)", + "original": "2.5rem" + }, + "none": { + "value": "1", + "variable": "var(--lead-none)", + "original": "1" + }, + "tight": { + "value": "1.25", + "variable": "var(--lead-tight)", + "original": "1.25" + }, + "snug": { + "value": "1.375", + "variable": "var(--lead-snug)", + "original": "1.375" + }, + "normal": { + "value": "1.5", + "variable": "var(--lead-normal)", + "original": "1.5" + }, + "relaxed": { + "value": "1.625", + "variable": "var(--lead-relaxed)", + "original": "1.625" + }, + "loose": { + "value": "2", + "variable": "var(--lead-loose)", + "original": "2" + } + }, + "font": { + "sans": { + "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji", + "variable": "var(--font-sans)", + "original": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" + }, + "serif": { + "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif", + "variable": "var(--font-serif)", + "original": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" + }, + "mono": { + "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace", + "variable": "var(--font-mono)", + "original": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" + } + }, + "docus": { + "header": { + "height": { + "value": "64px", + "variable": "var(--docus-header-height)", + "original": "64px" + } + }, + "footer": { + "padding": { + "value": "var(--space-4) 0", + "variable": "var(--docus-footer-padding)", + "original": "{space.4} 0" + } + }, + "readableLine": { + "value": "78ch", + "variable": "var(--docus-readableLine)", + "original": "78ch" + }, + "loadingBar": { + "height": { + "value": "3px", + "variable": "var(--docus-loadingBar-height)", + "original": "3px" + }, + "gradientColorStop1": { + "value": "#00dc82", + "variable": "var(--docus-loadingBar-gradientColorStop1)", + "original": "#00dc82" + }, + "gradientColorStop2": { + "value": "#34cdfe", + "variable": "var(--docus-loadingBar-gradientColorStop2)", + "original": "#34cdfe" + }, + "gradientColorStop3": { + "value": "#0047e1", + "variable": "var(--docus-loadingBar-gradientColorStop3)", + "original": "#0047e1" + } + } + }, + "media": { + "xs": { + "value": "(min-width: 475px)", + "variable": "var(--media-xs)", + "original": "(min-width: 475px)" + }, + "sm": { + "value": "(min-width: 640px)", + "variable": "var(--media-sm)", + "original": "(min-width: 640px)" + }, + "md": { + "value": "(min-width: 768px)", + "variable": "var(--media-md)", + "original": "(min-width: 768px)" + }, + "lg": { + "value": "(min-width: 1024px)", + "variable": "var(--media-lg)", + "original": "(min-width: 1024px)" + }, + "xl": { + "value": "(min-width: 1280px)", + "variable": "var(--media-xl)", + "original": "(min-width: 1280px)" + }, + "2xl": { + "value": "(min-width: 1536px)", + "variable": "var(--media-2xl)", + "original": "(min-width: 1536px)" + }, + "rm": { + "value": "(prefers-reduced-motion: reduce)", + "variable": "var(--media-rm)", + "original": "(prefers-reduced-motion: reduce)" + }, + "landscape": { + "value": "only screen and (orientation: landscape)", + "variable": "var(--media-landscape)", + "original": "only screen and (orientation: landscape)" + }, + "portrait": { + "value": "only screen and (orientation: portrait)", + "variable": "var(--media-portrait)", + "original": "only screen and (orientation: portrait)" + } + }, + "width": { + "screen": { + "value": "100vw", + "variable": "var(--width-screen)", + "original": "100vw" + } + }, + "height": { + "screen": { + "value": "100vh", + "variable": "var(--height-screen)", + "original": "100vh" + } + }, + "shadow": { + "xs": { + "value": "0px 1px 2px 0px #000000", + "variable": "var(--shadow-xs)", + "original": "0px 1px 2px 0px #000000" + }, + "sm": { + "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000", + "variable": "var(--shadow-sm)", + "original": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" + }, + "md": { + "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000", + "variable": "var(--shadow-md)", + "original": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" + }, + "lg": { + "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000", + "variable": "var(--shadow-lg)", + "original": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" + }, + "xl": { + "value": "0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000", + "variable": "var(--shadow-xl)", + "original": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" + }, + "2xl": { + "value": "0px 25px 50px -12px var(--color-gray-900)", + "variable": "var(--shadow-2xl)", + "original": "0px 25px 50px -12px {color.gray.900}" + }, + "none": { + "value": "0px 0px 0px 0px transparent", + "variable": "var(--shadow-none)", + "original": "0px 0px 0px 0px transparent" + } + }, + "size": { + "0": { + "value": "0px", + "variable": "var(--size-0)", + "original": "0px" + }, + "2": { + "value": "2px", + "variable": "var(--size-2)", + "original": "2px" + }, + "4": { + "value": "4px", + "variable": "var(--size-4)", + "original": "4px" + }, + "6": { + "value": "6px", + "variable": "var(--size-6)", + "original": "6px" + }, + "8": { + "value": "8px", + "variable": "var(--size-8)", + "original": "8px" + }, + "12": { + "value": "12px", + "variable": "var(--size-12)", + "original": "12px" + }, + "16": { + "value": "16px", + "variable": "var(--size-16)", + "original": "16px" + }, + "20": { + "value": "20px", + "variable": "var(--size-20)", + "original": "20px" + }, + "24": { + "value": "24px", + "variable": "var(--size-24)", + "original": "24px" + }, + "32": { + "value": "32px", + "variable": "var(--size-32)", + "original": "32px" + }, + "40": { + "value": "40px", + "variable": "var(--size-40)", + "original": "40px" + }, + "48": { + "value": "48px", + "variable": "var(--size-48)", + "original": "48px" + }, + "56": { + "value": "56px", + "variable": "var(--size-56)", + "original": "56px" + }, + "64": { + "value": "64px", + "variable": "var(--size-64)", + "original": "64px" + }, + "80": { + "value": "80px", + "variable": "var(--size-80)", + "original": "80px" + }, + "104": { + "value": "104px", + "variable": "var(--size-104)", + "original": "104px" + }, + "200": { + "value": "200px", + "variable": "var(--size-200)", + "original": "200px" + }, + "xs": { + "value": "20rem", + "variable": "var(--size-xs)", + "original": "20rem" + }, + "sm": { + "value": "24rem", + "variable": "var(--size-sm)", + "original": "24rem" + }, + "md": { + "value": "28rem", + "variable": "var(--size-md)", + "original": "28rem" + }, + "lg": { + "value": "32rem", + "variable": "var(--size-lg)", + "original": "32rem" + }, + "xl": { + "value": "36rem", + "variable": "var(--size-xl)", + "original": "36rem" + }, + "2xl": { + "value": "42rem", + "variable": "var(--size-2xl)", + "original": "42rem" + }, + "3xl": { + "value": "48rem", + "variable": "var(--size-3xl)", + "original": "48rem" + }, + "4xl": { + "value": "56rem", + "variable": "var(--size-4xl)", + "original": "56rem" + }, + "5xl": { + "value": "64rem", + "variable": "var(--size-5xl)", + "original": "64rem" + }, + "6xl": { + "value": "72rem", + "variable": "var(--size-6xl)", + "original": "72rem" + }, + "7xl": { + "value": "80rem", + "variable": "var(--size-7xl)", + "original": "80rem" + }, + "full": { + "value": "100%", + "variable": "var(--size-full)", + "original": "100%" + } + }, + "space": { + "0": { + "value": "0px", + "variable": "var(--space-0)", + "original": "0px" + }, + "1": { + "value": "0.25rem", + "variable": "var(--space-1)", + "original": "0.25rem" + }, + "2": { + "value": "0.5rem", + "variable": "var(--space-2)", + "original": "0.5rem" + }, + "3": { + "value": "0.75rem", + "variable": "var(--space-3)", + "original": "0.75rem" + }, + "4": { + "value": "1rem", + "variable": "var(--space-4)", + "original": "1rem" + }, + "5": { + "value": "1.25rem", + "variable": "var(--space-5)", + "original": "1.25rem" + }, + "6": { + "value": "1.5rem", + "variable": "var(--space-6)", + "original": "1.5rem" + }, + "7": { + "value": "1.75rem", + "variable": "var(--space-7)", + "original": "1.75rem" + }, + "8": { + "value": "2rem", + "variable": "var(--space-8)", + "original": "2rem" + }, + "9": { + "value": "2.25rem", + "variable": "var(--space-9)", + "original": "2.25rem" + }, + "10": { + "value": "2.5rem", + "variable": "var(--space-10)", + "original": "2.5rem" + }, + "11": { + "value": "2.75rem", + "variable": "var(--space-11)", + "original": "2.75rem" + }, + "12": { + "value": "3rem", + "variable": "var(--space-12)", + "original": "3rem" + }, + "14": { + "value": "3.5rem", + "variable": "var(--space-14)", + "original": "3.5rem" + }, + "16": { + "value": "4rem", + "variable": "var(--space-16)", + "original": "4rem" + }, + "20": { + "value": "5rem", + "variable": "var(--space-20)", + "original": "5rem" + }, + "24": { + "value": "6rem", + "variable": "var(--space-24)", + "original": "6rem" + }, + "28": { + "value": "7rem", + "variable": "var(--space-28)", + "original": "7rem" + }, + "32": { + "value": "8rem", + "variable": "var(--space-32)", + "original": "8rem" + }, + "36": { + "value": "9rem", + "variable": "var(--space-36)", + "original": "9rem" + }, + "40": { + "value": "10rem", + "variable": "var(--space-40)", + "original": "10rem" + }, + "44": { + "value": "11rem", + "variable": "var(--space-44)", + "original": "11rem" + }, + "48": { + "value": "12rem", + "variable": "var(--space-48)", + "original": "12rem" + }, + "52": { + "value": "13rem", + "variable": "var(--space-52)", + "original": "13rem" + }, + "56": { + "value": "14rem", + "variable": "var(--space-56)", + "original": "14rem" + }, + "60": { + "value": "15rem", + "variable": "var(--space-60)", + "original": "15rem" + }, + "64": { + "value": "16rem", + "variable": "var(--space-64)", + "original": "16rem" + }, + "72": { + "value": "18rem", + "variable": "var(--space-72)", + "original": "18rem" + }, + "80": { + "value": "20rem", + "variable": "var(--space-80)", + "original": "20rem" + }, + "96": { + "value": "24rem", + "variable": "var(--space-96)", + "original": "24rem" + }, + "px": { + "value": "1px", + "variable": "var(--space-px)", + "original": "1px" + }, + "rem": { + "125": { + "value": "0.125rem", + "variable": "var(--space-rem-125)", + "original": "0.125rem" + }, + "375": { + "value": "0.375rem", + "variable": "var(--space-rem-375)", + "original": "0.375rem" + }, + "625": { + "value": "0.625rem", + "variable": "var(--space-rem-625)", + "original": "0.625rem" + }, + "875": { + "value": "0.875rem", + "variable": "var(--space-rem-875)", + "original": "0.875rem" + } + } + }, + "borderWidth": { + "noBorder": { + "value": "0", + "variable": "var(--borderWidth-noBorder)", + "original": "0" + }, + "sm": { + "value": "1px", + "variable": "var(--borderWidth-sm)", + "original": "1px" + }, + "md": { + "value": "2px", + "variable": "var(--borderWidth-md)", + "original": "2px" + }, + "lg": { + "value": "3px", + "variable": "var(--borderWidth-lg)", + "original": "3px" + } + }, + "opacity": { + "noOpacity": { + "value": "0", + "variable": "var(--opacity-noOpacity)", + "original": "0" + }, + "bright": { + "value": "0.1", + "variable": "var(--opacity-bright)", + "original": "0.1" + }, + "light": { + "value": "0.15", + "variable": "var(--opacity-light)", + "original": "0.15" + }, + "soft": { + "value": "0.3", + "variable": "var(--opacity-soft)", + "original": "0.3" + }, + "medium": { + "value": "0.5", + "variable": "var(--opacity-medium)", + "original": "0.5" + }, + "high": { + "value": "0.8", + "variable": "var(--opacity-high)", + "original": "0.8" + }, + "total": { + "value": "1", + "variable": "var(--opacity-total)", + "original": "1" + } + }, + "fontWeight": { + "thin": { + "value": "100", + "variable": "var(--fontWeight-thin)", + "original": "100" + }, + "extralight": { + "value": "200", + "variable": "var(--fontWeight-extralight)", + "original": "200" + }, + "light": { + "value": "300", + "variable": "var(--fontWeight-light)", + "original": "300" + }, + "normal": { + "value": "400", + "variable": "var(--fontWeight-normal)", + "original": "400" + }, + "medium": { + "value": "500", + "variable": "var(--fontWeight-medium)", + "original": "500" + }, + "semibold": { + "value": "600", + "variable": "var(--fontWeight-semibold)", + "original": "600" + }, + "bold": { + "value": "700", + "variable": "var(--fontWeight-bold)", + "original": "700" + }, + "extrabold": { + "value": "800", + "variable": "var(--fontWeight-extrabold)", + "original": "800" + }, + "black": { + "value": "900", + "variable": "var(--fontWeight-black)", + "original": "900" + } + }, + "letterSpacing": { + "tighter": { + "value": "-0.05em", + "variable": "var(--letterSpacing-tighter)", + "original": "-0.05em" + }, + "tight": { + "value": "-0.025em", + "variable": "var(--letterSpacing-tight)", + "original": "-0.025em" + }, + "normal": { + "value": "0em", + "variable": "var(--letterSpacing-normal)", + "original": "0em" + }, + "wide": { + "value": "0.025em", + "variable": "var(--letterSpacing-wide)", + "original": "0.025em" + }, + "wider": { + "value": "0.05em", + "variable": "var(--letterSpacing-wider)", + "original": "0.05em" + }, + "widest": { + "value": "0.1em", + "variable": "var(--letterSpacing-widest)", + "original": "0.1em" + } + }, + "text": { + "xs": { + "fontSize": { + "value": "var(--fontSize-xs)", + "variable": "var(--text-xs-fontSize)", + "original": "{fontSize.xs}" + }, + "lineHeight": { + "value": "var(--lead-4)", + "variable": "var(--text-xs-lineHeight)", + "original": "{lead.4}" + } + }, + "sm": { + "fontSize": { + "value": "var(--fontSize-sm)", + "variable": "var(--text-sm-fontSize)", + "original": "{fontSize.sm}" + }, + "lineHeight": { + "value": "var(--lead-5)", + "variable": "var(--text-sm-lineHeight)", + "original": "{lead.5}" + } + }, + "base": { + "fontSize": { + "value": "var(--fontSize-base)", + "variable": "var(--text-base-fontSize)", + "original": "{fontSize.base}" + }, + "lineHeight": { + "value": "var(--lead-6)", + "variable": "var(--text-base-lineHeight)", + "original": "{lead.6}" + } + }, + "lg": { + "fontSize": { + "value": "var(--fontSize-lg)", + "variable": "var(--text-lg-fontSize)", + "original": "{fontSize.lg}" + }, + "lineHeight": { + "value": "var(--lead-7)", + "variable": "var(--text-lg-lineHeight)", + "original": "{lead.7}" + } + }, + "xl": { + "fontSize": { + "value": "var(--fontSize-xl)", + "variable": "var(--text-xl-fontSize)", + "original": "{fontSize.xl}" + }, + "lineHeight": { + "value": "var(--lead-7)", + "variable": "var(--text-xl-lineHeight)", + "original": "{lead.7}" + } + }, + "2xl": { + "fontSize": { + "value": "var(--fontSize-2xl)", + "variable": "var(--text-2xl-fontSize)", + "original": "{fontSize.2xl}" + }, + "lineHeight": { + "value": "var(--lead-8)", + "variable": "var(--text-2xl-lineHeight)", + "original": "{lead.8}" + } + }, + "3xl": { + "fontSize": { + "value": "var(--fontSize-3xl)", + "variable": "var(--text-3xl-fontSize)", + "original": "{fontSize.3xl}" + }, + "lineHeight": { + "value": "var(--lead-9)", + "variable": "var(--text-3xl-lineHeight)", + "original": "{lead.9}" + } + }, + "4xl": { + "fontSize": { + "value": "var(--fontSize-4xl)", + "variable": "var(--text-4xl-fontSize)", + "original": "{fontSize.4xl}" + }, + "lineHeight": { + "value": "var(--lead-10)", + "variable": "var(--text-4xl-lineHeight)", + "original": "{lead.10}" + } + }, + "5xl": { + "fontSize": { + "value": "var(--fontSize-5xl)", + "variable": "var(--text-5xl-fontSize)", + "original": "{fontSize.5xl}" + }, + "lineHeight": { + "value": "var(--lead-none)", + "variable": "var(--text-5xl-lineHeight)", + "original": "{lead.none}" + } + }, + "6xl": { + "fontSize": { + "value": "var(--fontSize-6xl)", + "variable": "var(--text-6xl-fontSize)", + "original": "{fontSize.6xl}" + }, + "lineHeight": { + "value": "var(--lead-none)", + "variable": "var(--text-6xl-lineHeight)", + "original": "{lead.none}" + } + } + } +}; +const pinceau_nuxt_plugin_server_KEuz79zT4K = defineNuxtPlugin(async (nuxtApp) => { + nuxtApp.vueApp.use(plugin, { colorSchemeMode: "class", theme, utils }); + useRuntimeConfig$1(); + nuxtApp.hook("app:rendered", async (app) => { + app.ssrContext.event.pinceauContent = app.ssrContext.event.pinceauContent || {}; + const content = app.ssrContext.nuxt.vueApp.config.globalProperties.$pinceauSsr.get(); + app.ssrContext.event.pinceauContent.runtime = content; + }); +}); +const schema = { + "properties": { + "id": "#tokensConfig", + "properties": { + "color": { + "title": "Your website color palette.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon ph:palette" + ], + "id": "#tokensConfig/color", + "properties": { + "primary": { + "id": "#tokensConfig/color/primary", + "properties": { + "50": { + "id": "#tokensConfig/color/primary/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/50/value", + "default": "#fff2cc" + } + }, + "type": "object", + "default": { + "value": "#fff2cc" + } + }, + "100": { + "id": "#tokensConfig/color/primary/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/100/value", + "default": "#ffe599" + } + }, + "type": "object", + "default": { + "value": "#ffe599" + } + }, + "200": { + "id": "#tokensConfig/color/primary/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/200/value", + "default": "#ffd966" + } + }, + "type": "object", + "default": { + "value": "#ffd966" + } + }, + "300": { + "id": "#tokensConfig/color/primary/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/300/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + }, + "400": { + "id": "#tokensConfig/color/primary/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/400/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + }, + "500": { + "id": "#tokensConfig/color/primary/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/500/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + }, + "600": { + "id": "#tokensConfig/color/primary/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/600/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + }, + "700": { + "id": "#tokensConfig/color/primary/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/700/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + }, + "800": { + "id": "#tokensConfig/color/primary/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/800/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + }, + "900": { + "id": "#tokensConfig/color/primary/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/primary/900/value", + "default": "#f1c232" + } + }, + "type": "object", + "default": { + "value": "#f1c232" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#fff2cc" + }, + "100": { + "value": "#ffe599" + }, + "200": { + "value": "#ffd966" + }, + "300": { + "value": "#f1c232" + }, + "400": { + "value": "#f1c232" + }, + "500": { + "value": "#f1c232" + }, + "600": { + "value": "#f1c232" + }, + "700": { + "value": "#f1c232" + }, + "800": { + "value": "#f1c232" + }, + "900": { + "value": "#f1c232" + } + } + }, + "white": { + "id": "#tokensConfig/color/white", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/white/value", + "default": "#ffffff" + } + }, + "type": "object", + "default": { + "value": "#ffffff" + } + }, + "black": { + "id": "#tokensConfig/color/black", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/black/value", + "default": "#0c0c0d" + } + }, + "type": "object", + "default": { + "value": "#0c0c0d" + } + }, + "secondary": { + "id": "#tokensConfig/color/secondary", + "properties": { + "50": { + "id": "#tokensConfig/color/secondary/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/50/value", + "default": "{color.gray.50}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.50}" + } + }, + "100": { + "id": "#tokensConfig/color/secondary/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/100/value", + "default": "{color.gray.100}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.100}" + } + }, + "200": { + "id": "#tokensConfig/color/secondary/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/200/value", + "default": "{color.gray.200}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.200}" + } + }, + "300": { + "id": "#tokensConfig/color/secondary/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/300/value", + "default": "{color.gray.300}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.300}" + } + }, + "400": { + "id": "#tokensConfig/color/secondary/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/400/value", + "default": "{color.gray.400}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.400}" + } + }, + "500": { + "id": "#tokensConfig/color/secondary/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/500/value", + "default": "{color.gray.500}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.500}" + } + }, + "600": { + "id": "#tokensConfig/color/secondary/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/600/value", + "default": "{color.gray.600}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.600}" + } + }, + "700": { + "id": "#tokensConfig/color/secondary/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/700/value", + "default": "{color.gray.700}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.700}" + } + }, + "800": { + "id": "#tokensConfig/color/secondary/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/800/value", + "default": "{color.gray.800}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.800}" + } + }, + "900": { + "id": "#tokensConfig/color/secondary/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/secondary/900/value", + "default": "{color.gray.900}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.900}" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + } + }, + "gray": { + "id": "#tokensConfig/color/gray", + "properties": { + "50": { + "id": "#tokensConfig/color/gray/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/50/value", + "default": "#fafafa" + } + }, + "type": "object", + "default": { + "value": "#fafafa" + } + }, + "100": { + "id": "#tokensConfig/color/gray/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/100/value", + "default": "#f4f4f5" + } + }, + "type": "object", + "default": { + "value": "#f4f4f5" + } + }, + "200": { + "id": "#tokensConfig/color/gray/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/200/value", + "default": "#e4e4e7" + } + }, + "type": "object", + "default": { + "value": "#e4e4e7" + } + }, + "300": { + "id": "#tokensConfig/color/gray/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/300/value", + "default": "#D4d4d8" + } + }, + "type": "object", + "default": { + "value": "#D4d4d8" + } + }, + "400": { + "id": "#tokensConfig/color/gray/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/400/value", + "default": "#a1a1aa" + } + }, + "type": "object", + "default": { + "value": "#a1a1aa" + } + }, + "500": { + "id": "#tokensConfig/color/gray/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/500/value", + "default": "#71717A" + } + }, + "type": "object", + "default": { + "value": "#71717A" + } + }, + "600": { + "id": "#tokensConfig/color/gray/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/600/value", + "default": "#52525B" + } + }, + "type": "object", + "default": { + "value": "#52525B" + } + }, + "700": { + "id": "#tokensConfig/color/gray/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/700/value", + "default": "#3f3f46" + } + }, + "type": "object", + "default": { + "value": "#3f3f46" + } + }, + "800": { + "id": "#tokensConfig/color/gray/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/800/value", + "default": "#27272A" + } + }, + "type": "object", + "default": { + "value": "#27272A" + } + }, + "900": { + "id": "#tokensConfig/color/gray/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/gray/900/value", + "default": "#18181B" + } + }, + "type": "object", + "default": { + "value": "#18181B" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#fafafa" + }, + "100": { + "value": "#f4f4f5" + }, + "200": { + "value": "#e4e4e7" + }, + "300": { + "value": "#D4d4d8" + }, + "400": { + "value": "#a1a1aa" + }, + "500": { + "value": "#71717A" + }, + "600": { + "value": "#52525B" + }, + "700": { + "value": "#3f3f46" + }, + "800": { + "value": "#27272A" + }, + "900": { + "value": "#18181B" + } + } + }, + "green": { + "id": "#tokensConfig/color/green", + "properties": { + "50": { + "id": "#tokensConfig/color/green/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/50/value", + "default": "#d6ffee" + } + }, + "type": "object", + "default": { + "value": "#d6ffee" + } + }, + "100": { + "id": "#tokensConfig/color/green/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/100/value", + "default": "#acffdd" + } + }, + "type": "object", + "default": { + "value": "#acffdd" + } + }, + "200": { + "id": "#tokensConfig/color/green/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/200/value", + "default": "#83ffcc" + } + }, + "type": "object", + "default": { + "value": "#83ffcc" + } + }, + "300": { + "id": "#tokensConfig/color/green/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/300/value", + "default": "#30ffaa" + } + }, + "type": "object", + "default": { + "value": "#30ffaa" + } + }, + "400": { + "id": "#tokensConfig/color/green/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/400/value", + "default": "#00dc82" + } + }, + "type": "object", + "default": { + "value": "#00dc82" + } + }, + "500": { + "id": "#tokensConfig/color/green/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/500/value", + "default": "#00bd6f" + } + }, + "type": "object", + "default": { + "value": "#00bd6f" + } + }, + "600": { + "id": "#tokensConfig/color/green/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/600/value", + "default": "#009d5d" + } + }, + "type": "object", + "default": { + "value": "#009d5d" + } + }, + "700": { + "id": "#tokensConfig/color/green/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/700/value", + "default": "#007e4a" + } + }, + "type": "object", + "default": { + "value": "#007e4a" + } + }, + "800": { + "id": "#tokensConfig/color/green/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/800/value", + "default": "#005e38" + } + }, + "type": "object", + "default": { + "value": "#005e38" + } + }, + "900": { + "id": "#tokensConfig/color/green/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/green/900/value", + "default": "#003f25" + } + }, + "type": "object", + "default": { + "value": "#003f25" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#d6ffee" + }, + "100": { + "value": "#acffdd" + }, + "200": { + "value": "#83ffcc" + }, + "300": { + "value": "#30ffaa" + }, + "400": { + "value": "#00dc82" + }, + "500": { + "value": "#00bd6f" + }, + "600": { + "value": "#009d5d" + }, + "700": { + "value": "#007e4a" + }, + "800": { + "value": "#005e38" + }, + "900": { + "value": "#003f25" + } + } + }, + "yellow": { + "id": "#tokensConfig/color/yellow", + "properties": { + "50": { + "id": "#tokensConfig/color/yellow/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/50/value", + "default": "#fdf6db" + } + }, + "type": "object", + "default": { + "value": "#fdf6db" + } + }, + "100": { + "id": "#tokensConfig/color/yellow/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/100/value", + "default": "#fcedb7" + } + }, + "type": "object", + "default": { + "value": "#fcedb7" + } + }, + "200": { + "id": "#tokensConfig/color/yellow/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/200/value", + "default": "#fae393" + } + }, + "type": "object", + "default": { + "value": "#fae393" + } + }, + "300": { + "id": "#tokensConfig/color/yellow/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/300/value", + "default": "#f8da70" + } + }, + "type": "object", + "default": { + "value": "#f8da70" + } + }, + "400": { + "id": "#tokensConfig/color/yellow/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/400/value", + "default": "#f7d14c" + } + }, + "type": "object", + "default": { + "value": "#f7d14c" + } + }, + "500": { + "id": "#tokensConfig/color/yellow/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/500/value", + "default": "#f5c828" + } + }, + "type": "object", + "default": { + "value": "#f5c828" + } + }, + "600": { + "id": "#tokensConfig/color/yellow/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/600/value", + "default": "#daac0a" + } + }, + "type": "object", + "default": { + "value": "#daac0a" + } + }, + "700": { + "id": "#tokensConfig/color/yellow/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/700/value", + "default": "#a38108" + } + }, + "type": "object", + "default": { + "value": "#a38108" + } + }, + "800": { + "id": "#tokensConfig/color/yellow/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/800/value", + "default": "#6d5605" + } + }, + "type": "object", + "default": { + "value": "#6d5605" + } + }, + "900": { + "id": "#tokensConfig/color/yellow/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/yellow/900/value", + "default": "#362b03" + } + }, + "type": "object", + "default": { + "value": "#362b03" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#fdf6db" + }, + "100": { + "value": "#fcedb7" + }, + "200": { + "value": "#fae393" + }, + "300": { + "value": "#f8da70" + }, + "400": { + "value": "#f7d14c" + }, + "500": { + "value": "#f5c828" + }, + "600": { + "value": "#daac0a" + }, + "700": { + "value": "#a38108" + }, + "800": { + "value": "#6d5605" + }, + "900": { + "value": "#362b03" + } + } + }, + "orange": { + "id": "#tokensConfig/color/orange", + "properties": { + "50": { + "id": "#tokensConfig/color/orange/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/50/value", + "default": "#ffe9d9" + } + }, + "type": "object", + "default": { + "value": "#ffe9d9" + } + }, + "100": { + "id": "#tokensConfig/color/orange/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/100/value", + "default": "#ffd3b3" + } + }, + "type": "object", + "default": { + "value": "#ffd3b3" + } + }, + "200": { + "id": "#tokensConfig/color/orange/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/200/value", + "default": "#ffbd8d" + } + }, + "type": "object", + "default": { + "value": "#ffbd8d" + } + }, + "300": { + "id": "#tokensConfig/color/orange/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/300/value", + "default": "#ffa666" + } + }, + "type": "object", + "default": { + "value": "#ffa666" + } + }, + "400": { + "id": "#tokensConfig/color/orange/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/400/value", + "default": "#ff9040" + } + }, + "type": "object", + "default": { + "value": "#ff9040" + } + }, + "500": { + "id": "#tokensConfig/color/orange/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/500/value", + "default": "#ff7a1a" + } + }, + "type": "object", + "default": { + "value": "#ff7a1a" + } + }, + "600": { + "id": "#tokensConfig/color/orange/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/600/value", + "default": "#e15e00" + } + }, + "type": "object", + "default": { + "value": "#e15e00" + } + }, + "700": { + "id": "#tokensConfig/color/orange/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/700/value", + "default": "#a94700" + } + }, + "type": "object", + "default": { + "value": "#a94700" + } + }, + "800": { + "id": "#tokensConfig/color/orange/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/800/value", + "default": "#702f00" + } + }, + "type": "object", + "default": { + "value": "#702f00" + } + }, + "900": { + "id": "#tokensConfig/color/orange/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/orange/900/value", + "default": "#381800" + } + }, + "type": "object", + "default": { + "value": "#381800" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#ffe9d9" + }, + "100": { + "value": "#ffd3b3" + }, + "200": { + "value": "#ffbd8d" + }, + "300": { + "value": "#ffa666" + }, + "400": { + "value": "#ff9040" + }, + "500": { + "value": "#ff7a1a" + }, + "600": { + "value": "#e15e00" + }, + "700": { + "value": "#a94700" + }, + "800": { + "value": "#702f00" + }, + "900": { + "value": "#381800" + } + } + }, + "red": { + "id": "#tokensConfig/color/red", + "properties": { + "50": { + "id": "#tokensConfig/color/red/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/50/value", + "default": "#ffdbd9" + } + }, + "type": "object", + "default": { + "value": "#ffdbd9" + } + }, + "100": { + "id": "#tokensConfig/color/red/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/100/value", + "default": "#ffb7b3" + } + }, + "type": "object", + "default": { + "value": "#ffb7b3" + } + }, + "200": { + "id": "#tokensConfig/color/red/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/200/value", + "default": "#ff948d" + } + }, + "type": "object", + "default": { + "value": "#ff948d" + } + }, + "300": { + "id": "#tokensConfig/color/red/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/300/value", + "default": "#ff7066" + } + }, + "type": "object", + "default": { + "value": "#ff7066" + } + }, + "400": { + "id": "#tokensConfig/color/red/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/400/value", + "default": "#ff4c40" + } + }, + "type": "object", + "default": { + "value": "#ff4c40" + } + }, + "500": { + "id": "#tokensConfig/color/red/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/500/value", + "default": "#ff281a" + } + }, + "type": "object", + "default": { + "value": "#ff281a" + } + }, + "600": { + "id": "#tokensConfig/color/red/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/600/value", + "default": "#e10e00" + } + }, + "type": "object", + "default": { + "value": "#e10e00" + } + }, + "700": { + "id": "#tokensConfig/color/red/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/700/value", + "default": "#a90a00" + } + }, + "type": "object", + "default": { + "value": "#a90a00" + } + }, + "800": { + "id": "#tokensConfig/color/red/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/800/value", + "default": "#700700" + } + }, + "type": "object", + "default": { + "value": "#700700" + } + }, + "900": { + "id": "#tokensConfig/color/red/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/red/900/value", + "default": "#380300" + } + }, + "type": "object", + "default": { + "value": "#380300" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#ffdbd9" + }, + "100": { + "value": "#ffb7b3" + }, + "200": { + "value": "#ff948d" + }, + "300": { + "value": "#ff7066" + }, + "400": { + "value": "#ff4c40" + }, + "500": { + "value": "#ff281a" + }, + "600": { + "value": "#e10e00" + }, + "700": { + "value": "#a90a00" + }, + "800": { + "value": "#700700" + }, + "900": { + "value": "#380300" + } + } + }, + "pear": { + "id": "#tokensConfig/color/pear", + "properties": { + "50": { + "id": "#tokensConfig/color/pear/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/50/value", + "default": "#f7f8dc" + } + }, + "type": "object", + "default": { + "value": "#f7f8dc" + } + }, + "100": { + "id": "#tokensConfig/color/pear/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/100/value", + "default": "#eff0ba" + } + }, + "type": "object", + "default": { + "value": "#eff0ba" + } + }, + "200": { + "id": "#tokensConfig/color/pear/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/200/value", + "default": "#e8e997" + } + }, + "type": "object", + "default": { + "value": "#e8e997" + } + }, + "300": { + "id": "#tokensConfig/color/pear/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/300/value", + "default": "#e0e274" + } + }, + "type": "object", + "default": { + "value": "#e0e274" + } + }, + "400": { + "id": "#tokensConfig/color/pear/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/400/value", + "default": "#d8da52" + } + }, + "type": "object", + "default": { + "value": "#d8da52" + } + }, + "500": { + "id": "#tokensConfig/color/pear/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/500/value", + "default": "#d0d32f" + } + }, + "type": "object", + "default": { + "value": "#d0d32f" + } + }, + "600": { + "id": "#tokensConfig/color/pear/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/600/value", + "default": "#a8aa24" + } + }, + "type": "object", + "default": { + "value": "#a8aa24" + } + }, + "700": { + "id": "#tokensConfig/color/pear/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/700/value", + "default": "#7e801b" + } + }, + "type": "object", + "default": { + "value": "#7e801b" + } + }, + "800": { + "id": "#tokensConfig/color/pear/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/800/value", + "default": "#545512" + } + }, + "type": "object", + "default": { + "value": "#545512" + } + }, + "900": { + "id": "#tokensConfig/color/pear/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pear/900/value", + "default": "#2a2b09" + } + }, + "type": "object", + "default": { + "value": "#2a2b09" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#f7f8dc" + }, + "100": { + "value": "#eff0ba" + }, + "200": { + "value": "#e8e997" + }, + "300": { + "value": "#e0e274" + }, + "400": { + "value": "#d8da52" + }, + "500": { + "value": "#d0d32f" + }, + "600": { + "value": "#a8aa24" + }, + "700": { + "value": "#7e801b" + }, + "800": { + "value": "#545512" + }, + "900": { + "value": "#2a2b09" + } + } + }, + "teal": { + "id": "#tokensConfig/color/teal", + "properties": { + "50": { + "id": "#tokensConfig/color/teal/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/50/value", + "default": "#d7faf8" + } + }, + "type": "object", + "default": { + "value": "#d7faf8" + } + }, + "100": { + "id": "#tokensConfig/color/teal/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/100/value", + "default": "#aff4f0" + } + }, + "type": "object", + "default": { + "value": "#aff4f0" + } + }, + "200": { + "id": "#tokensConfig/color/teal/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/200/value", + "default": "#87efe9" + } + }, + "type": "object", + "default": { + "value": "#87efe9" + } + }, + "300": { + "id": "#tokensConfig/color/teal/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/300/value", + "default": "#5fe9e1" + } + }, + "type": "object", + "default": { + "value": "#5fe9e1" + } + }, + "400": { + "id": "#tokensConfig/color/teal/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/400/value", + "default": "#36e4da" + } + }, + "type": "object", + "default": { + "value": "#36e4da" + } + }, + "500": { + "id": "#tokensConfig/color/teal/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/500/value", + "default": "#1cd1c6" + } + }, + "type": "object", + "default": { + "value": "#1cd1c6" + } + }, + "600": { + "id": "#tokensConfig/color/teal/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/600/value", + "default": "#16a79e" + } + }, + "type": "object", + "default": { + "value": "#16a79e" + } + }, + "700": { + "id": "#tokensConfig/color/teal/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/700/value", + "default": "#117d77" + } + }, + "type": "object", + "default": { + "value": "#117d77" + } + }, + "800": { + "id": "#tokensConfig/color/teal/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/800/value", + "default": "#0b544f" + } + }, + "type": "object", + "default": { + "value": "#0b544f" + } + }, + "900": { + "id": "#tokensConfig/color/teal/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/teal/900/value", + "default": "#062a28" + } + }, + "type": "object", + "default": { + "value": "#062a28" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#d7faf8" + }, + "100": { + "value": "#aff4f0" + }, + "200": { + "value": "#87efe9" + }, + "300": { + "value": "#5fe9e1" + }, + "400": { + "value": "#36e4da" + }, + "500": { + "value": "#1cd1c6" + }, + "600": { + "value": "#16a79e" + }, + "700": { + "value": "#117d77" + }, + "800": { + "value": "#0b544f" + }, + "900": { + "value": "#062a28" + } + } + }, + "lightblue": { + "id": "#tokensConfig/color/lightblue", + "properties": { + "50": { + "id": "#tokensConfig/color/lightblue/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/50/value", + "default": "#d9f8ff" + } + }, + "type": "object", + "default": { + "value": "#d9f8ff" + } + }, + "100": { + "id": "#tokensConfig/color/lightblue/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/100/value", + "default": "#b3f1ff" + } + }, + "type": "object", + "default": { + "value": "#b3f1ff" + } + }, + "200": { + "id": "#tokensConfig/color/lightblue/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/200/value", + "default": "#8deaff" + } + }, + "type": "object", + "default": { + "value": "#8deaff" + } + }, + "300": { + "id": "#tokensConfig/color/lightblue/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/300/value", + "default": "#66e4ff" + } + }, + "type": "object", + "default": { + "value": "#66e4ff" + } + }, + "400": { + "id": "#tokensConfig/color/lightblue/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/400/value", + "default": "#40ddff" + } + }, + "type": "object", + "default": { + "value": "#40ddff" + } + }, + "500": { + "id": "#tokensConfig/color/lightblue/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/500/value", + "default": "#1ad6ff" + } + }, + "type": "object", + "default": { + "value": "#1ad6ff" + } + }, + "600": { + "id": "#tokensConfig/color/lightblue/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/600/value", + "default": "#00b9e1" + } + }, + "type": "object", + "default": { + "value": "#00b9e1" + } + }, + "700": { + "id": "#tokensConfig/color/lightblue/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/700/value", + "default": "#008aa9" + } + }, + "type": "object", + "default": { + "value": "#008aa9" + } + }, + "800": { + "id": "#tokensConfig/color/lightblue/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/800/value", + "default": "#005c70" + } + }, + "type": "object", + "default": { + "value": "#005c70" + } + }, + "900": { + "id": "#tokensConfig/color/lightblue/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/lightblue/900/value", + "default": "#002e38" + } + }, + "type": "object", + "default": { + "value": "#002e38" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#d9f8ff" + }, + "100": { + "value": "#b3f1ff" + }, + "200": { + "value": "#8deaff" + }, + "300": { + "value": "#66e4ff" + }, + "400": { + "value": "#40ddff" + }, + "500": { + "value": "#1ad6ff" + }, + "600": { + "value": "#00b9e1" + }, + "700": { + "value": "#008aa9" + }, + "800": { + "value": "#005c70" + }, + "900": { + "value": "#002e38" + } + } + }, + "blue": { + "id": "#tokensConfig/color/blue", + "properties": { + "50": { + "id": "#tokensConfig/color/blue/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/50/value", + "default": "#d9f1ff" + } + }, + "type": "object", + "default": { + "value": "#d9f1ff" + } + }, + "100": { + "id": "#tokensConfig/color/blue/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/100/value", + "default": "#b3e4ff" + } + }, + "type": "object", + "default": { + "value": "#b3e4ff" + } + }, + "200": { + "id": "#tokensConfig/color/blue/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/200/value", + "default": "#8dd6ff" + } + }, + "type": "object", + "default": { + "value": "#8dd6ff" + } + }, + "300": { + "id": "#tokensConfig/color/blue/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/300/value", + "default": "#66c8ff" + } + }, + "type": "object", + "default": { + "value": "#66c8ff" + } + }, + "400": { + "id": "#tokensConfig/color/blue/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/400/value", + "default": "#40bbff" + } + }, + "type": "object", + "default": { + "value": "#40bbff" + } + }, + "500": { + "id": "#tokensConfig/color/blue/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/500/value", + "default": "#1aadff" + } + }, + "type": "object", + "default": { + "value": "#1aadff" + } + }, + "600": { + "id": "#tokensConfig/color/blue/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/600/value", + "default": "#0090e1" + } + }, + "type": "object", + "default": { + "value": "#0090e1" + } + }, + "700": { + "id": "#tokensConfig/color/blue/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/700/value", + "default": "#006ca9" + } + }, + "type": "object", + "default": { + "value": "#006ca9" + } + }, + "800": { + "id": "#tokensConfig/color/blue/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/800/value", + "default": "#004870" + } + }, + "type": "object", + "default": { + "value": "#004870" + } + }, + "900": { + "id": "#tokensConfig/color/blue/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/blue/900/value", + "default": "#002438" + } + }, + "type": "object", + "default": { + "value": "#002438" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#d9f1ff" + }, + "100": { + "value": "#b3e4ff" + }, + "200": { + "value": "#8dd6ff" + }, + "300": { + "value": "#66c8ff" + }, + "400": { + "value": "#40bbff" + }, + "500": { + "value": "#1aadff" + }, + "600": { + "value": "#0090e1" + }, + "700": { + "value": "#006ca9" + }, + "800": { + "value": "#004870" + }, + "900": { + "value": "#002438" + } + } + }, + "indigoblue": { + "id": "#tokensConfig/color/indigoblue", + "properties": { + "50": { + "id": "#tokensConfig/color/indigoblue/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/50/value", + "default": "#d9e5ff" + } + }, + "type": "object", + "default": { + "value": "#d9e5ff" + } + }, + "100": { + "id": "#tokensConfig/color/indigoblue/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/100/value", + "default": "#b3cbff" + } + }, + "type": "object", + "default": { + "value": "#b3cbff" + } + }, + "200": { + "id": "#tokensConfig/color/indigoblue/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/200/value", + "default": "#8db0ff" + } + }, + "type": "object", + "default": { + "value": "#8db0ff" + } + }, + "300": { + "id": "#tokensConfig/color/indigoblue/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/300/value", + "default": "#6696ff" + } + }, + "type": "object", + "default": { + "value": "#6696ff" + } + }, + "400": { + "id": "#tokensConfig/color/indigoblue/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/400/value", + "default": "#407cff" + } + }, + "type": "object", + "default": { + "value": "#407cff" + } + }, + "500": { + "id": "#tokensConfig/color/indigoblue/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/500/value", + "default": "#1a62ff" + } + }, + "type": "object", + "default": { + "value": "#1a62ff" + } + }, + "600": { + "id": "#tokensConfig/color/indigoblue/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/600/value", + "default": "#0047e1" + } + }, + "type": "object", + "default": { + "value": "#0047e1" + } + }, + "700": { + "id": "#tokensConfig/color/indigoblue/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/700/value", + "default": "#0035a9" + } + }, + "type": "object", + "default": { + "value": "#0035a9" + } + }, + "800": { + "id": "#tokensConfig/color/indigoblue/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/800/value", + "default": "#002370" + } + }, + "type": "object", + "default": { + "value": "#002370" + } + }, + "900": { + "id": "#tokensConfig/color/indigoblue/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/indigoblue/900/value", + "default": "#001238" + } + }, + "type": "object", + "default": { + "value": "#001238" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#d9e5ff" + }, + "100": { + "value": "#b3cbff" + }, + "200": { + "value": "#8db0ff" + }, + "300": { + "value": "#6696ff" + }, + "400": { + "value": "#407cff" + }, + "500": { + "value": "#1a62ff" + }, + "600": { + "value": "#0047e1" + }, + "700": { + "value": "#0035a9" + }, + "800": { + "value": "#002370" + }, + "900": { + "value": "#001238" + } + } + }, + "royalblue": { + "id": "#tokensConfig/color/royalblue", + "properties": { + "50": { + "id": "#tokensConfig/color/royalblue/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/50/value", + "default": "#dfdbfb" + } + }, + "type": "object", + "default": { + "value": "#dfdbfb" + } + }, + "100": { + "id": "#tokensConfig/color/royalblue/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/100/value", + "default": "#c0b7f7" + } + }, + "type": "object", + "default": { + "value": "#c0b7f7" + } + }, + "200": { + "id": "#tokensConfig/color/royalblue/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/200/value", + "default": "#a093f3" + } + }, + "type": "object", + "default": { + "value": "#a093f3" + } + }, + "300": { + "id": "#tokensConfig/color/royalblue/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/300/value", + "default": "#806ff0" + } + }, + "type": "object", + "default": { + "value": "#806ff0" + } + }, + "400": { + "id": "#tokensConfig/color/royalblue/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/400/value", + "default": "#614bec" + } + }, + "type": "object", + "default": { + "value": "#614bec" + } + }, + "500": { + "id": "#tokensConfig/color/royalblue/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/500/value", + "default": "#4127e8" + } + }, + "type": "object", + "default": { + "value": "#4127e8" + } + }, + "600": { + "id": "#tokensConfig/color/royalblue/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/600/value", + "default": "#2c15c4" + } + }, + "type": "object", + "default": { + "value": "#2c15c4" + } + }, + "700": { + "id": "#tokensConfig/color/royalblue/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/700/value", + "default": "#211093" + } + }, + "type": "object", + "default": { + "value": "#211093" + } + }, + "800": { + "id": "#tokensConfig/color/royalblue/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/800/value", + "default": "#160a62" + } + }, + "type": "object", + "default": { + "value": "#160a62" + } + }, + "900": { + "id": "#tokensConfig/color/royalblue/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/royalblue/900/value", + "default": "#0b0531" + } + }, + "type": "object", + "default": { + "value": "#0b0531" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#dfdbfb" + }, + "100": { + "value": "#c0b7f7" + }, + "200": { + "value": "#a093f3" + }, + "300": { + "value": "#806ff0" + }, + "400": { + "value": "#614bec" + }, + "500": { + "value": "#4127e8" + }, + "600": { + "value": "#2c15c4" + }, + "700": { + "value": "#211093" + }, + "800": { + "value": "#160a62" + }, + "900": { + "value": "#0b0531" + } + } + }, + "purple": { + "id": "#tokensConfig/color/purple", + "properties": { + "50": { + "id": "#tokensConfig/color/purple/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/50/value", + "default": "#ead9ff" + } + }, + "type": "object", + "default": { + "value": "#ead9ff" + } + }, + "100": { + "id": "#tokensConfig/color/purple/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/100/value", + "default": "#d5b3ff" + } + }, + "type": "object", + "default": { + "value": "#d5b3ff" + } + }, + "200": { + "id": "#tokensConfig/color/purple/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/200/value", + "default": "#c08dff" + } + }, + "type": "object", + "default": { + "value": "#c08dff" + } + }, + "300": { + "id": "#tokensConfig/color/purple/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/300/value", + "default": "#ab66ff" + } + }, + "type": "object", + "default": { + "value": "#ab66ff" + } + }, + "400": { + "id": "#tokensConfig/color/purple/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/400/value", + "default": "#9640ff" + } + }, + "type": "object", + "default": { + "value": "#9640ff" + } + }, + "500": { + "id": "#tokensConfig/color/purple/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/500/value", + "default": "#811aff" + } + }, + "type": "object", + "default": { + "value": "#811aff" + } + }, + "600": { + "id": "#tokensConfig/color/purple/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/600/value", + "default": "#6500e1" + } + }, + "type": "object", + "default": { + "value": "#6500e1" + } + }, + "700": { + "id": "#tokensConfig/color/purple/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/700/value", + "default": "#4c00a9" + } + }, + "type": "object", + "default": { + "value": "#4c00a9" + } + }, + "800": { + "id": "#tokensConfig/color/purple/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/800/value", + "default": "#330070" + } + }, + "type": "object", + "default": { + "value": "#330070" + } + }, + "900": { + "id": "#tokensConfig/color/purple/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/purple/900/value", + "default": "#190038" + } + }, + "type": "object", + "default": { + "value": "#190038" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#ead9ff" + }, + "100": { + "value": "#d5b3ff" + }, + "200": { + "value": "#c08dff" + }, + "300": { + "value": "#ab66ff" + }, + "400": { + "value": "#9640ff" + }, + "500": { + "value": "#811aff" + }, + "600": { + "value": "#6500e1" + }, + "700": { + "value": "#4c00a9" + }, + "800": { + "value": "#330070" + }, + "900": { + "value": "#190038" + } + } + }, + "pink": { + "id": "#tokensConfig/color/pink", + "properties": { + "50": { + "id": "#tokensConfig/color/pink/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/50/value", + "default": "#ffd9f2" + } + }, + "type": "object", + "default": { + "value": "#ffd9f2" + } + }, + "100": { + "id": "#tokensConfig/color/pink/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/100/value", + "default": "#ffb3e5" + } + }, + "type": "object", + "default": { + "value": "#ffb3e5" + } + }, + "200": { + "id": "#tokensConfig/color/pink/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/200/value", + "default": "#ff8dd8" + } + }, + "type": "object", + "default": { + "value": "#ff8dd8" + } + }, + "300": { + "id": "#tokensConfig/color/pink/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/300/value", + "default": "#ff66cc" + } + }, + "type": "object", + "default": { + "value": "#ff66cc" + } + }, + "400": { + "id": "#tokensConfig/color/pink/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/400/value", + "default": "#ff40bf" + } + }, + "type": "object", + "default": { + "value": "#ff40bf" + } + }, + "500": { + "id": "#tokensConfig/color/pink/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/500/value", + "default": "#ff1ab2" + } + }, + "type": "object", + "default": { + "value": "#ff1ab2" + } + }, + "600": { + "id": "#tokensConfig/color/pink/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/600/value", + "default": "#e10095" + } + }, + "type": "object", + "default": { + "value": "#e10095" + } + }, + "700": { + "id": "#tokensConfig/color/pink/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/700/value", + "default": "#a90070" + } + }, + "type": "object", + "default": { + "value": "#a90070" + } + }, + "800": { + "id": "#tokensConfig/color/pink/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/800/value", + "default": "#70004b" + } + }, + "type": "object", + "default": { + "value": "#70004b" + } + }, + "900": { + "id": "#tokensConfig/color/pink/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/pink/900/value", + "default": "#380025" + } + }, + "type": "object", + "default": { + "value": "#380025" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#ffd9f2" + }, + "100": { + "value": "#ffb3e5" + }, + "200": { + "value": "#ff8dd8" + }, + "300": { + "value": "#ff66cc" + }, + "400": { + "value": "#ff40bf" + }, + "500": { + "value": "#ff1ab2" + }, + "600": { + "value": "#e10095" + }, + "700": { + "value": "#a90070" + }, + "800": { + "value": "#70004b" + }, + "900": { + "value": "#380025" + } + } + }, + "ruby": { + "id": "#tokensConfig/color/ruby", + "properties": { + "50": { + "id": "#tokensConfig/color/ruby/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/50/value", + "default": "#ffd9e4" + } + }, + "type": "object", + "default": { + "value": "#ffd9e4" + } + }, + "100": { + "id": "#tokensConfig/color/ruby/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/100/value", + "default": "#ffb3c9" + } + }, + "type": "object", + "default": { + "value": "#ffb3c9" + } + }, + "200": { + "id": "#tokensConfig/color/ruby/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/200/value", + "default": "#ff8dae" + } + }, + "type": "object", + "default": { + "value": "#ff8dae" + } + }, + "300": { + "id": "#tokensConfig/color/ruby/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/300/value", + "default": "#ff6694" + } + }, + "type": "object", + "default": { + "value": "#ff6694" + } + }, + "400": { + "id": "#tokensConfig/color/ruby/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/400/value", + "default": "#ff4079" + } + }, + "type": "object", + "default": { + "value": "#ff4079" + } + }, + "500": { + "id": "#tokensConfig/color/ruby/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/500/value", + "default": "#ff1a5e" + } + }, + "type": "object", + "default": { + "value": "#ff1a5e" + } + }, + "600": { + "id": "#tokensConfig/color/ruby/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/600/value", + "default": "#e10043" + } + }, + "type": "object", + "default": { + "value": "#e10043" + } + }, + "700": { + "id": "#tokensConfig/color/ruby/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/700/value", + "default": "#a90032" + } + }, + "type": "object", + "default": { + "value": "#a90032" + } + }, + "800": { + "id": "#tokensConfig/color/ruby/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/800/value", + "default": "#700021" + } + }, + "type": "object", + "default": { + "value": "#700021" + } + }, + "900": { + "id": "#tokensConfig/color/ruby/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/color/ruby/900/value", + "default": "#380011" + } + }, + "type": "object", + "default": { + "value": "#380011" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "#ffd9e4" + }, + "100": { + "value": "#ffb3c9" + }, + "200": { + "value": "#ff8dae" + }, + "300": { + "value": "#ff6694" + }, + "400": { + "value": "#ff4079" + }, + "500": { + "value": "#ff1a5e" + }, + "600": { + "value": "#e10043" + }, + "700": { + "value": "#a90032" + }, + "800": { + "value": "#700021" + }, + "900": { + "value": "#380011" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "50": { + "value": "#fff2cc" + }, + "100": { + "value": "#ffe599" + }, + "200": { + "value": "#ffd966" + }, + "300": { + "value": "#f1c232" + }, + "400": { + "value": "#f1c232" + }, + "500": { + "value": "#f1c232" + }, + "600": { + "value": "#f1c232" + }, + "700": { + "value": "#f1c232" + }, + "800": { + "value": "#f1c232" + }, + "900": { + "value": "#f1c232" + } + }, + "white": { + "value": "#ffffff" + }, + "black": { + "value": "#0c0c0d" + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + }, + "gray": { + "50": { + "value": "#fafafa" + }, + "100": { + "value": "#f4f4f5" + }, + "200": { + "value": "#e4e4e7" + }, + "300": { + "value": "#D4d4d8" + }, + "400": { + "value": "#a1a1aa" + }, + "500": { + "value": "#71717A" + }, + "600": { + "value": "#52525B" + }, + "700": { + "value": "#3f3f46" + }, + "800": { + "value": "#27272A" + }, + "900": { + "value": "#18181B" + } + }, + "green": { + "50": { + "value": "#d6ffee" + }, + "100": { + "value": "#acffdd" + }, + "200": { + "value": "#83ffcc" + }, + "300": { + "value": "#30ffaa" + }, + "400": { + "value": "#00dc82" + }, + "500": { + "value": "#00bd6f" + }, + "600": { + "value": "#009d5d" + }, + "700": { + "value": "#007e4a" + }, + "800": { + "value": "#005e38" + }, + "900": { + "value": "#003f25" + } + }, + "yellow": { + "50": { + "value": "#fdf6db" + }, + "100": { + "value": "#fcedb7" + }, + "200": { + "value": "#fae393" + }, + "300": { + "value": "#f8da70" + }, + "400": { + "value": "#f7d14c" + }, + "500": { + "value": "#f5c828" + }, + "600": { + "value": "#daac0a" + }, + "700": { + "value": "#a38108" + }, + "800": { + "value": "#6d5605" + }, + "900": { + "value": "#362b03" + } + }, + "orange": { + "50": { + "value": "#ffe9d9" + }, + "100": { + "value": "#ffd3b3" + }, + "200": { + "value": "#ffbd8d" + }, + "300": { + "value": "#ffa666" + }, + "400": { + "value": "#ff9040" + }, + "500": { + "value": "#ff7a1a" + }, + "600": { + "value": "#e15e00" + }, + "700": { + "value": "#a94700" + }, + "800": { + "value": "#702f00" + }, + "900": { + "value": "#381800" + } + }, + "red": { + "50": { + "value": "#ffdbd9" + }, + "100": { + "value": "#ffb7b3" + }, + "200": { + "value": "#ff948d" + }, + "300": { + "value": "#ff7066" + }, + "400": { + "value": "#ff4c40" + }, + "500": { + "value": "#ff281a" + }, + "600": { + "value": "#e10e00" + }, + "700": { + "value": "#a90a00" + }, + "800": { + "value": "#700700" + }, + "900": { + "value": "#380300" + } + }, + "pear": { + "50": { + "value": "#f7f8dc" + }, + "100": { + "value": "#eff0ba" + }, + "200": { + "value": "#e8e997" + }, + "300": { + "value": "#e0e274" + }, + "400": { + "value": "#d8da52" + }, + "500": { + "value": "#d0d32f" + }, + "600": { + "value": "#a8aa24" + }, + "700": { + "value": "#7e801b" + }, + "800": { + "value": "#545512" + }, + "900": { + "value": "#2a2b09" + } + }, + "teal": { + "50": { + "value": "#d7faf8" + }, + "100": { + "value": "#aff4f0" + }, + "200": { + "value": "#87efe9" + }, + "300": { + "value": "#5fe9e1" + }, + "400": { + "value": "#36e4da" + }, + "500": { + "value": "#1cd1c6" + }, + "600": { + "value": "#16a79e" + }, + "700": { + "value": "#117d77" + }, + "800": { + "value": "#0b544f" + }, + "900": { + "value": "#062a28" + } + }, + "lightblue": { + "50": { + "value": "#d9f8ff" + }, + "100": { + "value": "#b3f1ff" + }, + "200": { + "value": "#8deaff" + }, + "300": { + "value": "#66e4ff" + }, + "400": { + "value": "#40ddff" + }, + "500": { + "value": "#1ad6ff" + }, + "600": { + "value": "#00b9e1" + }, + "700": { + "value": "#008aa9" + }, + "800": { + "value": "#005c70" + }, + "900": { + "value": "#002e38" + } + }, + "blue": { + "50": { + "value": "#d9f1ff" + }, + "100": { + "value": "#b3e4ff" + }, + "200": { + "value": "#8dd6ff" + }, + "300": { + "value": "#66c8ff" + }, + "400": { + "value": "#40bbff" + }, + "500": { + "value": "#1aadff" + }, + "600": { + "value": "#0090e1" + }, + "700": { + "value": "#006ca9" + }, + "800": { + "value": "#004870" + }, + "900": { + "value": "#002438" + } + }, + "indigoblue": { + "50": { + "value": "#d9e5ff" + }, + "100": { + "value": "#b3cbff" + }, + "200": { + "value": "#8db0ff" + }, + "300": { + "value": "#6696ff" + }, + "400": { + "value": "#407cff" + }, + "500": { + "value": "#1a62ff" + }, + "600": { + "value": "#0047e1" + }, + "700": { + "value": "#0035a9" + }, + "800": { + "value": "#002370" + }, + "900": { + "value": "#001238" + } + }, + "royalblue": { + "50": { + "value": "#dfdbfb" + }, + "100": { + "value": "#c0b7f7" + }, + "200": { + "value": "#a093f3" + }, + "300": { + "value": "#806ff0" + }, + "400": { + "value": "#614bec" + }, + "500": { + "value": "#4127e8" + }, + "600": { + "value": "#2c15c4" + }, + "700": { + "value": "#211093" + }, + "800": { + "value": "#160a62" + }, + "900": { + "value": "#0b0531" + } + }, + "purple": { + "50": { + "value": "#ead9ff" + }, + "100": { + "value": "#d5b3ff" + }, + "200": { + "value": "#c08dff" + }, + "300": { + "value": "#ab66ff" + }, + "400": { + "value": "#9640ff" + }, + "500": { + "value": "#811aff" + }, + "600": { + "value": "#6500e1" + }, + "700": { + "value": "#4c00a9" + }, + "800": { + "value": "#330070" + }, + "900": { + "value": "#190038" + } + }, + "pink": { + "50": { + "value": "#ffd9f2" + }, + "100": { + "value": "#ffb3e5" + }, + "200": { + "value": "#ff8dd8" + }, + "300": { + "value": "#ff66cc" + }, + "400": { + "value": "#ff40bf" + }, + "500": { + "value": "#ff1ab2" + }, + "600": { + "value": "#e10095" + }, + "700": { + "value": "#a90070" + }, + "800": { + "value": "#70004b" + }, + "900": { + "value": "#380025" + } + }, + "ruby": { + "50": { + "value": "#ffd9e4" + }, + "100": { + "value": "#ffb3c9" + }, + "200": { + "value": "#ff8dae" + }, + "300": { + "value": "#ff6694" + }, + "400": { + "value": "#ff4079" + }, + "500": { + "value": "#ff1a5e" + }, + "600": { + "value": "#e10043" + }, + "700": { + "value": "#a90032" + }, + "800": { + "value": "#700021" + }, + "900": { + "value": "#380011" + } + } + } + }, + "elements": { + "title": "All the configurable tokens for your Elements.", + "tags": [ + "@studioIcon uiw:component" + ], + "id": "#tokensConfig/elements", + "properties": { + "text": { + "id": "#tokensConfig/elements/text", + "properties": { + "primary": { + "id": "#tokensConfig/elements/text/primary", + "properties": { + "color": { + "id": "#tokensConfig/elements/text/primary/color", + "properties": { + "static": { + "id": "#tokensConfig/elements/text/primary/color/static", + "properties": { + "value": { + "id": "#tokensConfig/elements/text/primary/color/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/text/primary/color/static/value/initial", + "default": "{color.gray.900}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/text/primary/color/static/value/dark", + "default": "{color.gray.50}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + } + }, + "hover": { + "id": "#tokensConfig/elements/text/primary/color/hover", + "type": "any", + "default": {} + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + } + }, + "type": "object", + "default": { + "color": { + "static": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/text/secondary", + "properties": { + "color": { + "id": "#tokensConfig/elements/text/secondary/color", + "properties": { + "static": { + "id": "#tokensConfig/elements/text/secondary/color/static", + "properties": { + "value": { + "id": "#tokensConfig/elements/text/secondary/color/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/text/secondary/color/static/value/initial", + "default": "{color.gray.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/text/secondary/color/static/value/dark", + "default": "{color.gray.400}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + } + }, + "hover": { + "id": "#tokensConfig/elements/text/secondary/color/hover", + "properties": { + "value": { + "id": "#tokensConfig/elements/text/secondary/color/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/text/secondary/color/hover/value/initial", + "default": "{color.gray.700}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/text/secondary/color/hover/value/dark", + "default": "{color.gray.200}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "static": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + } + }, + "type": "object", + "default": { + "primary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + }, + "secondary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + } + }, + "container": { + "title": "Main container sizings.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon material-symbols:width-full-outline" + ], + "id": "#tokensConfig/elements/container", + "properties": { + "maxWidth": { + "id": "#tokensConfig/elements/container/maxWidth", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/elements/container/maxWidth/value", + "default": "80rem" + } + }, + "type": "object", + "default": { + "value": "80rem" + } + }, + "padding": { + "id": "#tokensConfig/elements/container/padding", + "properties": { + "mobile": { + "id": "#tokensConfig/elements/container/padding/mobile", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/elements/container/padding/mobile/value", + "default": "{space.4}" + } + }, + "type": "object", + "default": { + "value": "{space.4}" + } + }, + "xs": { + "id": "#tokensConfig/elements/container/padding/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/elements/container/padding/xs/value", + "default": "{space.4}" + } + }, + "type": "object", + "default": { + "value": "{space.4}" + } + }, + "sm": { + "id": "#tokensConfig/elements/container/padding/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/elements/container/padding/sm/value", + "default": "{space.6}" + } + }, + "type": "object", + "default": { + "value": "{space.6}" + } + }, + "md": { + "id": "#tokensConfig/elements/container/padding/md", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/elements/container/padding/md/value", + "default": "{space.6}" + } + }, + "type": "object", + "default": { + "value": "{space.6}" + } + } + }, + "type": "object", + "default": { + "mobile": { + "value": "{space.4}" + }, + "xs": { + "value": "{space.4}" + }, + "sm": { + "value": "{space.6}" + }, + "md": { + "value": "{space.6}" + } + } + } + }, + "type": "object", + "default": { + "maxWidth": { + "value": "80rem" + }, + "padding": { + "mobile": { + "value": "{space.4}" + }, + "xs": { + "value": "{space.4}" + }, + "sm": { + "value": "{space.6}" + }, + "md": { + "value": "{space.6}" + } + } + } + }, + "backdrop": { + "title": "Backdrops used in Elements.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon material-symbols:blur-circular" + ], + "id": "#tokensConfig/elements/backdrop", + "properties": { + "filter": { + "id": "#tokensConfig/elements/backdrop/filter", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/elements/backdrop/filter/value", + "default": "saturate(200%) blur(20px)" + } + }, + "type": "object", + "default": { + "value": "saturate(200%) blur(20px)" + } + }, + "background": { + "id": "#tokensConfig/elements/backdrop/background", + "properties": { + "value": { + "id": "#tokensConfig/elements/backdrop/background/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/backdrop/background/value/initial", + "default": "#fffc" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/backdrop/background/value/dark", + "default": "#0c0d0ccc" + } + }, + "type": "object", + "default": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + } + }, + "type": "object", + "default": { + "filter": { + "value": "saturate(200%) blur(20px)" + }, + "background": { + "value": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + } + }, + "border": { + "title": "Borders used in Elements.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon material-symbols:border-all-outline-rounded" + ], + "id": "#tokensConfig/elements/border", + "properties": { + "primary": { + "id": "#tokensConfig/elements/border/primary", + "properties": { + "static": { + "id": "#tokensConfig/elements/border/primary/static", + "properties": { + "value": { + "id": "#tokensConfig/elements/border/primary/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/border/primary/static/value/initial", + "default": "{color.gray.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/border/primary/static/value/dark", + "default": "{color.gray.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + }, + "hover": { + "id": "#tokensConfig/elements/border/primary/hover", + "properties": { + "value": { + "id": "#tokensConfig/elements/border/primary/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/border/primary/hover/value/initial", + "default": "{color.gray.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/border/primary/hover/value/dark", + "default": "{color.gray.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/border/secondary", + "properties": { + "static": { + "id": "#tokensConfig/elements/border/secondary/static", + "properties": { + "value": { + "id": "#tokensConfig/elements/border/secondary/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/border/secondary/static/value/initial", + "default": "{color.gray.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/border/secondary/static/value/dark", + "default": "{color.gray.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "hover": { + "id": "#tokensConfig/elements/border/secondary/hover", + "properties": { + "value": { + "id": "#tokensConfig/elements/border/secondary/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/border/secondary/hover/value/initial", + "default": "" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/border/secondary/hover/value/dark", + "default": "" + } + }, + "type": "object", + "default": { + "initial": "", + "dark": "" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "", + "dark": "" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + }, + "hover": { + "value": { + "initial": "", + "dark": "" + } + } + } + } + }, + "type": "object", + "default": { + "primary": { + "static": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "secondary": { + "static": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + }, + "hover": { + "value": { + "initial": "", + "dark": "" + } + } + } + } + }, + "surface": { + "title": "Surfaces used in Elements.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon fluent:surface-hub-20-filled" + ], + "id": "#tokensConfig/elements/surface", + "properties": { + "background": { + "id": "#tokensConfig/elements/surface/background", + "properties": { + "base": { + "id": "#tokensConfig/elements/surface/background/base", + "properties": { + "value": { + "id": "#tokensConfig/elements/surface/background/base/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/surface/background/base/value/initial", + "default": "{color.gray.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/surface/background/base/value/dark", + "default": "{color.gray.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + }, + "type": "object", + "default": { + "base": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + } + }, + "type": "object", + "default": { + "background": { + "base": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + } + }, + "state": { + "title": "Color states used in Elements.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon mdi:palette-advanced" + ], + "id": "#tokensConfig/elements/state", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/primary", + "properties": { + "color": { + "id": "#tokensConfig/elements/state/primary/color", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/primary/color/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/primary/color/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/color/primary/value/initial", + "default": "{color.primary.600}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/color/primary/value/dark", + "default": "{color.primary.400}" + } + }, + "type": "object", + "default": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/primary/color/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/primary/color/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/color/secondary/value/initial", + "default": "{color.primary.700}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/color/secondary/value/dark", + "default": "{color.primary.200}" + } + }, + "type": "object", + "default": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/elements/state/primary/backgroundColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/primary/backgroundColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/primary/backgroundColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial", + "default": "{color.primary.50}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark", + "default": "{color.primary.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial", + "default": "{color.primary.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark", + "default": "{color.primary.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + } + }, + "borderColor": { + "id": "#tokensConfig/elements/state/primary/borderColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/primary/borderColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/primary/borderColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/borderColor/primary/value/initial", + "default": "{color.primary.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/borderColor/primary/value/dark", + "default": "{color.primary.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/primary/borderColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/primary/borderColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/borderColor/secondary/value/initial", + "default": "{color.primary.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/primary/borderColor/secondary/value/dark", + "default": "{color.primary.700}" + } + }, + "type": "object", + "default": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "primary": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + } + }, + "info": { + "id": "#tokensConfig/elements/state/info", + "properties": { + "color": { + "id": "#tokensConfig/elements/state/info/color", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/info/color/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/info/color/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/info/color/primary/value/initial", + "default": "{color.blue.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/info/color/primary/value/dark", + "default": "{color.blue.400}" + } + }, + "type": "object", + "default": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/info/color/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/info/color/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/info/color/secondary/value/initial", + "default": "{color.blue.600}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/info/color/secondary/value/dark", + "default": "{color.blue.200}" + } + }, + "type": "object", + "default": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/elements/state/info/backgroundColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/info/backgroundColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/info/backgroundColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/info/backgroundColor/primary/value/initial", + "default": "{color.blue.50}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/info/backgroundColor/primary/value/dark", + "default": "{color.blue.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/info/backgroundColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/info/backgroundColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial", + "default": "{color.blue.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark", + "default": "{color.blue.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + } + }, + "borderColor": { + "id": "#tokensConfig/elements/state/info/borderColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/info/borderColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/info/borderColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/info/borderColor/primary/value/initial", + "default": "{color.blue.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/info/borderColor/primary/value/dark", + "default": "{color.blue.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/info/borderColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/info/borderColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/info/borderColor/secondary/value/initial", + "default": "{color.blue.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/info/borderColor/secondary/value/dark", + "default": "{color.blue.700}" + } + }, + "type": "object", + "default": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "primary": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + } + }, + "success": { + "id": "#tokensConfig/elements/state/success", + "properties": { + "color": { + "id": "#tokensConfig/elements/state/success/color", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/success/color/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/success/color/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/success/color/primary/value/initial", + "default": "{color.green.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/success/color/primary/value/dark", + "default": "{color.green.400}" + } + }, + "type": "object", + "default": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/success/color/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/success/color/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/success/color/secondary/value/initial", + "default": "{color.green.600}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/success/color/secondary/value/dark", + "default": "{color.green.200}" + } + }, + "type": "object", + "default": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/elements/state/success/backgroundColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/success/backgroundColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/success/backgroundColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/success/backgroundColor/primary/value/initial", + "default": "{color.green.50}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/success/backgroundColor/primary/value/dark", + "default": "{color.green.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/success/backgroundColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/success/backgroundColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial", + "default": "{color.green.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark", + "default": "{color.green.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + } + }, + "borderColor": { + "id": "#tokensConfig/elements/state/success/borderColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/success/borderColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/success/borderColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/success/borderColor/primary/value/initial", + "default": "{color.green.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/success/borderColor/primary/value/dark", + "default": "{color.green.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/success/borderColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/success/borderColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/success/borderColor/secondary/value/initial", + "default": "{color.green.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/success/borderColor/secondary/value/dark", + "default": "{color.green.700}" + } + }, + "type": "object", + "default": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "primary": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + } + }, + "warning": { + "id": "#tokensConfig/elements/state/warning", + "properties": { + "color": { + "id": "#tokensConfig/elements/state/warning/color", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/warning/color/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/warning/color/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/color/primary/value/initial", + "default": "{color.yellow.600}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/color/primary/value/dark", + "default": "{color.yellow.400}" + } + }, + "type": "object", + "default": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/warning/color/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/warning/color/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/color/secondary/value/initial", + "default": "{color.yellow.700}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/color/secondary/value/dark", + "default": "{color.yellow.200}" + } + }, + "type": "object", + "default": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/elements/state/warning/backgroundColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/warning/backgroundColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/warning/backgroundColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial", + "default": "{color.yellow.50}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark", + "default": "{color.yellow.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial", + "default": "{color.yellow.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark", + "default": "{color.yellow.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + } + }, + "borderColor": { + "id": "#tokensConfig/elements/state/warning/borderColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/warning/borderColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/warning/borderColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/borderColor/primary/value/initial", + "default": "{color.yellow.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/borderColor/primary/value/dark", + "default": "{color.yellow.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/warning/borderColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/warning/borderColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/borderColor/secondary/value/initial", + "default": "{color.yellow.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/warning/borderColor/secondary/value/dark", + "default": "{color.yellow.700}" + } + }, + "type": "object", + "default": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "primary": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + } + }, + "danger": { + "id": "#tokensConfig/elements/state/danger", + "properties": { + "color": { + "id": "#tokensConfig/elements/state/danger/color", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/danger/color/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/danger/color/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/color/primary/value/initial", + "default": "{color.red.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/color/primary/value/dark", + "default": "{color.red.300}" + } + }, + "type": "object", + "default": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/danger/color/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/danger/color/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/color/secondary/value/initial", + "default": "{color.red.600}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/color/secondary/value/dark", + "default": "{color.red.200}" + } + }, + "type": "object", + "default": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/elements/state/danger/backgroundColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/danger/backgroundColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/danger/backgroundColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial", + "default": "{color.red.50}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark", + "default": "{color.red.900}" + } + }, + "type": "object", + "default": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial", + "default": "{color.red.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark", + "default": "{color.red.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + } + }, + "borderColor": { + "id": "#tokensConfig/elements/state/danger/borderColor", + "properties": { + "primary": { + "id": "#tokensConfig/elements/state/danger/borderColor/primary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/danger/borderColor/primary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/borderColor/primary/value/initial", + "default": "{color.red.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/borderColor/primary/value/dark", + "default": "{color.red.800}" + } + }, + "type": "object", + "default": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "secondary": { + "id": "#tokensConfig/elements/state/danger/borderColor/secondary", + "properties": { + "value": { + "id": "#tokensConfig/elements/state/danger/borderColor/secondary/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/borderColor/secondary/value/initial", + "default": "{color.red.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/elements/state/danger/borderColor/secondary/value/dark", + "default": "{color.red.700}" + } + }, + "type": "object", + "default": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "primary": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + } + }, + "type": "object", + "default": { + "primary": { + "color": { + "primary": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + }, + "info": { + "color": { + "primary": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + }, + "success": { + "color": { + "primary": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + }, + "warning": { + "color": { + "primary": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + }, + "danger": { + "color": { + "primary": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + } + } + }, + "type": "object", + "default": { + "text": { + "primary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + }, + "secondary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + }, + "container": { + "maxWidth": { + "value": "80rem" + }, + "padding": { + "mobile": { + "value": "{space.4}" + }, + "xs": { + "value": "{space.4}" + }, + "sm": { + "value": "{space.6}" + }, + "md": { + "value": "{space.6}" + } + } + }, + "backdrop": { + "filter": { + "value": "saturate(200%) blur(20px)" + }, + "background": { + "value": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + }, + "border": { + "primary": { + "static": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "secondary": { + "static": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + }, + "hover": { + "value": { + "initial": "", + "dark": "" + } + } + } + }, + "surface": { + "background": { + "base": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + }, + "state": { + "primary": { + "color": { + "primary": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + }, + "info": { + "color": { + "primary": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + }, + "success": { + "color": { + "primary": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + }, + "warning": { + "color": { + "primary": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + }, + "danger": { + "color": { + "primary": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + } + } + }, + "typography": { + "title": "All the configurable tokens for your Typography.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon material-symbols:article" + ], + "id": "#tokensConfig/typography", + "properties": { + "verticalMargin": { + "title": "Vertical spacings between paragraphs.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon mingcute:line-height-line" + ], + "id": "#tokensConfig/typography/verticalMargin", + "properties": { + "sm": { + "id": "#tokensConfig/typography/verticalMargin/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/verticalMargin/sm/value", + "default": "16px" + } + }, + "type": "object", + "default": { + "value": "16px" + } + }, + "base": { + "id": "#tokensConfig/typography/verticalMargin/base", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/verticalMargin/base/value", + "default": "32px" + } + }, + "type": "object", + "default": { + "value": "32px" + } + } + }, + "type": "object", + "default": { + "sm": { + "value": "16px" + }, + "base": { + "value": "32px" + } + } + }, + "letterSpacing": { + "title": "Horizontal spacings between letters.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon mingcute:letter-spacing-line" + ], + "id": "#tokensConfig/typography/letterSpacing", + "properties": { + "tight": { + "id": "#tokensConfig/typography/letterSpacing/tight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/letterSpacing/tight/value", + "default": "-0.025em" + } + }, + "type": "object", + "default": { + "value": "-0.025em" + } + }, + "wide": { + "id": "#tokensConfig/typography/letterSpacing/wide", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/letterSpacing/wide/value", + "default": "0.025em" + } + }, + "type": "object", + "default": { + "value": "0.025em" + } + } + }, + "type": "object", + "default": { + "tight": { + "value": "-0.025em" + }, + "wide": { + "value": "0.025em" + } + } + }, + "fontSize": { + "title": "Horizontal spacings between letters.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font-size", + "@studioIcon mingcute:font-size-fill" + ], + "id": "#tokensConfig/typography/fontSize", + "properties": { + "xs": { + "id": "#tokensConfig/typography/fontSize/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/xs/value", + "default": "12px" + } + }, + "type": "object", + "default": { + "value": "12px" + } + }, + "sm": { + "id": "#tokensConfig/typography/fontSize/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/sm/value", + "default": "14px" + } + }, + "type": "object", + "default": { + "value": "14px" + } + }, + "base": { + "id": "#tokensConfig/typography/fontSize/base", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/base/value", + "default": "16px" + } + }, + "type": "object", + "default": { + "value": "16px" + } + }, + "lg": { + "id": "#tokensConfig/typography/fontSize/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/lg/value", + "default": "18px" + } + }, + "type": "object", + "default": { + "value": "18px" + } + }, + "xl": { + "id": "#tokensConfig/typography/fontSize/xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/xl/value", + "default": "20px" + } + }, + "type": "object", + "default": { + "value": "20px" + } + }, + "2xl": { + "id": "#tokensConfig/typography/fontSize/2xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/2xl/value", + "default": "24px" + } + }, + "type": "object", + "default": { + "value": "24px" + } + }, + "3xl": { + "id": "#tokensConfig/typography/fontSize/3xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/3xl/value", + "default": "30px" + } + }, + "type": "object", + "default": { + "value": "30px" + } + }, + "4xl": { + "id": "#tokensConfig/typography/fontSize/4xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/4xl/value", + "default": "36px" + } + }, + "type": "object", + "default": { + "value": "36px" + } + }, + "5xl": { + "id": "#tokensConfig/typography/fontSize/5xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/5xl/value", + "default": "48px" + } + }, + "type": "object", + "default": { + "value": "48px" + } + }, + "6xl": { + "id": "#tokensConfig/typography/fontSize/6xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/6xl/value", + "default": "60px" + } + }, + "type": "object", + "default": { + "value": "60px" + } + }, + "7xl": { + "id": "#tokensConfig/typography/fontSize/7xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/7xl/value", + "default": "72px" + } + }, + "type": "object", + "default": { + "value": "72px" + } + }, + "8xl": { + "id": "#tokensConfig/typography/fontSize/8xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/8xl/value", + "default": "96px" + } + }, + "type": "object", + "default": { + "value": "96px" + } + }, + "9xl": { + "id": "#tokensConfig/typography/fontSize/9xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontSize/9xl/value", + "default": "128px" + } + }, + "type": "object", + "default": { + "value": "128px" + } + } + }, + "type": "object", + "default": { + "xs": { + "value": "12px" + }, + "sm": { + "value": "14px" + }, + "base": { + "value": "16px" + }, + "lg": { + "value": "18px" + }, + "xl": { + "value": "20px" + }, + "2xl": { + "value": "24px" + }, + "3xl": { + "value": "30px" + }, + "4xl": { + "value": "36px" + }, + "5xl": { + "value": "48px" + }, + "6xl": { + "value": "60px" + }, + "7xl": { + "value": "72px" + }, + "8xl": { + "value": "96px" + }, + "9xl": { + "value": "128px" + } + } + }, + "fontWeight": { + "title": "Font weights used in typography.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font-size", + "@studioIcon mingcute:bold-fill" + ], + "id": "#tokensConfig/typography/fontWeight", + "properties": { + "thin": { + "id": "#tokensConfig/typography/fontWeight/thin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/thin/value", + "default": "100" + } + }, + "type": "object", + "default": { + "value": "100" + } + }, + "extralight": { + "id": "#tokensConfig/typography/fontWeight/extralight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/extralight/value", + "default": "200" + } + }, + "type": "object", + "default": { + "value": "200" + } + }, + "light": { + "id": "#tokensConfig/typography/fontWeight/light", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/light/value", + "default": "300" + } + }, + "type": "object", + "default": { + "value": "300" + } + }, + "normal": { + "id": "#tokensConfig/typography/fontWeight/normal", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/normal/value", + "default": "400" + } + }, + "type": "object", + "default": { + "value": "400" + } + }, + "medium": { + "id": "#tokensConfig/typography/fontWeight/medium", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/medium/value", + "default": "500" + } + }, + "type": "object", + "default": { + "value": "500" + } + }, + "semibold": { + "id": "#tokensConfig/typography/fontWeight/semibold", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/semibold/value", + "default": "600" + } + }, + "type": "object", + "default": { + "value": "600" + } + }, + "bold": { + "id": "#tokensConfig/typography/fontWeight/bold", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/bold/value", + "default": "700" + } + }, + "type": "object", + "default": { + "value": "700" + } + }, + "extrabold": { + "id": "#tokensConfig/typography/fontWeight/extrabold", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/extrabold/value", + "default": "800" + } + }, + "type": "object", + "default": { + "value": "800" + } + }, + "black": { + "id": "#tokensConfig/typography/fontWeight/black", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/fontWeight/black/value", + "default": "900" + } + }, + "type": "object", + "default": { + "value": "900" + } + } + }, + "type": "object", + "default": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + } + }, + "lead": { + "title": "Line heights used in your typography.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font-size", + "@studioIcon material-symbols:height-rounded" + ], + "id": "#tokensConfig/typography/lead", + "properties": { + "none": { + "id": "#tokensConfig/typography/lead/none", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/lead/none/value", + "default": "1" + } + }, + "type": "object", + "default": { + "value": "1" + } + }, + "tight": { + "id": "#tokensConfig/typography/lead/tight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/lead/tight/value", + "default": "1.25" + } + }, + "type": "object", + "default": { + "value": "1.25" + } + }, + "snug": { + "id": "#tokensConfig/typography/lead/snug", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/lead/snug/value", + "default": "1.375" + } + }, + "type": "object", + "default": { + "value": "1.375" + } + }, + "normal": { + "id": "#tokensConfig/typography/lead/normal", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/lead/normal/value", + "default": "1.5" + } + }, + "type": "object", + "default": { + "value": "1.5" + } + }, + "relaxed": { + "id": "#tokensConfig/typography/lead/relaxed", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/lead/relaxed/value", + "default": "1.625" + } + }, + "type": "object", + "default": { + "value": "1.625" + } + }, + "loose": { + "id": "#tokensConfig/typography/lead/loose", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/lead/loose/value", + "default": "2" + } + }, + "type": "object", + "default": { + "value": "2" + } + } + }, + "type": "object", + "default": { + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + } + }, + "font": { + "title": "Your typography fonts", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font", + "@studioIcon material-symbols:font-download-rounded" + ], + "id": "#tokensConfig/typography/font", + "properties": { + "display": { + "id": "#tokensConfig/typography/font/display", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/font/display/value", + "default": "{font.sans}" + } + }, + "type": "object", + "default": { + "value": "{font.sans}" + } + }, + "body": { + "id": "#tokensConfig/typography/font/body", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/font/body/value", + "default": "{font.sans}" + } + }, + "type": "object", + "default": { + "value": "{font.sans}" + } + }, + "code": { + "id": "#tokensConfig/typography/font/code", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/font/code/value", + "default": "{font.mono}" + } + }, + "type": "object", + "default": { + "value": "{font.mono}" + } + } + }, + "type": "object", + "default": { + "display": { + "value": "{font.sans}" + }, + "body": { + "value": "{font.sans}" + }, + "code": { + "value": "{font.mono}" + } + } + }, + "color": { + "title": "Your typography color palette.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon ph:palette" + ], + "id": "#tokensConfig/typography/color", + "properties": { + "primary": { + "id": "#tokensConfig/typography/color/primary", + "properties": { + "50": { + "id": "#tokensConfig/typography/color/primary/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/50/value", + "default": "{color.primary.50}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.50}" + } + }, + "100": { + "id": "#tokensConfig/typography/color/primary/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/100/value", + "default": "{color.primary.100}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.100}" + } + }, + "200": { + "id": "#tokensConfig/typography/color/primary/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/200/value", + "default": "{color.primary.200}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.200}" + } + }, + "300": { + "id": "#tokensConfig/typography/color/primary/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/300/value", + "default": "{color.primary.300}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.300}" + } + }, + "400": { + "id": "#tokensConfig/typography/color/primary/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/400/value", + "default": "{color.primary.400}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.400}" + } + }, + "500": { + "id": "#tokensConfig/typography/color/primary/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/500/value", + "default": "{color.primary.500}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.500}" + } + }, + "600": { + "id": "#tokensConfig/typography/color/primary/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/600/value", + "default": "{color.primary.600}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.600}" + } + }, + "700": { + "id": "#tokensConfig/typography/color/primary/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/700/value", + "default": "{color.primary.700}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.700}" + } + }, + "800": { + "id": "#tokensConfig/typography/color/primary/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/800/value", + "default": "{color.primary.800}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.800}" + } + }, + "900": { + "id": "#tokensConfig/typography/color/primary/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/primary/900/value", + "default": "{color.primary.900}" + } + }, + "type": "object", + "default": { + "value": "{color.primary.900}" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "{color.primary.50}" + }, + "100": { + "value": "{color.primary.100}" + }, + "200": { + "value": "{color.primary.200}" + }, + "300": { + "value": "{color.primary.300}" + }, + "400": { + "value": "{color.primary.400}" + }, + "500": { + "value": "{color.primary.500}" + }, + "600": { + "value": "{color.primary.600}" + }, + "700": { + "value": "{color.primary.700}" + }, + "800": { + "value": "{color.primary.800}" + }, + "900": { + "value": "{color.primary.900}" + } + } + }, + "secondary": { + "id": "#tokensConfig/typography/color/secondary", + "properties": { + "50": { + "id": "#tokensConfig/typography/color/secondary/50", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/50/value", + "default": "{color.gray.50}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.50}" + } + }, + "100": { + "id": "#tokensConfig/typography/color/secondary/100", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/100/value", + "default": "{color.gray.100}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.100}" + } + }, + "200": { + "id": "#tokensConfig/typography/color/secondary/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/200/value", + "default": "{color.gray.200}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.200}" + } + }, + "300": { + "id": "#tokensConfig/typography/color/secondary/300", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/300/value", + "default": "{color.gray.300}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.300}" + } + }, + "400": { + "id": "#tokensConfig/typography/color/secondary/400", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/400/value", + "default": "{color.gray.400}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.400}" + } + }, + "500": { + "id": "#tokensConfig/typography/color/secondary/500", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/500/value", + "default": "{color.gray.500}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.500}" + } + }, + "600": { + "id": "#tokensConfig/typography/color/secondary/600", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/600/value", + "default": "{color.gray.600}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.600}" + } + }, + "700": { + "id": "#tokensConfig/typography/color/secondary/700", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/700/value", + "default": "{color.gray.700}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.700}" + } + }, + "800": { + "id": "#tokensConfig/typography/color/secondary/800", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/800/value", + "default": "{color.gray.800}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.800}" + } + }, + "900": { + "id": "#tokensConfig/typography/color/secondary/900", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/typography/color/secondary/900/value", + "default": "{color.gray.900}" + } + }, + "type": "object", + "default": { + "value": "{color.gray.900}" + } + } + }, + "type": "object", + "default": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + } + } + }, + "type": "object", + "default": { + "primary": { + "50": { + "value": "{color.primary.50}" + }, + "100": { + "value": "{color.primary.100}" + }, + "200": { + "value": "{color.primary.200}" + }, + "300": { + "value": "{color.primary.300}" + }, + "400": { + "value": "{color.primary.400}" + }, + "500": { + "value": "{color.primary.500}" + }, + "600": { + "value": "{color.primary.600}" + }, + "700": { + "value": "{color.primary.700}" + }, + "800": { + "value": "{color.primary.800}" + }, + "900": { + "value": "{color.primary.900}" + } + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + } + } + } + }, + "type": "object", + "default": { + "verticalMargin": { + "sm": { + "value": "16px" + }, + "base": { + "value": "32px" + } + }, + "letterSpacing": { + "tight": { + "value": "-0.025em" + }, + "wide": { + "value": "0.025em" + } + }, + "fontSize": { + "xs": { + "value": "12px" + }, + "sm": { + "value": "14px" + }, + "base": { + "value": "16px" + }, + "lg": { + "value": "18px" + }, + "xl": { + "value": "20px" + }, + "2xl": { + "value": "24px" + }, + "3xl": { + "value": "30px" + }, + "4xl": { + "value": "36px" + }, + "5xl": { + "value": "48px" + }, + "6xl": { + "value": "60px" + }, + "7xl": { + "value": "72px" + }, + "8xl": { + "value": "96px" + }, + "9xl": { + "value": "128px" + } + }, + "fontWeight": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + }, + "lead": { + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + }, + "font": { + "display": { + "value": "{font.sans}" + }, + "body": { + "value": "{font.sans}" + }, + "code": { + "value": "{font.mono}" + } + }, + "color": { + "primary": { + "50": { + "value": "{color.primary.50}" + }, + "100": { + "value": "{color.primary.100}" + }, + "200": { + "value": "{color.primary.200}" + }, + "300": { + "value": "{color.primary.300}" + }, + "400": { + "value": "{color.primary.400}" + }, + "500": { + "value": "{color.primary.500}" + }, + "600": { + "value": "{color.primary.600}" + }, + "700": { + "value": "{color.primary.700}" + }, + "800": { + "value": "{color.primary.800}" + }, + "900": { + "value": "{color.primary.900}" + } + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + } + } + } + }, + "prose": { + "title": "All the configurable tokens for your Prose components.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font-size", + "@studioIcon lucide:component" + ], + "id": "#tokensConfig/prose", + "properties": { + "p": { + "id": "#tokensConfig/prose/p", + "properties": { + "fontSize": { + "id": "#tokensConfig/prose/p/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/p/fontSize/value", + "default": "{typography.fontSize.base}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.base}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/p/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/p/lineHeight/value", + "default": "{typography.lead.normal}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.normal}" + } + }, + "margin": { + "id": "#tokensConfig/prose/p/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/p/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "br": { + "id": "#tokensConfig/prose/p/br", + "properties": { + "margin": { + "id": "#tokensConfig/prose/p/br/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/p/br/margin/value", + "default": "{typography.verticalMargin.base} 0 0 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0 0 0" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "{typography.verticalMargin.base} 0 0 0" + } + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{typography.fontSize.base}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "br": { + "margin": { + "value": "{typography.verticalMargin.base} 0 0 0" + } + } + } + }, + "h1": { + "id": "#tokensConfig/prose/h1", + "properties": { + "margin": { + "id": "#tokensConfig/prose/h1/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h1/margin/value", + "default": "0 0 2rem" + } + }, + "type": "object", + "default": { + "value": "0 0 2rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/h1/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h1/fontSize/value", + "default": "{typography.fontSize.5xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.5xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/h1/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h1/lineHeight/value", + "default": "{typography.lead.tight}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.tight}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/h1/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h1/fontWeight/value", + "default": "{typography.fontWeight.bold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.bold}" + } + }, + "letterSpacing": { + "id": "#tokensConfig/prose/h1/letterSpacing", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h1/letterSpacing/value", + "default": "{typography.letterSpacing.tight}" + } + }, + "type": "object", + "default": { + "value": "{typography.letterSpacing.tight}" + } + }, + "iconSize": { + "id": "#tokensConfig/prose/h1/iconSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h1/iconSize/value", + "default": "{typography.fontSize.3xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.3xl}" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "0 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.5xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.bold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.3xl}" + } + } + }, + "h2": { + "id": "#tokensConfig/prose/h2", + "properties": { + "margin": { + "id": "#tokensConfig/prose/h2/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h2/margin/value", + "default": "3rem 0 2rem" + } + }, + "type": "object", + "default": { + "value": "3rem 0 2rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/h2/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h2/fontSize/value", + "default": "{typography.fontSize.4xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.4xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/h2/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h2/lineHeight/value", + "default": "{typography.lead.tight}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.tight}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/h2/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h2/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + }, + "letterSpacing": { + "id": "#tokensConfig/prose/h2/letterSpacing", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h2/letterSpacing/value", + "default": "{typography.letterSpacing.tight}" + } + }, + "type": "object", + "default": { + "value": "{typography.letterSpacing.tight}" + } + }, + "iconSize": { + "id": "#tokensConfig/prose/h2/iconSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h2/iconSize/value", + "default": "{typography.fontSize.2xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.2xl}" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.4xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.2xl}" + } + } + }, + "h3": { + "id": "#tokensConfig/prose/h3", + "properties": { + "margin": { + "id": "#tokensConfig/prose/h3/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h3/margin/value", + "default": "3rem 0 2rem" + } + }, + "type": "object", + "default": { + "value": "3rem 0 2rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/h3/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h3/fontSize/value", + "default": "{typography.fontSize.3xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.3xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/h3/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h3/lineHeight/value", + "default": "{typography.lead.snug}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.snug}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/h3/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h3/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + }, + "letterSpacing": { + "id": "#tokensConfig/prose/h3/letterSpacing", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h3/letterSpacing/value", + "default": "{typography.letterSpacing.tight}" + } + }, + "type": "object", + "default": { + "value": "{typography.letterSpacing.tight}" + } + }, + "iconSize": { + "id": "#tokensConfig/prose/h3/iconSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h3/iconSize/value", + "default": "{typography.fontSize.xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.xl}" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.3xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.xl}" + } + } + }, + "h4": { + "id": "#tokensConfig/prose/h4", + "properties": { + "margin": { + "id": "#tokensConfig/prose/h4/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h4/margin/value", + "default": "3rem 0 2rem" + } + }, + "type": "object", + "default": { + "value": "3rem 0 2rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/h4/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h4/fontSize/value", + "default": "{typography.fontSize.2xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.2xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/h4/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h4/lineHeight/value", + "default": "{typography.lead.snug}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.snug}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/h4/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h4/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + }, + "letterSpacing": { + "id": "#tokensConfig/prose/h4/letterSpacing", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h4/letterSpacing/value", + "default": "{typography.letterSpacing.tight}" + } + }, + "type": "object", + "default": { + "value": "{typography.letterSpacing.tight}" + } + }, + "iconSize": { + "id": "#tokensConfig/prose/h4/iconSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h4/iconSize/value", + "default": "{typography.fontSize.lg}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.lg}" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.2xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + } + }, + "h5": { + "id": "#tokensConfig/prose/h5", + "properties": { + "margin": { + "id": "#tokensConfig/prose/h5/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h5/margin/value", + "default": "3rem 0 2rem" + } + }, + "type": "object", + "default": { + "value": "3rem 0 2rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/h5/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h5/fontSize/value", + "default": "{typography.fontSize.xl}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/h5/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h5/lineHeight/value", + "default": "{typography.lead.snug}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.snug}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/h5/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h5/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + }, + "iconSize": { + "id": "#tokensConfig/prose/h5/iconSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h5/iconSize/value", + "default": "{typography.fontSize.lg}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.lg}" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + } + }, + "h6": { + "id": "#tokensConfig/prose/h6", + "properties": { + "margin": { + "id": "#tokensConfig/prose/h6/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h6/margin/value", + "default": "3rem 0 2rem" + } + }, + "type": "object", + "default": { + "value": "3rem 0 2rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/h6/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h6/fontSize/value", + "default": "{typography.fontSize.lg}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.lg}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/h6/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h6/lineHeight/value", + "default": "{typography.lead.normal}" + } + }, + "type": "object", + "default": { + "value": "{typography.lead.normal}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/h6/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h6/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + }, + "iconSize": { + "id": "#tokensConfig/prose/h6/iconSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/h6/iconSize/value", + "default": "{typography.fontSize.base}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.base}" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.lg}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.base}" + } + } + }, + "strong": { + "id": "#tokensConfig/prose/strong", + "properties": { + "fontWeight": { + "id": "#tokensConfig/prose/strong/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/strong/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + } + }, + "type": "object", + "default": { + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + } + }, + "img": { + "id": "#tokensConfig/prose/img", + "properties": { + "margin": { + "id": "#tokensConfig/prose/img/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/img/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + } + } + }, + "a": { + "id": "#tokensConfig/prose/a", + "properties": { + "textDecoration": { + "id": "#tokensConfig/prose/a/textDecoration", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/textDecoration/value", + "default": "none" + } + }, + "type": "object", + "default": { + "value": "none" + } + }, + "color": { + "id": "#tokensConfig/prose/a/color", + "properties": { + "static": { + "id": "#tokensConfig/prose/a/color/static", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/color/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/color/static/value/initial", + "default": "inherit" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/color/static/value/dark", + "default": "inherit" + } + }, + "type": "object", + "default": { + "initial": "inherit", + "dark": "inherit" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "inherit", + "dark": "inherit" + } + } + }, + "hover": { + "id": "#tokensConfig/prose/a/color/hover", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/color/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/color/hover/value/initial", + "default": "{typography.color.primary.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/color/hover/value/dark", + "default": "{typography.color.primary.400}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "inherit", + "dark": "inherit" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + } + }, + "border": { + "id": "#tokensConfig/prose/a/border", + "properties": { + "width": { + "id": "#tokensConfig/prose/a/border/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/border/width/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "style": { + "id": "#tokensConfig/prose/a/border/style", + "properties": { + "static": { + "id": "#tokensConfig/prose/a/border/style/static", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/border/style/static/value", + "default": "dashed" + } + }, + "type": "object", + "default": { + "value": "dashed" + } + }, + "hover": { + "id": "#tokensConfig/prose/a/border/style/hover", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/border/style/hover/value", + "default": "solid" + } + }, + "type": "object", + "default": { + "value": "solid" + } + } + }, + "type": "object", + "default": { + "static": { + "value": "dashed" + }, + "hover": { + "value": "solid" + } + } + }, + "color": { + "id": "#tokensConfig/prose/a/border/color", + "properties": { + "static": { + "id": "#tokensConfig/prose/a/border/color/static", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/border/color/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/border/color/static/value/initial", + "default": "currentColor" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/border/color/static/value/dark", + "default": "currentColor" + } + }, + "type": "object", + "default": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "hover": { + "id": "#tokensConfig/prose/a/border/color/hover", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/border/color/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/border/color/hover/value/initial", + "default": "currentColor" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/border/color/hover/value/dark", + "default": "currentColor" + } + }, + "type": "object", + "default": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + } + }, + "distance": { + "id": "#tokensConfig/prose/a/border/distance", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/border/distance/value", + "default": "2px" + } + }, + "type": "object", + "default": { + "value": "2px" + } + } + }, + "type": "object", + "default": { + "width": { + "value": "1px" + }, + "style": { + "static": { + "value": "dashed" + }, + "hover": { + "value": "solid" + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "distance": { + "value": "2px" + } + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/a/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/fontWeight/value", + "default": "{typography.fontWeight.medium}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.medium}" + } + }, + "hasCode": { + "id": "#tokensConfig/prose/a/hasCode", + "properties": { + "borderBottom": { + "id": "#tokensConfig/prose/a/hasCode/borderBottom", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/hasCode/borderBottom/value", + "default": "none" + } + }, + "type": "object", + "default": { + "value": "none" + } + } + }, + "type": "object", + "default": { + "borderBottom": { + "value": "none" + } + } + }, + "code": { + "id": "#tokensConfig/prose/a/code", + "properties": { + "border": { + "id": "#tokensConfig/prose/a/code/border", + "properties": { + "width": { + "id": "#tokensConfig/prose/a/code/border/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/code/border/width/value", + "default": "{prose.a.border.width}" + } + }, + "type": "object", + "default": { + "value": "{prose.a.border.width}" + } + }, + "style": { + "id": "#tokensConfig/prose/a/code/border/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/a/code/border/style/value", + "default": "{prose.a.border.style.static}" + } + }, + "type": "object", + "default": { + "value": "{prose.a.border.style.static}" + } + }, + "color": { + "id": "#tokensConfig/prose/a/code/border/color", + "properties": { + "static": { + "id": "#tokensConfig/prose/a/code/border/color/static", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/code/border/color/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/code/border/color/static/value/initial", + "default": "{typography.color.secondary.400}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/code/border/color/static/value/dark", + "default": "{typography.color.secondary.600}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "hover": { + "id": "#tokensConfig/prose/a/code/border/color/hover", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/code/border/color/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/code/border/color/hover/value/initial", + "default": "{typography.color.primary.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/code/border/color/hover/value/dark", + "default": "{typography.color.primary.600}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + } + }, + "type": "object", + "default": { + "width": { + "value": "{prose.a.border.width}" + }, + "style": { + "value": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + } + }, + "color": { + "id": "#tokensConfig/prose/a/code/color", + "properties": { + "static": { + "id": "#tokensConfig/prose/a/code/color/static", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/code/color/static/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/code/color/static/value/initial", + "default": "currentColor" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/code/color/static/value/dark", + "default": "currentColor" + } + }, + "type": "object", + "default": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "hover": { + "id": "#tokensConfig/prose/a/code/color/hover", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/code/color/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/code/color/hover/value/initial", + "default": "currentColor" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/code/color/hover/value/dark", + "default": "currentColor" + } + }, + "type": "object", + "default": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + } + }, + "type": "object", + "default": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + } + }, + "background": { + "id": "#tokensConfig/prose/a/code/background", + "properties": { + "static": { + "id": "#tokensConfig/prose/a/code/background/static", + "type": "any", + "default": {} + }, + "hover": { + "id": "#tokensConfig/prose/a/code/background/hover", + "properties": { + "value": { + "id": "#tokensConfig/prose/a/code/background/hover/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/a/code/background/hover/value/initial", + "default": "{typography.color.primary.50}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/a/code/background/hover/value/dark", + "default": "{typography.color.primary.900}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + }, + "type": "object", + "default": { + "static": {}, + "hover": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + }, + "type": "object", + "default": { + "border": { + "width": { + "value": "{prose.a.border.width}" + }, + "style": { + "value": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "background": { + "static": {}, + "hover": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + } + }, + "type": "object", + "default": { + "textDecoration": { + "value": "none" + }, + "color": { + "static": { + "value": { + "initial": "inherit", + "dark": "inherit" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "static": { + "value": "dashed" + }, + "hover": { + "value": "solid" + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "distance": { + "value": "2px" + } + }, + "fontWeight": { + "value": "{typography.fontWeight.medium}" + }, + "hasCode": { + "borderBottom": { + "value": "none" + } + }, + "code": { + "border": { + "width": { + "value": "{prose.a.border.width}" + }, + "style": { + "value": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "background": { + "static": {}, + "hover": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + } + }, + "blockquote": { + "id": "#tokensConfig/prose/blockquote", + "properties": { + "margin": { + "id": "#tokensConfig/prose/blockquote/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "padding": { + "id": "#tokensConfig/prose/blockquote/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/padding/value", + "default": "0 0 0 24px" + } + }, + "type": "object", + "default": { + "value": "0 0 0 24px" + } + }, + "quotes": { + "id": "#tokensConfig/prose/blockquote/quotes", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/quotes/value", + "default": "'201C' '201D' '2018' '2019'" + } + }, + "type": "object", + "default": { + "value": "'201C' '201D' '2018' '2019'" + } + }, + "color": { + "id": "#tokensConfig/prose/blockquote/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/blockquote/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/color/value/initial", + "default": "{typography.color.secondary.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/color/value/dark", + "default": "{typography.color.secondary.400}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + } + }, + "border": { + "id": "#tokensConfig/prose/blockquote/border", + "properties": { + "width": { + "id": "#tokensConfig/prose/blockquote/border/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/border/width/value", + "default": "4px" + } + }, + "type": "object", + "default": { + "value": "4px" + } + }, + "style": { + "id": "#tokensConfig/prose/blockquote/border/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/border/style/value", + "default": "solid" + } + }, + "type": "object", + "default": { + "value": "solid" + } + }, + "color": { + "id": "#tokensConfig/prose/blockquote/border/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/blockquote/border/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/border/color/value/initial", + "default": "{typography.color.secondary.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/blockquote/border/color/value/dark", + "default": "{typography.color.secondary.700}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "type": "object", + "default": { + "width": { + "value": "4px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 24px" + }, + "quotes": { + "value": "'201C' '201D' '2018' '2019'" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + }, + "border": { + "width": { + "value": "4px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + } + }, + "ul": { + "id": "#tokensConfig/prose/ul", + "properties": { + "listStyleType": { + "id": "#tokensConfig/prose/ul/listStyleType", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/ul/listStyleType/value", + "default": "disc" + } + }, + "type": "object", + "default": { + "value": "disc" + } + }, + "margin": { + "id": "#tokensConfig/prose/ul/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/ul/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "padding": { + "id": "#tokensConfig/prose/ul/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/ul/padding/value", + "default": "0 0 0 21px" + } + }, + "type": "object", + "default": { + "value": "0 0 0 21px" + } + }, + "li": { + "id": "#tokensConfig/prose/ul/li", + "properties": { + "markerColor": { + "id": "#tokensConfig/prose/ul/li/markerColor", + "properties": { + "value": { + "id": "#tokensConfig/prose/ul/li/markerColor/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/ul/li/markerColor/value/initial", + "default": "{typography.color.secondary.400}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/ul/li/markerColor/value/dark", + "default": "{typography.color.secondary.500}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "type": "object", + "default": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + } + }, + "type": "object", + "default": { + "listStyleType": { + "value": "disc" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + } + }, + "ol": { + "id": "#tokensConfig/prose/ol", + "properties": { + "listStyleType": { + "id": "#tokensConfig/prose/ol/listStyleType", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/ol/listStyleType/value", + "default": "decimal" + } + }, + "type": "object", + "default": { + "value": "decimal" + } + }, + "margin": { + "id": "#tokensConfig/prose/ol/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/ol/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "padding": { + "id": "#tokensConfig/prose/ol/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/ol/padding/value", + "default": "0 0 0 21px" + } + }, + "type": "object", + "default": { + "value": "0 0 0 21px" + } + }, + "li": { + "id": "#tokensConfig/prose/ol/li", + "properties": { + "markerColor": { + "id": "#tokensConfig/prose/ol/li/markerColor", + "properties": { + "value": { + "id": "#tokensConfig/prose/ol/li/markerColor/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/ol/li/markerColor/value/initial", + "default": "{typography.color.secondary.500}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/ol/li/markerColor/value/dark", + "default": "{typography.color.secondary.500}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "type": "object", + "default": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + } + }, + "type": "object", + "default": { + "listStyleType": { + "value": "decimal" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + } + }, + "li": { + "id": "#tokensConfig/prose/li", + "properties": { + "margin": { + "id": "#tokensConfig/prose/li/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/li/margin/value", + "default": "{typography.verticalMargin.sm} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.sm} 0" + } + }, + "listStylePosition": { + "id": "#tokensConfig/prose/li/listStylePosition", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/li/listStylePosition/value", + "default": "outside" + } + }, + "type": "object", + "default": { + "value": "outside" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "{typography.verticalMargin.sm} 0" + }, + "listStylePosition": { + "value": "outside" + } + } + }, + "hr": { + "id": "#tokensConfig/prose/hr", + "properties": { + "margin": { + "id": "#tokensConfig/prose/hr/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/hr/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "style": { + "id": "#tokensConfig/prose/hr/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/hr/style/value", + "default": "solid" + } + }, + "type": "object", + "default": { + "value": "solid" + } + }, + "width": { + "id": "#tokensConfig/prose/hr/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/hr/width/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "color": { + "id": "#tokensConfig/prose/hr/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/hr/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/hr/color/value/initial", + "default": "{typography.color.secondary.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/hr/color/value/dark", + "default": "{typography.color.secondary.800}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "style": { + "value": "solid" + }, + "width": { + "value": "1px" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + } + }, + "table": { + "id": "#tokensConfig/prose/table", + "properties": { + "margin": { + "id": "#tokensConfig/prose/table/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/table/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "textAlign": { + "id": "#tokensConfig/prose/table/textAlign", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/table/textAlign/value", + "default": "left" + } + }, + "type": "object", + "default": { + "value": "left" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/table/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/table/fontSize/value", + "default": "{typography.fontSize.sm}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.sm}" + } + }, + "lineHeight": { + "id": "#tokensConfig/prose/table/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/table/lineHeight/value", + "default": "inherit" + } + }, + "type": "object", + "default": { + "value": "inherit" + } + } + }, + "type": "object", + "default": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "textAlign": { + "value": "left" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "lineHeight": { + "value": "inherit" + } + } + }, + "thead": { + "id": "#tokensConfig/prose/thead", + "properties": { + "border": { + "id": "#tokensConfig/prose/thead/border", + "properties": { + "width": { + "id": "#tokensConfig/prose/thead/border/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/thead/border/width/value", + "default": "0px" + } + }, + "type": "object", + "default": { + "value": "0px" + } + }, + "style": { + "id": "#tokensConfig/prose/thead/border/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/thead/border/style/value", + "default": "solid" + } + }, + "type": "object", + "default": { + "value": "solid" + } + }, + "color": { + "id": "#tokensConfig/prose/thead/border/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/thead/border/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/thead/border/color/value/initial", + "default": "{typography.color.secondary.300}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/thead/border/color/value/dark", + "default": "{typography.color.secondary.600}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "type": "object", + "default": { + "width": { + "value": "0px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "borderBottom": { + "id": "#tokensConfig/prose/thead/borderBottom", + "properties": { + "width": { + "id": "#tokensConfig/prose/thead/borderBottom/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/thead/borderBottom/width/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "style": { + "id": "#tokensConfig/prose/thead/borderBottom/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/thead/borderBottom/style/value", + "default": "solid" + } + }, + "type": "object", + "default": { + "value": "solid" + } + }, + "color": { + "id": "#tokensConfig/prose/thead/borderBottom/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/thead/borderBottom/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/thead/borderBottom/color/value/initial", + "default": "{typography.color.secondary.300}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/thead/borderBottom/color/value/dark", + "default": "{typography.color.secondary.600}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "type": "object", + "default": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + } + }, + "type": "object", + "default": { + "border": { + "width": { + "value": "0px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + } + }, + "th": { + "id": "#tokensConfig/prose/th", + "properties": { + "color": { + "id": "#tokensConfig/prose/th/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/th/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/th/color/value/initial", + "default": "{typography.color.secondary.600}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/th/color/value/dark", + "default": "{typography.color.secondary.400}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + } + }, + "padding": { + "id": "#tokensConfig/prose/th/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/th/padding/value", + "default": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + } + }, + "type": "object", + "default": { + "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/th/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/th/fontWeight/value", + "default": "{typography.fontWeight.semibold}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.semibold}" + } + } + }, + "type": "object", + "default": { + "color": { + "value": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + }, + "padding": { + "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + } + }, + "tbody": { + "id": "#tokensConfig/prose/tbody", + "properties": { + "tr": { + "id": "#tokensConfig/prose/tbody/tr", + "properties": { + "borderBottom": { + "id": "#tokensConfig/prose/tbody/tr/borderBottom", + "properties": { + "width": { + "id": "#tokensConfig/prose/tbody/tr/borderBottom/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/tbody/tr/borderBottom/width/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "style": { + "id": "#tokensConfig/prose/tbody/tr/borderBottom/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/tbody/tr/borderBottom/style/value", + "default": "dashed" + } + }, + "type": "object", + "default": { + "value": "dashed" + } + }, + "color": { + "id": "#tokensConfig/prose/tbody/tr/borderBottom/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/tbody/tr/borderBottom/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial", + "default": "{typography.color.secondary.300}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark", + "default": "{typography.color.secondary.700}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "type": "object", + "default": { + "width": { + "value": "1px" + }, + "style": { + "value": "dashed" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + } + }, + "type": "object", + "default": { + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "dashed" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + } + }, + "td": { + "id": "#tokensConfig/prose/tbody/td", + "properties": { + "padding": { + "id": "#tokensConfig/prose/tbody/td/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/tbody/td/padding/value", + "default": "{typography.verticalMargin.sm}" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "type": "object", + "default": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "code": { + "id": "#tokensConfig/prose/tbody/code", + "properties": { + "inline": { + "id": "#tokensConfig/prose/tbody/code/inline", + "properties": { + "fontSize": { + "id": "#tokensConfig/prose/tbody/code/inline/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/tbody/code/inline/fontSize/value", + "default": "{typography.fontSize.sm}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.sm}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{typography.fontSize.sm}" + } + } + } + }, + "type": "object", + "default": { + "inline": { + "fontSize": { + "value": "{typography.fontSize.sm}" + } + } + } + } + }, + "type": "object", + "default": { + "tr": { + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "dashed" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "td": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + }, + "code": { + "inline": { + "fontSize": { + "value": "{typography.fontSize.sm}" + } + } + } + } + }, + "code": { + "id": "#tokensConfig/prose/code", + "properties": { + "block": { + "id": "#tokensConfig/prose/code/block", + "properties": { + "fontSize": { + "id": "#tokensConfig/prose/code/block/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/block/fontSize/value", + "default": "{typography.fontSize.sm}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.sm}" + } + }, + "margin": { + "id": "#tokensConfig/prose/code/block/margin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/block/margin/value", + "default": "{typography.verticalMargin.base} 0" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "border": { + "id": "#tokensConfig/prose/code/block/border", + "properties": { + "width": { + "id": "#tokensConfig/prose/code/block/border/width", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/block/border/width/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "style": { + "id": "#tokensConfig/prose/code/block/border/style", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/block/border/style/value", + "default": "solid" + } + }, + "type": "object", + "default": { + "value": "solid" + } + }, + "color": { + "id": "#tokensConfig/prose/code/block/border/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/code/block/border/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/code/block/border/color/value/initial", + "default": "{typography.color.secondary.200}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/code/block/border/color/value/dark", + "default": "{typography.color.secondary.800}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + } + }, + "type": "object", + "default": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + } + }, + "color": { + "id": "#tokensConfig/prose/code/block/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/code/block/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/code/block/color/value/initial", + "default": "{typography.color.secondary.700}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/code/block/color/value/dark", + "default": "{typography.color.secondary.200}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/prose/code/block/backgroundColor", + "properties": { + "value": { + "id": "#tokensConfig/prose/code/block/backgroundColor/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/code/block/backgroundColor/value/initial", + "default": "{typography.color.secondary.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/code/block/backgroundColor/value/dark", + "default": "{typography.color.secondary.900}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + }, + "pre": { + "id": "#tokensConfig/prose/code/block/pre", + "properties": { + "padding": { + "id": "#tokensConfig/prose/code/block/pre/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/block/pre/padding/value", + "default": "{typography.verticalMargin.sm}" + } + }, + "type": "object", + "default": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "type": "object", + "default": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + }, + "pre": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + } + }, + "inline": { + "id": "#tokensConfig/prose/code/inline", + "properties": { + "borderRadius": { + "id": "#tokensConfig/prose/code/inline/borderRadius", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/borderRadius/value", + "default": "0.375rem" + } + }, + "type": "object", + "default": { + "value": "0.375rem" + } + }, + "padding": { + "id": "#tokensConfig/prose/code/inline/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/padding/value", + "default": "0.25rem 0.375rem 0.25rem 0.375rem" + } + }, + "type": "object", + "default": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem" + } + }, + "fontSize": { + "id": "#tokensConfig/prose/code/inline/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/fontSize/value", + "default": "{typography.fontSize.sm}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontSize.sm}" + } + }, + "fontWeight": { + "id": "#tokensConfig/prose/code/inline/fontWeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/fontWeight/value", + "default": "{typography.fontWeight.normal}" + } + }, + "type": "object", + "default": { + "value": "{typography.fontWeight.normal}" + } + }, + "color": { + "id": "#tokensConfig/prose/code/inline/color", + "properties": { + "value": { + "id": "#tokensConfig/prose/code/inline/color/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/color/value/initial", + "default": "{typography.color.secondary.700}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/color/value/dark", + "default": "{typography.color.secondary.200}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + } + }, + "backgroundColor": { + "id": "#tokensConfig/prose/code/inline/backgroundColor", + "properties": { + "value": { + "id": "#tokensConfig/prose/code/inline/backgroundColor/value", + "properties": { + "initial": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/backgroundColor/value/initial", + "default": "{typography.color.secondary.100}" + }, + "dark": { + "type": "string", + "id": "#tokensConfig/prose/code/inline/backgroundColor/value/dark", + "default": "{typography.color.secondary.900}" + } + }, + "type": "object", + "default": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + }, + "type": "object", + "default": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + }, + "type": "object", + "default": { + "borderRadius": { + "value": "0.375rem" + }, + "padding": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.normal}" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + } + }, + "type": "object", + "default": { + "block": { + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + }, + "pre": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "inline": { + "borderRadius": { + "value": "0.375rem" + }, + "padding": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.normal}" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + } + } + }, + "type": "object", + "default": { + "p": { + "fontSize": { + "value": "{typography.fontSize.base}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "br": { + "margin": { + "value": "{typography.verticalMargin.base} 0 0 0" + } + } + }, + "h1": { + "margin": { + "value": "0 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.5xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.bold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.3xl}" + } + }, + "h2": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.4xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.2xl}" + } + }, + "h3": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.3xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.xl}" + } + }, + "h4": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.2xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + }, + "h5": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + }, + "h6": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.lg}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.base}" + } + }, + "strong": { + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + }, + "img": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "a": { + "textDecoration": { + "value": "none" + }, + "color": { + "static": { + "value": { + "initial": "inherit", + "dark": "inherit" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "static": { + "value": "dashed" + }, + "hover": { + "value": "solid" + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "distance": { + "value": "2px" + } + }, + "fontWeight": { + "value": "{typography.fontWeight.medium}" + }, + "hasCode": { + "borderBottom": { + "value": "none" + } + }, + "code": { + "border": { + "width": { + "value": "{prose.a.border.width}" + }, + "style": { + "value": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "background": { + "static": {}, + "hover": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + }, + "blockquote": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 24px" + }, + "quotes": { + "value": "'201C' '201D' '2018' '2019'" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + }, + "border": { + "width": { + "value": "4px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "ul": { + "listStyleType": { + "value": "disc" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "ol": { + "listStyleType": { + "value": "decimal" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "li": { + "margin": { + "value": "{typography.verticalMargin.sm} 0" + }, + "listStylePosition": { + "value": "outside" + } + }, + "hr": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "style": { + "value": "solid" + }, + "width": { + "value": "1px" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "table": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "textAlign": { + "value": "left" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "lineHeight": { + "value": "inherit" + } + }, + "thead": { + "border": { + "width": { + "value": "0px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "th": { + "color": { + "value": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + }, + "padding": { + "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + }, + "tbody": { + "tr": { + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "dashed" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "td": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + }, + "code": { + "inline": { + "fontSize": { + "value": "{typography.fontSize.sm}" + } + } + } + }, + "code": { + "block": { + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + }, + "pre": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "inline": { + "borderRadius": { + "value": "0.375rem" + }, + "padding": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.normal}" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + } + } + }, + "radii": { + "title": "Your website border radiuses.", + "tags": [ + "@studioInput design-token", + "@studioInpuTokenType size", + "@studioIcon material-symbols:rounded-corner", + "@studioInputTokenType size" + ], + "id": "#tokensConfig/radii", + "properties": { + "sm": { + "id": "#tokensConfig/radii/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/sm/value", + "default": "0.375rem" + } + }, + "type": "object", + "default": { + "value": "0.375rem" + } + }, + "md": { + "id": "#tokensConfig/radii/md", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/md/value", + "default": "0.5rem" + } + }, + "type": "object", + "default": { + "value": "0.5rem" + } + }, + "lg": { + "id": "#tokensConfig/radii/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/lg/value", + "default": "0.75rem" + } + }, + "type": "object", + "default": { + "value": "0.75rem" + } + }, + "none": { + "id": "#tokensConfig/radii/none", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/none/value", + "default": "0px" + } + }, + "type": "object", + "default": { + "value": "0px" + } + }, + "2xs": { + "id": "#tokensConfig/radii/2xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/2xs/value", + "default": "0.125rem" + } + }, + "type": "object", + "default": { + "value": "0.125rem" + } + }, + "xs": { + "id": "#tokensConfig/radii/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/xs/value", + "default": "0.25rem" + } + }, + "type": "object", + "default": { + "value": "0.25rem" + } + }, + "xl": { + "id": "#tokensConfig/radii/xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/xl/value", + "default": "1rem" + } + }, + "type": "object", + "default": { + "value": "1rem" + } + }, + "2xl": { + "id": "#tokensConfig/radii/2xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/2xl/value", + "default": "1.5rem" + } + }, + "type": "object", + "default": { + "value": "1.5rem" + } + }, + "3xl": { + "id": "#tokensConfig/radii/3xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/3xl/value", + "default": "1.75rem" + } + }, + "type": "object", + "default": { + "value": "1.75rem" + } + }, + "full": { + "id": "#tokensConfig/radii/full", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/radii/full/value", + "default": "9999px" + } + }, + "type": "object", + "default": { + "value": "9999px" + } + } + }, + "type": "object", + "default": { + "sm": { + "value": "0.375rem" + }, + "md": { + "value": "0.5rem" + }, + "lg": { + "value": "0.75rem" + }, + "none": { + "value": "0px" + }, + "2xs": { + "value": "0.125rem" + }, + "xs": { + "value": "0.25rem" + }, + "xl": { + "value": "1rem" + }, + "2xl": { + "value": "1.5rem" + }, + "3xl": { + "value": "1.75rem" + }, + "full": { + "value": "9999px" + } + } + }, + "fontSize": { + "title": "Your website font sizes.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font-size", + "@studioIcon radix-icons:font-style" + ], + "id": "#tokensConfig/fontSize", + "properties": { + "xs": { + "id": "#tokensConfig/fontSize/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/xs/value", + "default": "0.75rem" + } + }, + "type": "object", + "default": { + "value": "0.75rem" + } + }, + "sm": { + "id": "#tokensConfig/fontSize/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/sm/value", + "default": "0.875rem" + } + }, + "type": "object", + "default": { + "value": "0.875rem" + } + }, + "base": { + "id": "#tokensConfig/fontSize/base", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/base/value", + "default": "1rem" + } + }, + "type": "object", + "default": { + "value": "1rem" + } + }, + "lg": { + "id": "#tokensConfig/fontSize/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/lg/value", + "default": "1.125rem" + } + }, + "type": "object", + "default": { + "value": "1.125rem" + } + }, + "xl": { + "id": "#tokensConfig/fontSize/xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/xl/value", + "default": "1.25rem" + } + }, + "type": "object", + "default": { + "value": "1.25rem" + } + }, + "2xl": { + "id": "#tokensConfig/fontSize/2xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/2xl/value", + "default": "1.5rem" + } + }, + "type": "object", + "default": { + "value": "1.5rem" + } + }, + "3xl": { + "id": "#tokensConfig/fontSize/3xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/3xl/value", + "default": "1.875rem" + } + }, + "type": "object", + "default": { + "value": "1.875rem" + } + }, + "4xl": { + "id": "#tokensConfig/fontSize/4xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/4xl/value", + "default": "2.25rem" + } + }, + "type": "object", + "default": { + "value": "2.25rem" + } + }, + "5xl": { + "id": "#tokensConfig/fontSize/5xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/5xl/value", + "default": "3rem" + } + }, + "type": "object", + "default": { + "value": "3rem" + } + }, + "6xl": { + "id": "#tokensConfig/fontSize/6xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/6xl/value", + "default": "3.75rem" + } + }, + "type": "object", + "default": { + "value": "3.75rem" + } + }, + "7xl": { + "id": "#tokensConfig/fontSize/7xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/7xl/value", + "default": "4.5rem" + } + }, + "type": "object", + "default": { + "value": "4.5rem" + } + }, + "8xl": { + "id": "#tokensConfig/fontSize/8xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/8xl/value", + "default": "6rem" + } + }, + "type": "object", + "default": { + "value": "6rem" + } + }, + "9xl": { + "id": "#tokensConfig/fontSize/9xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontSize/9xl/value", + "default": "8rem" + } + }, + "type": "object", + "default": { + "value": "8rem" + } + } + }, + "type": "object", + "default": { + "xs": { + "value": "0.75rem" + }, + "sm": { + "value": "0.875rem" + }, + "base": { + "value": "1rem" + }, + "lg": { + "value": "1.125rem" + }, + "xl": { + "value": "1.25rem" + }, + "2xl": { + "value": "1.5rem" + }, + "3xl": { + "value": "1.875rem" + }, + "4xl": { + "value": "2.25rem" + }, + "5xl": { + "value": "3rem" + }, + "6xl": { + "value": "3.75rem" + }, + "7xl": { + "value": "4.5rem" + }, + "8xl": { + "value": "6rem" + }, + "9xl": { + "value": "8rem" + } + } + }, + "lead": { + "title": "Your website line heights.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon icon-park-outline:auto-line-height" + ], + "id": "#tokensConfig/lead", + "properties": { + "1": { + "id": "#tokensConfig/lead/1", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/1/value", + "default": ".025rem" + } + }, + "type": "object", + "default": { + "value": ".025rem" + } + }, + "2": { + "id": "#tokensConfig/lead/2", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/2/value", + "default": ".5rem" + } + }, + "type": "object", + "default": { + "value": ".5rem" + } + }, + "3": { + "id": "#tokensConfig/lead/3", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/3/value", + "default": ".75rem" + } + }, + "type": "object", + "default": { + "value": ".75rem" + } + }, + "4": { + "id": "#tokensConfig/lead/4", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/4/value", + "default": "1rem" + } + }, + "type": "object", + "default": { + "value": "1rem" + } + }, + "5": { + "id": "#tokensConfig/lead/5", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/5/value", + "default": "1.25rem" + } + }, + "type": "object", + "default": { + "value": "1.25rem" + } + }, + "6": { + "id": "#tokensConfig/lead/6", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/6/value", + "default": "1.5rem" + } + }, + "type": "object", + "default": { + "value": "1.5rem" + } + }, + "7": { + "id": "#tokensConfig/lead/7", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/7/value", + "default": "1.75rem" + } + }, + "type": "object", + "default": { + "value": "1.75rem" + } + }, + "8": { + "id": "#tokensConfig/lead/8", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/8/value", + "default": "2rem" + } + }, + "type": "object", + "default": { + "value": "2rem" + } + }, + "9": { + "id": "#tokensConfig/lead/9", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/9/value", + "default": "2.25rem" + } + }, + "type": "object", + "default": { + "value": "2.25rem" + } + }, + "10": { + "id": "#tokensConfig/lead/10", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/10/value", + "default": "2.5rem" + } + }, + "type": "object", + "default": { + "value": "2.5rem" + } + }, + "none": { + "id": "#tokensConfig/lead/none", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/none/value", + "default": "1" + } + }, + "type": "object", + "default": { + "value": "1" + } + }, + "tight": { + "id": "#tokensConfig/lead/tight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/tight/value", + "default": "1.25" + } + }, + "type": "object", + "default": { + "value": "1.25" + } + }, + "snug": { + "id": "#tokensConfig/lead/snug", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/snug/value", + "default": "1.375" + } + }, + "type": "object", + "default": { + "value": "1.375" + } + }, + "normal": { + "id": "#tokensConfig/lead/normal", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/normal/value", + "default": "1.5" + } + }, + "type": "object", + "default": { + "value": "1.5" + } + }, + "relaxed": { + "id": "#tokensConfig/lead/relaxed", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/relaxed/value", + "default": "1.625" + } + }, + "type": "object", + "default": { + "value": "1.625" + } + }, + "loose": { + "id": "#tokensConfig/lead/loose", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/lead/loose/value", + "default": "2" + } + }, + "type": "object", + "default": { + "value": "2" + } + } + }, + "type": "object", + "default": { + "1": { + "value": ".025rem" + }, + "2": { + "value": ".5rem" + }, + "3": { + "value": ".75rem" + }, + "4": { + "value": "1rem" + }, + "5": { + "value": "1.25rem" + }, + "6": { + "value": "1.5rem" + }, + "7": { + "value": "1.75rem" + }, + "8": { + "value": "2rem" + }, + "9": { + "value": "2.25rem" + }, + "10": { + "value": "2.5rem" + }, + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + } + }, + "font": { + "title": "Your website fonts", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font", + "@studioIcon material-symbols:font-download-rounded" + ], + "id": "#tokensConfig/font", + "properties": { + "sans": { + "id": "#tokensConfig/font/sans", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/font/sans/value", + "default": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" + } + }, + "type": "object", + "default": { + "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" + } + }, + "serif": { + "id": "#tokensConfig/font/serif", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/font/serif/value", + "default": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" + } + }, + "type": "object", + "default": { + "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" + } + }, + "mono": { + "id": "#tokensConfig/font/mono", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/font/mono/value", + "default": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" + } + }, + "type": "object", + "default": { + "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" + } + } + }, + "type": "object", + "default": { + "sans": { + "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" + }, + "serif": { + "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" + }, + "mono": { + "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" + } + } + }, + "docus": { + "title": "All the configurable tokens from Docus.", + "tags": [ + "@studioIcon material-symbols:docs" + ], + "id": "#tokensConfig/docus", + "properties": { + "header": { + "id": "#tokensConfig/docus/header", + "properties": { + "height": { + "id": "#tokensConfig/docus/header/height", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/header/height/value", + "default": "64px" + } + }, + "type": "object", + "default": { + "value": "64px" + } + } + }, + "type": "object", + "default": { + "height": { + "value": "64px" + } + } + }, + "footer": { + "id": "#tokensConfig/docus/footer", + "properties": { + "padding": { + "id": "#tokensConfig/docus/footer/padding", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/footer/padding/value", + "default": "{space.4} 0" + } + }, + "type": "object", + "default": { + "value": "{space.4} 0" + } + } + }, + "type": "object", + "default": { + "padding": { + "value": "{space.4} 0" + } + } + }, + "readableLine": { + "id": "#tokensConfig/docus/readableLine", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/readableLine/value", + "default": "78ch" + } + }, + "type": "object", + "default": { + "value": "78ch" + } + }, + "loadingBar": { + "id": "#tokensConfig/docus/loadingBar", + "properties": { + "height": { + "id": "#tokensConfig/docus/loadingBar/height", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/loadingBar/height/value", + "default": "3px" + } + }, + "type": "object", + "default": { + "value": "3px" + } + }, + "gradientColorStop1": { + "id": "#tokensConfig/docus/loadingBar/gradientColorStop1", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/loadingBar/gradientColorStop1/value", + "default": "#00dc82" + } + }, + "type": "object", + "default": { + "value": "#00dc82" + } + }, + "gradientColorStop2": { + "id": "#tokensConfig/docus/loadingBar/gradientColorStop2", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/loadingBar/gradientColorStop2/value", + "default": "#34cdfe" + } + }, + "type": "object", + "default": { + "value": "#34cdfe" + } + }, + "gradientColorStop3": { + "id": "#tokensConfig/docus/loadingBar/gradientColorStop3", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/docus/loadingBar/gradientColorStop3/value", + "default": "#0047e1" + } + }, + "type": "object", + "default": { + "value": "#0047e1" + } + } + }, + "type": "object", + "default": { + "height": { + "value": "3px" + }, + "gradientColorStop1": { + "value": "#00dc82" + }, + "gradientColorStop2": { + "value": "#34cdfe" + }, + "gradientColorStop3": { + "value": "#0047e1" + } + } + } + }, + "type": "object", + "default": { + "header": { + "height": { + "value": "64px" + } + }, + "footer": { + "padding": { + "value": "{space.4} 0" + } + }, + "readableLine": { + "value": "78ch" + }, + "loadingBar": { + "height": { + "value": "3px" + }, + "gradientColorStop1": { + "value": "#00dc82" + }, + "gradientColorStop2": { + "value": "#34cdfe" + }, + "gradientColorStop3": { + "value": "#0047e1" + } + } + } + }, + "media": { + "title": "Your website media queries.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType color", + "@studioIcon material-symbols:screenshot-monitor-outline-rounded" + ], + "id": "#tokensConfig/media", + "properties": { + "xs": { + "id": "#tokensConfig/media/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/xs/value", + "default": "(min-width: 475px)" + } + }, + "type": "object", + "default": { + "value": "(min-width: 475px)" + } + }, + "sm": { + "id": "#tokensConfig/media/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/sm/value", + "default": "(min-width: 640px)" + } + }, + "type": "object", + "default": { + "value": "(min-width: 640px)" + } + }, + "md": { + "id": "#tokensConfig/media/md", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/md/value", + "default": "(min-width: 768px)" + } + }, + "type": "object", + "default": { + "value": "(min-width: 768px)" + } + }, + "lg": { + "id": "#tokensConfig/media/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/lg/value", + "default": "(min-width: 1024px)" + } + }, + "type": "object", + "default": { + "value": "(min-width: 1024px)" + } + }, + "xl": { + "id": "#tokensConfig/media/xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/xl/value", + "default": "(min-width: 1280px)" + } + }, + "type": "object", + "default": { + "value": "(min-width: 1280px)" + } + }, + "2xl": { + "id": "#tokensConfig/media/2xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/2xl/value", + "default": "(min-width: 1536px)" + } + }, + "type": "object", + "default": { + "value": "(min-width: 1536px)" + } + }, + "rm": { + "id": "#tokensConfig/media/rm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/rm/value", + "default": "(prefers-reduced-motion: reduce)" + } + }, + "type": "object", + "default": { + "value": "(prefers-reduced-motion: reduce)" + } + }, + "landscape": { + "id": "#tokensConfig/media/landscape", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/landscape/value", + "default": "only screen and (orientation: landscape)" + } + }, + "type": "object", + "default": { + "value": "only screen and (orientation: landscape)" + } + }, + "portrait": { + "id": "#tokensConfig/media/portrait", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/media/portrait/value", + "default": "only screen and (orientation: portrait)" + } + }, + "type": "object", + "default": { + "value": "only screen and (orientation: portrait)" + } + } + }, + "type": "object", + "default": { + "xs": { + "value": "(min-width: 475px)" + }, + "sm": { + "value": "(min-width: 640px)" + }, + "md": { + "value": "(min-width: 768px)" + }, + "lg": { + "value": "(min-width: 1024px)" + }, + "xl": { + "value": "(min-width: 1280px)" + }, + "2xl": { + "value": "(min-width: 1536px)" + }, + "rm": { + "value": "(prefers-reduced-motion: reduce)" + }, + "landscape": { + "value": "only screen and (orientation: landscape)" + }, + "portrait": { + "value": "only screen and (orientation: portrait)" + } + } + }, + "width": { + "title": "Your website screen sizings.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon ph:ruler" + ], + "id": "#tokensConfig/width", + "properties": { + "screen": { + "id": "#tokensConfig/width/screen", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/width/screen/value", + "default": "100vw" + } + }, + "type": "object", + "default": { + "value": "100vw" + } + } + }, + "type": "object", + "default": { + "screen": { + "value": "100vw" + } + } + }, + "height": { + "title": "Your website screen sizings.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon ph:ruler" + ], + "id": "#tokensConfig/height", + "properties": { + "screen": { + "id": "#tokensConfig/height/screen", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/height/screen/value", + "default": "100vh" + } + }, + "type": "object", + "default": { + "value": "100vh" + } + } + }, + "type": "object", + "default": { + "screen": { + "value": "100vh" + } + } + }, + "shadow": { + "title": "Your website shadows.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType shadow", + "@studioIcon mdi:box-shadow" + ], + "id": "#tokensConfig/shadow", + "properties": { + "xs": { + "id": "#tokensConfig/shadow/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/xs/value", + "default": "0px 1px 2px 0px #000000" + } + }, + "type": "object", + "default": { + "value": "0px 1px 2px 0px #000000" + } + }, + "sm": { + "id": "#tokensConfig/shadow/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/sm/value", + "default": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" + } + }, + "type": "object", + "default": { + "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" + } + }, + "md": { + "id": "#tokensConfig/shadow/md", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/md/value", + "default": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" + } + }, + "type": "object", + "default": { + "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" + } + }, + "lg": { + "id": "#tokensConfig/shadow/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/lg/value", + "default": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" + } + }, + "type": "object", + "default": { + "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" + } + }, + "xl": { + "id": "#tokensConfig/shadow/xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/xl/value", + "default": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" + } + }, + "type": "object", + "default": { + "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" + } + }, + "2xl": { + "id": "#tokensConfig/shadow/2xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/2xl/value", + "default": "0px 25px 50px -12px {color.gray.900}" + } + }, + "type": "object", + "default": { + "value": "0px 25px 50px -12px {color.gray.900}" + } + }, + "none": { + "id": "#tokensConfig/shadow/none", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/shadow/none/value", + "default": "0px 0px 0px 0px transparent" + } + }, + "type": "object", + "default": { + "value": "0px 0px 0px 0px transparent" + } + } + }, + "type": "object", + "default": { + "xs": { + "value": "0px 1px 2px 0px #000000" + }, + "sm": { + "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" + }, + "md": { + "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" + }, + "lg": { + "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" + }, + "xl": { + "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" + }, + "2xl": { + "value": "0px 25px 50px -12px {color.gray.900}" + }, + "none": { + "value": "0px 0px 0px 0px transparent" + } + } + }, + "size": { + "title": "Your website sizings.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon ph:ruler" + ], + "id": "#tokensConfig/size", + "properties": { + "0": { + "id": "#tokensConfig/size/0", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/0/value", + "default": "0px" + } + }, + "type": "object", + "default": { + "value": "0px" + } + }, + "2": { + "id": "#tokensConfig/size/2", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/2/value", + "default": "2px" + } + }, + "type": "object", + "default": { + "value": "2px" + } + }, + "4": { + "id": "#tokensConfig/size/4", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/4/value", + "default": "4px" + } + }, + "type": "object", + "default": { + "value": "4px" + } + }, + "6": { + "id": "#tokensConfig/size/6", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/6/value", + "default": "6px" + } + }, + "type": "object", + "default": { + "value": "6px" + } + }, + "8": { + "id": "#tokensConfig/size/8", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/8/value", + "default": "8px" + } + }, + "type": "object", + "default": { + "value": "8px" + } + }, + "12": { + "id": "#tokensConfig/size/12", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/12/value", + "default": "12px" + } + }, + "type": "object", + "default": { + "value": "12px" + } + }, + "16": { + "id": "#tokensConfig/size/16", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/16/value", + "default": "16px" + } + }, + "type": "object", + "default": { + "value": "16px" + } + }, + "20": { + "id": "#tokensConfig/size/20", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/20/value", + "default": "20px" + } + }, + "type": "object", + "default": { + "value": "20px" + } + }, + "24": { + "id": "#tokensConfig/size/24", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/24/value", + "default": "24px" + } + }, + "type": "object", + "default": { + "value": "24px" + } + }, + "32": { + "id": "#tokensConfig/size/32", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/32/value", + "default": "32px" + } + }, + "type": "object", + "default": { + "value": "32px" + } + }, + "40": { + "id": "#tokensConfig/size/40", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/40/value", + "default": "40px" + } + }, + "type": "object", + "default": { + "value": "40px" + } + }, + "48": { + "id": "#tokensConfig/size/48", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/48/value", + "default": "48px" + } + }, + "type": "object", + "default": { + "value": "48px" + } + }, + "56": { + "id": "#tokensConfig/size/56", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/56/value", + "default": "56px" + } + }, + "type": "object", + "default": { + "value": "56px" + } + }, + "64": { + "id": "#tokensConfig/size/64", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/64/value", + "default": "64px" + } + }, + "type": "object", + "default": { + "value": "64px" + } + }, + "80": { + "id": "#tokensConfig/size/80", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/80/value", + "default": "80px" + } + }, + "type": "object", + "default": { + "value": "80px" + } + }, + "104": { + "id": "#tokensConfig/size/104", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/104/value", + "default": "104px" + } + }, + "type": "object", + "default": { + "value": "104px" + } + }, + "200": { + "id": "#tokensConfig/size/200", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/200/value", + "default": "200px" + } + }, + "type": "object", + "default": { + "value": "200px" + } + }, + "xs": { + "id": "#tokensConfig/size/xs", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/xs/value", + "default": "20rem" + } + }, + "type": "object", + "default": { + "value": "20rem" + } + }, + "sm": { + "id": "#tokensConfig/size/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/sm/value", + "default": "24rem" + } + }, + "type": "object", + "default": { + "value": "24rem" + } + }, + "md": { + "id": "#tokensConfig/size/md", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/md/value", + "default": "28rem" + } + }, + "type": "object", + "default": { + "value": "28rem" + } + }, + "lg": { + "id": "#tokensConfig/size/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/lg/value", + "default": "32rem" + } + }, + "type": "object", + "default": { + "value": "32rem" + } + }, + "xl": { + "id": "#tokensConfig/size/xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/xl/value", + "default": "36rem" + } + }, + "type": "object", + "default": { + "value": "36rem" + } + }, + "2xl": { + "id": "#tokensConfig/size/2xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/2xl/value", + "default": "42rem" + } + }, + "type": "object", + "default": { + "value": "42rem" + } + }, + "3xl": { + "id": "#tokensConfig/size/3xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/3xl/value", + "default": "48rem" + } + }, + "type": "object", + "default": { + "value": "48rem" + } + }, + "4xl": { + "id": "#tokensConfig/size/4xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/4xl/value", + "default": "56rem" + } + }, + "type": "object", + "default": { + "value": "56rem" + } + }, + "5xl": { + "id": "#tokensConfig/size/5xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/5xl/value", + "default": "64rem" + } + }, + "type": "object", + "default": { + "value": "64rem" + } + }, + "6xl": { + "id": "#tokensConfig/size/6xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/6xl/value", + "default": "72rem" + } + }, + "type": "object", + "default": { + "value": "72rem" + } + }, + "7xl": { + "id": "#tokensConfig/size/7xl", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/7xl/value", + "default": "80rem" + } + }, + "type": "object", + "default": { + "value": "80rem" + } + }, + "full": { + "id": "#tokensConfig/size/full", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/size/full/value", + "default": "100%" + } + }, + "type": "object", + "default": { + "value": "100%" + } + } + }, + "type": "object", + "default": { + "0": { + "value": "0px" + }, + "2": { + "value": "2px" + }, + "4": { + "value": "4px" + }, + "6": { + "value": "6px" + }, + "8": { + "value": "8px" + }, + "12": { + "value": "12px" + }, + "16": { + "value": "16px" + }, + "20": { + "value": "20px" + }, + "24": { + "value": "24px" + }, + "32": { + "value": "32px" + }, + "40": { + "value": "40px" + }, + "48": { + "value": "48px" + }, + "56": { + "value": "56px" + }, + "64": { + "value": "64px" + }, + "80": { + "value": "80px" + }, + "104": { + "value": "104px" + }, + "200": { + "value": "200px" + }, + "xs": { + "value": "20rem" + }, + "sm": { + "value": "24rem" + }, + "md": { + "value": "28rem" + }, + "lg": { + "value": "32rem" + }, + "xl": { + "value": "36rem" + }, + "2xl": { + "value": "42rem" + }, + "3xl": { + "value": "48rem" + }, + "4xl": { + "value": "56rem" + }, + "5xl": { + "value": "64rem" + }, + "6xl": { + "value": "72rem" + }, + "7xl": { + "value": "80rem" + }, + "full": { + "value": "100%" + } + } + }, + "space": { + "title": "Your website spacings.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon ph:ruler" + ], + "id": "#tokensConfig/space", + "properties": { + "0": { + "id": "#tokensConfig/space/0", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/0/value", + "default": "0px" + } + }, + "type": "object", + "default": { + "value": "0px" + } + }, + "1": { + "id": "#tokensConfig/space/1", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/1/value", + "default": "0.25rem" + } + }, + "type": "object", + "default": { + "value": "0.25rem" + } + }, + "2": { + "id": "#tokensConfig/space/2", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/2/value", + "default": "0.5rem" + } + }, + "type": "object", + "default": { + "value": "0.5rem" + } + }, + "3": { + "id": "#tokensConfig/space/3", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/3/value", + "default": "0.75rem" + } + }, + "type": "object", + "default": { + "value": "0.75rem" + } + }, + "4": { + "id": "#tokensConfig/space/4", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/4/value", + "default": "1rem" + } + }, + "type": "object", + "default": { + "value": "1rem" + } + }, + "5": { + "id": "#tokensConfig/space/5", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/5/value", + "default": "1.25rem" + } + }, + "type": "object", + "default": { + "value": "1.25rem" + } + }, + "6": { + "id": "#tokensConfig/space/6", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/6/value", + "default": "1.5rem" + } + }, + "type": "object", + "default": { + "value": "1.5rem" + } + }, + "7": { + "id": "#tokensConfig/space/7", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/7/value", + "default": "1.75rem" + } + }, + "type": "object", + "default": { + "value": "1.75rem" + } + }, + "8": { + "id": "#tokensConfig/space/8", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/8/value", + "default": "2rem" + } + }, + "type": "object", + "default": { + "value": "2rem" + } + }, + "9": { + "id": "#tokensConfig/space/9", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/9/value", + "default": "2.25rem" + } + }, + "type": "object", + "default": { + "value": "2.25rem" + } + }, + "10": { + "id": "#tokensConfig/space/10", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/10/value", + "default": "2.5rem" + } + }, + "type": "object", + "default": { + "value": "2.5rem" + } + }, + "11": { + "id": "#tokensConfig/space/11", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/11/value", + "default": "2.75rem" + } + }, + "type": "object", + "default": { + "value": "2.75rem" + } + }, + "12": { + "id": "#tokensConfig/space/12", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/12/value", + "default": "3rem" + } + }, + "type": "object", + "default": { + "value": "3rem" + } + }, + "14": { + "id": "#tokensConfig/space/14", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/14/value", + "default": "3.5rem" + } + }, + "type": "object", + "default": { + "value": "3.5rem" + } + }, + "16": { + "id": "#tokensConfig/space/16", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/16/value", + "default": "4rem" + } + }, + "type": "object", + "default": { + "value": "4rem" + } + }, + "20": { + "id": "#tokensConfig/space/20", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/20/value", + "default": "5rem" + } + }, + "type": "object", + "default": { + "value": "5rem" + } + }, + "24": { + "id": "#tokensConfig/space/24", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/24/value", + "default": "6rem" + } + }, + "type": "object", + "default": { + "value": "6rem" + } + }, + "28": { + "id": "#tokensConfig/space/28", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/28/value", + "default": "7rem" + } + }, + "type": "object", + "default": { + "value": "7rem" + } + }, + "32": { + "id": "#tokensConfig/space/32", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/32/value", + "default": "8rem" + } + }, + "type": "object", + "default": { + "value": "8rem" + } + }, + "36": { + "id": "#tokensConfig/space/36", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/36/value", + "default": "9rem" + } + }, + "type": "object", + "default": { + "value": "9rem" + } + }, + "40": { + "id": "#tokensConfig/space/40", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/40/value", + "default": "10rem" + } + }, + "type": "object", + "default": { + "value": "10rem" + } + }, + "44": { + "id": "#tokensConfig/space/44", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/44/value", + "default": "11rem" + } + }, + "type": "object", + "default": { + "value": "11rem" + } + }, + "48": { + "id": "#tokensConfig/space/48", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/48/value", + "default": "12rem" + } + }, + "type": "object", + "default": { + "value": "12rem" + } + }, + "52": { + "id": "#tokensConfig/space/52", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/52/value", + "default": "13rem" + } + }, + "type": "object", + "default": { + "value": "13rem" + } + }, + "56": { + "id": "#tokensConfig/space/56", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/56/value", + "default": "14rem" + } + }, + "type": "object", + "default": { + "value": "14rem" + } + }, + "60": { + "id": "#tokensConfig/space/60", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/60/value", + "default": "15rem" + } + }, + "type": "object", + "default": { + "value": "15rem" + } + }, + "64": { + "id": "#tokensConfig/space/64", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/64/value", + "default": "16rem" + } + }, + "type": "object", + "default": { + "value": "16rem" + } + }, + "72": { + "id": "#tokensConfig/space/72", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/72/value", + "default": "18rem" + } + }, + "type": "object", + "default": { + "value": "18rem" + } + }, + "80": { + "id": "#tokensConfig/space/80", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/80/value", + "default": "20rem" + } + }, + "type": "object", + "default": { + "value": "20rem" + } + }, + "96": { + "id": "#tokensConfig/space/96", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/96/value", + "default": "24rem" + } + }, + "type": "object", + "default": { + "value": "24rem" + } + }, + "px": { + "id": "#tokensConfig/space/px", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/px/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "rem": { + "id": "#tokensConfig/space/rem", + "properties": { + "125": { + "id": "#tokensConfig/space/rem/125", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/rem/125/value", + "default": "0.125rem" + } + }, + "type": "object", + "default": { + "value": "0.125rem" + } + }, + "375": { + "id": "#tokensConfig/space/rem/375", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/rem/375/value", + "default": "0.375rem" + } + }, + "type": "object", + "default": { + "value": "0.375rem" + } + }, + "625": { + "id": "#tokensConfig/space/rem/625", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/rem/625/value", + "default": "0.625rem" + } + }, + "type": "object", + "default": { + "value": "0.625rem" + } + }, + "875": { + "id": "#tokensConfig/space/rem/875", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/space/rem/875/value", + "default": "0.875rem" + } + }, + "type": "object", + "default": { + "value": "0.875rem" + } + } + }, + "type": "object", + "default": { + "125": { + "value": "0.125rem" + }, + "375": { + "value": "0.375rem" + }, + "625": { + "value": "0.625rem" + }, + "875": { + "value": "0.875rem" + } + } + } + }, + "type": "object", + "default": { + "0": { + "value": "0px" + }, + "1": { + "value": "0.25rem" + }, + "2": { + "value": "0.5rem" + }, + "3": { + "value": "0.75rem" + }, + "4": { + "value": "1rem" + }, + "5": { + "value": "1.25rem" + }, + "6": { + "value": "1.5rem" + }, + "7": { + "value": "1.75rem" + }, + "8": { + "value": "2rem" + }, + "9": { + "value": "2.25rem" + }, + "10": { + "value": "2.5rem" + }, + "11": { + "value": "2.75rem" + }, + "12": { + "value": "3rem" + }, + "14": { + "value": "3.5rem" + }, + "16": { + "value": "4rem" + }, + "20": { + "value": "5rem" + }, + "24": { + "value": "6rem" + }, + "28": { + "value": "7rem" + }, + "32": { + "value": "8rem" + }, + "36": { + "value": "9rem" + }, + "40": { + "value": "10rem" + }, + "44": { + "value": "11rem" + }, + "48": { + "value": "12rem" + }, + "52": { + "value": "13rem" + }, + "56": { + "value": "14rem" + }, + "60": { + "value": "15rem" + }, + "64": { + "value": "16rem" + }, + "72": { + "value": "18rem" + }, + "80": { + "value": "20rem" + }, + "96": { + "value": "24rem" + }, + "px": { + "value": "1px" + }, + "rem": { + "125": { + "value": "0.125rem" + }, + "375": { + "value": "0.375rem" + }, + "625": { + "value": "0.625rem" + }, + "875": { + "value": "0.875rem" + } + } + } + }, + "borderWidth": { + "title": "Your website border widths.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon material-symbols:border-all-outline-rounded" + ], + "id": "#tokensConfig/borderWidth", + "properties": { + "noBorder": { + "id": "#tokensConfig/borderWidth/noBorder", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/borderWidth/noBorder/value", + "default": "0" + } + }, + "type": "object", + "default": { + "value": "0" + } + }, + "sm": { + "id": "#tokensConfig/borderWidth/sm", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/borderWidth/sm/value", + "default": "1px" + } + }, + "type": "object", + "default": { + "value": "1px" + } + }, + "md": { + "id": "#tokensConfig/borderWidth/md", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/borderWidth/md/value", + "default": "2px" + } + }, + "type": "object", + "default": { + "value": "2px" + } + }, + "lg": { + "id": "#tokensConfig/borderWidth/lg", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/borderWidth/lg/value", + "default": "3px" + } + }, + "type": "object", + "default": { + "value": "3px" + } + } + }, + "type": "object", + "default": { + "noBorder": { + "value": "0" + }, + "sm": { + "value": "1px" + }, + "md": { + "value": "2px" + }, + "lg": { + "value": "3px" + } + } + }, + "opacity": { + "title": "Your website opacities.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType opacity", + "@studioIcon material-symbols:opacity" + ], + "id": "#tokensConfig/opacity", + "properties": { + "noOpacity": { + "id": "#tokensConfig/opacity/noOpacity", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/noOpacity/value", + "default": "0" + } + }, + "type": "object", + "default": { + "value": "0" + } + }, + "bright": { + "id": "#tokensConfig/opacity/bright", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/bright/value", + "default": "0.1" + } + }, + "type": "object", + "default": { + "value": "0.1" + } + }, + "light": { + "id": "#tokensConfig/opacity/light", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/light/value", + "default": "0.15" + } + }, + "type": "object", + "default": { + "value": "0.15" + } + }, + "soft": { + "id": "#tokensConfig/opacity/soft", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/soft/value", + "default": "0.3" + } + }, + "type": "object", + "default": { + "value": "0.3" + } + }, + "medium": { + "id": "#tokensConfig/opacity/medium", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/medium/value", + "default": "0.5" + } + }, + "type": "object", + "default": { + "value": "0.5" + } + }, + "high": { + "id": "#tokensConfig/opacity/high", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/high/value", + "default": "0.8" + } + }, + "type": "object", + "default": { + "value": "0.8" + } + }, + "total": { + "id": "#tokensConfig/opacity/total", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/opacity/total/value", + "default": "1" + } + }, + "type": "object", + "default": { + "value": "1" + } + } + }, + "type": "object", + "default": { + "noOpacity": { + "value": "0" + }, + "bright": { + "value": "0.1" + }, + "light": { + "value": "0.15" + }, + "soft": { + "value": "0.3" + }, + "medium": { + "value": "0.5" + }, + "high": { + "value": "0.8" + }, + "total": { + "value": "1" + } + } + }, + "fontWeight": { + "title": "Your website font weights.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType font-weight", + "@studioIcon radix-icons:font-style" + ], + "id": "#tokensConfig/fontWeight", + "properties": { + "thin": { + "id": "#tokensConfig/fontWeight/thin", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/thin/value", + "default": "100" + } + }, + "type": "object", + "default": { + "value": "100" + } + }, + "extralight": { + "id": "#tokensConfig/fontWeight/extralight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/extralight/value", + "default": "200" + } + }, + "type": "object", + "default": { + "value": "200" + } + }, + "light": { + "id": "#tokensConfig/fontWeight/light", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/light/value", + "default": "300" + } + }, + "type": "object", + "default": { + "value": "300" + } + }, + "normal": { + "id": "#tokensConfig/fontWeight/normal", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/normal/value", + "default": "400" + } + }, + "type": "object", + "default": { + "value": "400" + } + }, + "medium": { + "id": "#tokensConfig/fontWeight/medium", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/medium/value", + "default": "500" + } + }, + "type": "object", + "default": { + "value": "500" + } + }, + "semibold": { + "id": "#tokensConfig/fontWeight/semibold", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/semibold/value", + "default": "600" + } + }, + "type": "object", + "default": { + "value": "600" + } + }, + "bold": { + "id": "#tokensConfig/fontWeight/bold", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/bold/value", + "default": "700" + } + }, + "type": "object", + "default": { + "value": "700" + } + }, + "extrabold": { + "id": "#tokensConfig/fontWeight/extrabold", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/extrabold/value", + "default": "800" + } + }, + "type": "object", + "default": { + "value": "800" + } + }, + "black": { + "id": "#tokensConfig/fontWeight/black", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/fontWeight/black/value", + "default": "900" + } + }, + "type": "object", + "default": { + "value": "900" + } + } + }, + "type": "object", + "default": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + } + }, + "letterSpacing": { + "title": "Your website letter spacings.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType letter-spacing", + "@studioIcon fluent:font-space-tracking-out-24-filled" + ], + "id": "#tokensConfig/letterSpacing", + "properties": { + "tighter": { + "id": "#tokensConfig/letterSpacing/tighter", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/letterSpacing/tighter/value", + "default": "-0.05em" + } + }, + "type": "object", + "default": { + "value": "-0.05em" + } + }, + "tight": { + "id": "#tokensConfig/letterSpacing/tight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/letterSpacing/tight/value", + "default": "-0.025em" + } + }, + "type": "object", + "default": { + "value": "-0.025em" + } + }, + "normal": { + "id": "#tokensConfig/letterSpacing/normal", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/letterSpacing/normal/value", + "default": "0em" + } + }, + "type": "object", + "default": { + "value": "0em" + } + }, + "wide": { + "id": "#tokensConfig/letterSpacing/wide", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/letterSpacing/wide/value", + "default": "0.025em" + } + }, + "type": "object", + "default": { + "value": "0.025em" + } + }, + "wider": { + "id": "#tokensConfig/letterSpacing/wider", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/letterSpacing/wider/value", + "default": "0.05em" + } + }, + "type": "object", + "default": { + "value": "0.05em" + } + }, + "widest": { + "id": "#tokensConfig/letterSpacing/widest", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/letterSpacing/widest/value", + "default": "0.1em" + } + }, + "type": "object", + "default": { + "value": "0.1em" + } + } + }, + "type": "object", + "default": { + "tighter": { + "value": "-0.05em" + }, + "tight": { + "value": "-0.025em" + }, + "normal": { + "value": "0em" + }, + "wide": { + "value": "0.025em" + }, + "wider": { + "value": "0.05em" + }, + "widest": { + "value": "0.1em" + } + } + }, + "text": { + "title": "Your website text scales.", + "tags": [ + "@studioInput design-token", + "@studioInputTokenType size", + "@studioIcon material-symbols:format-size-rounded" + ], + "id": "#tokensConfig/text", + "properties": { + "xs": { + "id": "#tokensConfig/text/xs", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/xs/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/xs/fontSize/value", + "default": "{fontSize.xs}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.xs}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/xs/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/xs/lineHeight/value", + "default": "{lead.4}" + } + }, + "type": "object", + "default": { + "value": "{lead.4}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.xs}" + }, + "lineHeight": { + "value": "{lead.4}" + } + } + }, + "sm": { + "id": "#tokensConfig/text/sm", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/sm/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/sm/fontSize/value", + "default": "{fontSize.sm}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.sm}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/sm/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/sm/lineHeight/value", + "default": "{lead.5}" + } + }, + "type": "object", + "default": { + "value": "{lead.5}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.sm}" + }, + "lineHeight": { + "value": "{lead.5}" + } + } + }, + "base": { + "id": "#tokensConfig/text/base", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/base/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/base/fontSize/value", + "default": "{fontSize.base}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.base}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/base/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/base/lineHeight/value", + "default": "{lead.6}" + } + }, + "type": "object", + "default": { + "value": "{lead.6}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.base}" + }, + "lineHeight": { + "value": "{lead.6}" + } + } + }, + "lg": { + "id": "#tokensConfig/text/lg", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/lg/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/lg/fontSize/value", + "default": "{fontSize.lg}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.lg}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/lg/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/lg/lineHeight/value", + "default": "{lead.7}" + } + }, + "type": "object", + "default": { + "value": "{lead.7}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.lg}" + }, + "lineHeight": { + "value": "{lead.7}" + } + } + }, + "xl": { + "id": "#tokensConfig/text/xl", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/xl/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/xl/fontSize/value", + "default": "{fontSize.xl}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/xl/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/xl/lineHeight/value", + "default": "{lead.7}" + } + }, + "type": "object", + "default": { + "value": "{lead.7}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.xl}" + }, + "lineHeight": { + "value": "{lead.7}" + } + } + }, + "2xl": { + "id": "#tokensConfig/text/2xl", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/2xl/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/2xl/fontSize/value", + "default": "{fontSize.2xl}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.2xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/2xl/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/2xl/lineHeight/value", + "default": "{lead.8}" + } + }, + "type": "object", + "default": { + "value": "{lead.8}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.2xl}" + }, + "lineHeight": { + "value": "{lead.8}" + } + } + }, + "3xl": { + "id": "#tokensConfig/text/3xl", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/3xl/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/3xl/fontSize/value", + "default": "{fontSize.3xl}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.3xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/3xl/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/3xl/lineHeight/value", + "default": "{lead.9}" + } + }, + "type": "object", + "default": { + "value": "{lead.9}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.3xl}" + }, + "lineHeight": { + "value": "{lead.9}" + } + } + }, + "4xl": { + "id": "#tokensConfig/text/4xl", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/4xl/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/4xl/fontSize/value", + "default": "{fontSize.4xl}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.4xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/4xl/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/4xl/lineHeight/value", + "default": "{lead.10}" + } + }, + "type": "object", + "default": { + "value": "{lead.10}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.4xl}" + }, + "lineHeight": { + "value": "{lead.10}" + } + } + }, + "5xl": { + "id": "#tokensConfig/text/5xl", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/5xl/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/5xl/fontSize/value", + "default": "{fontSize.5xl}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.5xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/5xl/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/5xl/lineHeight/value", + "default": "{lead.none}" + } + }, + "type": "object", + "default": { + "value": "{lead.none}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.5xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + } + }, + "6xl": { + "id": "#tokensConfig/text/6xl", + "properties": { + "fontSize": { + "id": "#tokensConfig/text/6xl/fontSize", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/6xl/fontSize/value", + "default": "{fontSize.6xl}" + } + }, + "type": "object", + "default": { + "value": "{fontSize.6xl}" + } + }, + "lineHeight": { + "id": "#tokensConfig/text/6xl/lineHeight", + "properties": { + "value": { + "type": "string", + "id": "#tokensConfig/text/6xl/lineHeight/value", + "default": "{lead.none}" + } + }, + "type": "object", + "default": { + "value": "{lead.none}" + } + } + }, + "type": "object", + "default": { + "fontSize": { + "value": "{fontSize.6xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + } + } + }, + "type": "object", + "default": { + "xs": { + "fontSize": { + "value": "{fontSize.xs}" + }, + "lineHeight": { + "value": "{lead.4}" + } + }, + "sm": { + "fontSize": { + "value": "{fontSize.sm}" + }, + "lineHeight": { + "value": "{lead.5}" + } + }, + "base": { + "fontSize": { + "value": "{fontSize.base}" + }, + "lineHeight": { + "value": "{lead.6}" + } + }, + "lg": { + "fontSize": { + "value": "{fontSize.lg}" + }, + "lineHeight": { + "value": "{lead.7}" + } + }, + "xl": { + "fontSize": { + "value": "{fontSize.xl}" + }, + "lineHeight": { + "value": "{lead.7}" + } + }, + "2xl": { + "fontSize": { + "value": "{fontSize.2xl}" + }, + "lineHeight": { + "value": "{lead.8}" + } + }, + "3xl": { + "fontSize": { + "value": "{fontSize.3xl}" + }, + "lineHeight": { + "value": "{lead.9}" + } + }, + "4xl": { + "fontSize": { + "value": "{fontSize.4xl}" + }, + "lineHeight": { + "value": "{lead.10}" + } + }, + "5xl": { + "fontSize": { + "value": "{fontSize.5xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + }, + "6xl": { + "fontSize": { + "value": "{fontSize.6xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + } + } + } + }, + "type": "object", + "default": { + "color": { + "primary": { + "50": { + "value": "#fff2cc" + }, + "100": { + "value": "#ffe599" + }, + "200": { + "value": "#ffd966" + }, + "300": { + "value": "#f1c232" + }, + "400": { + "value": "#f1c232" + }, + "500": { + "value": "#f1c232" + }, + "600": { + "value": "#f1c232" + }, + "700": { + "value": "#f1c232" + }, + "800": { + "value": "#f1c232" + }, + "900": { + "value": "#f1c232" + } + }, + "white": { + "value": "#ffffff" + }, + "black": { + "value": "#0c0c0d" + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + }, + "gray": { + "50": { + "value": "#fafafa" + }, + "100": { + "value": "#f4f4f5" + }, + "200": { + "value": "#e4e4e7" + }, + "300": { + "value": "#D4d4d8" + }, + "400": { + "value": "#a1a1aa" + }, + "500": { + "value": "#71717A" + }, + "600": { + "value": "#52525B" + }, + "700": { + "value": "#3f3f46" + }, + "800": { + "value": "#27272A" + }, + "900": { + "value": "#18181B" + } + }, + "green": { + "50": { + "value": "#d6ffee" + }, + "100": { + "value": "#acffdd" + }, + "200": { + "value": "#83ffcc" + }, + "300": { + "value": "#30ffaa" + }, + "400": { + "value": "#00dc82" + }, + "500": { + "value": "#00bd6f" + }, + "600": { + "value": "#009d5d" + }, + "700": { + "value": "#007e4a" + }, + "800": { + "value": "#005e38" + }, + "900": { + "value": "#003f25" + } + }, + "yellow": { + "50": { + "value": "#fdf6db" + }, + "100": { + "value": "#fcedb7" + }, + "200": { + "value": "#fae393" + }, + "300": { + "value": "#f8da70" + }, + "400": { + "value": "#f7d14c" + }, + "500": { + "value": "#f5c828" + }, + "600": { + "value": "#daac0a" + }, + "700": { + "value": "#a38108" + }, + "800": { + "value": "#6d5605" + }, + "900": { + "value": "#362b03" + } + }, + "orange": { + "50": { + "value": "#ffe9d9" + }, + "100": { + "value": "#ffd3b3" + }, + "200": { + "value": "#ffbd8d" + }, + "300": { + "value": "#ffa666" + }, + "400": { + "value": "#ff9040" + }, + "500": { + "value": "#ff7a1a" + }, + "600": { + "value": "#e15e00" + }, + "700": { + "value": "#a94700" + }, + "800": { + "value": "#702f00" + }, + "900": { + "value": "#381800" + } + }, + "red": { + "50": { + "value": "#ffdbd9" + }, + "100": { + "value": "#ffb7b3" + }, + "200": { + "value": "#ff948d" + }, + "300": { + "value": "#ff7066" + }, + "400": { + "value": "#ff4c40" + }, + "500": { + "value": "#ff281a" + }, + "600": { + "value": "#e10e00" + }, + "700": { + "value": "#a90a00" + }, + "800": { + "value": "#700700" + }, + "900": { + "value": "#380300" + } + }, + "pear": { + "50": { + "value": "#f7f8dc" + }, + "100": { + "value": "#eff0ba" + }, + "200": { + "value": "#e8e997" + }, + "300": { + "value": "#e0e274" + }, + "400": { + "value": "#d8da52" + }, + "500": { + "value": "#d0d32f" + }, + "600": { + "value": "#a8aa24" + }, + "700": { + "value": "#7e801b" + }, + "800": { + "value": "#545512" + }, + "900": { + "value": "#2a2b09" + } + }, + "teal": { + "50": { + "value": "#d7faf8" + }, + "100": { + "value": "#aff4f0" + }, + "200": { + "value": "#87efe9" + }, + "300": { + "value": "#5fe9e1" + }, + "400": { + "value": "#36e4da" + }, + "500": { + "value": "#1cd1c6" + }, + "600": { + "value": "#16a79e" + }, + "700": { + "value": "#117d77" + }, + "800": { + "value": "#0b544f" + }, + "900": { + "value": "#062a28" + } + }, + "lightblue": { + "50": { + "value": "#d9f8ff" + }, + "100": { + "value": "#b3f1ff" + }, + "200": { + "value": "#8deaff" + }, + "300": { + "value": "#66e4ff" + }, + "400": { + "value": "#40ddff" + }, + "500": { + "value": "#1ad6ff" + }, + "600": { + "value": "#00b9e1" + }, + "700": { + "value": "#008aa9" + }, + "800": { + "value": "#005c70" + }, + "900": { + "value": "#002e38" + } + }, + "blue": { + "50": { + "value": "#d9f1ff" + }, + "100": { + "value": "#b3e4ff" + }, + "200": { + "value": "#8dd6ff" + }, + "300": { + "value": "#66c8ff" + }, + "400": { + "value": "#40bbff" + }, + "500": { + "value": "#1aadff" + }, + "600": { + "value": "#0090e1" + }, + "700": { + "value": "#006ca9" + }, + "800": { + "value": "#004870" + }, + "900": { + "value": "#002438" + } + }, + "indigoblue": { + "50": { + "value": "#d9e5ff" + }, + "100": { + "value": "#b3cbff" + }, + "200": { + "value": "#8db0ff" + }, + "300": { + "value": "#6696ff" + }, + "400": { + "value": "#407cff" + }, + "500": { + "value": "#1a62ff" + }, + "600": { + "value": "#0047e1" + }, + "700": { + "value": "#0035a9" + }, + "800": { + "value": "#002370" + }, + "900": { + "value": "#001238" + } + }, + "royalblue": { + "50": { + "value": "#dfdbfb" + }, + "100": { + "value": "#c0b7f7" + }, + "200": { + "value": "#a093f3" + }, + "300": { + "value": "#806ff0" + }, + "400": { + "value": "#614bec" + }, + "500": { + "value": "#4127e8" + }, + "600": { + "value": "#2c15c4" + }, + "700": { + "value": "#211093" + }, + "800": { + "value": "#160a62" + }, + "900": { + "value": "#0b0531" + } + }, + "purple": { + "50": { + "value": "#ead9ff" + }, + "100": { + "value": "#d5b3ff" + }, + "200": { + "value": "#c08dff" + }, + "300": { + "value": "#ab66ff" + }, + "400": { + "value": "#9640ff" + }, + "500": { + "value": "#811aff" + }, + "600": { + "value": "#6500e1" + }, + "700": { + "value": "#4c00a9" + }, + "800": { + "value": "#330070" + }, + "900": { + "value": "#190038" + } + }, + "pink": { + "50": { + "value": "#ffd9f2" + }, + "100": { + "value": "#ffb3e5" + }, + "200": { + "value": "#ff8dd8" + }, + "300": { + "value": "#ff66cc" + }, + "400": { + "value": "#ff40bf" + }, + "500": { + "value": "#ff1ab2" + }, + "600": { + "value": "#e10095" + }, + "700": { + "value": "#a90070" + }, + "800": { + "value": "#70004b" + }, + "900": { + "value": "#380025" + } + }, + "ruby": { + "50": { + "value": "#ffd9e4" + }, + "100": { + "value": "#ffb3c9" + }, + "200": { + "value": "#ff8dae" + }, + "300": { + "value": "#ff6694" + }, + "400": { + "value": "#ff4079" + }, + "500": { + "value": "#ff1a5e" + }, + "600": { + "value": "#e10043" + }, + "700": { + "value": "#a90032" + }, + "800": { + "value": "#700021" + }, + "900": { + "value": "#380011" + } + } + }, + "elements": { + "text": { + "primary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + }, + "secondary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + }, + "container": { + "maxWidth": { + "value": "80rem" + }, + "padding": { + "mobile": { + "value": "{space.4}" + }, + "xs": { + "value": "{space.4}" + }, + "sm": { + "value": "{space.6}" + }, + "md": { + "value": "{space.6}" + } + } + }, + "backdrop": { + "filter": { + "value": "saturate(200%) blur(20px)" + }, + "background": { + "value": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + }, + "border": { + "primary": { + "static": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "secondary": { + "static": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + }, + "hover": { + "value": { + "initial": "", + "dark": "" + } + } + } + }, + "surface": { + "background": { + "base": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + }, + "state": { + "primary": { + "color": { + "primary": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + }, + "info": { + "color": { + "primary": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + }, + "success": { + "color": { + "primary": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + }, + "warning": { + "color": { + "primary": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + }, + "danger": { + "color": { + "primary": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + } + }, + "typography": { + "verticalMargin": { + "sm": { + "value": "16px" + }, + "base": { + "value": "32px" + } + }, + "letterSpacing": { + "tight": { + "value": "-0.025em" + }, + "wide": { + "value": "0.025em" + } + }, + "fontSize": { + "xs": { + "value": "12px" + }, + "sm": { + "value": "14px" + }, + "base": { + "value": "16px" + }, + "lg": { + "value": "18px" + }, + "xl": { + "value": "20px" + }, + "2xl": { + "value": "24px" + }, + "3xl": { + "value": "30px" + }, + "4xl": { + "value": "36px" + }, + "5xl": { + "value": "48px" + }, + "6xl": { + "value": "60px" + }, + "7xl": { + "value": "72px" + }, + "8xl": { + "value": "96px" + }, + "9xl": { + "value": "128px" + } + }, + "fontWeight": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + }, + "lead": { + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + }, + "font": { + "display": { + "value": "{font.sans}" + }, + "body": { + "value": "{font.sans}" + }, + "code": { + "value": "{font.mono}" + } + }, + "color": { + "primary": { + "50": { + "value": "{color.primary.50}" + }, + "100": { + "value": "{color.primary.100}" + }, + "200": { + "value": "{color.primary.200}" + }, + "300": { + "value": "{color.primary.300}" + }, + "400": { + "value": "{color.primary.400}" + }, + "500": { + "value": "{color.primary.500}" + }, + "600": { + "value": "{color.primary.600}" + }, + "700": { + "value": "{color.primary.700}" + }, + "800": { + "value": "{color.primary.800}" + }, + "900": { + "value": "{color.primary.900}" + } + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + } + } + }, + "prose": { + "p": { + "fontSize": { + "value": "{typography.fontSize.base}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "br": { + "margin": { + "value": "{typography.verticalMargin.base} 0 0 0" + } + } + }, + "h1": { + "margin": { + "value": "0 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.5xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.bold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.3xl}" + } + }, + "h2": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.4xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.2xl}" + } + }, + "h3": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.3xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.xl}" + } + }, + "h4": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.2xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + }, + "h5": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + }, + "h6": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.lg}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.base}" + } + }, + "strong": { + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + }, + "img": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "a": { + "textDecoration": { + "value": "none" + }, + "color": { + "static": { + "value": { + "initial": "inherit", + "dark": "inherit" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "static": { + "value": "dashed" + }, + "hover": { + "value": "solid" + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "distance": { + "value": "2px" + } + }, + "fontWeight": { + "value": "{typography.fontWeight.medium}" + }, + "hasCode": { + "borderBottom": { + "value": "none" + } + }, + "code": { + "border": { + "width": { + "value": "{prose.a.border.width}" + }, + "style": { + "value": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "background": { + "static": {}, + "hover": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + }, + "blockquote": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 24px" + }, + "quotes": { + "value": "'201C' '201D' '2018' '2019'" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + }, + "border": { + "width": { + "value": "4px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "ul": { + "listStyleType": { + "value": "disc" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "ol": { + "listStyleType": { + "value": "decimal" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "li": { + "margin": { + "value": "{typography.verticalMargin.sm} 0" + }, + "listStylePosition": { + "value": "outside" + } + }, + "hr": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "style": { + "value": "solid" + }, + "width": { + "value": "1px" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "table": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "textAlign": { + "value": "left" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "lineHeight": { + "value": "inherit" + } + }, + "thead": { + "border": { + "width": { + "value": "0px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "th": { + "color": { + "value": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + }, + "padding": { + "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + }, + "tbody": { + "tr": { + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "dashed" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "td": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + }, + "code": { + "inline": { + "fontSize": { + "value": "{typography.fontSize.sm}" + } + } + } + }, + "code": { + "block": { + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + }, + "pre": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "inline": { + "borderRadius": { + "value": "0.375rem" + }, + "padding": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.normal}" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + } + }, + "radii": { + "sm": { + "value": "0.375rem" + }, + "md": { + "value": "0.5rem" + }, + "lg": { + "value": "0.75rem" + }, + "none": { + "value": "0px" + }, + "2xs": { + "value": "0.125rem" + }, + "xs": { + "value": "0.25rem" + }, + "xl": { + "value": "1rem" + }, + "2xl": { + "value": "1.5rem" + }, + "3xl": { + "value": "1.75rem" + }, + "full": { + "value": "9999px" + } + }, + "fontSize": { + "xs": { + "value": "0.75rem" + }, + "sm": { + "value": "0.875rem" + }, + "base": { + "value": "1rem" + }, + "lg": { + "value": "1.125rem" + }, + "xl": { + "value": "1.25rem" + }, + "2xl": { + "value": "1.5rem" + }, + "3xl": { + "value": "1.875rem" + }, + "4xl": { + "value": "2.25rem" + }, + "5xl": { + "value": "3rem" + }, + "6xl": { + "value": "3.75rem" + }, + "7xl": { + "value": "4.5rem" + }, + "8xl": { + "value": "6rem" + }, + "9xl": { + "value": "8rem" + } + }, + "lead": { + "1": { + "value": ".025rem" + }, + "2": { + "value": ".5rem" + }, + "3": { + "value": ".75rem" + }, + "4": { + "value": "1rem" + }, + "5": { + "value": "1.25rem" + }, + "6": { + "value": "1.5rem" + }, + "7": { + "value": "1.75rem" + }, + "8": { + "value": "2rem" + }, + "9": { + "value": "2.25rem" + }, + "10": { + "value": "2.5rem" + }, + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + }, + "font": { + "sans": { + "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" + }, + "serif": { + "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" + }, + "mono": { + "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" + } + }, + "docus": { + "header": { + "height": { + "value": "64px" + } + }, + "footer": { + "padding": { + "value": "{space.4} 0" + } + }, + "readableLine": { + "value": "78ch" + }, + "loadingBar": { + "height": { + "value": "3px" + }, + "gradientColorStop1": { + "value": "#00dc82" + }, + "gradientColorStop2": { + "value": "#34cdfe" + }, + "gradientColorStop3": { + "value": "#0047e1" + } + } + }, + "media": { + "xs": { + "value": "(min-width: 475px)" + }, + "sm": { + "value": "(min-width: 640px)" + }, + "md": { + "value": "(min-width: 768px)" + }, + "lg": { + "value": "(min-width: 1024px)" + }, + "xl": { + "value": "(min-width: 1280px)" + }, + "2xl": { + "value": "(min-width: 1536px)" + }, + "rm": { + "value": "(prefers-reduced-motion: reduce)" + }, + "landscape": { + "value": "only screen and (orientation: landscape)" + }, + "portrait": { + "value": "only screen and (orientation: portrait)" + } + }, + "width": { + "screen": { + "value": "100vw" + } + }, + "height": { + "screen": { + "value": "100vh" + } + }, + "shadow": { + "xs": { + "value": "0px 1px 2px 0px #000000" + }, + "sm": { + "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" + }, + "md": { + "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" + }, + "lg": { + "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" + }, + "xl": { + "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" + }, + "2xl": { + "value": "0px 25px 50px -12px {color.gray.900}" + }, + "none": { + "value": "0px 0px 0px 0px transparent" + } + }, + "size": { + "0": { + "value": "0px" + }, + "2": { + "value": "2px" + }, + "4": { + "value": "4px" + }, + "6": { + "value": "6px" + }, + "8": { + "value": "8px" + }, + "12": { + "value": "12px" + }, + "16": { + "value": "16px" + }, + "20": { + "value": "20px" + }, + "24": { + "value": "24px" + }, + "32": { + "value": "32px" + }, + "40": { + "value": "40px" + }, + "48": { + "value": "48px" + }, + "56": { + "value": "56px" + }, + "64": { + "value": "64px" + }, + "80": { + "value": "80px" + }, + "104": { + "value": "104px" + }, + "200": { + "value": "200px" + }, + "xs": { + "value": "20rem" + }, + "sm": { + "value": "24rem" + }, + "md": { + "value": "28rem" + }, + "lg": { + "value": "32rem" + }, + "xl": { + "value": "36rem" + }, + "2xl": { + "value": "42rem" + }, + "3xl": { + "value": "48rem" + }, + "4xl": { + "value": "56rem" + }, + "5xl": { + "value": "64rem" + }, + "6xl": { + "value": "72rem" + }, + "7xl": { + "value": "80rem" + }, + "full": { + "value": "100%" + } + }, + "space": { + "0": { + "value": "0px" + }, + "1": { + "value": "0.25rem" + }, + "2": { + "value": "0.5rem" + }, + "3": { + "value": "0.75rem" + }, + "4": { + "value": "1rem" + }, + "5": { + "value": "1.25rem" + }, + "6": { + "value": "1.5rem" + }, + "7": { + "value": "1.75rem" + }, + "8": { + "value": "2rem" + }, + "9": { + "value": "2.25rem" + }, + "10": { + "value": "2.5rem" + }, + "11": { + "value": "2.75rem" + }, + "12": { + "value": "3rem" + }, + "14": { + "value": "3.5rem" + }, + "16": { + "value": "4rem" + }, + "20": { + "value": "5rem" + }, + "24": { + "value": "6rem" + }, + "28": { + "value": "7rem" + }, + "32": { + "value": "8rem" + }, + "36": { + "value": "9rem" + }, + "40": { + "value": "10rem" + }, + "44": { + "value": "11rem" + }, + "48": { + "value": "12rem" + }, + "52": { + "value": "13rem" + }, + "56": { + "value": "14rem" + }, + "60": { + "value": "15rem" + }, + "64": { + "value": "16rem" + }, + "72": { + "value": "18rem" + }, + "80": { + "value": "20rem" + }, + "96": { + "value": "24rem" + }, + "px": { + "value": "1px" + }, + "rem": { + "125": { + "value": "0.125rem" + }, + "375": { + "value": "0.375rem" + }, + "625": { + "value": "0.625rem" + }, + "875": { + "value": "0.875rem" + } + } + }, + "borderWidth": { + "noBorder": { + "value": "0" + }, + "sm": { + "value": "1px" + }, + "md": { + "value": "2px" + }, + "lg": { + "value": "3px" + } + }, + "opacity": { + "noOpacity": { + "value": "0" + }, + "bright": { + "value": "0.1" + }, + "light": { + "value": "0.15" + }, + "soft": { + "value": "0.3" + }, + "medium": { + "value": "0.5" + }, + "high": { + "value": "0.8" + }, + "total": { + "value": "1" + } + }, + "fontWeight": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + }, + "letterSpacing": { + "tighter": { + "value": "-0.05em" + }, + "tight": { + "value": "-0.025em" + }, + "normal": { + "value": "0em" + }, + "wide": { + "value": "0.025em" + }, + "wider": { + "value": "0.05em" + }, + "widest": { + "value": "0.1em" + } + }, + "text": { + "xs": { + "fontSize": { + "value": "{fontSize.xs}" + }, + "lineHeight": { + "value": "{lead.4}" + } + }, + "sm": { + "fontSize": { + "value": "{fontSize.sm}" + }, + "lineHeight": { + "value": "{lead.5}" + } + }, + "base": { + "fontSize": { + "value": "{fontSize.base}" + }, + "lineHeight": { + "value": "{lead.6}" + } + }, + "lg": { + "fontSize": { + "value": "{fontSize.lg}" + }, + "lineHeight": { + "value": "{lead.7}" + } + }, + "xl": { + "fontSize": { + "value": "{fontSize.xl}" + }, + "lineHeight": { + "value": "{lead.7}" + } + }, + "2xl": { + "fontSize": { + "value": "{fontSize.2xl}" + }, + "lineHeight": { + "value": "{lead.8}" + } + }, + "3xl": { + "fontSize": { + "value": "{fontSize.3xl}" + }, + "lineHeight": { + "value": "{lead.9}" + } + }, + "4xl": { + "fontSize": { + "value": "{fontSize.4xl}" + }, + "lineHeight": { + "value": "{lead.10}" + } + }, + "5xl": { + "fontSize": { + "value": "{fontSize.5xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + }, + "6xl": { + "fontSize": { + "value": "{fontSize.6xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + } + } + } + }, + "default": { + "color": { + "primary": { + "50": { + "value": "#fff2cc" + }, + "100": { + "value": "#ffe599" + }, + "200": { + "value": "#ffd966" + }, + "300": { + "value": "#f1c232" + }, + "400": { + "value": "#f1c232" + }, + "500": { + "value": "#f1c232" + }, + "600": { + "value": "#f1c232" + }, + "700": { + "value": "#f1c232" + }, + "800": { + "value": "#f1c232" + }, + "900": { + "value": "#f1c232" + } + }, + "white": { + "value": "#ffffff" + }, + "black": { + "value": "#0c0c0d" + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + }, + "gray": { + "50": { + "value": "#fafafa" + }, + "100": { + "value": "#f4f4f5" + }, + "200": { + "value": "#e4e4e7" + }, + "300": { + "value": "#D4d4d8" + }, + "400": { + "value": "#a1a1aa" + }, + "500": { + "value": "#71717A" + }, + "600": { + "value": "#52525B" + }, + "700": { + "value": "#3f3f46" + }, + "800": { + "value": "#27272A" + }, + "900": { + "value": "#18181B" + } + }, + "green": { + "50": { + "value": "#d6ffee" + }, + "100": { + "value": "#acffdd" + }, + "200": { + "value": "#83ffcc" + }, + "300": { + "value": "#30ffaa" + }, + "400": { + "value": "#00dc82" + }, + "500": { + "value": "#00bd6f" + }, + "600": { + "value": "#009d5d" + }, + "700": { + "value": "#007e4a" + }, + "800": { + "value": "#005e38" + }, + "900": { + "value": "#003f25" + } + }, + "yellow": { + "50": { + "value": "#fdf6db" + }, + "100": { + "value": "#fcedb7" + }, + "200": { + "value": "#fae393" + }, + "300": { + "value": "#f8da70" + }, + "400": { + "value": "#f7d14c" + }, + "500": { + "value": "#f5c828" + }, + "600": { + "value": "#daac0a" + }, + "700": { + "value": "#a38108" + }, + "800": { + "value": "#6d5605" + }, + "900": { + "value": "#362b03" + } + }, + "orange": { + "50": { + "value": "#ffe9d9" + }, + "100": { + "value": "#ffd3b3" + }, + "200": { + "value": "#ffbd8d" + }, + "300": { + "value": "#ffa666" + }, + "400": { + "value": "#ff9040" + }, + "500": { + "value": "#ff7a1a" + }, + "600": { + "value": "#e15e00" + }, + "700": { + "value": "#a94700" + }, + "800": { + "value": "#702f00" + }, + "900": { + "value": "#381800" + } + }, + "red": { + "50": { + "value": "#ffdbd9" + }, + "100": { + "value": "#ffb7b3" + }, + "200": { + "value": "#ff948d" + }, + "300": { + "value": "#ff7066" + }, + "400": { + "value": "#ff4c40" + }, + "500": { + "value": "#ff281a" + }, + "600": { + "value": "#e10e00" + }, + "700": { + "value": "#a90a00" + }, + "800": { + "value": "#700700" + }, + "900": { + "value": "#380300" + } + }, + "pear": { + "50": { + "value": "#f7f8dc" + }, + "100": { + "value": "#eff0ba" + }, + "200": { + "value": "#e8e997" + }, + "300": { + "value": "#e0e274" + }, + "400": { + "value": "#d8da52" + }, + "500": { + "value": "#d0d32f" + }, + "600": { + "value": "#a8aa24" + }, + "700": { + "value": "#7e801b" + }, + "800": { + "value": "#545512" + }, + "900": { + "value": "#2a2b09" + } + }, + "teal": { + "50": { + "value": "#d7faf8" + }, + "100": { + "value": "#aff4f0" + }, + "200": { + "value": "#87efe9" + }, + "300": { + "value": "#5fe9e1" + }, + "400": { + "value": "#36e4da" + }, + "500": { + "value": "#1cd1c6" + }, + "600": { + "value": "#16a79e" + }, + "700": { + "value": "#117d77" + }, + "800": { + "value": "#0b544f" + }, + "900": { + "value": "#062a28" + } + }, + "lightblue": { + "50": { + "value": "#d9f8ff" + }, + "100": { + "value": "#b3f1ff" + }, + "200": { + "value": "#8deaff" + }, + "300": { + "value": "#66e4ff" + }, + "400": { + "value": "#40ddff" + }, + "500": { + "value": "#1ad6ff" + }, + "600": { + "value": "#00b9e1" + }, + "700": { + "value": "#008aa9" + }, + "800": { + "value": "#005c70" + }, + "900": { + "value": "#002e38" + } + }, + "blue": { + "50": { + "value": "#d9f1ff" + }, + "100": { + "value": "#b3e4ff" + }, + "200": { + "value": "#8dd6ff" + }, + "300": { + "value": "#66c8ff" + }, + "400": { + "value": "#40bbff" + }, + "500": { + "value": "#1aadff" + }, + "600": { + "value": "#0090e1" + }, + "700": { + "value": "#006ca9" + }, + "800": { + "value": "#004870" + }, + "900": { + "value": "#002438" + } + }, + "indigoblue": { + "50": { + "value": "#d9e5ff" + }, + "100": { + "value": "#b3cbff" + }, + "200": { + "value": "#8db0ff" + }, + "300": { + "value": "#6696ff" + }, + "400": { + "value": "#407cff" + }, + "500": { + "value": "#1a62ff" + }, + "600": { + "value": "#0047e1" + }, + "700": { + "value": "#0035a9" + }, + "800": { + "value": "#002370" + }, + "900": { + "value": "#001238" + } + }, + "royalblue": { + "50": { + "value": "#dfdbfb" + }, + "100": { + "value": "#c0b7f7" + }, + "200": { + "value": "#a093f3" + }, + "300": { + "value": "#806ff0" + }, + "400": { + "value": "#614bec" + }, + "500": { + "value": "#4127e8" + }, + "600": { + "value": "#2c15c4" + }, + "700": { + "value": "#211093" + }, + "800": { + "value": "#160a62" + }, + "900": { + "value": "#0b0531" + } + }, + "purple": { + "50": { + "value": "#ead9ff" + }, + "100": { + "value": "#d5b3ff" + }, + "200": { + "value": "#c08dff" + }, + "300": { + "value": "#ab66ff" + }, + "400": { + "value": "#9640ff" + }, + "500": { + "value": "#811aff" + }, + "600": { + "value": "#6500e1" + }, + "700": { + "value": "#4c00a9" + }, + "800": { + "value": "#330070" + }, + "900": { + "value": "#190038" + } + }, + "pink": { + "50": { + "value": "#ffd9f2" + }, + "100": { + "value": "#ffb3e5" + }, + "200": { + "value": "#ff8dd8" + }, + "300": { + "value": "#ff66cc" + }, + "400": { + "value": "#ff40bf" + }, + "500": { + "value": "#ff1ab2" + }, + "600": { + "value": "#e10095" + }, + "700": { + "value": "#a90070" + }, + "800": { + "value": "#70004b" + }, + "900": { + "value": "#380025" + } + }, + "ruby": { + "50": { + "value": "#ffd9e4" + }, + "100": { + "value": "#ffb3c9" + }, + "200": { + "value": "#ff8dae" + }, + "300": { + "value": "#ff6694" + }, + "400": { + "value": "#ff4079" + }, + "500": { + "value": "#ff1a5e" + }, + "600": { + "value": "#e10043" + }, + "700": { + "value": "#a90032" + }, + "800": { + "value": "#700021" + }, + "900": { + "value": "#380011" + } + } + }, + "elements": { + "text": { + "primary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.900}", + "dark": "{color.gray.50}" + } + }, + "hover": {} + } + }, + "secondary": { + "color": { + "static": { + "value": { + "initial": "{color.gray.500}", + "dark": "{color.gray.400}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.700}", + "dark": "{color.gray.200}" + } + } + } + } + }, + "container": { + "maxWidth": { + "value": "80rem" + }, + "padding": { + "mobile": { + "value": "{space.4}" + }, + "xs": { + "value": "{space.4}" + }, + "sm": { + "value": "{space.6}" + }, + "md": { + "value": "{space.6}" + } + } + }, + "backdrop": { + "filter": { + "value": "saturate(200%) blur(20px)" + }, + "background": { + "value": { + "initial": "#fffc", + "dark": "#0c0d0ccc" + } + } + }, + "border": { + "primary": { + "static": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + }, + "hover": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + } + }, + "secondary": { + "static": { + "value": { + "initial": "{color.gray.200}", + "dark": "{color.gray.800}" + } + }, + "hover": { + "value": { + "initial": "", + "dark": "" + } + } + } + }, + "surface": { + "background": { + "base": { + "value": { + "initial": "{color.gray.100}", + "dark": "{color.gray.900}" + } + } + } + }, + "state": { + "primary": { + "color": { + "primary": { + "value": { + "initial": "{color.primary.600}", + "dark": "{color.primary.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.700}", + "dark": "{color.primary.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.primary.50}", + "dark": "{color.primary.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.primary.100}", + "dark": "{color.primary.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.primary.200}", + "dark": "{color.primary.700}" + } + } + } + }, + "info": { + "color": { + "primary": { + "value": { + "initial": "{color.blue.500}", + "dark": "{color.blue.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.600}", + "dark": "{color.blue.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.blue.50}", + "dark": "{color.blue.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.blue.100}", + "dark": "{color.blue.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.blue.200}", + "dark": "{color.blue.700}" + } + } + } + }, + "success": { + "color": { + "primary": { + "value": { + "initial": "{color.green.500}", + "dark": "{color.green.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.600}", + "dark": "{color.green.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.green.50}", + "dark": "{color.green.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.green.100}", + "dark": "{color.green.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.green.200}", + "dark": "{color.green.700}" + } + } + } + }, + "warning": { + "color": { + "primary": { + "value": { + "initial": "{color.yellow.600}", + "dark": "{color.yellow.400}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.700}", + "dark": "{color.yellow.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.yellow.50}", + "dark": "{color.yellow.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.yellow.100}", + "dark": "{color.yellow.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.yellow.200}", + "dark": "{color.yellow.700}" + } + } + } + }, + "danger": { + "color": { + "primary": { + "value": { + "initial": "{color.red.500}", + "dark": "{color.red.300}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.600}", + "dark": "{color.red.200}" + } + } + }, + "backgroundColor": { + "primary": { + "value": { + "initial": "{color.red.50}", + "dark": "{color.red.900}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + } + }, + "borderColor": { + "primary": { + "value": { + "initial": "{color.red.100}", + "dark": "{color.red.800}" + } + }, + "secondary": { + "value": { + "initial": "{color.red.200}", + "dark": "{color.red.700}" + } + } + } + } + } + }, + "typography": { + "verticalMargin": { + "sm": { + "value": "16px" + }, + "base": { + "value": "32px" + } + }, + "letterSpacing": { + "tight": { + "value": "-0.025em" + }, + "wide": { + "value": "0.025em" + } + }, + "fontSize": { + "xs": { + "value": "12px" + }, + "sm": { + "value": "14px" + }, + "base": { + "value": "16px" + }, + "lg": { + "value": "18px" + }, + "xl": { + "value": "20px" + }, + "2xl": { + "value": "24px" + }, + "3xl": { + "value": "30px" + }, + "4xl": { + "value": "36px" + }, + "5xl": { + "value": "48px" + }, + "6xl": { + "value": "60px" + }, + "7xl": { + "value": "72px" + }, + "8xl": { + "value": "96px" + }, + "9xl": { + "value": "128px" + } + }, + "fontWeight": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + }, + "lead": { + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + }, + "font": { + "display": { + "value": "{font.sans}" + }, + "body": { + "value": "{font.sans}" + }, + "code": { + "value": "{font.mono}" + } + }, + "color": { + "primary": { + "50": { + "value": "{color.primary.50}" + }, + "100": { + "value": "{color.primary.100}" + }, + "200": { + "value": "{color.primary.200}" + }, + "300": { + "value": "{color.primary.300}" + }, + "400": { + "value": "{color.primary.400}" + }, + "500": { + "value": "{color.primary.500}" + }, + "600": { + "value": "{color.primary.600}" + }, + "700": { + "value": "{color.primary.700}" + }, + "800": { + "value": "{color.primary.800}" + }, + "900": { + "value": "{color.primary.900}" + } + }, + "secondary": { + "50": { + "value": "{color.gray.50}" + }, + "100": { + "value": "{color.gray.100}" + }, + "200": { + "value": "{color.gray.200}" + }, + "300": { + "value": "{color.gray.300}" + }, + "400": { + "value": "{color.gray.400}" + }, + "500": { + "value": "{color.gray.500}" + }, + "600": { + "value": "{color.gray.600}" + }, + "700": { + "value": "{color.gray.700}" + }, + "800": { + "value": "{color.gray.800}" + }, + "900": { + "value": "{color.gray.900}" + } + } + } + }, + "prose": { + "p": { + "fontSize": { + "value": "{typography.fontSize.base}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "br": { + "margin": { + "value": "{typography.verticalMargin.base} 0 0 0" + } + } + }, + "h1": { + "margin": { + "value": "0 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.5xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.bold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.3xl}" + } + }, + "h2": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.4xl}" + }, + "lineHeight": { + "value": "{typography.lead.tight}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.2xl}" + } + }, + "h3": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.3xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.xl}" + } + }, + "h4": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.2xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "letterSpacing": { + "value": "{typography.letterSpacing.tight}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + }, + "h5": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.xl}" + }, + "lineHeight": { + "value": "{typography.lead.snug}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.lg}" + } + }, + "h6": { + "margin": { + "value": "3rem 0 2rem" + }, + "fontSize": { + "value": "{typography.fontSize.lg}" + }, + "lineHeight": { + "value": "{typography.lead.normal}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + }, + "iconSize": { + "value": "{typography.fontSize.base}" + } + }, + "strong": { + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + }, + "img": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + } + }, + "a": { + "textDecoration": { + "value": "none" + }, + "color": { + "static": { + "value": { + "initial": "inherit", + "dark": "inherit" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.400}" + } + } + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "static": { + "value": "dashed" + }, + "hover": { + "value": "solid" + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "distance": { + "value": "2px" + } + }, + "fontWeight": { + "value": "{typography.fontWeight.medium}" + }, + "hasCode": { + "borderBottom": { + "value": "none" + } + }, + "code": { + "border": { + "width": { + "value": "{prose.a.border.width}" + }, + "style": { + "value": "{prose.a.border.style.static}" + }, + "color": { + "static": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.600}" + } + }, + "hover": { + "value": { + "initial": "{typography.color.primary.500}", + "dark": "{typography.color.primary.600}" + } + } + } + }, + "color": { + "static": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + }, + "hover": { + "value": { + "initial": "currentColor", + "dark": "currentColor" + } + } + }, + "background": { + "static": {}, + "hover": { + "value": { + "initial": "{typography.color.primary.50}", + "dark": "{typography.color.primary.900}" + } + } + } + } + }, + "blockquote": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 24px" + }, + "quotes": { + "value": "'201C' '201D' '2018' '2019'" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.400}" + } + }, + "border": { + "width": { + "value": "4px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "ul": { + "listStyleType": { + "value": "disc" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.400}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "ol": { + "listStyleType": { + "value": "decimal" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "padding": { + "value": "0 0 0 21px" + }, + "li": { + "markerColor": { + "value": { + "initial": "{typography.color.secondary.500}", + "dark": "{typography.color.secondary.500}" + } + } + } + }, + "li": { + "margin": { + "value": "{typography.verticalMargin.sm} 0" + }, + "listStylePosition": { + "value": "outside" + } + }, + "hr": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "style": { + "value": "solid" + }, + "width": { + "value": "1px" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "table": { + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "textAlign": { + "value": "left" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "lineHeight": { + "value": "inherit" + } + }, + "thead": { + "border": { + "width": { + "value": "0px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + }, + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.600}" + } + } + } + }, + "th": { + "color": { + "value": { + "initial": "{typography.color.secondary.600}", + "dark": "{typography.color.secondary.400}" + } + }, + "padding": { + "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.semibold}" + } + }, + "tbody": { + "tr": { + "borderBottom": { + "width": { + "value": "1px" + }, + "style": { + "value": "dashed" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.300}", + "dark": "{typography.color.secondary.700}" + } + } + } + }, + "td": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + }, + "code": { + "inline": { + "fontSize": { + "value": "{typography.fontSize.sm}" + } + } + } + }, + "code": { + "block": { + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "margin": { + "value": "{typography.verticalMargin.base} 0" + }, + "border": { + "width": { + "value": "1px" + }, + "style": { + "value": "solid" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.200}", + "dark": "{typography.color.secondary.800}" + } + } + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + }, + "pre": { + "padding": { + "value": "{typography.verticalMargin.sm}" + } + } + }, + "inline": { + "borderRadius": { + "value": "0.375rem" + }, + "padding": { + "value": "0.25rem 0.375rem 0.25rem 0.375rem" + }, + "fontSize": { + "value": "{typography.fontSize.sm}" + }, + "fontWeight": { + "value": "{typography.fontWeight.normal}" + }, + "color": { + "value": { + "initial": "{typography.color.secondary.700}", + "dark": "{typography.color.secondary.200}" + } + }, + "backgroundColor": { + "value": { + "initial": "{typography.color.secondary.100}", + "dark": "{typography.color.secondary.900}" + } + } + } + } + }, + "radii": { + "sm": { + "value": "0.375rem" + }, + "md": { + "value": "0.5rem" + }, + "lg": { + "value": "0.75rem" + }, + "none": { + "value": "0px" + }, + "2xs": { + "value": "0.125rem" + }, + "xs": { + "value": "0.25rem" + }, + "xl": { + "value": "1rem" + }, + "2xl": { + "value": "1.5rem" + }, + "3xl": { + "value": "1.75rem" + }, + "full": { + "value": "9999px" + } + }, + "fontSize": { + "xs": { + "value": "0.75rem" + }, + "sm": { + "value": "0.875rem" + }, + "base": { + "value": "1rem" + }, + "lg": { + "value": "1.125rem" + }, + "xl": { + "value": "1.25rem" + }, + "2xl": { + "value": "1.5rem" + }, + "3xl": { + "value": "1.875rem" + }, + "4xl": { + "value": "2.25rem" + }, + "5xl": { + "value": "3rem" + }, + "6xl": { + "value": "3.75rem" + }, + "7xl": { + "value": "4.5rem" + }, + "8xl": { + "value": "6rem" + }, + "9xl": { + "value": "8rem" + } + }, + "lead": { + "1": { + "value": ".025rem" + }, + "2": { + "value": ".5rem" + }, + "3": { + "value": ".75rem" + }, + "4": { + "value": "1rem" + }, + "5": { + "value": "1.25rem" + }, + "6": { + "value": "1.5rem" + }, + "7": { + "value": "1.75rem" + }, + "8": { + "value": "2rem" + }, + "9": { + "value": "2.25rem" + }, + "10": { + "value": "2.5rem" + }, + "none": { + "value": "1" + }, + "tight": { + "value": "1.25" + }, + "snug": { + "value": "1.375" + }, + "normal": { + "value": "1.5" + }, + "relaxed": { + "value": "1.625" + }, + "loose": { + "value": "2" + } + }, + "font": { + "sans": { + "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" + }, + "serif": { + "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" + }, + "mono": { + "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" + } + }, + "docus": { + "header": { + "height": { + "value": "64px" + } + }, + "footer": { + "padding": { + "value": "{space.4} 0" + } + }, + "readableLine": { + "value": "78ch" + }, + "loadingBar": { + "height": { + "value": "3px" + }, + "gradientColorStop1": { + "value": "#00dc82" + }, + "gradientColorStop2": { + "value": "#34cdfe" + }, + "gradientColorStop3": { + "value": "#0047e1" + } + } + }, + "media": { + "xs": { + "value": "(min-width: 475px)" + }, + "sm": { + "value": "(min-width: 640px)" + }, + "md": { + "value": "(min-width: 768px)" + }, + "lg": { + "value": "(min-width: 1024px)" + }, + "xl": { + "value": "(min-width: 1280px)" + }, + "2xl": { + "value": "(min-width: 1536px)" + }, + "rm": { + "value": "(prefers-reduced-motion: reduce)" + }, + "landscape": { + "value": "only screen and (orientation: landscape)" + }, + "portrait": { + "value": "only screen and (orientation: portrait)" + } + }, + "width": { + "screen": { + "value": "100vw" + } + }, + "height": { + "screen": { + "value": "100vh" + } + }, + "shadow": { + "xs": { + "value": "0px 1px 2px 0px #000000" + }, + "sm": { + "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" + }, + "md": { + "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" + }, + "lg": { + "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" + }, + "xl": { + "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" + }, + "2xl": { + "value": "0px 25px 50px -12px {color.gray.900}" + }, + "none": { + "value": "0px 0px 0px 0px transparent" + } + }, + "size": { + "0": { + "value": "0px" + }, + "2": { + "value": "2px" + }, + "4": { + "value": "4px" + }, + "6": { + "value": "6px" + }, + "8": { + "value": "8px" + }, + "12": { + "value": "12px" + }, + "16": { + "value": "16px" + }, + "20": { + "value": "20px" + }, + "24": { + "value": "24px" + }, + "32": { + "value": "32px" + }, + "40": { + "value": "40px" + }, + "48": { + "value": "48px" + }, + "56": { + "value": "56px" + }, + "64": { + "value": "64px" + }, + "80": { + "value": "80px" + }, + "104": { + "value": "104px" + }, + "200": { + "value": "200px" + }, + "xs": { + "value": "20rem" + }, + "sm": { + "value": "24rem" + }, + "md": { + "value": "28rem" + }, + "lg": { + "value": "32rem" + }, + "xl": { + "value": "36rem" + }, + "2xl": { + "value": "42rem" + }, + "3xl": { + "value": "48rem" + }, + "4xl": { + "value": "56rem" + }, + "5xl": { + "value": "64rem" + }, + "6xl": { + "value": "72rem" + }, + "7xl": { + "value": "80rem" + }, + "full": { + "value": "100%" + } + }, + "space": { + "0": { + "value": "0px" + }, + "1": { + "value": "0.25rem" + }, + "2": { + "value": "0.5rem" + }, + "3": { + "value": "0.75rem" + }, + "4": { + "value": "1rem" + }, + "5": { + "value": "1.25rem" + }, + "6": { + "value": "1.5rem" + }, + "7": { + "value": "1.75rem" + }, + "8": { + "value": "2rem" + }, + "9": { + "value": "2.25rem" + }, + "10": { + "value": "2.5rem" + }, + "11": { + "value": "2.75rem" + }, + "12": { + "value": "3rem" + }, + "14": { + "value": "3.5rem" + }, + "16": { + "value": "4rem" + }, + "20": { + "value": "5rem" + }, + "24": { + "value": "6rem" + }, + "28": { + "value": "7rem" + }, + "32": { + "value": "8rem" + }, + "36": { + "value": "9rem" + }, + "40": { + "value": "10rem" + }, + "44": { + "value": "11rem" + }, + "48": { + "value": "12rem" + }, + "52": { + "value": "13rem" + }, + "56": { + "value": "14rem" + }, + "60": { + "value": "15rem" + }, + "64": { + "value": "16rem" + }, + "72": { + "value": "18rem" + }, + "80": { + "value": "20rem" + }, + "96": { + "value": "24rem" + }, + "px": { + "value": "1px" + }, + "rem": { + "125": { + "value": "0.125rem" + }, + "375": { + "value": "0.375rem" + }, + "625": { + "value": "0.625rem" + }, + "875": { + "value": "0.875rem" + } + } + }, + "borderWidth": { + "noBorder": { + "value": "0" + }, + "sm": { + "value": "1px" + }, + "md": { + "value": "2px" + }, + "lg": { + "value": "3px" + } + }, + "opacity": { + "noOpacity": { + "value": "0" + }, + "bright": { + "value": "0.1" + }, + "light": { + "value": "0.15" + }, + "soft": { + "value": "0.3" + }, + "medium": { + "value": "0.5" + }, + "high": { + "value": "0.8" + }, + "total": { + "value": "1" + } + }, + "fontWeight": { + "thin": { + "value": "100" + }, + "extralight": { + "value": "200" + }, + "light": { + "value": "300" + }, + "normal": { + "value": "400" + }, + "medium": { + "value": "500" + }, + "semibold": { + "value": "600" + }, + "bold": { + "value": "700" + }, + "extrabold": { + "value": "800" + }, + "black": { + "value": "900" + } + }, + "letterSpacing": { + "tighter": { + "value": "-0.05em" + }, + "tight": { + "value": "-0.025em" + }, + "normal": { + "value": "0em" + }, + "wide": { + "value": "0.025em" + }, + "wider": { + "value": "0.05em" + }, + "widest": { + "value": "0.1em" + } + }, + "text": { + "xs": { + "fontSize": { + "value": "{fontSize.xs}" + }, + "lineHeight": { + "value": "{lead.4}" + } + }, + "sm": { + "fontSize": { + "value": "{fontSize.sm}" + }, + "lineHeight": { + "value": "{lead.5}" + } + }, + "base": { + "fontSize": { + "value": "{fontSize.base}" + }, + "lineHeight": { + "value": "{lead.6}" + } + }, + "lg": { + "fontSize": { + "value": "{fontSize.lg}" + }, + "lineHeight": { + "value": "{lead.7}" + } + }, + "xl": { + "fontSize": { + "value": "{fontSize.xl}" + }, + "lineHeight": { + "value": "{lead.7}" + } + }, + "2xl": { + "fontSize": { + "value": "{fontSize.2xl}" + }, + "lineHeight": { + "value": "{lead.8}" + } + }, + "3xl": { + "fontSize": { + "value": "{fontSize.3xl}" + }, + "lineHeight": { + "value": "{lead.9}" + } + }, + "4xl": { + "fontSize": { + "value": "{fontSize.4xl}" + }, + "lineHeight": { + "value": "{lead.10}" + } + }, + "5xl": { + "fontSize": { + "value": "{fontSize.5xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + }, + "6xl": { + "fontSize": { + "value": "{fontSize.6xl}" + }, + "lineHeight": { + "value": "{lead.none}" + } + } + } + } +}; +const schema_server_zIxGbBm233 = defineNuxtPlugin(() => { + const event = useRequestEvent(); + if (event.path === "/__pinceau_tokens_config.json") { + event.node.res.setHeader("Content-Type", "application/json"); + event.node.res.statusCode = 200; + event.node.res.end(JSON.stringify(theme, null, 2)); + } + if (event.path === "/__pinceau_tokens_schema.json") { + event.node.res.setHeader("Content-Type", "application/json"); + event.node.res.statusCode = 200; + event.node.res.end(JSON.stringify(schema, null, 2)); + } +}); +const preference = "dark"; +const componentName = "ColorScheme"; +const dataValue = "theme"; +const plugin_server_XNCxeHyTuP = defineNuxtPlugin((nuxtApp) => { + const colorMode = useState("color-mode", () => reactive({ + preference, + value: preference, + unknown: true, + forced: false + })).value; + const htmlAttrs = {}; + { + useHead({ htmlAttrs }); + } + useRouter().afterEach((to) => { + const forcedColorMode = to.meta.colorMode; + if (forcedColorMode && forcedColorMode !== "system") { + colorMode.value = htmlAttrs["data-color-mode-forced"] = forcedColorMode; + { + htmlAttrs[`data-${dataValue}`] = colorMode.value; + } + colorMode.forced = true; + } else if (forcedColorMode === "system") { + console.warn("You cannot force the colorMode to system at the page level."); + } + }); + nuxtApp.provide("colorMode", colorMode); +}); +const app_config_server_3EJd2il4WQ = defineNuxtPlugin(() => { + const event = useRequestEvent(); + if (event.path === "/__app_config.json") { + event.node.res.setHeader("Content-Type", "application/json"); + event.node.res.statusCode = 200; + event.node.res.end(JSON.stringify(useAppConfig(), null, 2)); + } +}); +const preview_detector_wuXocrN5Sn = defineNuxtPlugin((nuxtApp) => { + const runtimeConfig = useRuntimeConfig$1().public.studio || {}; + const route = useRoute(); + const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); + async function initializePreview() { + const useStudio = await import('./_nuxt/useStudio-7ec450fb.mjs').then((m) => m.useStudio); + const { mountPreviewUI } = useStudio(); + mountPreviewUI(); + queryContent("/non-existing-path").findOne(); + } + if (runtimeConfig.apiURL) { + if (Object.prototype.hasOwnProperty.call(route.query, "preview") && !route.query.preview) { + return; + } + if (!route.query.preview && !previewToken.value) { + return; + } + if (route.query.preview && previewToken.value !== route.query.preview) { + previewToken.value = String(route.query.preview); + } + nuxtApp.hook("app:mounted", async () => { + await initializePreview(); + }); + } +}); +const menu_13PGuw7IWk = defineNuxtPlugin((ctx) => { + const visible = ref(false); + const open = () => visible.value = true; + const close = () => visible.value = false; + const toggle = () => visible.value = !visible.value; + ctx.$router.afterEach(() => setTimeout(close, 50)); + return { + provide: { + menu: { + visible, + close, + open, + toggle + } + } + }; +}); +const _plugins = [ + components_plugin_KR1HBZs4kY, + vueuse_head_plugin_D7WGfuP1A0, + router_Pg0DINazwm, + docsearch_hvQai9BtgI, + documentDriven_9cX98v59ZY, + pinceau_nuxt_plugin_server_KEuz79zT4K, + schema_server_zIxGbBm233, + plugin_server_XNCxeHyTuP, + app_config_server_3EJd2il4WQ, + preview_detector_wuXocrN5Sn, + menu_13PGuw7IWk +]; +const _sfc_main$d = { + __name: "AppLoadingBar", + __ssrInlineRender: true, + props: { + throttle: { + type: Number, + default: 200 + }, + duration: { + type: Number, + default: 2e3 + } + }, + setup(__props) { + const props = __props; + const nuxtApp = useNuxtApp(); + const data = reactive({ + percent: 0, + show: false, + canSucceed: true + }); + let _timer = null; + let _throttle = null; + let _cut; + function clear() { + _timer && clearInterval(_timer); + _throttle && clearTimeout(_throttle); + _timer = null; + } + function start() { + if (data.show) { + return; + } + clear(); + data.percent = 0; + data.canSucceed = true; + if (props.throttle) { + _throttle = setTimeout(startTimer, props.throttle); + } else { + startTimer(); + } + } + function increase(num) { + data.percent = Math.min(100, Math.floor(data.percent + num)); + } + function finish() { + data.percent = 100; + hide(); + } + function hide() { + clear(); + setTimeout(() => { + data.show = false; + setTimeout(() => { + data.percent = 0; + }, 400); + }, 500); + } + function startTimer() { + data.show = true; + _cut = 1e4 / Math.floor(props.duration); + _timer = setInterval(() => { + increase(_cut); + }, 100); + } + nuxtApp.hook("content:middleware:start", start); + nuxtApp.hook("page:start", start); + nuxtApp.hook("page:finish", finish); + return (_ctx, _push, _parent, _attrs) => { + _push(``); + }; + } +}; +const _sfc_setup$d = _sfc_main$d.setup; +_sfc_main$d.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue"); + return _sfc_setup$d ? _sfc_setup$d(props, ctx) : void 0; +}; +const AppLoadingBar = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: _sfc_main$d +}); +const _sfc_main$c = /* @__PURE__ */ defineComponent({ + __name: "AppSocialIcons", + __ssrInlineRender: true, + setup(__props) { + const socials = ["twitter", "facebook", "instagram", "youtube", "github", "medium"]; + const { config } = useDocus(); + const icons = computed(() => { + return Object.entries(config.value.socials || {}).map(([key, value]) => { + if (typeof value === "object") { + return value; + } else if (typeof value === "string" && value && socials.includes(key)) { + return { + href: `https://${key}.com/${value}`, + icon: `fa-brands:${key}`, + label: value + }; + } else { + return null; + } + }).filter(Boolean); + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0$2; + const _component_Icon = __nuxt_component_0$1$1; + _push(``); + ssrRenderList(unref(icons), (icon) => { + _push(ssrRenderComponent(_component_NuxtLink, { + key: icon.label, + rel: "noopener noreferrer", + title: icon.label, + "aria-label": icon.label, + href: icon.href, + target: "_blank" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + if (icon.icon) { + _push2(ssrRenderComponent(_component_Icon, { + name: icon.icon + }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + } else { + return [ + icon.icon ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: icon.icon + }, null, 8, ["name"])) : createCommentVNode("", true) + ]; + } + }), + _: 2 + }, _parent)); + }); + _push(``); + }; + } +}); +const _sfc_setup$c = _sfc_main$c.setup; +_sfc_main$c.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue"); + return _sfc_setup$c ? _sfc_setup$c(props, ctx) : void 0; +}; +const __nuxt_component_3$1 = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-224b171c"]]); +const AppSocialIcons = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_3$1 +}); +const useMenu = () => { + const { $menu } = useNuxtApp(); + return $menu; +}; +const _sfc_main$b = /* @__PURE__ */ defineComponent({ + __name: "AppHeaderDialog", + __ssrInlineRender: true, + setup(__props) { + const { navigation } = useContent(); + const { config } = useDocus(); + const filtered = computed(() => { + var _a; + return ((_a = config.value.aside) == null ? void 0 : _a.exclude) || []; + }); + const links = computed(() => { + return (navigation.value || []).filter((item) => { + if (filtered.value.includes(item._path)) { + return false; + } + return true; + }); + }); + const { visible, open, close } = useMenu(); + watch(visible, (v) => v ? open() : close()); + return (_ctx, _push, _parent, _attrs) => { + const _component_Icon = __nuxt_component_0$1$1; + const _component_AppSocialIcons = __nuxt_component_3$1; + const _component_DocsAsideTree = __nuxt_component_0$3; + _push(``); + ssrRenderTeleport(_push, (_push2) => { + if (unref(visible)) { + _push2(``); + } else { + _push2(``); + } + }, "body", false, _parent); + _push(``); + }; + } +}); +const _sfc_setup$b = _sfc_main$b.setup; +_sfc_main$b.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue"); + return _sfc_setup$b ? _sfc_setup$b(props, ctx) : void 0; +}; +const __nuxt_component_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-291983a4"]]); +const AppHeaderDialog = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_1$3 +}); +const _sfc_main$a = {}; +function _sfc_ssrRender$2(_ctx, _push, _parent, _attrs) { + _push(``); +} +const _sfc_setup$a = _sfc_main$a.setup; +_sfc_main$a.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Logo.vue"); + return _sfc_setup$a ? _sfc_setup$a(props, ctx) : void 0; +}; +const __nuxt_component_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["ssrRender", _sfc_ssrRender$2]]); +const Logo = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_1$2 +}); +const _sfc_main$9 = /* @__PURE__ */ defineComponent({ + __name: "AppHeaderLogo", + __ssrInlineRender: true, + setup(__props) { + const { config } = useDocus(); + const logo = computed(() => { + var _a; + return ((_a = config.value.header) == null ? void 0 : _a.logo) || false; + }); + const title = computed(() => { + var _a; + return ((_a = config.value.header) == null ? void 0 : _a.title) || config.value.title; + }); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0$2; + const _component_Logo = __nuxt_component_1$2; + _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ + class: "navbar-logo", + to: "/", + "aria-label": unref(title) + }, _attrs), { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + if (unref(logo) && typeof unref(logo) === "string") { + ssrRenderVNode(_push2, createVNode(resolveDynamicComponent(unref(logo)), null, null), _parent2, _scopeId); + } else if (unref(logo)) { + _push2(ssrRenderComponent(_component_Logo, null, null, _parent2, _scopeId)); + } else { + _push2(`${ssrInterpolate(unref(title))}`); + } + } else { + return [ + unref(logo) && typeof unref(logo) === "string" ? (openBlock(), createBlock(resolveDynamicComponent(unref(logo)), { key: 0 })) : unref(logo) ? (openBlock(), createBlock(_component_Logo, { key: 1 })) : (openBlock(), createBlock("span", { key: 2 }, toDisplayString(unref(title)), 1)) + ]; + } + }), + _: 1 + }, _parent)); + }; + } +}); +const _sfc_setup$9 = _sfc_main$9.setup; +_sfc_main$9.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue"); + return _sfc_setup$9 ? _sfc_setup$9(props, ctx) : void 0; +}; +const __nuxt_component_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-0e437bbb"]]); +const AppHeaderLogo = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_2$1 +}); +const _sfc_main$8 = /* @__PURE__ */ defineComponent({ + __name: "AppHeaderNavigation", + __ssrInlineRender: true, + setup(__props) { + const route = useRoute(); + const { navBottomLink } = useContentHelpers(); + const { navigation } = useContent(); + const { config } = useDocus(); + const hasNavigation = computed(() => { + var _a; + return !!((_a = config.value.aside) == null ? void 0 : _a.level); + }); + const filtered = computed(() => { + var _a; + return ((_a = config.value.header) == null ? void 0 : _a.exclude) || []; + }); + const tree = computed(() => { + return (navigation.value || []).filter((item) => { + if (filtered.value.includes(item._path)) { + return false; + } + return true; + }); + }); + const isActive = (link) => link.exact ? route.fullPath === link._path : route.fullPath.startsWith(link._path); + return (_ctx, _push, _parent, _attrs) => { + const _component_NuxtLink = __nuxt_component_0$2; + const _component_Icon = __nuxt_component_0$1$1; + if (unref(hasNavigation)) { + _push(`
      `); + ssrRenderList(unref(tree), (link) => { + _push(`
    • `); + _push(ssrRenderComponent(_component_NuxtLink, { + class: ["link", { active: isActive(link) }], + to: link.redirect ? link.redirect : unref(navBottomLink)(link) + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + var _a, _b, _c, _d; + if (_push2) { + if (link.icon && ((_b = (_a = unref(config)) == null ? void 0 : _a.header) == null ? void 0 : _b.showLinkIcon)) { + _push2(ssrRenderComponent(_component_Icon, { + name: link.icon + }, null, _parent2, _scopeId)); + } else { + _push2(``); + } + _push2(` ${ssrInterpolate(link.title)}`); + } else { + return [ + link.icon && ((_d = (_c = unref(config)) == null ? void 0 : _c.header) == null ? void 0 : _d.showLinkIcon) ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: link.icon + }, null, 8, ["name"])) : createCommentVNode("", true), + createTextVNode(" " + toDisplayString(link.title), 1) + ]; + } + }), + _: 2 + }, _parent)); + _push(`
    • `); + }); + _push(`
    `); + } else { + _push(``); + } + }; + } +}); +const _sfc_setup$8 = _sfc_main$8.setup; +_sfc_main$8.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue"); + return _sfc_setup$8 ? _sfc_setup$8(props, ctx) : void 0; +}; +const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-01b60614"]]); +const AppHeaderNavigation = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_3 +}); +const useDocSearch = () => { + const { $docSearch } = useNuxtApp(); + if (!$docSearch) { + return { + hasDocSearch: ref(false) + }; + } + return $docSearch; +}; +const _sfc_main$7 = /* @__PURE__ */ defineComponent({ + __name: "AppSearch", + __ssrInlineRender: true, + setup(__props) { + useDocSearch(); + return (_ctx, _push, _parent, _attrs) => { + const _component_Icon = __nuxt_component_0$1$1; + _push(``); + }; + } +}); +const _sfc_setup$7 = _sfc_main$7.setup; +_sfc_main$7.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppSearch.vue"); + return _sfc_setup$7 ? _sfc_setup$7(props, ctx) : void 0; +}; +const __nuxt_component_4 = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-1e99f08b"]]); +const AppSearch = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_4 +}); +const __nuxt_component_0$1 = defineComponent({ + name: "ClientOnly", + inheritAttrs: false, + // eslint-disable-next-line vue/require-prop-types + props: ["fallback", "placeholder", "placeholderTag", "fallbackTag"], + setup(_, { slots, attrs }) { + const mounted = ref(false); + return (props) => { + var _a; + if (mounted.value) { + return (_a = slots.default) == null ? void 0 : _a.call(slots); + } + const slot = slots.fallback || slots.placeholder; + if (slot) { + return slot(); + } + const fallbackStr = props.fallback || props.placeholder || ""; + const fallbackTag = props.fallbackTag || props.placeholderTag || "span"; + return createElementBlock(fallbackTag, attrs, fallbackStr); + }; + } +}); +const cache = /* @__PURE__ */ new WeakMap(); +function createClientOnly(component) { + if (cache.has(component)) { + return cache.get(component); + } + const clone = { ...component }; + if (clone.render) { + clone.render = (ctx, ...args) => { + if (ctx.mounted$) { + const res = component.render(ctx, ...args); + return res.children === null || typeof res.children === "string" ? createElementVNode(res.type, res.props, res.children, res.patchFlag, res.dynamicProps, res.shapeFlag) : h(res); + } else { + return h("div", ctx.$attrs ?? ctx._.attrs); + } + }; + } else if (clone.template) { + clone.template = ` + + + `; + } + clone.setup = (props, ctx) => { + var _a; + const mounted$ = ref(false); + return Promise.resolve(((_a = component.setup) == null ? void 0 : _a.call(component, props, ctx)) || {}).then((setupState) => { + return typeof setupState !== "function" ? { ...setupState, mounted$ } : (...args) => { + if (mounted$.value) { + const res = setupState(...args); + return res.children === null || typeof res.children === "string" ? createElementVNode(res.type, res.props, res.children, res.patchFlag, res.dynamicProps, res.shapeFlag) : h(res); + } else { + return h("div", ctx.attrs); + } + }; + }); + }; + cache.set(component, clone); + return clone; +} +const clientOnly = /* @__PURE__ */ Object.freeze({ + __proto__: null, + createClientOnly, + default: __nuxt_component_0$1 +}); +const _sfc_main$6 = { + name: componentName, + props: { + placeholder: String, + tag: { + type: String, + default: "span" + } + } +}; +function _sfc_ssrRender$1(_ctx, _push, _parent, _attrs, $props, $setup, $data, $options) { + const _component_ClientOnly = __nuxt_component_0$1; + _push(ssrRenderComponent(_component_ClientOnly, mergeProps({ + placeholder: $props.placeholder, + "placeholder-tag": $props.tag + }, _attrs), null, _parent)); +} +const _sfc_setup$6 = _sfc_main$6.setup; +_sfc_main$6.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue"); + return _sfc_setup$6 ? _sfc_setup$6(props, ctx) : void 0; +}; +const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["ssrRender", _sfc_ssrRender$1]]); +const component_vue3 = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_0 +}); +const useColorMode = () => { + return useState("color-mode").value; +}; +const _sfc_main$5 = /* @__PURE__ */ defineComponent({ + __name: "ThemeSelect", + __ssrInlineRender: true, + setup(__props) { + const colorMode = useColorMode(); + return (_ctx, _push, _parent, _attrs) => { + const _component_ColorScheme = __nuxt_component_0; + const _component_Icon = __nuxt_component_0$1$1; + _push(``); + _push(ssrRenderComponent(_component_ColorScheme, { placeholder: "..." }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + if (unref(colorMode).preference === "dark") { + _push2(ssrRenderComponent(_component_Icon, { name: "uil:moon" }, null, _parent2, _scopeId)); + } else if (unref(colorMode).preference === "light") { + _push2(ssrRenderComponent(_component_Icon, { name: "uil:sun" }, null, _parent2, _scopeId)); + } else { + _push2(ssrRenderComponent(_component_Icon, { name: "uil:desktop" }, null, _parent2, _scopeId)); + } + } else { + return [ + unref(colorMode).preference === "dark" ? (openBlock(), createBlock(_component_Icon, { + key: 0, + name: "uil:moon" + })) : unref(colorMode).preference === "light" ? (openBlock(), createBlock(_component_Icon, { + key: 1, + name: "uil:sun" + })) : (openBlock(), createBlock(_component_Icon, { + key: 2, + name: "uil:desktop" + })) + ]; + } + }), + _: 1 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup$5 = _sfc_main$5.setup; +_sfc_main$5.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue"); + return _sfc_setup$5 ? _sfc_setup$5(props, ctx) : void 0; +}; +const __nuxt_component_5 = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-4a6c39b0"]]); +const ThemeSelect = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_5 +}); +const _sfc_main$4 = /* @__PURE__ */ defineComponent({ + __name: "AppHeader", + __ssrInlineRender: true, + props: {}, + setup(__props) { + const { config } = useDocus(); + const { navigation } = useContent(); + const { hasDocSearch } = useDocSearch(); + const hasDialog = computed(() => { + var _a; + return ((_a = navigation.value) == null ? void 0 : _a.length) > 1; + }); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b; + const _component_Container = __nuxt_component_0$4; + const _component_AppHeaderDialog = __nuxt_component_1$3; + const _component_AppHeaderLogo = __nuxt_component_2$1; + const _component_AppHeaderNavigation = __nuxt_component_3; + const _component_AppSearch = __nuxt_component_4; + const _component_ThemeSelect = __nuxt_component_5; + const _component_AppSocialIcons = __nuxt_component_3$1; + _push(``); + _push(ssrRenderComponent(_component_Container, { + fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.header) == null ? void 0 : _b.fluid + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(`
    `); + if (unref(hasDialog)) { + _push2(ssrRenderComponent(_component_AppHeaderDialog, null, null, _parent2, _scopeId)); + } else { + _push2(``); + } + _push2(ssrRenderComponent(_component_AppHeaderLogo, null, null, _parent2, _scopeId)); + _push2(`
    `); + if (unref(hasDialog)) { + _push2(ssrRenderComponent(_component_AppHeaderLogo, null, null, _parent2, _scopeId)); + } else { + _push2(``); + } + _push2(ssrRenderComponent(_component_AppHeaderNavigation, null, null, _parent2, _scopeId)); + _push2(`
    `); + if (unref(hasDocSearch)) { + _push2(ssrRenderComponent(_component_AppSearch, null, null, _parent2, _scopeId)); + } else { + _push2(``); + } + _push2(ssrRenderComponent(_component_ThemeSelect, null, null, _parent2, _scopeId)); + _push2(`
    `); + } else { + return [ + createVNode("div", { class: "section left" }, [ + unref(hasDialog) ? (openBlock(), createBlock(_component_AppHeaderDialog, { key: 0 })) : createCommentVNode("", true), + createVNode(_component_AppHeaderLogo) + ]), + createVNode("div", { class: "section center" }, [ + unref(hasDialog) ? (openBlock(), createBlock(_component_AppHeaderLogo, { key: 0 })) : createCommentVNode("", true), + createVNode(_component_AppHeaderNavigation) + ]), + createVNode("div", { class: "section right" }, [ + unref(hasDocSearch) ? (openBlock(), createBlock(_component_AppSearch, { key: 0 })) : createCommentVNode("", true), + createVNode(_component_ThemeSelect), + createVNode("div", { class: "social-icons" }, [ + createVNode(_component_AppSocialIcons) + ]) + ]) + ]; + } + }), + _: 1 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup$4 = _sfc_main$4.setup; +_sfc_main$4.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeader.vue"); + return _sfc_setup$4 ? _sfc_setup$4(props, ctx) : void 0; +}; +const __nuxt_component_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-8375ebf7"]]); +const AppHeader = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_1$1 +}); +const _sfc_main$3 = /* @__PURE__ */ defineComponent({ + __name: "AppFooter", + __ssrInlineRender: true, + setup(__props) { + const { config } = useDocus(); + const socialIcons = ref(null); + const icons = computed(() => { + var _a, _b; + return ((_b = (_a = config.value) == null ? void 0 : _a.footer) == null ? void 0 : _b.iconLinks) || []; + }); + const textLinks = computed(() => { + var _a, _b; + return ((_b = (_a = config.value) == null ? void 0 : _a.footer) == null ? void 0 : _b.textLinks) || []; + }); + const socialIconsCount = computed(() => { + var _a; + return Object.entries(((_a = config.value) == null ? void 0 : _a.socials) || {}).filter(([_, v]) => v).length; + }); + const nbSocialIcons = computed(() => socialIcons.value ? socialIconsCount.value : 0); + return (_ctx, _push, _parent, _attrs) => { + var _a, _b; + const _component_Container = __nuxt_component_0$4; + const _component_NuxtLink = __nuxt_component_0$2; + const _component_Icon = __nuxt_component_0$1$1; + const _component_AppSocialIcons = __nuxt_component_3$1; + _push(``); + _push(ssrRenderComponent(_component_Container, { + fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.footer) == null ? void 0 : _b.fluid, + padded: "", + class: "footer-container" + }, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + var _a2, _b2, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B; + if (_push2) { + _push2(`
    `); + if ((_b2 = (_a2 = unref(config)) == null ? void 0 : _a2.footer) == null ? void 0 : _b2.credits) { + _push2(``); + if ((_h = (_g = (_f = unref(config)) == null ? void 0 : _f.footer) == null ? void 0 : _g.credits) == null ? void 0 : _h.icon) { + ssrRenderVNode(_push2, createVNode(resolveDynamicComponent((_k = (_j = (_i = unref(config)) == null ? void 0 : _i.footer) == null ? void 0 : _j.credits) == null ? void 0 : _k.icon), { class: "left-icon" }, null), _parent2, _scopeId); + } else { + _push2(``); + } + if ((_n = (_m = (_l = unref(config)) == null ? void 0 : _l.footer) == null ? void 0 : _m.credits) == null ? void 0 : _n.text) { + _push2(`

    ${ssrInterpolate(unref(config).footer.credits.text)}

    `); + } else { + _push2(``); + } + _push2(``); + } else { + _push2(``); + } + _push2(`
    `); + ssrRenderList(unref(textLinks), (link) => { + _push2(ssrRenderComponent(_component_NuxtLink, { + key: link.href, + class: "text-link", + "aria-label": link.text, + href: link.href, + target: link.target || "_self" + }, { + default: withCtx((_2, _push3, _parent3, _scopeId2) => { + if (_push3) { + _push3(`${ssrInterpolate(link.text)}`); + } else { + return [ + createTextVNode(toDisplayString(link.text), 1) + ]; + } + }), + _: 2 + }, _parent2, _scopeId)); + }); + _push2(`
    `); + ssrRenderList(unref(icons).slice(0, 6 - unref(nbSocialIcons)), (icon) => { + _push2(``); + _push2(ssrRenderComponent(_component_Icon, { + name: icon.icon + }, null, _parent2, _scopeId)); + _push2(``); + }); + _push2(``); + _push2(ssrRenderComponent(_component_AppSocialIcons, { + ref_key: "socialIcons", + ref: socialIcons + }, null, _parent2, _scopeId)); + _push2(`
    `); + } else { + return [ + createVNode("div", { class: "left" }, [ + ((_p = (_o = unref(config)) == null ? void 0 : _o.footer) == null ? void 0 : _p.credits) ? (openBlock(), createBlock("a", { + key: 0, + href: ((_s = (_r = (_q = unref(config)) == null ? void 0 : _q.footer) == null ? void 0 : _r.credits) == null ? void 0 : _s.href) || "#", + rel: "noopener", + target: "_blank" + }, [ + ((_v = (_u = (_t = unref(config)) == null ? void 0 : _t.footer) == null ? void 0 : _u.credits) == null ? void 0 : _v.icon) ? (openBlock(), createBlock(resolveDynamicComponent((_y = (_x = (_w = unref(config)) == null ? void 0 : _w.footer) == null ? void 0 : _x.credits) == null ? void 0 : _y.icon), { + key: 0, + class: "left-icon" + })) : createCommentVNode("", true), + ((_B = (_A = (_z = unref(config)) == null ? void 0 : _z.footer) == null ? void 0 : _A.credits) == null ? void 0 : _B.text) ? (openBlock(), createBlock("p", { key: 1 }, toDisplayString(unref(config).footer.credits.text), 1)) : createCommentVNode("", true) + ], 8, ["href"])) : createCommentVNode("", true) + ]), + createVNode("div", { class: "center" }, [ + (openBlock(true), createBlock(Fragment$1, null, renderList(unref(textLinks), (link) => { + return openBlock(), createBlock(_component_NuxtLink, { + key: link.href, + class: "text-link", + "aria-label": link.text, + href: link.href, + target: link.target || "_self" + }, { + default: withCtx(() => [ + createTextVNode(toDisplayString(link.text), 1) + ]), + _: 2 + }, 1032, ["aria-label", "href", "target"]); + }), 128)) + ]), + createVNode("div", { class: "right" }, [ + (openBlock(true), createBlock(Fragment$1, null, renderList(unref(icons).slice(0, 6 - unref(nbSocialIcons)), (icon) => { + return openBlock(), createBlock("a", { + key: icon.label, + class: "icon-link", + rel: "noopener", + "aria-label": icon.label, + href: icon.href, + target: "_blank" + }, [ + createVNode(_component_Icon, { + name: icon.icon + }, null, 8, ["name"]) + ], 8, ["aria-label", "href"]); + }), 128)), + createVNode(_component_AppSocialIcons, { + ref_key: "socialIcons", + ref: socialIcons + }, null, 512) + ]) + ]; + } + }), + _: 1 + }, _parent)); + _push(``); + }; + } +}); +const _sfc_setup$3 = _sfc_main$3.setup; +_sfc_main$3.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppFooter.vue"); + return _sfc_setup$3 ? _sfc_setup$3(props, ctx) : void 0; +}; +const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-eebf8ee0"]]); +const AppFooter = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_2 +}); +const useContentHead = (_content, to = useRoute()) => { + const content = unref(_content); + const config = useRuntimeConfig$1(); + const refreshHead = (data = content) => { + if (!to.path || !data) { + return; + } + const head = Object.assign({}, (data == null ? void 0 : data.head) || {}); + head.meta = [...head.meta || []]; + head.link = [...head.link || []]; + const title = head.title || (data == null ? void 0 : data.title); + if (title) { + head.title = title; + if (!head.meta.some((m) => m.property === "og:title")) { + head.meta.push({ + name: "og:title", + content: title + }); + } + } + const host = config.public.content.host; + if (host) { + const _url = joinURL(host ?? "/", config.app.baseURL, to.fullPath); + const url = config.public.content.trailingSlash ? withTrailingSlash(_url) : withoutTrailingSlash(_url); + if (!head.meta.some((m) => m.property === "og:url")) { + head.meta.push({ + name: "og:url", + content: url + }); + } + if (!head.link.some((m) => m.rel === "canonical")) { + head.link.push({ + rel: "canonical", + href: url + }); + } + } + const description = (head == null ? void 0 : head.description) || (data == null ? void 0 : data.description); + if (description && head.meta.filter((m) => m.name === "description").length === 0) { + head.meta.push({ + name: "description", + content: description + }); + } + if (description && !head.meta.some((m) => m.property === "og:description")) { + head.meta.push({ + name: "og:description", + content: description + }); + } + const image = (head == null ? void 0 : head.image) || (data == null ? void 0 : data.image); + if (image && head.meta.filter((m) => m.property === "og:image").length === 0) { + if (typeof image === "string") { + head.meta.push({ + property: "og:image", + // @ts-ignore - We expect `head.image` from Nuxt configurations... + content: host && !hasProtocol(image) ? new URL(joinURL(config.app.baseURL, image), host).href : image + }); + } + if (typeof image === "object") { + const imageKeys = [ + "src", + "secure_url", + "type", + "width", + "height", + "alt" + ]; + for (const key of imageKeys) { + if (key === "src" && image.src) { + const isAbsoluteURL = hasProtocol(image.src); + const imageURL = isAbsoluteURL ? image.src : joinURL(config.app.baseURL, image.src ?? "/"); + head.meta.push({ + property: "og:image", + content: host && !isAbsoluteURL ? new URL(imageURL, host).href : imageURL + }); + } else if (image[key]) { + head.meta.push({ + property: `og:image:${key}`, + content: image[key] + }); + } + } + } + } + { + useHead(head); + } + }; + watch(() => unref(_content), refreshHead, { immediate: true }); +}; +const _sfc_main$2 = /* @__PURE__ */ defineComponent({ + __name: "AppLayout", + __ssrInlineRender: true, + setup(__props) { + const { config } = useDocus(); + useHead({ + titleTemplate: config.value.titleTemplate, + meta: [ + { name: "twitter:card", content: "summary_large_image" } + ] + }); + watch( + () => config.value.titleTemplate, + () => useHead({ titleTemplate: config.value.titleTemplate }) + ); + useContentHead(config.value); + return (_ctx, _push, _parent, _attrs) => { + const _component_AppLoadingBar = _sfc_main$d; + const _component_AppHeader = __nuxt_component_1$1; + const _component_AppFooter = __nuxt_component_2; + _push(``); + _push(ssrRenderComponent(_component_AppLoadingBar, null, null, _parent)); + _push(ssrRenderComponent(_component_AppHeader, null, null, _parent)); + ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); + _push(ssrRenderComponent(_component_AppFooter, null, null, _parent)); + _push(``); + }; + } +}); +const _sfc_setup$2 = _sfc_main$2.setup; +_sfc_main$2.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppLayout.vue"); + return _sfc_setup$2 ? _sfc_setup$2(props, ctx) : void 0; +}; +const AppLayout = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: _sfc_main$2 +}); +const interpolatePath = (route, match) => { + return match.path.replace(/(:\w+)\([^)]+\)/g, "$1").replace(/(:\w+)[?+*]/g, "$1").replace(/:\w+/g, (r) => { + var _a; + return ((_a = route.params[r.slice(1)]) == null ? void 0 : _a.toString()) || ""; + }); +}; +const generateRouteKey = (routeProps, override) => { + const matchedRoute = routeProps.route.matched.find((m) => { + var _a; + return ((_a = m.components) == null ? void 0 : _a.default) === routeProps.Component.type; + }); + const source = override ?? (matchedRoute == null ? void 0 : matchedRoute.meta.key) ?? (matchedRoute && interpolatePath(routeProps.route, matchedRoute)); + return typeof source === "function" ? source(routeProps.route) : source; +}; +const wrapInKeepAlive = (props, children) => { + return { default: () => children }; +}; +const Fragment = defineComponent({ + name: "FragmentWrapper", + setup(_props, { slots }) { + return () => { + var _a; + return (_a = slots.default) == null ? void 0 : _a.call(slots); + }; + } +}); +const _wrapIf = (component, props, slots) => { + return { default: () => props ? h(component, props === true ? {} : props, slots) : h(Fragment, {}, slots) }; +}; +const __nuxt_component_1 = defineComponent({ + name: "NuxtPage", + inheritAttrs: false, + props: { + name: { + type: String + }, + transition: { + type: [Boolean, Object], + default: void 0 + }, + keepalive: { + type: [Boolean, Object], + default: void 0 + }, + route: { + type: Object + }, + pageKey: { + type: [Function, String], + default: null + } + }, + setup(props, { attrs }) { + const nuxtApp = useNuxtApp(); + return () => { + return h(RouterView, { name: props.name, route: props.route, ...attrs }, { + default: (routeProps) => { + if (!routeProps.Component) { + return; + } + const key = generateRouteKey(routeProps, props.pageKey); + const done = nuxtApp.deferHydration(); + const hasTransition = !!(props.transition ?? routeProps.route.meta.pageTransition ?? appPageTransition); + const transitionProps = hasTransition && _mergeTransitionProps([ + props.transition, + routeProps.route.meta.pageTransition, + appPageTransition, + { onAfterLeave: () => { + nuxtApp.callHook("page:transition:finish", routeProps.Component); + } } + ].filter(Boolean)); + return _wrapIf( + Transition, + hasTransition && transitionProps, + wrapInKeepAlive( + props.keepalive ?? routeProps.route.meta.keepalive ?? appKeepalive, + h(Suspense, { + onPending: () => nuxtApp.callHook("page:start", routeProps.Component), + onResolve: () => { + nextTick(() => nuxtApp.callHook("page:finish", routeProps.Component).finally(done)); + } + }, { default: () => h(RouteProvider, { key, routeProps, pageKey: key, hasTransition }) }) + ) + ).default(); + } + }); + }; + } +}); +function _toArray(val) { + return Array.isArray(val) ? val : val ? [val] : []; +} +function _mergeTransitionProps(routeProps) { + const _props = routeProps.map((prop) => ({ + ...prop, + onAfterLeave: _toArray(prop.onAfterLeave) + })); + return defu(..._props); +} +const RouteProvider = defineComponent({ + name: "RouteProvider", + // TODO: Type props + // eslint-disable-next-line vue/require-prop-types + props: ["routeProps", "pageKey", "hasTransition"], + setup(props) { + const previousKey = props.pageKey; + const previousRoute = props.routeProps.route; + const route = {}; + for (const key in props.routeProps.route) { + route[key] = computed(() => previousKey === props.pageKey ? props.routeProps.route[key] : previousRoute[key]); + } + provide("_route", reactive(route)); + return () => { + return h(props.routeProps.Component); + }; + } +}); +const page = /* @__PURE__ */ Object.freeze({ + __proto__: null, + default: __nuxt_component_1 +}); +const _sfc_main$1 = {}; +function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { + const _component_AppLayout = _sfc_main$2; + const _component_NuxtPage = __nuxt_component_1; + _push(ssrRenderComponent(_component_AppLayout, _attrs, { + default: withCtx((_, _push2, _parent2, _scopeId) => { + if (_push2) { + _push2(ssrRenderComponent(_component_NuxtPage, null, null, _parent2, _scopeId)); + } else { + return [ + createVNode(_component_NuxtPage) + ]; + } + }), + _: 1 + }, _parent)); +} +const _sfc_setup$1 = _sfc_main$1.setup; +_sfc_main$1.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/app.vue"); + return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; +}; +const AppComponent = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["ssrRender", _sfc_ssrRender]]); +const _sfc_main = { + __name: "nuxt-root", + __ssrInlineRender: true, + setup(__props) { + const ErrorComponent = defineAsyncComponent(() => import('./_nuxt/error-component-969bdc5d.mjs').then((r) => r.default || r)); + const IslandRendererer = defineAsyncComponent(() => import('./_nuxt/island-renderer-862b92a0.mjs').then((r) => r.default || r)); + const nuxtApp = useNuxtApp(); + nuxtApp.deferHydration(); + provide("_route", useRoute()); + nuxtApp.hooks.callHookWith((hooks) => hooks.map((hook) => hook()), "vue:setup"); + const error = useError(); + onErrorCaptured((err, target, info) => { + nuxtApp.hooks.callHook("vue:error", err, target, info).catch((hookError) => console.error("[nuxt] Error in `vue:error` hook", hookError)); + { + const p = callWithNuxt(nuxtApp, showError, [err]); + onServerPrefetch(() => p); + } + }); + const { islandContext } = nuxtApp.ssrContext; + return (_ctx, _push, _parent, _attrs) => { + ssrRenderSuspense(_push, { + default: () => { + if (unref(error)) { + _push(ssrRenderComponent(unref(ErrorComponent), { error: unref(error) }, null, _parent)); + } else if (unref(islandContext)) { + _push(ssrRenderComponent(unref(IslandRendererer), { context: unref(islandContext) }, null, _parent)); + } else { + _push(ssrRenderComponent(unref(AppComponent), null, null, _parent)); + } + }, + _: 1 + }); + }; + } +}; +const _sfc_setup = _sfc_main.setup; +_sfc_main.setup = (props, ctx) => { + const ssrContext = useSSRContext(); + (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/nuxt/dist/app/components/nuxt-root.vue"); + return _sfc_setup ? _sfc_setup(props, ctx) : void 0; +}; +if (!globalThis.$fetch) { + globalThis.$fetch = $fetch$1.create({ + baseURL: baseURL() + }); +} +let entry; +const plugins = normalizePlugins(_plugins); +{ + entry = async function createNuxtAppServer(ssrContext) { + const vueApp = createApp(_sfc_main); + const nuxt = createNuxtApp({ vueApp, ssrContext }); + try { + await applyPlugins(nuxt, plugins); + await nuxt.hooks.callHook("app:created", vueApp); + } catch (err) { + await nuxt.callHook("app:error", err); + nuxt.payload.error = nuxt.payload.error || err; + } + return vueApp; + }; +} +const entry$1 = (ctx) => entry(ctx); + +export { AppLoadingBar as A, Logo as L, ThemeSelect as T, _wrapIf as _, useContentHead as a, useHead as b, createError as c, appLayoutTransition as d, entry$1 as default, AppSocialIcons as e, fetchContentNavigation as f, AppHeaderDialog as g, AppHeaderLogo as h, AppHeaderNavigation as i, AppSearch as j, clientOnly as k, layouts as l, component_vue3 as m, AppHeader as n, AppFooter as o, AppLayout as p, queryContent as q, page as r, useColorMode as u }; +//# sourceMappingURL=server.mjs.map diff --git a/docs/.output/server/chunks/app/server.mjs.map b/docs/.output/server/chunks/app/server.mjs.map new file mode 100644 index 00000000..9b3cbf01 --- /dev/null +++ b/docs/.output/server/chunks/app/server.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"server.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/server.mjs"],"sourcesContent":null,"names":["__nuxt_component_0$3","__nuxt_component_0$4","__nuxt_component_0$5"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/styles.mjs b/docs/.output/server/chunks/app/styles.mjs new file mode 100644 index 00000000..7d9aca0d --- /dev/null +++ b/docs/.output/server/chunks/app/styles.mjs @@ -0,0 +1,74 @@ +const interopDefault = r => r.default || r || []; +const styles = { + "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/pinceau-nuxt-plugin.server.mjs": () => import('./_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs').then(interopDefault), + "components/content/HeroAnnouncement.vue": () => import('./_nuxt/HeroAnnouncement-styles.a73a7723.mjs').then(interopDefault), + "components/content/MyButton.vue": () => import('./_nuxt/MyButton-styles.0da530f8.mjs').then(interopDefault), + "components/content/PropInspector.vue": () => import('./_nuxt/PropInspector-styles.ad1f0c4f.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue": () => import('./_nuxt/AppLoadingBar-styles.b242e2e9.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue": () => import('./_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue": () => import('./_nuxt/ProseBlockquote-styles.c0f9c45a.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue": () => import('./_nuxt/ProseCodeInline-styles.4873b751.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue": () => import('./_nuxt/ProseEm-styles.0ce5f2c8.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue": () => import('./_nuxt/ProseHr-styles.22aa3717.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue": () => import('./_nuxt/ProseH1-styles.086fd4ea.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue": () => import('./_nuxt/ProseH2-styles.8ba56a52.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue": () => import('./_nuxt/ProseH3-styles.492ea689.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue": () => import('./_nuxt/ProseH4-styles.68f135ad.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue": () => import('./_nuxt/ProseH5-styles.c63d0e8d.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue": () => import('./_nuxt/ProseH6-styles.92c4d496.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue": () => import('./_nuxt/ProseLi-styles.29062533.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue": () => import('./_nuxt/ProseOl-styles.c085ed74.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseP.vue": () => import('./_nuxt/ProseP-styles.b304bfc7.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue": () => import('./_nuxt/ProseTable-styles.b377f50f.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue": () => import('./_nuxt/ProseStrong-styles.ec17e85f.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue": () => import('./_nuxt/ProseTd-styles.2b89033a.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue": () => import('./_nuxt/ProseTh-styles.9ccb956b.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue": () => import('./_nuxt/ProseThead-styles.319de3db.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue": () => import('./_nuxt/ProseTr-styles.755e9793.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue": () => import('./_nuxt/ProseUl-styles.2d31952c.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue": () => import('./_nuxt/ProseImg-styles.cfb4616f.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppFooter.vue": () => import('./_nuxt/AppFooter-styles.775a1c05.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppHeader.vue": () => import('./_nuxt/AppHeader-styles.5fd39c5b.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue": () => import('./_nuxt/AppHeaderDialog-styles.9903b5a9.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue": () => import('./_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/Alert.vue": () => import('./_nuxt/Alert-styles.484d4e78.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/Badge.vue": () => import('./_nuxt/Badge-styles.8af74ce4.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue": () => import('./_nuxt/AppHeaderLogo-styles.795405cc.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue": () => import('./_nuxt/ButtonLink-styles.2eab8dff.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue": () => import('./_nuxt/IconNuxtStudio-styles.d164db17.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/Callout.vue": () => import('./_nuxt/Callout-styles.966d42ad.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue": () => import('./_nuxt/CodeBlock-styles.cac949de.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppSearch.vue": () => import('./_nuxt/AppSearch-styles.36eea8dd.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue": () => import('./_nuxt/CodeGroup-styles.0da0e60b.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue": () => import('./_nuxt/AppSocialIcons-styles.994e800b.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue": () => import('./_nuxt/ThemeSelect-styles.d47092b1.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue": () => import('./_nuxt/Ellipsis-styles.3bef1bdd.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue": () => import('./_nuxt/DocsAside-styles.764ece99.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/List.vue": () => import('./_nuxt/List-styles.ff61b956.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue": () => import('./_nuxt/DocsPageLayout-styles.1c5b6bba.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue": () => import('./_nuxt/DocsPrevNext-styles.23bc8fd8.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue": () => import('./_nuxt/DocsToc-styles.dfd8d9f4.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue": () => import('./_nuxt/Sandbox-styles.b322716f.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue": () => import('./_nuxt/DocsTocLinks-styles.79413e66.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue": () => import('./_nuxt/DocsPageBottom-styles.e97de530.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue": () => import('./_nuxt/TabsHeader-styles.06000801.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue": () => import('./_nuxt/Terminal-styles.a4b76b2e.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue": () => import('./_nuxt/VideoPlayer-styles.956d04fb.mjs').then(interopDefault), + "node_modules/@nuxt-themes/typography/components/global/ProseA.vue": () => import('./_nuxt/ProseA-styles.ac6b0f84.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue": () => import('./_nuxt/BlockHero-styles.df4a0a32.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/landing/Card.vue": () => import('./_nuxt/Card-styles.29530cd8.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue": () => import('./_nuxt/CardGrid-styles.65f28427.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue": () => import('./_nuxt/VoltaBoard-styles.0de509eb.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue": () => import('./_nuxt/ComponentPlayground-styles.249b42e4.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue": () => import('./_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs').then(interopDefault), + "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue": () => import('./_nuxt/ComponentPlaygroundProps-styles.82745445.mjs').then(interopDefault), + "layouts/docs-page.vue": () => import('./_nuxt/docs-page-styles.bb658b38.mjs').then(interopDefault), + "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue": () => import('./_nuxt/welcome-styles.85286bcd.mjs').then(interopDefault), + "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue": () => import('./_nuxt/error-404-styles.1b6f35f0.mjs').then(interopDefault), + "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue": () => import('./_nuxt/error-500-styles.17df0758.mjs').then(interopDefault), + "node_modules/@nuxt-themes/docus/layouts/page.vue": () => import('./_nuxt/page-styles.df5d38b1.mjs').then(interopDefault), + "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue": () => import('./_nuxt/ContentPreviewMode-styles.4b29600c.mjs').then(interopDefault) +}; + +export { styles as default }; +//# sourceMappingURL=styles.mjs.map diff --git a/docs/.output/server/chunks/app/styles.mjs.map b/docs/.output/server/chunks/app/styles.mjs.map new file mode 100644 index 00000000..3d6ab5de --- /dev/null +++ b/docs/.output/server/chunks/app/styles.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"styles.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/styles.mjs"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/error-500.mjs b/docs/.output/server/chunks/error-500.mjs new file mode 100644 index 00000000..e5d8fd03 --- /dev/null +++ b/docs/.output/server/chunks/error-500.mjs @@ -0,0 +1,21 @@ +const _messages = {"appName":"Nuxt","version":"","statusCode":500,"statusMessage":"Server error","description":"This page is temporarily unavailable."}; +const _render = function({ messages }) { +var __t, __p = ''; +__p += '' + +((__t = ( messages.statusCode )) == null ? '' : __t) + +' - ' + +((__t = ( messages.statusMessage )) == null ? '' : __t) + +' | ' + +((__t = ( messages.appName )) == null ? '' : __t) + +'

    ' + +((__t = ( messages.statusCode )) == null ? '' : __t) + +'

    ' + +((__t = ( messages.description )) == null ? '' : __t) + +'

    '; +return __p +}; +const _template = (messages) => _render({ messages: { ..._messages, ...messages } }); +const template = _template; + +export { template }; +//# sourceMappingURL=error-500.mjs.map diff --git a/docs/.output/server/chunks/error-500.mjs.map b/docs/.output/server/chunks/error-500.mjs.map new file mode 100644 index 00000000..8b0824ca --- /dev/null +++ b/docs/.output/server/chunks/error-500.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"error-500.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/node_modules/@nuxt/ui-templates/dist/templates/error-500.mjs"],"sourcesContent":null,"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC,YAAY,CAAC,GAAG,CAAC,eAAe,CAAC,cAAc,CAAC,aAAa,CAAC,uCAAuC,EAAC;AACvJ,MAAM,OAAO,GAAG,SAAS,EAAE,QAAQ,EAAE,EAAE;AACvC,IAAI,GAAG,EAAE,GAAG,GAAG,EAAE,CAAC;AAClB,GAAG,IAAI,oCAAoC;AAC3C,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,UAAU,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACpD,KAAK;AACL,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,aAAa,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACvD,KAAK;AACL,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,OAAO,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACjD,i1GAAi1G;AACj1G,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,UAAU,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACpD,kFAAkF;AAClF,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,WAAW,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACrD,0BAA0B,CAAC;AAC3B,OAAO,GAAG;AACV,EAAC;AACD,MAAM,SAAS,GAAG,CAAC,QAAQ,KAAK,OAAO,CAAC,EAAE,QAAQ,EAAE,EAAE,GAAG,SAAS,EAAE,GAAG,QAAQ,EAAE,EAAE,EAAC;AACxE,MAAC,QAAQ,GAAG;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/handlers/renderer.mjs b/docs/.output/server/chunks/handlers/renderer.mjs new file mode 100644 index 00000000..a2af31d2 --- /dev/null +++ b/docs/.output/server/chunks/handlers/renderer.mjs @@ -0,0 +1,528 @@ +import { createRenderer } from 'vue-bundle-renderer/runtime'; +import { eventHandler, getQuery, createError } from 'h3'; +import { renderToString } from 'vue/server-renderer'; +import { joinURL } from 'ufo'; +import { u as useRuntimeConfig } from '../nitro/config.mjs'; +import { u as useNitroApp, g as getRouteRules } from '../nitro/node-server.mjs'; +import 'destr'; +import 'scule'; +import 'node-fetch-native/polyfill'; +import 'node:http'; +import 'node:https'; +import 'ofetch'; +import 'unenv/runtime/fetch/index'; +import 'hookable'; +import 'ohash'; +import 'unstorage'; +import 'unstorage/drivers/overlay'; +import 'unstorage/drivers/memory'; +import 'defu'; +import 'radix3'; +import 'node:fs'; +import 'node:url'; +import 'pathe'; +import '@octokit/graphql'; +import 'remark-github'; +import 'unified'; +import 'mdast-util-to-string'; +import 'micromark/lib/preprocess.js'; +import 'micromark/lib/postprocess.js'; +import 'unist-util-stringify-position'; +import 'micromark-util-character'; +import 'micromark-util-chunked'; +import 'micromark-util-resolve-all'; +import 'remark-emoji'; +import 'rehype-slug'; +import 'remark-squeeze-paragraphs'; +import 'rehype-external-links'; +import 'remark-gfm'; +import 'rehype-sort-attribute-values'; +import 'rehype-sort-attributes'; +import 'rehype-raw'; +import 'remark-mdc'; +import 'remark-parse'; +import 'remark-rehype'; +import 'mdast-util-to-hast'; +import 'detab'; +import 'unist-builder'; +import 'mdurl'; +import 'slugify'; +import 'unist-util-position'; +import 'unist-util-visit'; +import 'shiki-es'; +import 'unenv/runtime/npm/consola'; + +function defineRenderHandler(handler) { + return eventHandler(async (event) => { + if (event.node.req.url.endsWith("/favicon.ico")) { + event.node.res.setHeader("Content-Type", "image/x-icon"); + event.node.res.end( + "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" + ); + return; + } + const response = await handler(event); + if (!response) { + if (!event.node.res.writableEnded) { + event.node.res.statusCode = event.node.res.statusCode === 200 ? 500 : event.node.res.statusCode; + event.node.res.end( + "No response returned from render handler: " + event.node.req.url + ); + } + return; + } + const nitroApp = useNitroApp(); + await nitroApp.hooks.callHook("render:response", response, { event }); + if (!event.node.res.headersSent && response.headers) { + for (const header in response.headers) { + event.node.res.setHeader(header, response.headers[header]); + } + if (response.statusCode) { + event.node.res.statusCode = response.statusCode; + } + if (response.statusMessage) { + event.node.res.statusMessage = response.statusMessage; + } + } + return typeof response.body === "string" ? response.body : JSON.stringify(response.body); + }); +} + +function buildAssetsURL(...path) { + return joinURL(publicAssetsURL(), useRuntimeConfig().app.buildAssetsDir, ...path); +} +function publicAssetsURL(...path) { + const publicBase = useRuntimeConfig().app.cdnURL || useRuntimeConfig().app.baseURL; + return path.length ? joinURL(publicBase, ...path) : publicBase; +} + +const chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_$"; +const unsafeChars = /[<>\b\f\n\r\t\0\u2028\u2029]/g; +const reserved = /^(?:do|if|in|for|int|let|new|try|var|byte|case|char|else|enum|goto|long|this|void|with|await|break|catch|class|const|final|float|short|super|throw|while|yield|delete|double|export|import|native|return|switch|throws|typeof|boolean|default|extends|finally|package|private|abstract|continue|debugger|function|volatile|interface|protected|transient|implements|instanceof|synchronized)$/; +const escaped = { + "<": "\\u003C", + ">": "\\u003E", + "/": "\\u002F", + "\\": "\\\\", + "\b": "\\b", + "\f": "\\f", + "\n": "\\n", + "\r": "\\r", + " ": "\\t", + "\0": "\\0", + "\u2028": "\\u2028", + "\u2029": "\\u2029" +}; +const objectProtoOwnPropertyNames = Object.getOwnPropertyNames(Object.prototype).sort().join("\0"); +function devalue(value) { + const counts = new Map(); + let logNum = 0; + function log(message) { + if (logNum < 100) { + console.warn(message); + logNum += 1; + } + } + function walk(thing) { + if (typeof thing === "function") { + log(`Cannot stringify a function ${thing.name}`); + return; + } + if (counts.has(thing)) { + counts.set(thing, counts.get(thing) + 1); + return; + } + counts.set(thing, 1); + if (!isPrimitive(thing)) { + const type = getType(thing); + switch (type) { + case "Number": + case "String": + case "Boolean": + case "Date": + case "RegExp": + return; + case "Array": + thing.forEach(walk); + break; + case "Set": + case "Map": + Array.from(thing).forEach(walk); + break; + default: + const proto = Object.getPrototypeOf(thing); + if (proto !== Object.prototype && proto !== null && Object.getOwnPropertyNames(proto).sort().join("\0") !== objectProtoOwnPropertyNames) { + if (typeof thing.toJSON !== "function") { + log(`Cannot stringify arbitrary non-POJOs ${thing.constructor.name}`); + } + } else if (Object.getOwnPropertySymbols(thing).length > 0) { + log(`Cannot stringify POJOs with symbolic keys ${Object.getOwnPropertySymbols(thing).map((symbol) => symbol.toString())}`); + } else { + Object.keys(thing).forEach((key) => walk(thing[key])); + } + } + } + } + walk(value); + const names = new Map(); + Array.from(counts).filter((entry) => entry[1] > 1).sort((a, b) => b[1] - a[1]).forEach((entry, i) => { + names.set(entry[0], getName(i)); + }); + function stringify(thing) { + if (names.has(thing)) { + return names.get(thing); + } + if (isPrimitive(thing)) { + return stringifyPrimitive(thing); + } + const type = getType(thing); + switch (type) { + case "Number": + case "String": + case "Boolean": + return `Object(${stringify(thing.valueOf())})`; + case "RegExp": + return thing.toString(); + case "Date": + return `new Date(${thing.getTime()})`; + case "Array": + const members = thing.map((v, i) => i in thing ? stringify(v) : ""); + const tail = thing.length === 0 || thing.length - 1 in thing ? "" : ","; + return `[${members.join(",")}${tail}]`; + case "Set": + case "Map": + return `new ${type}([${Array.from(thing).map(stringify).join(",")}])`; + default: + if (thing.toJSON) { + let json = thing.toJSON(); + if (getType(json) === "String") { + try { + json = JSON.parse(json); + } catch (e) { + } + } + return stringify(json); + } + if (Object.getPrototypeOf(thing) === null) { + if (Object.keys(thing).length === 0) { + return "Object.create(null)"; + } + return `Object.create(null,{${Object.keys(thing).map((key) => `${safeKey(key)}:{writable:true,enumerable:true,value:${stringify(thing[key])}}`).join(",")}})`; + } + return `{${Object.keys(thing).map((key) => `${safeKey(key)}:${stringify(thing[key])}`).join(",")}}`; + } + } + const str = stringify(value); + if (names.size) { + const params = []; + const statements = []; + const values = []; + names.forEach((name, thing) => { + params.push(name); + if (isPrimitive(thing)) { + values.push(stringifyPrimitive(thing)); + return; + } + const type = getType(thing); + switch (type) { + case "Number": + case "String": + case "Boolean": + values.push(`Object(${stringify(thing.valueOf())})`); + break; + case "RegExp": + values.push(thing.toString()); + break; + case "Date": + values.push(`new Date(${thing.getTime()})`); + break; + case "Array": + values.push(`Array(${thing.length})`); + thing.forEach((v, i) => { + statements.push(`${name}[${i}]=${stringify(v)}`); + }); + break; + case "Set": + values.push("new Set"); + statements.push(`${name}.${Array.from(thing).map((v) => `add(${stringify(v)})`).join(".")}`); + break; + case "Map": + values.push("new Map"); + statements.push(`${name}.${Array.from(thing).map(([k, v]) => `set(${stringify(k)}, ${stringify(v)})`).join(".")}`); + break; + default: + values.push(Object.getPrototypeOf(thing) === null ? "Object.create(null)" : "{}"); + Object.keys(thing).forEach((key) => { + statements.push(`${name}${safeProp(key)}=${stringify(thing[key])}`); + }); + } + }); + statements.push(`return ${str}`); + return `(function(${params.join(",")}){${statements.join(";")}}(${values.join(",")}))`; + } else { + return str; + } +} +function getName(num) { + let name = ""; + do { + name = chars[num % chars.length] + name; + num = ~~(num / chars.length) - 1; + } while (num >= 0); + return reserved.test(name) ? `${name}0` : name; +} +function isPrimitive(thing) { + return Object(thing) !== thing; +} +function stringifyPrimitive(thing) { + if (typeof thing === "string") { + return stringifyString(thing); + } + if (thing === void 0) { + return "void 0"; + } + if (thing === 0 && 1 / thing < 0) { + return "-0"; + } + const str = String(thing); + if (typeof thing === "number") { + return str.replace(/^(-)?0\./, "$1."); + } + return str; +} +function getType(thing) { + return Object.prototype.toString.call(thing).slice(8, -1); +} +function escapeUnsafeChar(c) { + return escaped[c] || c; +} +function escapeUnsafeChars(str) { + return str.replace(unsafeChars, escapeUnsafeChar); +} +function safeKey(key) { + return /^[_$a-zA-Z][_$a-zA-Z0-9]*$/.test(key) ? key : escapeUnsafeChars(JSON.stringify(key)); +} +function safeProp(key) { + return /^[_$a-zA-Z][_$a-zA-Z0-9]*$/.test(key) ? `.${key}` : `[${escapeUnsafeChars(JSON.stringify(key))}]`; +} +function stringifyString(str) { + let result = '"'; + for (let i = 0; i < str.length; i += 1) { + const char = str.charAt(i); + const code = char.charCodeAt(0); + if (char === '"') { + result += '\\"'; + } else if (char in escaped) { + result += escaped[char]; + } else if (code >= 55296 && code <= 57343) { + const next = str.charCodeAt(i + 1); + if (code <= 56319 && (next >= 56320 && next <= 57343)) { + result += char + str[++i]; + } else { + result += `\\u${code.toString(16).toUpperCase()}`; + } + } else { + result += char; + } + } + result += '"'; + return result; +} + +const appRootId = "__nuxt"; + +const appRootTag = "div"; + +globalThis.__buildAssetsURL = buildAssetsURL; +globalThis.__publicAssetsURL = publicAssetsURL; +const getClientManifest = () => import('../app/client.manifest.mjs').then((r) => r.default || r).then((r) => typeof r === "function" ? r() : r); +const getStaticRenderedHead = () => import('../rollup/_virtual_head-static.mjs').then((r) => r.default || r); +const getServerEntry = () => import('../app/server.mjs').then((r) => r.default || r); +const getSSRStyles = lazyCachedFunction(() => import('../app/styles.mjs').then((r) => r.default || r)); +const getSSRRenderer = lazyCachedFunction(async () => { + const manifest = await getClientManifest(); + if (!manifest) { + throw new Error("client.manifest is not available"); + } + const createSSRApp = await getServerEntry(); + if (!createSSRApp) { + throw new Error("Server bundle is not available"); + } + const options = { + manifest, + renderToString: renderToString$1, + buildAssetsURL + }; + const renderer = createRenderer(createSSRApp, options); + async function renderToString$1(input, context) { + const html = await renderToString(input, context); + return `<${appRootTag} id="${appRootId}">${html}`; + } + return renderer; +}); +const getSPARenderer = lazyCachedFunction(async () => { + const manifest = await getClientManifest(); + const options = { + manifest, + renderToString: () => `<${appRootTag} id="${appRootId}">`, + buildAssetsURL + }; + const renderer = createRenderer(() => () => { + }, options); + const result = await renderer.renderToString({}); + const renderToString = (ssrContext) => { + const config = useRuntimeConfig(); + ssrContext.payload = { + serverRendered: false, + config: { + public: config.public, + app: config.app + }, + data: {}, + state: {} + }; + ssrContext.renderMeta = ssrContext.renderMeta ?? getStaticRenderedHead; + return Promise.resolve(result); + }; + return { + rendererContext: renderer.rendererContext, + renderToString + }; +}); +const PAYLOAD_URL_RE = /\/_payload(\.[a-zA-Z0-9]+)?.js(\?.*)?$/; +const renderer = defineRenderHandler(async (event) => { + const nitroApp = useNitroApp(); + const ssrError = event.node.req.url?.startsWith("/__nuxt_error") ? getQuery(event) : null; + if (ssrError && event.node.req.socket.readyState !== "readOnly") { + throw createError("Cannot directly render error page!"); + } + const islandContext = void 0; + let url = ssrError?.url || islandContext?.url || event.node.req.url; + const isRenderingPayload = PAYLOAD_URL_RE.test(url); + if (isRenderingPayload) { + url = url.substring(0, url.lastIndexOf("/")) || "/"; + event.node.req.url = url; + } + const routeOptions = getRouteRules(event); + const ssrContext = { + url, + event, + runtimeConfig: useRuntimeConfig(), + noSSR: !!event.node.req.headers["x-nuxt-no-ssr"] || routeOptions.ssr === false || (false), + error: !!ssrError, + nuxt: void 0, + /* NuxtApp */ + payload: ssrError ? { error: ssrError } : {}, + islandContext + }; + const renderer = ssrContext.noSSR ? await getSPARenderer() : await getSSRRenderer(); + const _rendered = await renderer.renderToString(ssrContext).catch((error) => { + throw !ssrError && ssrContext.payload?.error || error; + }); + await ssrContext.nuxt?.hooks.callHook("app:rendered", { ssrContext }); + if (ssrContext.payload?.error && !ssrError) { + throw ssrContext.payload.error; + } + if (isRenderingPayload) { + const response2 = renderPayloadResponse(ssrContext); + return response2; + } + const renderedMeta = await ssrContext.renderMeta?.() ?? {}; + const inlinedStyles = await renderInlineStyles(ssrContext.modules ?? ssrContext._registeredComponents ?? []) ; + const htmlContext = { + island: Boolean(islandContext), + htmlAttrs: normalizeChunks([renderedMeta.htmlAttrs]), + head: normalizeChunks([ + renderedMeta.headTags, + null, + _rendered.renderResourceHints(), + _rendered.renderStyles(), + inlinedStyles, + ssrContext.styles + ]), + bodyAttrs: normalizeChunks([renderedMeta.bodyAttrs]), + bodyPrepend: normalizeChunks([ + renderedMeta.bodyScriptsPrepend, + ssrContext.teleports?.body + ]), + body: [_rendered.html], + bodyAppend: normalizeChunks([ + `","bodyTags":"","bodyTagsOpen":"","htmlAttrs":"","bodyAttrs":""}; + +export { _virtual__headStatic as default }; +//# sourceMappingURL=_virtual_head-static.mjs.map diff --git a/docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map b/docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map new file mode 100644 index 00000000..412e2818 --- /dev/null +++ b/docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"_virtual_head-static.mjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;;;"} \ No newline at end of file diff --git a/docs/.output/server/index.mjs b/docs/.output/server/index.mjs new file mode 100644 index 00000000..844adc66 --- /dev/null +++ b/docs/.output/server/index.mjs @@ -0,0 +1,52 @@ +globalThis._importMeta_={url:import.meta.url,env:process.env};import 'node-fetch-native/polyfill'; +import 'node:http'; +import 'node:https'; +import 'destr'; +import 'h3'; +export { n as default } from './chunks/nitro/node-server.mjs'; +import './chunks/nitro/config.mjs'; +import 'ofetch'; +import 'unenv/runtime/fetch/index'; +import 'hookable'; +import 'ohash'; +import 'ufo'; +import 'unstorage'; +import 'unstorage/drivers/overlay'; +import 'unstorage/drivers/memory'; +import 'defu'; +import 'radix3'; +import 'node:fs'; +import 'node:url'; +import 'pathe'; +import '@octokit/graphql'; +import 'remark-github'; +import 'scule'; +import 'unified'; +import 'mdast-util-to-string'; +import 'micromark/lib/preprocess.js'; +import 'micromark/lib/postprocess.js'; +import 'unist-util-stringify-position'; +import 'micromark-util-character'; +import 'micromark-util-chunked'; +import 'micromark-util-resolve-all'; +import 'remark-emoji'; +import 'rehype-slug'; +import 'remark-squeeze-paragraphs'; +import 'rehype-external-links'; +import 'remark-gfm'; +import 'rehype-sort-attribute-values'; +import 'rehype-sort-attributes'; +import 'rehype-raw'; +import 'remark-mdc'; +import 'remark-parse'; +import 'remark-rehype'; +import 'mdast-util-to-hast'; +import 'detab'; +import 'unist-builder'; +import 'mdurl'; +import 'slugify'; +import 'unist-util-position'; +import 'unist-util-visit'; +import 'shiki-es'; +import 'unenv/runtime/npm/consola'; +//# sourceMappingURL=index.mjs.map diff --git a/docs/.output/server/index.mjs.map b/docs/.output/server/index.mjs.map new file mode 100644 index 00000000..5c7e298f --- /dev/null +++ b/docs/.output/server/index.mjs.map @@ -0,0 +1 @@ +{"version":3,"file":"index.mjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/docs/.output/server/package.json b/docs/.output/server/package.json new file mode 100644 index 00000000..04fee29f --- /dev/null +++ b/docs/.output/server/package.json @@ -0,0 +1,174 @@ +{ + "name": "nitro-output", + "version": "0.0.0", + "private": true, + "bundledDependencies": { + "source-map-support": "0.5.21", + "vue": "3.2.47", + "nanoid": "4.0.1", + "remark-github": "11.2.4", + "slugify": "1.6.5", + "unified": "10.1.2", + "remark-emoji": "3.0.2", + "rehype-raw": "6.1.1", + "remark-gfm": "3.0.1", + "remark-squeeze-paragraphs": "5.0.1", + "rehype-sort-attribute-values": "4.0.0", + "rehype-slug": "5.1.0", + "rehype-external-links": "2.0.1", + "rehype-sort-attributes": "4.0.0", + "mdast-util-to-string": "3.1.1", + "unist-util-stringify-position": "3.0.3", + "unist-util-visit": "4.1.2", + "property-information": "6.2.0", + "micromark-util-character": "1.1.0", + "remark-parse": "10.0.1", + "remark-rehype": "10.1.0", + "micromark-util-resolve-all": "1.0.0", + "micromark-util-chunked": "1.0.0", + "unist-builder": "3.0.1", + "mdast-util-to-hast": "12.3.0", + "detab": "3.0.2", + "unist-util-position": "4.0.4", + "mdurl": "1.0.1", + "h3": "1.4.0", + "node-fetch-native": "1.0.1", + "destr": "1.2.2", + "ofetch": "1.0.0", + "hookable": "5.4.2", + "unstorage": "1.1.4", + "radix3": "1.0.0", + "defu": "6.1.2", + "pathe": "1.1.0", + "scule": "1.0.0", + "ufo": "1.0.1", + "ohash": "1.0.0", + "vue-bundle-renderer": "1.0.1", + "vue-router": "4.1.6", + "unctx": "2.1.1", + "cookie-es": "0.5.0", + "remark-mdc": "1.1.3", + "json5": "2.2.3", + "shiki-es": "0.2.0", + "micromark": "3.1.0", + "unenv": "1.1.1", + "@unhead/ssr": "1.0.21", + "@unhead/dom": "1.0.21", + "@unhead/vue": "1.0.21", + "@iconify/vue": "4.1.0", + "@octokit/graphql": "5.0.5", + "is-absolute-url": "4.0.1", + "uncrypto": "0.1.2", + "iron-webcrypto": "0.4.0", + "js-yaml": "4.1.0", + "micromark-factory-space": "1.0.0", + "micromark-core-commonmark": "1.0.6", + "micromark-factory-whitespace": "1.0.0", + "micromark-util-subtokenize": "1.0.2", + "mdast-util-to-markdown": "1.5.0", + "node-emoji": "1.11.0", + "emoticon": "4.0.1", + "micromark-extension-gfm": "2.0.1", + "mdast-squeeze-paragraphs": "5.2.1", + "mdast-util-gfm": "2.0.2", + "hast-util-raw": "7.2.3", + "hast-util-has-property": "2.0.1", + "github-slugger": "2.0.0", + "hast-util-is-element": "2.1.3", + "hast-util-to-string": "2.0.0", + "space-separated-tokens": "2.0.2", + "stringify-entities": "4.0.3", + "hast-util-heading-rank": "2.1.1", + "parse-entities": "4.0.1", + "flat": "5.0.2", + "extend": "3.0.2", + "@vue/server-renderer": "3.2.47", + "is-plain-obj": "4.1.0", + "mdast-util-from-markdown": "1.3.0", + "micromark-util-sanitize-uri": "1.1.0", + "@octokit/request": "6.2.3", + "universal-user-agent": "6.0.0", + "source-map": "0.6.1", + "buffer-from": "1.1.2", + "unist-util-visit-parents": "5.1.3", + "mdast-util-definitions": "5.1.2", + "unist-util-generated": "2.0.1", + "mdast-util-find-and-replace": "2.2.2", + "bail": "2.0.2", + "vfile": "5.3.7", + "trough": "2.1.0", + "is-buffer": "2.0.5", + "@vue/devtools-api": "6.5.0", + "@vue/compiler-dom": "3.2.47", + "@vue/runtime-dom": "3.2.47", + "@vue/shared": "3.2.47", + "trim-lines": "3.0.1", + "micromark-extension-gfm-autolink-literal": "1.0.3", + "micromark-extension-gfm-footnote": "1.0.4", + "micromark-util-combine-extensions": "1.0.0", + "micromark-extension-gfm-strikethrough": "1.0.4", + "micromark-extension-gfm-table": "1.0.5", + "micromark-extension-gfm-task-list-item": "1.0.3", + "micromark-util-encode": "1.0.1", + "micromark-extension-gfm-tagfilter": "1.0.1", + "micromark-util-classify-character": "1.0.0", + "decode-named-character-reference": "1.0.2", + "micromark-factory-destination": "1.0.0", + "micromark-util-normalize-identifier": "1.0.0", + "micromark-factory-title": "1.0.2", + "micromark-factory-label": "1.0.2", + "micromark-util-html-tag-name": "1.1.0", + "is-plain-object": "5.0.0", + "@octokit/endpoint": "7.0.5", + "@octokit/request-error": "3.0.3", + "node-fetch": "2.6.9", + "parse5": "6.0.1", + "micromark-util-decode-numeric-character-reference": "1.0.0", + "micromark-util-decode-string": "1.0.2", + "lodash": "4.17.21", + "mdast-util-phrasing": "3.0.1", + "longest-streak": "3.1.0", + "mdast-util-gfm-autolink-literal": "1.0.3", + "mdast-util-gfm-table": "1.0.7", + "mdast-util-gfm-footnote": "1.0.2", + "mdast-util-gfm-task-list-item": "1.0.2", + "hast-util-to-parse5": "7.1.0", + "mdast-util-gfm-strikethrough": "1.0.3", + "zwitch": "2.0.4", + "html-void-elements": "2.0.1", + "hast-util-from-parse5": "7.1.1", + "web-namespaces": "2.0.1", + "character-entities-legacy": "3.0.0", + "is-alphanumerical": "2.0.1", + "is-hexadecimal": "2.0.1", + "character-reference-invalid": "2.0.1", + "is-decimal": "2.0.1", + "escape-string-regexp": "5.0.0", + "@vue/compiler-ssr": "3.2.47", + "unist-util-is": "5.2.0", + "vfile-message": "3.1.4", + "@vue/compiler-core": "3.2.47", + "character-entities": "2.0.2", + "character-entities-html4": "2.1.0", + "@vue/runtime-core": "3.2.47", + "once": "1.4.0", + "deprecation": "2.3.1", + "whatwg-url": "5.0.0", + "is-alphabetical": "2.0.1", + "hastscript": "7.2.0", + "encoding": "0.1.13", + "ccount": "2.0.1", + "markdown-table": "3.0.3", + "comma-separated-tokens": "2.0.3", + "vfile-location": "4.1.0", + "estree-walker": "2.0.2", + "wrappy": "1.0.2", + "@babel/parser": "7.20.15", + "@vue/reactivity": "3.2.47", + "tr46": "0.0.3", + "webidl-conversions": "3.0.1", + "iconv-lite": "0.6.3", + "hast-util-parse-selector": "3.1.1", + "safer-buffer": "2.1.2" + } +} \ No newline at end of file From d3b98e93574e6a51bffc62a8090440a8871f730a Mon Sep 17 00:00:00 2001 From: Gareth Thomas Date: Mon, 13 Mar 2023 12:00:57 -0500 Subject: [PATCH 4/4] chore: regenerate docs --- docs/.output/nitro.json | 6 +- docs/.output/public/200.html | 8 + docs/.output/public/404.html | 8 + .../public/__app_config.json/_payload.js | 1 + .../public/__app_config.json/index.html | 74 + docs/.output/public/__studio.json | 2 +- .../{Alert.41cb256b.js => Alert.95097db0.js} | 2 +- .../public/_nuxt/AppLayout.7354fe11.js | 1 - .../public/_nuxt/AppLayout.e1616a30.js | 1 + .../{Badge.af643d4e.js => Badge.09ee14a8.js} | 2 +- ...Hero.495ede00.js => BlockHero.04826bbd.js} | 2 +- ...ink.91883881.js => ButtonLink.e542a711.js} | 2 +- ...allout.12d57ced.js => Callout.e583d4ce.js} | 2 +- .../{Card.178cbb97.js => Card.8db8e0b6.js} | 2 +- ...dGrid.e3a9f75d.js => CardGrid.b29ba276.js} | 2 +- .../_nuxt/ComponentPlayground.3c424a18.js | 1 - .../_nuxt/ComponentPlayground.42e12ad5.js | 1 + ...js => ComponentPlayground.vue.69892806.js} | 2 +- ...js => ComponentPlaygroundData.b0c91250.js} | 2 +- ...s => ComponentPlaygroundProps.659d0c56.js} | 2 +- ...Doc.cbc50263.js => ContentDoc.0b92d62d.js} | 2 +- ...st.e8a9fb87.js => ContentList.97fc1b04.js} | 2 +- ...da237.js => ContentNavigation.2763794e.js} | 2 +- ...8cb0.js => ContentPreviewMode.9fd06d7d.js} | 2 +- ...y.9f33890e.js => ContentQuery.5ffc4b8c.js} | 2 +- ...7732722.js => ContentRenderer.8e4912b9.js} | 2 +- ...js => ContentRendererMarkdown.433c31c8.js} | 2 +- ...ot.c5067a4f.js => ContentSlot.811112da.js} | 2 +- ...ton.f7858c79.js => CopyButton.087ca90c.js} | 2 +- ...side.08a0955d.js => DocsAside.1abe9757.js} | 2 +- ....b95e55e0.js => DocsAsideTree.4387e6ea.js} | 2 +- ...b38ecc43.js => DocsPageBottom.dd73c7ef.js} | 2 +- ...d352cf62.js => DocsPageLayout.4b0475f7.js} | 2 +- ...t.2b9ea48f.js => DocsPrevNext.2107234e.js} | 2 +- ...ocsToc.55846f28.js => DocsToc.3ed2837f.js} | 2 +- ...s.644c91ee.js => DocsTocLinks.ff067be8.js} | 2 +- ....js => DocumentDrivenNotFound.d294ae47.js} | 2 +- .../public/_nuxt/EditOnLink.77af6984.js | 1 - .../public/_nuxt/EditOnLink.ca577bd0.js | 1 + ...1d2292f2.js => EditOnLink.vue.23cee876.js} | 2 +- .../public/_nuxt/ExampleTheTitle.aab4e6ec.js | 1 + .../public/_nuxt/ExampleTheTitle.f00d8fad.js | 1 - ....35c65eac.js => GithubCommits.a31447d4.js} | 2 +- ...dad6.js => GithubContributors.2435a600.js} | 2 +- ....js => GithubFileContributors.41f6cd9d.js} | 2 +- ...eb30e.js => GithubLastRelease.79db9f48.js} | 2 +- ...ink.6cd695ea.js => GithubLink.2353077b.js} | 2 +- ...e.5eafd6e1.js => GithubReadme.cec09318.js} | 2 +- ....d892113d.js => GithubRelease.5c4f9c85.js} | 2 +- ...05c52708.js => GithubReleases.adf0483e.js} | 2 +- ...5038c7.js => GithubRepository.a7e8d415.js} | 2 +- ...bcf84c.js => HeroAnnouncement.92c907fa.js} | 2 +- docs/.output/public/_nuxt/List.63030545.js | 1 - docs/.output/public/_nuxt/List.bf56eba2.js | 1 + ...t.vue.98cb48bf.js => List.vue.9ef0bef2.js} | 2 +- ...kdown.7f24e431.js => Markdown.834a7772.js} | 2 +- ...utton.67bdaa98.js => MyButton.4292c104.js} | 2 +- docs/.output/public/_nuxt/NuxtImg.0b2f5a98.js | 1 + docs/.output/public/_nuxt/NuxtImg.66944f8e.js | 1 - ...ue.a13022c3.js => NuxtImg.vue.0972faf4.js} | 2 +- .../{Props.876d937c.js => Props.7f60a4b4.js} | 2 +- ...{ProseA.a4d07cc8.js => ProseA.a0c295ec.js} | 2 +- ...Code.0e5c7be6.js => ProseCode.5f90dd93.js} | 2 +- ...c5a.js => ProseCodeCopyButton.885123e2.js} | 2 +- ...roseH1.c24b90eb.js => ProseH1.f0f94d61.js} | 2 +- ...roseH2.957cbe8e.js => ProseH2.440e9004.js} | 2 +- ...roseH3.cb2444de.js => ProseH3.25d5cd3a.js} | 2 +- ...roseH4.77a5278f.js => ProseH4.282cba87.js} | 2 +- ...roseH5.8dc93198.js => ProseH5.0ae4a534.js} | 2 +- ...roseH6.bdc78e01.js => ProseH6.9fccd00c.js} | 2 +- .../.output/public/_nuxt/ProseImg.16c4c81d.js | 1 - .../.output/public/_nuxt/ProseImg.4eef4e65.js | 1 + ...dMore.4d40ce3f.js => ReadMore.fec51d0b.js} | 2 +- ...andbox.b8bdb0c7.js => Sandbox.1394c91b.js} | 2 +- ...er.065c6aeb.js => VideoPlayer.57f76f66.js} | 2 +- .../public/_nuxt/app.config.88c4fc0b.js | 1 + .../public/_nuxt/app.config.f41ab05d.js | 1 - ...Data.7c06b2d5.js => asyncData.45fd3bd9.js} | 2 +- ...t-db.514bef37.js => client-db.e451d8e0.js} | 2 +- ...{cookie.b9cff64d.js => cookie.71eae014.js} | 2 +- docs/.output/public/_nuxt/default.aab8fc36.js | 1 - docs/.output/public/_nuxt/default.b47ebbea.js | 1 + ...bce7a6e.js => document-driven.49104e9a.js} | 2 +- docs/.output/public/_nuxt/entry.c31835cb.js | 10 + docs/.output/public/_nuxt/entry.f3791b9c.js | 10 - ...-404.1576ed15.js => error-404.709df2ea.js} | 2 +- ...-500.421dc5a9.js => error-500.9e9af3bc.js} | 2 +- ...c8606a2.js => error-component.d8e3cc55.js} | 2 +- ...{layout.0a22fa4a.js => layout.37427c44.js} | 2 +- .../{page.f33b5a13.js => page.49790b66.js} | 2 +- ...Docus.41ab1ca5.js => useDocus.b9e6b105.js} | 2 +- ...thub.1972ce55.js => useGithub.0ae0bb61.js} | 2 +- ...udio.ef34e52b.js => useStudio.321f4379.js} | 2 +- ...elcome.4086e1c1.js => welcome.2c2152cf.js} | 2 +- docs/.output/public/_payload.js | 1 + .../api/_content/cache.1678414054441.json | 1 - .../api/_content/cache.1678726370648.json | 1 + ...441.json => u7BbTyuhiE.1678726370648.json} | 2 +- .../query/04YHeHr9tM.1678726370648.json | 1 + .../query/19ZwhtnBsu.1678726370648.json | 1 + .../query/429l0g1JsL.1678726370648.json | 1 + .../query/47rOsvYKsq.1678726370648.json | 1 + .../query/4yp2Okse4m.1678726370648.json | 1 + .../query/5CKmdxNney.1678726370648.json | 1 + .../query/5Nv7bn0WQP.1678726370648.json | 1 + .../query/6p0u3YetMp.1678726370648.json | 1 + .../query/6pNGztrIpy.1678726370648.json | 1 + .../query/7Rwiic1Mfu.1678726370648.json | 1 + .../query/ALdmBT6ADc.1678726370648.json | 1 + .../query/BLviYQQPJ7.1678726370648.json | 1 + .../query/BoNR1lKKhq.1678726370648.json | 1 + .../query/BrSZyfjf5T.1678726370648.json | 1 + .../query/Bwmd3WsD1s.1678726370648.json | 1 + .../query/CmzcyosjoR.1678726370648.json | 1 + .../query/CxjcDfvjBc.1678726370648.json | 1 + .../query/ESBtShW9sz.1678726370648.json | 1 + .../query/FCRaYwQMEC.1678726370648.json | 1 + .../query/FrVRb75X5s.1678726370648.json | 1 + .../query/GkDGmUyz0M.1678726370648.json | 1 + .../query/HOF2lC6065.1678726370648.json | 1 + .../query/HlvQ2CNI92.1678726370648.json | 1 + .../query/J1BQKIMJrl.1678726370648.json | 1 + .../query/J36ejkBU7w.1678726370648.json | 1 + .../query/JJ9C4UNvCH.1678726370648.json | 1 + .../query/JlWpJOmqbt.1678726370648.json | 1 + .../query/KGVfeDohnm.1678726370648.json | 1 + .../query/KP6cJhSEbf.1678726370648.json | 1 + .../query/Lt6BIToPNN.1678726370648.json | 1 + .../query/MMGz34b8PH.1678726370648.json | 1 + .../query/O32KeiYrUa.1678726370648.json | 1 + .../query/P314osc27P.1678726370648.json | 1 + ...441.json => RMnrvBawPn.1678726370648.json} | 0 .../query/RoutJwnTpy.1678726370648.json | 1 + .../query/Smd1FvtVfQ.1678726370648.json | 1 + .../query/Su48x97rZI.1678726370648.json | 1 + .../query/WXBaqghg8k.1678726370648.json | 1 + .../query/WoZUvC9rqb.1678726370648.json | 1 + .../query/XTOw4mgR3f.1678726370648.json | 1 + .../query/XVPoId9nap.1678726370648.json | 1 + .../query/YBF0RHqQ3e.1678726370648.json | 1 + .../query/YKOPtCYulT.1678726370648.json | 1 + .../query/ZfwdkFNJ75.1678726370648.json | 1 + .../query/a1Dgl9wshN.1678726370648.json | 1 + .../query/bjzyL7C69z.1678726370648.json | 1 + ...441.json => brX4CwCJoQ.1678726370648.json} | 0 .../query/cItbEHp6hX.1678726370648.json | 1 + .../query/eO9hzu7vu1.1678726370648.json | 1 + .../query/eytgjSbEVl.1678726370648.json | 1 + .../query/fQZ8vTWYd8.1678726370648.json | 1 + .../query/fis0WzoDt0.1678726370648.json | 1 + .../query/fqiFs2KJLv.1678726370648.json | 1 + .../query/hgp86jxc5i.1678726370648.json | 1 + .../query/ikI1xOw44N.1678726370648.json | 1 + .../query/iqMgk3nfMY.1678726370648.json | 1 + .../query/jWALMeA07z.1678726370648.json | 1 + .../query/kBgJSZjudv.1678726370648.json | 1 + .../query/kP0lcPGw3r.1678726370648.json | 1 + .../query/khs8gA1FwT.1678726370648.json | 1 + .../query/ozdJ1wICj3.1678726370648.json | 1 + .../query/qGEjvCtHGf.1678726370648.json | 1 + .../query/s6oaJBqQEn.1678726370648.json | 1 + .../query/sEeveVucQ6.1678726370648.json | 1 + .../query/tEt344hQrs.1678726370648.json | 1 + .../query/tuGsv8hqtc.1678726370648.json | 1 + .../query/uBU6jwJTTz.1678726370648.json | 1 + .../query/urUfuwuVJk.1678726370648.json | 1 + .../query/v3ScIppUqo.1678726370648.json | 1 + .../query/wMeaP8hHUN.1678726370648.json | 1 + .../query/wQeP3PjQcK.1678726370648.json | 1 + .../query/wscAfndYyi.1678726370648.json | 1 + .../query/xWeY3NfYtX.1678726370648.json | 1 + .../query/xYb2WcNJtQ.1678726370648.json | 1 + .../query/xhTH8MZ8W5.1678726370648.json | 1 + .../query/yi9ZyVWLDM.1678726370648.json | 1 + .../query/ymHf7a6Zbx.1678726370648.json | 1 + .../getting-started/introduction/_payload.js | 1 + .../getting-started/introduction/index.html | 12 + .../frontier/cli/development/_payload.js | 1 + .../frontier/cli/development/index.html | 12 + .../public/frontier/cli/usage/_payload.js | 1 + .../public/frontier/cli/usage/index.html | 12 + .../installation/development/_payload.js | 1 + .../installation/development/index.html | 12 + .../frontier/installation/general/_payload.js | 1 + .../frontier/installation/general/index.html | 12 + .../installation/navigation/_payload.js | 1 + .../installation/navigation/index.html | 12 + .../public/frontier/introduction/_payload.js | 1 + .../content-directory/_payload.js | 1 + .../introduction/content-directory/index.html | 12 + .../public/frontier/introduction/index.html | 12 + .../introduction/philosophy/_payload.js | 1 + .../introduction/philosophy/index.html | 12 + .../introduction/whats-frontier/_payload.js | 1 + .../introduction/whats-frontier/index.html | 12 + .../libraries/standard-library/_payload.js | 1 + .../libraries/standard-library/index.html | 12 + .../frontier/libraries/typekit/_payload.js | 1 + .../frontier/libraries/typekit/index.html | 12 + .../frontier/plugins/frontend/_payload.js | 1 + .../frontier/plugins/frontend/index.html | 12 + .../frontier/plugins/mobile/_payload.js | 1 + .../public/frontier/plugins/mobile/index.html | 12 + .../frontier/plugins/quality/_payload.js | 1 + .../frontier/plugins/quality/index.html | 12 + .../frontier/templates/dotnet/_payload.js | 1 + .../frontier/templates/dotnet/index.html | 12 + .../frontier/templates/nuxt/_payload.js | 1 + .../public/frontier/templates/nuxt/index.html | 12 + .../frontier/templates/typescript/_payload.js | 1 + .../frontier/templates/typescript/index.html | 12 + .../getting-started/introduction/_payload.js | 1 + .../getting-started/introduction/index.html | 12 + docs/.output/public/index.html | 13 +- .../mobile/cli-commands/usage/_payload.js | 1 + .../mobile/cli-commands/usage/index.html | 23 + .../mobile/deployment/deployment/_payload.js | 1 + .../mobile/deployment/deployment/index.html | 12 + .../mobile/features/components/_payload.js | 1 + .../mobile/features/components/index.html | 30 + .../mobile/features/features/_payload.js | 1 + .../mobile/features/features/index.html | 16 + .../mobile/features/navigation/_payload.js | 1 + .../mobile/features/navigation/index.html | 23 + .../mobile/features/screens/_payload.js | 1 + .../public/mobile/features/screens/index.html | 23 + .../mobile/features/services/_payload.js | 1 + .../mobile/features/services/index.html | 23 + .../public/mobile/features/stores/_payload.js | 1 + .../public/mobile/features/stores/index.html | 23 + .../getting-started/overview/_payload.js | 1 + .../getting-started/overview/index.html | 29 + .../public/mobile/testing/testing/_payload.js | 1 + .../public/mobile/testing/testing/index.html | 12 + .../rdvue/cli-commands/usage/_payload.js | 1 + .../rdvue/cli-commands/usage/index.html | 14 + .../rdvue/features/features/_payload.js | 1 + .../public/rdvue/features/features/index.html | 34 + .../getting-started/overview/_payload.js | 1 + .../rdvue/getting-started/overview/index.html | 37 + .../rdvue/scaffilding/sitemap/_payload.js | 1 + .../rdvue/scaffilding/sitemap/index.html | 27 + .../rdvue/template-schema/schema/_payload.js | 1 + .../rdvue/template-schema/schema/index.html | 53 + .../public/rdvue/testing/testing/_payload.js | 1 + .../public/rdvue/testing/testing/index.html | 74 + .../public/rdvue/themeing/theming/_payload.js | 1 + .../public/rdvue/themeing/theming/index.html | 12 + .../getting-started/introduction/_payload.js | 1 + .../getting-started/introduction/index.html | 12 + .../chunks/app/_nuxt/Alert-2b29f746.mjs | 56 - .../chunks/app/_nuxt/Alert-2b29f746.mjs.map | 1 - .../app/_nuxt/Alert-styles.484d4e78.mjs | 6 - .../app/_nuxt/Alert-styles.484d4e78.mjs.map | 1 - .../app/_nuxt/AppFooter-styles.775a1c05.mjs | 6 - .../_nuxt/AppFooter-styles.775a1c05.mjs.map | 1 - .../app/_nuxt/AppHeader-styles.5fd39c5b.mjs | 6 - .../_nuxt/AppHeader-styles.5fd39c5b.mjs.map | 1 - .../_nuxt/AppHeaderDialog-styles.9903b5a9.mjs | 6 - .../AppHeaderDialog-styles.9903b5a9.mjs.map | 1 - .../_nuxt/AppHeaderLogo-styles.795405cc.mjs | 6 - .../AppHeaderLogo-styles.795405cc.mjs.map | 1 - .../AppHeaderNavigation-styles.80a8cd0f.mjs | 6 - ...ppHeaderNavigation-styles.80a8cd0f.mjs.map | 1 - .../_nuxt/AppLoadingBar-styles.b242e2e9.mjs | 6 - .../AppLoadingBar-styles.b242e2e9.mjs.map | 1 - .../app/_nuxt/AppSearch-styles.36eea8dd.mjs | 6 - .../_nuxt/AppSearch-styles.36eea8dd.mjs.map | 1 - .../_nuxt/AppSocialIcons-styles.994e800b.mjs | 6 - .../AppSocialIcons-styles.994e800b.mjs.map | 1 - .../chunks/app/_nuxt/Badge-5f9ab214.mjs | 56 - .../chunks/app/_nuxt/Badge-5f9ab214.mjs.map | 1 - .../app/_nuxt/Badge-styles.8af74ce4.mjs | 6 - .../app/_nuxt/Badge-styles.8af74ce4.mjs.map | 1 - .../chunks/app/_nuxt/BlockHero-f586796f.mjs | 145 - .../app/_nuxt/BlockHero-f586796f.mjs.map | 1 - .../app/_nuxt/BlockHero-styles.df4a0a32.mjs | 6 - .../_nuxt/BlockHero-styles.df4a0a32.mjs.map | 1 - .../chunks/app/_nuxt/ButtonLink-df4791d5.mjs | 92 - .../app/_nuxt/ButtonLink-df4791d5.mjs.map | 1 - .../app/_nuxt/ButtonLink-styles.2eab8dff.mjs | 6 - .../_nuxt/ButtonLink-styles.2eab8dff.mjs.map | 1 - .../chunks/app/_nuxt/Callout-fc92c8b7.mjs | 72 - .../chunks/app/_nuxt/Callout-fc92c8b7.mjs.map | 1 - .../app/_nuxt/Callout-styles.966d42ad.mjs | 6 - .../app/_nuxt/Callout-styles.966d42ad.mjs.map | 1 - .../server/chunks/app/_nuxt/Card-2052047f.mjs | 94 - .../chunks/app/_nuxt/Card-2052047f.mjs.map | 1 - .../chunks/app/_nuxt/Card-styles.29530cd8.mjs | 6 - .../app/_nuxt/Card-styles.29530cd8.mjs.map | 1 - .../chunks/app/_nuxt/CardGrid-160bcd85.mjs | 54 - .../app/_nuxt/CardGrid-160bcd85.mjs.map | 1 - .../app/_nuxt/CardGrid-styles.65f28427.mjs | 6 - .../_nuxt/CardGrid-styles.65f28427.mjs.map | 1 - .../chunks/app/_nuxt/CodeBlock-f6f4711b.mjs | 56 - .../app/_nuxt/CodeBlock-f6f4711b.mjs.map | 1 - .../app/_nuxt/CodeBlock-styles.cac949de.mjs | 6 - .../_nuxt/CodeBlock-styles.cac949de.mjs.map | 1 - .../chunks/app/_nuxt/CodeGroup-67aa2302.mjs | 98 - .../app/_nuxt/CodeGroup-67aa2302.mjs.map | 1 - .../app/_nuxt/CodeGroup-styles.0da0e60b.mjs | 6 - .../_nuxt/CodeGroup-styles.0da0e60b.mjs.map | 1 - .../_nuxt/ComponentPlayground-c7ca07d7.mjs | 143 - .../ComponentPlayground-c7ca07d7.mjs.map | 1 - .../ComponentPlayground-styles.249b42e4.mjs | 6 - ...omponentPlayground-styles.249b42e4.mjs.map | 1 - .../ComponentPlaygroundData-d25a0f8e.mjs | 102 - .../ComponentPlaygroundData-d25a0f8e.mjs.map | 1 - ...omponentPlaygroundData-styles.9bdce5c2.mjs | 6 - ...nentPlaygroundData-styles.9bdce5c2.mjs.map | 1 - .../ComponentPlaygroundProps-8f45f1a7.mjs | 127 - .../ComponentPlaygroundProps-8f45f1a7.mjs.map | 1 - ...mponentPlaygroundProps-styles.82745445.mjs | 6 - ...entPlaygroundProps-styles.82745445.mjs.map | 1 - .../ComponentPlaygroundSlots-0dbd767a.mjs | 27 - .../ComponentPlaygroundSlots-0dbd767a.mjs.map | 1 - .../ComponentPlaygroundTokens-548a0a2d.mjs | 27 - ...ComponentPlaygroundTokens-548a0a2d.mjs.map | 1 - .../chunks/app/_nuxt/Container-1291608c.mjs | 990 - .../app/_nuxt/Container-1291608c.mjs.map | 1 - .../chunks/app/_nuxt/ContentDoc-608dc79a.mjs | 146 - .../app/_nuxt/ContentDoc-608dc79a.mjs.map | 1 - .../chunks/app/_nuxt/ContentList-b4b0de0d.mjs | 95 - .../app/_nuxt/ContentList-b4b0de0d.mjs.map | 1 - .../app/_nuxt/ContentNavigation-8bed293a.mjs | 1056 - .../_nuxt/ContentNavigation-8bed293a.mjs.map | 1 - .../app/_nuxt/ContentPreviewMode-97e009a4.mjs | 80 - .../_nuxt/ContentPreviewMode-97e009a4.mjs.map | 1 - .../ContentPreviewMode-styles.4b29600c.mjs | 8 - ...ContentPreviewMode-styles.4b29600c.mjs.map | 1 - .../app/_nuxt/ContentQuery-8668b0af.mjs | 233 - .../app/_nuxt/ContentQuery-8668b0af.mjs.map | 1 - .../app/_nuxt/ContentRenderer-06a7c657.mjs | 95 - .../_nuxt/ContentRenderer-06a7c657.mjs.map | 1 - .../ContentRendererMarkdown-bebf42c8.mjs | 422 - .../ContentRendererMarkdown-bebf42c8.mjs.map | 1 - .../chunks/app/_nuxt/ContentSlot-deb25102.mjs | 100 - .../app/_nuxt/ContentSlot-deb25102.mjs.map | 1 - .../chunks/app/_nuxt/CopyButton-155eba98.mjs | 56 - .../app/_nuxt/CopyButton-155eba98.mjs.map | 1 - .../chunks/app/_nuxt/DocsAside-a41d5eb9.mjs | 68 - .../app/_nuxt/DocsAside-a41d5eb9.mjs.map | 1 - .../app/_nuxt/DocsAside-styles.764ece99.mjs | 6 - .../_nuxt/DocsAside-styles.764ece99.mjs.map | 1 - .../app/_nuxt/DocsAsideTree-136bd08b.mjs | 350 - .../app/_nuxt/DocsAsideTree-136bd08b.mjs.map | 1 - .../app/_nuxt/DocsPageBottom-270eacfc.mjs | 88 - .../app/_nuxt/DocsPageBottom-270eacfc.mjs.map | 1 - .../_nuxt/DocsPageBottom-styles.e97de530.mjs | 6 - .../DocsPageBottom-styles.e97de530.mjs.map | 1 - .../app/_nuxt/DocsPageLayout-4c2ead4a.mjs | 228 - .../app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map | 1 - .../_nuxt/DocsPageLayout-styles.1c5b6bba.mjs | 6 - .../DocsPageLayout-styles.1c5b6bba.mjs.map | 1 - .../app/_nuxt/DocsPrevNext-7858c09b.mjs | 114 - .../app/_nuxt/DocsPrevNext-7858c09b.mjs.map | 1 - .../_nuxt/DocsPrevNext-styles.23bc8fd8.mjs | 6 - .../DocsPrevNext-styles.23bc8fd8.mjs.map | 1 - .../chunks/app/_nuxt/DocsToc-e4f6bd56.mjs | 48 - .../chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map | 1 - .../app/_nuxt/DocsToc-styles.dfd8d9f4.mjs | 6 - .../app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map | 1 - .../app/_nuxt/DocsTocLinks-95d48629.mjs | 73 - .../app/_nuxt/DocsTocLinks-95d48629.mjs.map | 1 - .../_nuxt/DocsTocLinks-styles.79413e66.mjs | 6 - .../DocsTocLinks-styles.79413e66.mjs.map | 1 - .../_nuxt/DocumentDrivenEmpty-8338ce9f.mjs | 26 - .../DocumentDrivenEmpty-8338ce9f.mjs.map | 1 - .../_nuxt/DocumentDrivenNotFound-4b73ea08.mjs | 50 - .../DocumentDrivenNotFound-4b73ea08.mjs.map | 1 - ...DocumentDrivenNotFound-styles.a8b03708.mjs | 6 - ...mentDrivenNotFound-styles.a8b03708.mjs.map | 1 - .../chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs | 174 - .../app/_nuxt/EditOnLink-e55cd3a0.mjs.map | 1 - .../chunks/app/_nuxt/Ellipsis-b69b027e.mjs | 75 - .../app/_nuxt/Ellipsis-b69b027e.mjs.map | 1 - .../app/_nuxt/Ellipsis-styles.3bef1bdd.mjs | 6 - .../_nuxt/Ellipsis-styles.3bef1bdd.mjs.map | 1 - .../chunks/app/_nuxt/ExampleCard-95e9f743.mjs | 23 - .../app/_nuxt/ExampleCard-95e9f743.mjs.map | 1 - .../chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs | 25 - .../app/_nuxt/ExampleHero-8fe98ee8.mjs.map | 1 - .../app/_nuxt/ExampleIconCard-a87d1258.mjs | 37 - .../_nuxt/ExampleIconCard-a87d1258.mjs.map | 1 - .../app/_nuxt/ExampleMultiselect-915c74fe.mjs | 33 - .../_nuxt/ExampleMultiselect-915c74fe.mjs.map | 1 - .../app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs | 37 - .../_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map | 1 - .../app/_nuxt/GithubCommits-b7b81c66.mjs | 55 - .../app/_nuxt/GithubCommits-b7b81c66.mjs.map | 1 - .../app/_nuxt/GithubContributors-1aa0f22f.mjs | 55 - .../_nuxt/GithubContributors-1aa0f22f.mjs.map | 1 - .../_nuxt/GithubFileContributors-285e4522.mjs | 61 - .../GithubFileContributors-285e4522.mjs.map | 1 - .../app/_nuxt/GithubLastRelease-b4d6e912.mjs | 59 - .../_nuxt/GithubLastRelease-b4d6e912.mjs.map | 1 - .../chunks/app/_nuxt/GithubLink-f632fd3b.mjs | 132 - .../app/_nuxt/GithubLink-f632fd3b.mjs.map | 1 - .../app/_nuxt/GithubReadme-9e48e600.mjs | 55 - .../app/_nuxt/GithubReadme-9e48e600.mjs.map | 1 - .../app/_nuxt/GithubRelease-140d3d2e.mjs | 62 - .../app/_nuxt/GithubRelease-140d3d2e.mjs.map | 1 - .../app/_nuxt/GithubReleases-2ab96fb8.mjs | 55 - .../app/_nuxt/GithubReleases-2ab96fb8.mjs.map | 1 - .../app/_nuxt/GithubRepository-8db11ede.mjs | 55 - .../_nuxt/GithubRepository-8db11ede.mjs.map | 1 - .../app/_nuxt/HeroAnnouncement-a479df93.mjs | 69 - .../_nuxt/HeroAnnouncement-a479df93.mjs.map | 1 - .../HeroAnnouncement-styles.a73a7723.mjs | 6 - .../HeroAnnouncement-styles.a73a7723.mjs.map | 1 - .../app/_nuxt/IconCodeSandBox-289e2c7f.mjs | 25 - .../_nuxt/IconCodeSandBox-289e2c7f.mjs.map | 1 - .../chunks/app/_nuxt/IconDocus-12d300be.mjs | 25 - .../app/_nuxt/IconDocus-12d300be.mjs.map | 1 - .../app/_nuxt/IconMarkdown-092c828f.mjs | 26 - .../app/_nuxt/IconMarkdown-092c828f.mjs.map | 1 - .../chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs | 24 - .../app/_nuxt/IconNuxt-c11c3c9c.mjs.map | 1 - .../app/_nuxt/IconNuxtContent-f8fb6ffc.mjs | 24 - .../_nuxt/IconNuxtContent-f8fb6ffc.mjs.map | 1 - .../app/_nuxt/IconNuxtLabs-1b2b0005.mjs | 24 - .../app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map | 1 - .../app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs | 24 - .../app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map | 1 - .../_nuxt/IconNuxtStudio-styles.d164db17.mjs | 6 - .../IconNuxtStudio-styles.d164db17.mjs.map | 1 - .../app/_nuxt/IconStackBlitz-def46545.mjs | 25 - .../app/_nuxt/IconStackBlitz-def46545.mjs.map | 1 - .../app/_nuxt/IconVueTelescope-96109b9a.mjs | 25 - .../_nuxt/IconVueTelescope-96109b9a.mjs.map | 1 - .../server/chunks/app/_nuxt/List-12ebf73c.mjs | 72 - .../chunks/app/_nuxt/List-12ebf73c.mjs.map | 1 - .../chunks/app/_nuxt/List-styles.ff61b956.mjs | 6 - .../app/_nuxt/List-styles.ff61b956.mjs.map | 1 - .../chunks/app/_nuxt/Markdown-1885a814.mjs | 46 - .../app/_nuxt/Markdown-1885a814.mjs.map | 1 - .../chunks/app/_nuxt/MyButton-a7c11108.mjs | 48 - .../app/_nuxt/MyButton-a7c11108.mjs.map | 1 - .../app/_nuxt/MyButton-styles.0da530f8.mjs | 6 - .../_nuxt/MyButton-styles.0da530f8.mjs.map | 1 - .../chunks/app/_nuxt/NuxtImg-89991070.mjs | 63 - .../chunks/app/_nuxt/NuxtImg-89991070.mjs.map | 1 - .../app/_nuxt/PropInspector-d4a70134.mjs | 32 - .../app/_nuxt/PropInspector-d4a70134.mjs.map | 1 - .../_nuxt/PropInspector-styles.ad1f0c4f.mjs | 6 - .../PropInspector-styles.ad1f0c4f.mjs.map | 1 - .../chunks/app/_nuxt/Props-c617d5b2.mjs | 850 - .../chunks/app/_nuxt/Props-c617d5b2.mjs.map | 1 - .../chunks/app/_nuxt/ProseA-86ef3985.mjs | 64 - .../chunks/app/_nuxt/ProseA-86ef3985.mjs.map | 1 - .../app/_nuxt/ProseA-styles.ac6b0f84.mjs | 6 - .../app/_nuxt/ProseA-styles.ac6b0f84.mjs.map | 1 - .../app/_nuxt/ProseBlockquote-faf6e310.mjs | 23 - .../_nuxt/ProseBlockquote-faf6e310.mjs.map | 1 - .../_nuxt/ProseBlockquote-styles.c0f9c45a.mjs | 6 - .../ProseBlockquote-styles.c0f9c45a.mjs.map | 1 - .../chunks/app/_nuxt/ProseCode-94b7281d.mjs | 124 - .../app/_nuxt/ProseCode-94b7281d.mjs.map | 1 - .../app/_nuxt/ProseCodeInline-960b9a43.mjs | 23 - .../_nuxt/ProseCodeInline-960b9a43.mjs.map | 1 - .../_nuxt/ProseCodeInline-styles.4873b751.mjs | 6 - .../ProseCodeInline-styles.4873b751.mjs.map | 1 - .../chunks/app/_nuxt/ProseEm-f52fc33d.mjs | 23 - .../chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map | 1 - .../app/_nuxt/ProseEm-styles.0ce5f2c8.mjs | 6 - .../app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map | 1 - .../chunks/app/_nuxt/ProseH1-81b8c44a.mjs | 73 - .../chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map | 1 - .../app/_nuxt/ProseH1-styles.086fd4ea.mjs | 6 - .../app/_nuxt/ProseH1-styles.086fd4ea.mjs.map | 1 - .../chunks/app/_nuxt/ProseH2-abc0d7da.mjs | 73 - .../chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map | 1 - .../app/_nuxt/ProseH2-styles.8ba56a52.mjs | 6 - .../app/_nuxt/ProseH2-styles.8ba56a52.mjs.map | 1 - .../chunks/app/_nuxt/ProseH3-6c54494a.mjs | 73 - .../chunks/app/_nuxt/ProseH3-6c54494a.mjs.map | 1 - .../app/_nuxt/ProseH3-styles.492ea689.mjs | 6 - .../app/_nuxt/ProseH3-styles.492ea689.mjs.map | 1 - .../chunks/app/_nuxt/ProseH4-4f0da863.mjs | 73 - .../chunks/app/_nuxt/ProseH4-4f0da863.mjs.map | 1 - .../app/_nuxt/ProseH4-styles.68f135ad.mjs | 6 - .../app/_nuxt/ProseH4-styles.68f135ad.mjs.map | 1 - .../chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs | 73 - .../chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map | 1 - .../app/_nuxt/ProseH5-styles.c63d0e8d.mjs | 6 - .../app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map | 1 - .../chunks/app/_nuxt/ProseH6-cffb1b40.mjs | 73 - .../chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map | 1 - .../app/_nuxt/ProseH6-styles.92c4d496.mjs | 6 - .../app/_nuxt/ProseH6-styles.92c4d496.mjs.map | 1 - .../chunks/app/_nuxt/ProseHr-fa0af264.mjs | 21 - .../chunks/app/_nuxt/ProseHr-fa0af264.mjs.map | 1 - .../app/_nuxt/ProseHr-styles.22aa3717.mjs | 6 - .../app/_nuxt/ProseHr-styles.22aa3717.mjs.map | 1 - .../chunks/app/_nuxt/ProseImg-f3012414.mjs | 62 - .../app/_nuxt/ProseImg-f3012414.mjs.map | 1 - .../app/_nuxt/ProseImg-styles.cfb4616f.mjs | 6 - .../_nuxt/ProseImg-styles.cfb4616f.mjs.map | 1 - .../chunks/app/_nuxt/ProseLi-948accef.mjs | 23 - .../chunks/app/_nuxt/ProseLi-948accef.mjs.map | 1 - .../app/_nuxt/ProseLi-styles.29062533.mjs | 6 - .../app/_nuxt/ProseLi-styles.29062533.mjs.map | 1 - .../chunks/app/_nuxt/ProseOl-b8e80875.mjs | 23 - .../chunks/app/_nuxt/ProseOl-b8e80875.mjs.map | 1 - .../app/_nuxt/ProseOl-styles.c085ed74.mjs | 6 - .../app/_nuxt/ProseOl-styles.c085ed74.mjs.map | 1 - .../chunks/app/_nuxt/ProseP-a91aeff7.mjs | 23 - .../chunks/app/_nuxt/ProseP-a91aeff7.mjs.map | 1 - .../app/_nuxt/ProseP-styles.b304bfc7.mjs | 6 - .../app/_nuxt/ProseP-styles.b304bfc7.mjs.map | 1 - .../chunks/app/_nuxt/ProseStrong-246281a0.mjs | 23 - .../app/_nuxt/ProseStrong-246281a0.mjs.map | 1 - .../app/_nuxt/ProseStrong-styles.ec17e85f.mjs | 6 - .../_nuxt/ProseStrong-styles.ec17e85f.mjs.map | 1 - .../chunks/app/_nuxt/ProseTable-425d227b.mjs | 23 - .../app/_nuxt/ProseTable-425d227b.mjs.map | 1 - .../app/_nuxt/ProseTable-styles.b377f50f.mjs | 6 - .../_nuxt/ProseTable-styles.b377f50f.mjs.map | 1 - .../chunks/app/_nuxt/ProseTbody-f622755a.mjs | 23 - .../app/_nuxt/ProseTbody-f622755a.mjs.map | 1 - .../chunks/app/_nuxt/ProseTd-ce60dd42.mjs | 23 - .../chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map | 1 - .../app/_nuxt/ProseTd-styles.2b89033a.mjs | 6 - .../app/_nuxt/ProseTd-styles.2b89033a.mjs.map | 1 - .../chunks/app/_nuxt/ProseTh-8250ce9f.mjs | 23 - .../chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map | 1 - .../app/_nuxt/ProseTh-styles.9ccb956b.mjs | 6 - .../app/_nuxt/ProseTh-styles.9ccb956b.mjs.map | 1 - .../chunks/app/_nuxt/ProseThead-7ba76e48.mjs | 23 - .../app/_nuxt/ProseThead-7ba76e48.mjs.map | 1 - .../app/_nuxt/ProseThead-styles.319de3db.mjs | 6 - .../_nuxt/ProseThead-styles.319de3db.mjs.map | 1 - .../chunks/app/_nuxt/ProseTr-6559f7d8.mjs | 23 - .../chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map | 1 - .../app/_nuxt/ProseTr-styles.755e9793.mjs | 6 - .../app/_nuxt/ProseTr-styles.755e9793.mjs.map | 1 - .../chunks/app/_nuxt/ProseUl-79ecc4c5.mjs | 23 - .../chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map | 1 - .../app/_nuxt/ProseUl-styles.2d31952c.mjs | 6 - .../app/_nuxt/ProseUl-styles.2d31952c.mjs.map | 1 - .../chunks/app/_nuxt/ReadMore-4e2f1622.mjs | 86 - .../app/_nuxt/ReadMore-4e2f1622.mjs.map | 1 - .../chunks/app/_nuxt/Sandbox-3e5bdd00.mjs | 111 - .../chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map | 1 - .../app/_nuxt/Sandbox-styles.b322716f.mjs | 6 - .../app/_nuxt/Sandbox-styles.b322716f.mjs.map | 1 - .../chunks/app/_nuxt/SourceLink-c27fde85.mjs | 33 - .../app/_nuxt/SourceLink-c27fde85.mjs.map | 1 - .../chunks/app/_nuxt/TabsHeader-c9b56dab.mjs | 72 - .../app/_nuxt/TabsHeader-c9b56dab.mjs.map | 1 - .../app/_nuxt/TabsHeader-styles.06000801.mjs | 6 - .../_nuxt/TabsHeader-styles.06000801.mjs.map | 1 - .../chunks/app/_nuxt/Terminal-35e8f795.mjs | 47 - .../app/_nuxt/Terminal-35e8f795.mjs.map | 1 - .../app/_nuxt/Terminal-styles.a4b76b2e.mjs | 6 - .../_nuxt/Terminal-styles.a4b76b2e.mjs.map | 1 - .../app/_nuxt/ThemeSelect-styles.d47092b1.mjs | 6 - .../_nuxt/ThemeSelect-styles.d47092b1.mjs.map | 1 - .../app/_nuxt/TokensPlayground-84b52014.mjs | 26 - .../_nuxt/TokensPlayground-84b52014.mjs.map | 1 - .../chunks/app/_nuxt/VideoPlayer-2b282302.mjs | 108 - .../app/_nuxt/VideoPlayer-2b282302.mjs.map | 1 - .../app/_nuxt/VideoPlayer-styles.956d04fb.mjs | 6 - .../_nuxt/VideoPlayer-styles.956d04fb.mjs.map | 1 - .../chunks/app/_nuxt/VoltaBoard-98820156.mjs | 32 - .../app/_nuxt/VoltaBoard-98820156.mjs.map | 1 - .../app/_nuxt/VoltaBoard-styles.0de509eb.mjs | 6 - .../_nuxt/VoltaBoard-styles.0de509eb.mjs.map | 1 - .../chunks/app/_nuxt/app.config-832f5f68.mjs | 530 - .../app/_nuxt/app.config-832f5f68.mjs.map | 1 - .../chunks/app/_nuxt/asyncData-c43d4319.mjs | 116 - .../app/_nuxt/asyncData-c43d4319.mjs.map | 1 - .../chunks/app/_nuxt/client-db-fd379c8e.mjs | 355 - .../app/_nuxt/client-db-fd379c8e.mjs.map | 1 - .../chunks/app/_nuxt/debug-43adc91a.mjs | 44 - .../chunks/app/_nuxt/debug-43adc91a.mjs.map | 1 - .../chunks/app/_nuxt/default-cafbf0bc.mjs | 53 - .../chunks/app/_nuxt/default-cafbf0bc.mjs.map | 1 - .../chunks/app/_nuxt/docs-page-75eace63.mjs | 35 - .../app/_nuxt/docs-page-75eace63.mjs.map | 1 - .../app/_nuxt/docs-page-styles.bb658b38.mjs | 6 - .../_nuxt/docs-page-styles.bb658b38.mjs.map | 1 - .../app/_nuxt/document-driven-27005915.mjs | 104 - .../_nuxt/document-driven-27005915.mjs.map | 1 - .../chunks/app/_nuxt/empty-446a838e.mjs | 21 - .../chunks/app/_nuxt/empty-446a838e.mjs.map | 1 - .../chunks/app/_nuxt/error-404-6d0186e4.mjs | 99 - .../app/_nuxt/error-404-6d0186e4.mjs.map | 1 - .../app/_nuxt/error-404-styles.1b6f35f0.mjs | 6 - .../_nuxt/error-404-styles.1b6f35f0.mjs.map | 1 - .../chunks/app/_nuxt/error-500-6ca426c2.mjs | 78 - .../app/_nuxt/error-500-6ca426c2.mjs.map | 1 - .../app/_nuxt/error-500-styles.17df0758.mjs | 6 - .../_nuxt/error-500-styles.17df0758.mjs.map | 1 - .../app/_nuxt/error-component-969bdc5d.mjs | 42 - .../_nuxt/error-component-969bdc5d.mjs.map | 1 - .../chunks/app/_nuxt/index-1624a23e.mjs | 281 - .../chunks/app/_nuxt/index-1624a23e.mjs.map | 1 - .../app/_nuxt/island-renderer-862b92a0.mjs | 59 - .../_nuxt/island-renderer-862b92a0.mjs.map | 1 - .../chunks/app/_nuxt/layout-88ff67c1.mjs | 75 - .../chunks/app/_nuxt/layout-88ff67c1.mjs.map | 1 - .../server/chunks/app/_nuxt/page-26ac7e13.mjs | 55 - .../chunks/app/_nuxt/page-26ac7e13.mjs.map | 1 - .../chunks/app/_nuxt/page-styles.df5d38b1.mjs | 6 - .../app/_nuxt/page-styles.df5d38b1.mjs.map | 1 - ...eau-nuxt-plugin.server-styles.1bf5bf59.mjs | 6 - ...nuxt-plugin.server-styles.1bf5bf59.mjs.map | 1 - .../chunks/app/_nuxt/query-dd064fd9.mjs | 154 - .../chunks/app/_nuxt/query-dd064fd9.mjs.map | 1 - .../chunks/app/_nuxt/useDocus-928368c4.mjs | 235 - .../app/_nuxt/useDocus-928368c4.mjs.map | 1 - .../chunks/app/_nuxt/useGithub-94614457.mjs | 70 - .../app/_nuxt/useGithub-94614457.mjs.map | 1 - .../chunks/app/_nuxt/useStudio-7ec450fb.mjs | 228 - .../app/_nuxt/useStudio-7ec450fb.mjs.map | 1 - .../app/_nuxt/welcome-styles.85286bcd.mjs | 6 - .../app/_nuxt/welcome-styles.85286bcd.mjs.map | 1 - .../server/chunks/app/client.manifest.mjs | 2847 -- .../server/chunks/app/client.manifest.mjs.map | 1 - docs/.output/server/chunks/app/server.mjs | 24669 ---------------- docs/.output/server/chunks/app/server.mjs.map | 1 - docs/.output/server/chunks/app/styles.mjs | 74 - docs/.output/server/chunks/app/styles.mjs.map | 1 - docs/.output/server/chunks/error-500.mjs | 21 - docs/.output/server/chunks/error-500.mjs.map | 1 - .../server/chunks/handlers/renderer.mjs | 528 - .../server/chunks/handlers/renderer.mjs.map | 1 - docs/.output/server/chunks/nitro/config.mjs | 45 - .../server/chunks/nitro/config.mjs.map | 1 - .../server/chunks/nitro/node-server.mjs | 16313 ---------- .../server/chunks/nitro/node-server.mjs.map | 1 - .../server/chunks/raw/1.deployment.mjs | 5 - .../server/chunks/raw/1.deployment.mjs.map | 1 - docs/.output/server/chunks/raw/1.dotNet.mjs | 5 - .../server/chunks/raw/1.dotNet.mjs.map | 1 - docs/.output/server/chunks/raw/1.features.mjs | 5 - .../server/chunks/raw/1.features.mjs.map | 1 - .../.output/server/chunks/raw/1.features2.mjs | 5 - .../server/chunks/raw/1.features2.mjs.map | 1 - docs/.output/server/chunks/raw/1.frontend.mjs | 5 - .../server/chunks/raw/1.frontend.mjs.map | 1 - docs/.output/server/chunks/raw/1.general.mjs | 5 - .../server/chunks/raw/1.general.mjs.map | 1 - docs/.output/server/chunks/raw/1.index.mjs | 5 - .../.output/server/chunks/raw/1.index.mjs.map | 1 - .../server/chunks/raw/1.introduction.mjs | 5 - .../server/chunks/raw/1.introduction.mjs.map | 1 - docs/.output/server/chunks/raw/1.overview.mjs | 5 - .../server/chunks/raw/1.overview.mjs.map | 1 - .../.output/server/chunks/raw/1.overview2.mjs | 5 - .../server/chunks/raw/1.overview2.mjs.map | 1 - docs/.output/server/chunks/raw/1.schema.mjs | 5 - .../server/chunks/raw/1.schema.mjs.map | 1 - docs/.output/server/chunks/raw/1.sitemap.mjs | 5 - .../server/chunks/raw/1.sitemap.mjs.map | 1 - docs/.output/server/chunks/raw/1.testing.mjs | 5 - .../server/chunks/raw/1.testing.mjs.map | 1 - docs/.output/server/chunks/raw/1.testing2.mjs | 5 - .../server/chunks/raw/1.testing2.mjs.map | 1 - docs/.output/server/chunks/raw/1.theming.mjs | 5 - .../server/chunks/raw/1.theming.mjs.map | 1 - docs/.output/server/chunks/raw/1.typekit.mjs | 5 - .../server/chunks/raw/1.typekit.mjs.map | 1 - docs/.output/server/chunks/raw/1.usage.mjs | 5 - .../.output/server/chunks/raw/1.usage.mjs.map | 1 - docs/.output/server/chunks/raw/1.usage2.mjs | 5 - .../server/chunks/raw/1.usage2.mjs.map | 1 - docs/.output/server/chunks/raw/1.usage3.mjs | 5 - .../server/chunks/raw/1.usage3.mjs.map | 1 - .../server/chunks/raw/1.whats-frontier.mjs | 5 - .../chunks/raw/1.whats-frontier.mjs.map | 1 - .../server/chunks/raw/2.content-directory.mjs | 5 - .../chunks/raw/2.content-directory.mjs.map | 1 - .../server/chunks/raw/2.development.mjs | 5 - .../server/chunks/raw/2.development.mjs.map | 1 - .../server/chunks/raw/2.development2.mjs | 5 - .../server/chunks/raw/2.development2.mjs.map | 1 - .../server/chunks/raw/2.introduction.mjs | 5 - .../server/chunks/raw/2.introduction.mjs.map | 1 - .../server/chunks/raw/2.introduction2.mjs | 5 - .../server/chunks/raw/2.introduction2.mjs.map | 1 - docs/.output/server/chunks/raw/2.mobile.mjs | 5 - .../server/chunks/raw/2.mobile.mjs.map | 1 - docs/.output/server/chunks/raw/2.quality.mjs | 5 - .../server/chunks/raw/2.quality.mjs.map | 1 - .../server/chunks/raw/2.standard-library.mjs | 5 - .../chunks/raw/2.standard-library.mjs.map | 1 - .../server/chunks/raw/2.typescript.mjs | 5 - .../server/chunks/raw/2.typescript.mjs.map | 1 - .../server/chunks/raw/3.navigation.mjs | 5 - .../server/chunks/raw/3.navigation.mjs.map | 1 - docs/.output/server/chunks/raw/3.nuxt.mjs | 5 - docs/.output/server/chunks/raw/3.nuxt.mjs.map | 1 - .../server/chunks/raw/3.philosophy.mjs | 5 - .../server/chunks/raw/3.philosophy.mjs.map | 1 - docs/.output/server/chunks/raw/_dir.mjs | 5 - docs/.output/server/chunks/raw/_dir.mjs.map | 1 - docs/.output/server/chunks/raw/_dir10.mjs | 5 - docs/.output/server/chunks/raw/_dir10.mjs.map | 1 - docs/.output/server/chunks/raw/_dir11.mjs | 5 - docs/.output/server/chunks/raw/_dir11.mjs.map | 1 - docs/.output/server/chunks/raw/_dir12.mjs | 5 - docs/.output/server/chunks/raw/_dir12.mjs.map | 1 - docs/.output/server/chunks/raw/_dir13.mjs | 5 - docs/.output/server/chunks/raw/_dir13.mjs.map | 1 - docs/.output/server/chunks/raw/_dir14.mjs | 5 - docs/.output/server/chunks/raw/_dir14.mjs.map | 1 - docs/.output/server/chunks/raw/_dir15.mjs | 5 - docs/.output/server/chunks/raw/_dir15.mjs.map | 1 - docs/.output/server/chunks/raw/_dir16.mjs | 5 - docs/.output/server/chunks/raw/_dir16.mjs.map | 1 - docs/.output/server/chunks/raw/_dir17.mjs | 5 - docs/.output/server/chunks/raw/_dir17.mjs.map | 1 - docs/.output/server/chunks/raw/_dir18.mjs | 5 - docs/.output/server/chunks/raw/_dir18.mjs.map | 1 - docs/.output/server/chunks/raw/_dir19.mjs | 5 - docs/.output/server/chunks/raw/_dir19.mjs.map | 1 - docs/.output/server/chunks/raw/_dir2.mjs | 5 - docs/.output/server/chunks/raw/_dir2.mjs.map | 1 - docs/.output/server/chunks/raw/_dir20.mjs | 5 - docs/.output/server/chunks/raw/_dir20.mjs.map | 1 - docs/.output/server/chunks/raw/_dir21.mjs | 5 - docs/.output/server/chunks/raw/_dir21.mjs.map | 1 - docs/.output/server/chunks/raw/_dir22.mjs | 5 - docs/.output/server/chunks/raw/_dir22.mjs.map | 1 - docs/.output/server/chunks/raw/_dir23.mjs | 5 - docs/.output/server/chunks/raw/_dir23.mjs.map | 1 - docs/.output/server/chunks/raw/_dir24.mjs | 5 - docs/.output/server/chunks/raw/_dir24.mjs.map | 1 - docs/.output/server/chunks/raw/_dir25.mjs | 5 - docs/.output/server/chunks/raw/_dir25.mjs.map | 1 - docs/.output/server/chunks/raw/_dir26.mjs | 5 - docs/.output/server/chunks/raw/_dir26.mjs.map | 1 - docs/.output/server/chunks/raw/_dir27.mjs | 5 - docs/.output/server/chunks/raw/_dir27.mjs.map | 1 - docs/.output/server/chunks/raw/_dir3.mjs | 5 - docs/.output/server/chunks/raw/_dir3.mjs.map | 1 - docs/.output/server/chunks/raw/_dir4.mjs | 5 - docs/.output/server/chunks/raw/_dir4.mjs.map | 1 - docs/.output/server/chunks/raw/_dir5.mjs | 5 - docs/.output/server/chunks/raw/_dir5.mjs.map | 1 - docs/.output/server/chunks/raw/_dir6.mjs | 5 - docs/.output/server/chunks/raw/_dir6.mjs.map | 1 - docs/.output/server/chunks/raw/_dir7.mjs | 5 - docs/.output/server/chunks/raw/_dir7.mjs.map | 1 - docs/.output/server/chunks/raw/_dir8.mjs | 5 - docs/.output/server/chunks/raw/_dir8.mjs.map | 1 - docs/.output/server/chunks/raw/_dir9.mjs | 5 - docs/.output/server/chunks/raw/_dir9.mjs.map | 1 - .../server/chunks/raw/content-index.mjs | 5 - .../server/chunks/raw/content-index.mjs.map | 1 - .../server/chunks/raw/content-navigation.mjs | 5 - .../chunks/raw/content-navigation.mjs.map | 1 - .../.output/server/chunks/raw/hello-world.mjs | 5 - .../server/chunks/raw/hello-world.mjs.map | 1 - docs/.output/server/chunks/raw/index.mjs | 5 - docs/.output/server/chunks/raw/index.mjs.map | 1 - .../chunks/rollup/_virtual_head-static.mjs | 4 - .../rollup/_virtual_head-static.mjs.map | 1 - docs/.output/server/index.mjs | 52 - docs/.output/server/index.mjs.map | 1 - docs/.output/server/package.json | 174 - docs/app.config.ts | 4 +- .../5.mobile/1.getting-started/1.overview.md | 2 +- .../5.mobile/2.cli-commands/1.usage.md | 15 +- .../content/5.mobile/3.features/1.features.md | 235 +- docs/content/5.mobile/3.features/1.screens.md | 24 + .../5.mobile/3.features/2.components.md | 88 + .../content/5.mobile/3.features/3.services.md | 28 + .../5.mobile/3.features/4.navigation.md | 44 + docs/content/5.mobile/3.features/5.stores.md | 37 + 772 files changed, 1240 insertions(+), 58095 deletions(-) create mode 100644 docs/.output/public/200.html create mode 100644 docs/.output/public/404.html create mode 100644 docs/.output/public/__app_config.json/_payload.js create mode 100644 docs/.output/public/__app_config.json/index.html rename docs/.output/public/_nuxt/{Alert.41cb256b.js => Alert.95097db0.js} (66%) delete mode 100644 docs/.output/public/_nuxt/AppLayout.7354fe11.js create mode 100644 docs/.output/public/_nuxt/AppLayout.e1616a30.js rename docs/.output/public/_nuxt/{Badge.af643d4e.js => Badge.09ee14a8.js} (63%) rename docs/.output/public/_nuxt/{BlockHero.495ede00.js => BlockHero.04826bbd.js} (84%) rename docs/.output/public/_nuxt/{ButtonLink.91883881.js => ButtonLink.e542a711.js} (82%) rename docs/.output/public/_nuxt/{Callout.12d57ced.js => Callout.e583d4ce.js} (72%) rename docs/.output/public/_nuxt/{Card.178cbb97.js => Card.8db8e0b6.js} (70%) rename docs/.output/public/_nuxt/{CardGrid.e3a9f75d.js => CardGrid.b29ba276.js} (67%) delete mode 100644 docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js create mode 100644 docs/.output/public/_nuxt/ComponentPlayground.42e12ad5.js rename docs/.output/public/_nuxt/{ComponentPlayground.vue.1e5cc557.js => ComponentPlayground.vue.69892806.js} (83%) rename docs/.output/public/_nuxt/{ComponentPlaygroundData.8cb96cd4.js => ComponentPlaygroundData.b0c91250.js} (81%) rename docs/.output/public/_nuxt/{ComponentPlaygroundProps.583c9bda.js => ComponentPlaygroundProps.659d0c56.js} (80%) rename docs/.output/public/_nuxt/{ContentDoc.cbc50263.js => ContentDoc.0b92d62d.js} (77%) rename docs/.output/public/_nuxt/{ContentList.e8a9fb87.js => ContentList.97fc1b04.js} (72%) rename docs/.output/public/_nuxt/{ContentNavigation.cefda237.js => ContentNavigation.2763794e.js} (56%) rename docs/.output/public/_nuxt/{ContentPreviewMode.ea418cb0.js => ContentPreviewMode.9fd06d7d.js} (92%) rename docs/.output/public/_nuxt/{ContentQuery.9f33890e.js => ContentQuery.5ffc4b8c.js} (89%) rename docs/.output/public/_nuxt/{ContentRenderer.b7732722.js => ContentRenderer.8e4912b9.js} (90%) rename docs/.output/public/_nuxt/{ContentRendererMarkdown.e52b62de.js => ContentRendererMarkdown.433c31c8.js} (99%) rename docs/.output/public/_nuxt/{ContentSlot.c5067a4f.js => ContentSlot.811112da.js} (83%) rename docs/.output/public/_nuxt/{CopyButton.f7858c79.js => CopyButton.087ca90c.js} (79%) rename docs/.output/public/_nuxt/{DocsAside.08a0955d.js => DocsAside.1abe9757.js} (71%) rename docs/.output/public/_nuxt/{DocsAsideTree.b95e55e0.js => DocsAsideTree.4387e6ea.js} (99%) rename docs/.output/public/_nuxt/{DocsPageBottom.b38ecc43.js => DocsPageBottom.dd73c7ef.js} (75%) rename docs/.output/public/_nuxt/{DocsPageLayout.d352cf62.js => DocsPageLayout.4b0475f7.js} (79%) rename docs/.output/public/_nuxt/{DocsPrevNext.2b9ea48f.js => DocsPrevNext.2107234e.js} (82%) rename docs/.output/public/_nuxt/{DocsToc.55846f28.js => DocsToc.3ed2837f.js} (73%) rename docs/.output/public/_nuxt/{DocsTocLinks.644c91ee.js => DocsTocLinks.ff067be8.js} (85%) rename docs/.output/public/_nuxt/{DocumentDrivenNotFound.66d77c6e.js => DocumentDrivenNotFound.d294ae47.js} (75%) delete mode 100644 docs/.output/public/_nuxt/EditOnLink.77af6984.js create mode 100644 docs/.output/public/_nuxt/EditOnLink.ca577bd0.js rename docs/.output/public/_nuxt/{EditOnLink.vue.1d2292f2.js => EditOnLink.vue.23cee876.js} (94%) create mode 100644 docs/.output/public/_nuxt/ExampleTheTitle.aab4e6ec.js delete mode 100644 docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js rename docs/.output/public/_nuxt/{GithubCommits.35c65eac.js => GithubCommits.a31447d4.js} (60%) rename docs/.output/public/_nuxt/{GithubContributors.9ddddad6.js => GithubContributors.2435a600.js} (61%) rename docs/.output/public/_nuxt/{GithubFileContributors.1ad6f7bf.js => GithubFileContributors.41f6cd9d.js} (64%) rename docs/.output/public/_nuxt/{GithubLastRelease.a4aeb30e.js => GithubLastRelease.79db9f48.js} (61%) rename docs/.output/public/_nuxt/{GithubLink.6cd695ea.js => GithubLink.2353077b.js} (96%) rename docs/.output/public/_nuxt/{GithubReadme.5eafd6e1.js => GithubReadme.cec09318.js} (60%) rename docs/.output/public/_nuxt/{GithubRelease.d892113d.js => GithubRelease.5c4f9c85.js} (62%) rename docs/.output/public/_nuxt/{GithubReleases.05c52708.js => GithubReleases.adf0483e.js} (60%) rename docs/.output/public/_nuxt/{GithubRepository.345038c7.js => GithubRepository.a7e8d415.js} (61%) rename docs/.output/public/_nuxt/{HeroAnnouncement.15bcf84c.js => HeroAnnouncement.92c907fa.js} (64%) delete mode 100644 docs/.output/public/_nuxt/List.63030545.js create mode 100644 docs/.output/public/_nuxt/List.bf56eba2.js rename docs/.output/public/_nuxt/{List.vue.98cb48bf.js => List.vue.9ef0bef2.js} (85%) rename docs/.output/public/_nuxt/{Markdown.7f24e431.js => Markdown.834a7772.js} (52%) rename docs/.output/public/_nuxt/{MyButton.67bdaa98.js => MyButton.4292c104.js} (58%) create mode 100644 docs/.output/public/_nuxt/NuxtImg.0b2f5a98.js delete mode 100644 docs/.output/public/_nuxt/NuxtImg.66944f8e.js rename docs/.output/public/_nuxt/{NuxtImg.vue.a13022c3.js => NuxtImg.vue.0972faf4.js} (90%) rename docs/.output/public/_nuxt/{Props.876d937c.js => Props.7f60a4b4.js} (92%) rename docs/.output/public/_nuxt/{ProseA.a4d07cc8.js => ProseA.a0c295ec.js} (89%) rename docs/.output/public/_nuxt/{ProseCode.0e5c7be6.js => ProseCode.5f90dd93.js} (76%) rename docs/.output/public/_nuxt/{ProseCodeCopyButton.29965c5a.js => ProseCodeCopyButton.885123e2.js} (85%) rename docs/.output/public/_nuxt/{ProseH1.c24b90eb.js => ProseH1.f0f94d61.js} (74%) rename docs/.output/public/_nuxt/{ProseH2.957cbe8e.js => ProseH2.440e9004.js} (74%) rename docs/.output/public/_nuxt/{ProseH3.cb2444de.js => ProseH3.25d5cd3a.js} (74%) rename docs/.output/public/_nuxt/{ProseH4.77a5278f.js => ProseH4.282cba87.js} (67%) rename docs/.output/public/_nuxt/{ProseH5.8dc93198.js => ProseH5.0ae4a534.js} (74%) rename docs/.output/public/_nuxt/{ProseH6.bdc78e01.js => ProseH6.9fccd00c.js} (74%) delete mode 100644 docs/.output/public/_nuxt/ProseImg.16c4c81d.js create mode 100644 docs/.output/public/_nuxt/ProseImg.4eef4e65.js rename docs/.output/public/_nuxt/{ReadMore.4d40ce3f.js => ReadMore.fec51d0b.js} (66%) rename docs/.output/public/_nuxt/{Sandbox.b8bdb0c7.js => Sandbox.1394c91b.js} (89%) rename docs/.output/public/_nuxt/{VideoPlayer.065c6aeb.js => VideoPlayer.57f76f66.js} (93%) create mode 100644 docs/.output/public/_nuxt/app.config.88c4fc0b.js delete mode 100644 docs/.output/public/_nuxt/app.config.f41ab05d.js rename docs/.output/public/_nuxt/{asyncData.7c06b2d5.js => asyncData.45fd3bd9.js} (94%) rename docs/.output/public/_nuxt/{client-db.514bef37.js => client-db.e451d8e0.js} (98%) rename docs/.output/public/_nuxt/{cookie.b9cff64d.js => cookie.71eae014.js} (97%) delete mode 100644 docs/.output/public/_nuxt/default.aab8fc36.js create mode 100644 docs/.output/public/_nuxt/default.b47ebbea.js rename docs/.output/public/_nuxt/{document-driven.2bce7a6e.js => document-driven.49104e9a.js} (50%) create mode 100644 docs/.output/public/_nuxt/entry.c31835cb.js delete mode 100644 docs/.output/public/_nuxt/entry.f3791b9c.js rename docs/.output/public/_nuxt/{error-404.1576ed15.js => error-404.709df2ea.js} (89%) rename docs/.output/public/_nuxt/{error-500.421dc5a9.js => error-500.9e9af3bc.js} (88%) rename docs/.output/public/_nuxt/{error-component.9c8606a2.js => error-component.d8e3cc55.js} (74%) rename docs/.output/public/_nuxt/{layout.0a22fa4a.js => layout.37427c44.js} (72%) rename docs/.output/public/_nuxt/{page.f33b5a13.js => page.49790b66.js} (72%) rename docs/.output/public/_nuxt/{useDocus.41ab1ca5.js => useDocus.b9e6b105.js} (98%) rename docs/.output/public/_nuxt/{useGithub.1972ce55.js => useGithub.0ae0bb61.js} (93%) rename docs/.output/public/_nuxt/{useStudio.ef34e52b.js => useStudio.321f4379.js} (89%) rename docs/.output/public/_nuxt/{welcome.4086e1c1.js => welcome.2c2152cf.js} (98%) create mode 100644 docs/.output/public/_payload.js delete mode 100644 docs/.output/public/api/_content/cache.1678414054441.json create mode 100644 docs/.output/public/api/_content/cache.1678726370648.json rename docs/.output/public/api/_content/navigation/{u7BbTyuhiE.1678414054441.json => u7BbTyuhiE.1678726370648.json} (75%) create mode 100644 docs/.output/public/api/_content/query/04YHeHr9tM.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/19ZwhtnBsu.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/429l0g1JsL.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/47rOsvYKsq.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/4yp2Okse4m.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/5CKmdxNney.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/5Nv7bn0WQP.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/6p0u3YetMp.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/6pNGztrIpy.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/7Rwiic1Mfu.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/ALdmBT6ADc.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/BLviYQQPJ7.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/BoNR1lKKhq.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/BrSZyfjf5T.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/Bwmd3WsD1s.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/CmzcyosjoR.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/CxjcDfvjBc.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/ESBtShW9sz.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/FCRaYwQMEC.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/FrVRb75X5s.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/GkDGmUyz0M.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/HOF2lC6065.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/HlvQ2CNI92.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/J1BQKIMJrl.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/J36ejkBU7w.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/JJ9C4UNvCH.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/JlWpJOmqbt.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/KGVfeDohnm.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/KP6cJhSEbf.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/Lt6BIToPNN.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/MMGz34b8PH.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/O32KeiYrUa.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/P314osc27P.1678726370648.json rename docs/.output/public/api/_content/query/{xWeY3NfYtX.1678414054441.json => RMnrvBawPn.1678726370648.json} (100%) create mode 100644 docs/.output/public/api/_content/query/RoutJwnTpy.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/Smd1FvtVfQ.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/Su48x97rZI.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/WXBaqghg8k.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/WoZUvC9rqb.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/XTOw4mgR3f.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/XVPoId9nap.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/YBF0RHqQ3e.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/YKOPtCYulT.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/ZfwdkFNJ75.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/a1Dgl9wshN.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/bjzyL7C69z.1678726370648.json rename docs/.output/public/api/_content/query/{brX4CwCJoQ.1678414054441.json => brX4CwCJoQ.1678726370648.json} (100%) create mode 100644 docs/.output/public/api/_content/query/cItbEHp6hX.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/eO9hzu7vu1.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/eytgjSbEVl.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/fQZ8vTWYd8.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/fis0WzoDt0.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/fqiFs2KJLv.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/hgp86jxc5i.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/ikI1xOw44N.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/iqMgk3nfMY.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/jWALMeA07z.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/kBgJSZjudv.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/kP0lcPGw3r.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/khs8gA1FwT.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/ozdJ1wICj3.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/qGEjvCtHGf.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/s6oaJBqQEn.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/sEeveVucQ6.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/tEt344hQrs.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/tuGsv8hqtc.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/uBU6jwJTTz.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/urUfuwuVJk.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/v3ScIppUqo.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/wMeaP8hHUN.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/wQeP3PjQcK.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/wscAfndYyi.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/xWeY3NfYtX.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/xYb2WcNJtQ.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/xhTH8MZ8W5.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/yi9ZyVWLDM.1678726370648.json create mode 100644 docs/.output/public/api/_content/query/ymHf7a6Zbx.1678726370648.json create mode 100644 docs/.output/public/design/getting-started/introduction/_payload.js create mode 100644 docs/.output/public/design/getting-started/introduction/index.html create mode 100644 docs/.output/public/frontier/cli/development/_payload.js create mode 100644 docs/.output/public/frontier/cli/development/index.html create mode 100644 docs/.output/public/frontier/cli/usage/_payload.js create mode 100644 docs/.output/public/frontier/cli/usage/index.html create mode 100644 docs/.output/public/frontier/installation/development/_payload.js create mode 100644 docs/.output/public/frontier/installation/development/index.html create mode 100644 docs/.output/public/frontier/installation/general/_payload.js create mode 100644 docs/.output/public/frontier/installation/general/index.html create mode 100644 docs/.output/public/frontier/installation/navigation/_payload.js create mode 100644 docs/.output/public/frontier/installation/navigation/index.html create mode 100644 docs/.output/public/frontier/introduction/_payload.js create mode 100644 docs/.output/public/frontier/introduction/content-directory/_payload.js create mode 100644 docs/.output/public/frontier/introduction/content-directory/index.html create mode 100644 docs/.output/public/frontier/introduction/index.html create mode 100644 docs/.output/public/frontier/introduction/philosophy/_payload.js create mode 100644 docs/.output/public/frontier/introduction/philosophy/index.html create mode 100644 docs/.output/public/frontier/introduction/whats-frontier/_payload.js create mode 100644 docs/.output/public/frontier/introduction/whats-frontier/index.html create mode 100644 docs/.output/public/frontier/libraries/standard-library/_payload.js create mode 100644 docs/.output/public/frontier/libraries/standard-library/index.html create mode 100644 docs/.output/public/frontier/libraries/typekit/_payload.js create mode 100644 docs/.output/public/frontier/libraries/typekit/index.html create mode 100644 docs/.output/public/frontier/plugins/frontend/_payload.js create mode 100644 docs/.output/public/frontier/plugins/frontend/index.html create mode 100644 docs/.output/public/frontier/plugins/mobile/_payload.js create mode 100644 docs/.output/public/frontier/plugins/mobile/index.html create mode 100644 docs/.output/public/frontier/plugins/quality/_payload.js create mode 100644 docs/.output/public/frontier/plugins/quality/index.html create mode 100644 docs/.output/public/frontier/templates/dotnet/_payload.js create mode 100644 docs/.output/public/frontier/templates/dotnet/index.html create mode 100644 docs/.output/public/frontier/templates/nuxt/_payload.js create mode 100644 docs/.output/public/frontier/templates/nuxt/index.html create mode 100644 docs/.output/public/frontier/templates/typescript/_payload.js create mode 100644 docs/.output/public/frontier/templates/typescript/index.html create mode 100644 docs/.output/public/iac/getting-started/introduction/_payload.js create mode 100644 docs/.output/public/iac/getting-started/introduction/index.html create mode 100644 docs/.output/public/mobile/cli-commands/usage/_payload.js create mode 100644 docs/.output/public/mobile/cli-commands/usage/index.html create mode 100644 docs/.output/public/mobile/deployment/deployment/_payload.js create mode 100644 docs/.output/public/mobile/deployment/deployment/index.html create mode 100644 docs/.output/public/mobile/features/components/_payload.js create mode 100644 docs/.output/public/mobile/features/components/index.html create mode 100644 docs/.output/public/mobile/features/features/_payload.js create mode 100644 docs/.output/public/mobile/features/features/index.html create mode 100644 docs/.output/public/mobile/features/navigation/_payload.js create mode 100644 docs/.output/public/mobile/features/navigation/index.html create mode 100644 docs/.output/public/mobile/features/screens/_payload.js create mode 100644 docs/.output/public/mobile/features/screens/index.html create mode 100644 docs/.output/public/mobile/features/services/_payload.js create mode 100644 docs/.output/public/mobile/features/services/index.html create mode 100644 docs/.output/public/mobile/features/stores/_payload.js create mode 100644 docs/.output/public/mobile/features/stores/index.html create mode 100644 docs/.output/public/mobile/getting-started/overview/_payload.js create mode 100644 docs/.output/public/mobile/getting-started/overview/index.html create mode 100644 docs/.output/public/mobile/testing/testing/_payload.js create mode 100644 docs/.output/public/mobile/testing/testing/index.html create mode 100644 docs/.output/public/rdvue/cli-commands/usage/_payload.js create mode 100644 docs/.output/public/rdvue/cli-commands/usage/index.html create mode 100644 docs/.output/public/rdvue/features/features/_payload.js create mode 100644 docs/.output/public/rdvue/features/features/index.html create mode 100644 docs/.output/public/rdvue/getting-started/overview/_payload.js create mode 100644 docs/.output/public/rdvue/getting-started/overview/index.html create mode 100644 docs/.output/public/rdvue/scaffilding/sitemap/_payload.js create mode 100644 docs/.output/public/rdvue/scaffilding/sitemap/index.html create mode 100644 docs/.output/public/rdvue/template-schema/schema/_payload.js create mode 100644 docs/.output/public/rdvue/template-schema/schema/index.html create mode 100644 docs/.output/public/rdvue/testing/testing/_payload.js create mode 100644 docs/.output/public/rdvue/testing/testing/index.html create mode 100644 docs/.output/public/rdvue/themeing/theming/_payload.js create mode 100644 docs/.output/public/rdvue/themeing/theming/index.html create mode 100644 docs/.output/public/spectre/getting-started/introduction/_payload.js create mode 100644 docs/.output/public/spectre/getting-started/introduction/index.html delete mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map delete mode 100644 docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs delete mode 100644 docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map delete mode 100644 docs/.output/server/chunks/app/client.manifest.mjs delete mode 100644 docs/.output/server/chunks/app/client.manifest.mjs.map delete mode 100644 docs/.output/server/chunks/app/server.mjs delete mode 100644 docs/.output/server/chunks/app/server.mjs.map delete mode 100644 docs/.output/server/chunks/app/styles.mjs delete mode 100644 docs/.output/server/chunks/app/styles.mjs.map delete mode 100644 docs/.output/server/chunks/error-500.mjs delete mode 100644 docs/.output/server/chunks/error-500.mjs.map delete mode 100644 docs/.output/server/chunks/handlers/renderer.mjs delete mode 100644 docs/.output/server/chunks/handlers/renderer.mjs.map delete mode 100644 docs/.output/server/chunks/nitro/config.mjs delete mode 100644 docs/.output/server/chunks/nitro/config.mjs.map delete mode 100644 docs/.output/server/chunks/nitro/node-server.mjs delete mode 100644 docs/.output/server/chunks/nitro/node-server.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.deployment.mjs delete mode 100644 docs/.output/server/chunks/raw/1.deployment.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.dotNet.mjs delete mode 100644 docs/.output/server/chunks/raw/1.dotNet.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.features.mjs delete mode 100644 docs/.output/server/chunks/raw/1.features.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.features2.mjs delete mode 100644 docs/.output/server/chunks/raw/1.features2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.frontend.mjs delete mode 100644 docs/.output/server/chunks/raw/1.frontend.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.general.mjs delete mode 100644 docs/.output/server/chunks/raw/1.general.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.index.mjs delete mode 100644 docs/.output/server/chunks/raw/1.index.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.introduction.mjs delete mode 100644 docs/.output/server/chunks/raw/1.introduction.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.overview.mjs delete mode 100644 docs/.output/server/chunks/raw/1.overview.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.overview2.mjs delete mode 100644 docs/.output/server/chunks/raw/1.overview2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.schema.mjs delete mode 100644 docs/.output/server/chunks/raw/1.schema.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.sitemap.mjs delete mode 100644 docs/.output/server/chunks/raw/1.sitemap.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.testing.mjs delete mode 100644 docs/.output/server/chunks/raw/1.testing.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.testing2.mjs delete mode 100644 docs/.output/server/chunks/raw/1.testing2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.theming.mjs delete mode 100644 docs/.output/server/chunks/raw/1.theming.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.typekit.mjs delete mode 100644 docs/.output/server/chunks/raw/1.typekit.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.usage.mjs delete mode 100644 docs/.output/server/chunks/raw/1.usage.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.usage2.mjs delete mode 100644 docs/.output/server/chunks/raw/1.usage2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.usage3.mjs delete mode 100644 docs/.output/server/chunks/raw/1.usage3.mjs.map delete mode 100644 docs/.output/server/chunks/raw/1.whats-frontier.mjs delete mode 100644 docs/.output/server/chunks/raw/1.whats-frontier.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.content-directory.mjs delete mode 100644 docs/.output/server/chunks/raw/2.content-directory.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.development.mjs delete mode 100644 docs/.output/server/chunks/raw/2.development.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.development2.mjs delete mode 100644 docs/.output/server/chunks/raw/2.development2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.introduction.mjs delete mode 100644 docs/.output/server/chunks/raw/2.introduction.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.introduction2.mjs delete mode 100644 docs/.output/server/chunks/raw/2.introduction2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.mobile.mjs delete mode 100644 docs/.output/server/chunks/raw/2.mobile.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.quality.mjs delete mode 100644 docs/.output/server/chunks/raw/2.quality.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.standard-library.mjs delete mode 100644 docs/.output/server/chunks/raw/2.standard-library.mjs.map delete mode 100644 docs/.output/server/chunks/raw/2.typescript.mjs delete mode 100644 docs/.output/server/chunks/raw/2.typescript.mjs.map delete mode 100644 docs/.output/server/chunks/raw/3.navigation.mjs delete mode 100644 docs/.output/server/chunks/raw/3.navigation.mjs.map delete mode 100644 docs/.output/server/chunks/raw/3.nuxt.mjs delete mode 100644 docs/.output/server/chunks/raw/3.nuxt.mjs.map delete mode 100644 docs/.output/server/chunks/raw/3.philosophy.mjs delete mode 100644 docs/.output/server/chunks/raw/3.philosophy.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir10.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir10.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir11.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir11.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir12.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir12.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir13.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir13.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir14.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir14.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir15.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir15.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir16.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir16.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir17.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir17.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir18.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir18.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir19.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir19.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir2.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir2.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir20.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir20.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir21.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir21.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir22.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir22.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir23.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir23.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir24.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir24.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir25.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir25.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir26.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir26.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir27.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir27.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir3.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir3.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir4.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir4.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir5.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir5.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir6.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir6.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir7.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir7.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir8.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir8.mjs.map delete mode 100644 docs/.output/server/chunks/raw/_dir9.mjs delete mode 100644 docs/.output/server/chunks/raw/_dir9.mjs.map delete mode 100644 docs/.output/server/chunks/raw/content-index.mjs delete mode 100644 docs/.output/server/chunks/raw/content-index.mjs.map delete mode 100644 docs/.output/server/chunks/raw/content-navigation.mjs delete mode 100644 docs/.output/server/chunks/raw/content-navigation.mjs.map delete mode 100644 docs/.output/server/chunks/raw/hello-world.mjs delete mode 100644 docs/.output/server/chunks/raw/hello-world.mjs.map delete mode 100644 docs/.output/server/chunks/raw/index.mjs delete mode 100644 docs/.output/server/chunks/raw/index.mjs.map delete mode 100644 docs/.output/server/chunks/rollup/_virtual_head-static.mjs delete mode 100644 docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map delete mode 100644 docs/.output/server/index.mjs delete mode 100644 docs/.output/server/index.mjs.map delete mode 100644 docs/.output/server/package.json create mode 100644 docs/content/5.mobile/3.features/1.screens.md create mode 100644 docs/content/5.mobile/3.features/2.components.md create mode 100644 docs/content/5.mobile/3.features/3.services.md create mode 100644 docs/content/5.mobile/3.features/4.navigation.md create mode 100644 docs/content/5.mobile/3.features/5.stores.md diff --git a/docs/.output/nitro.json b/docs/.output/nitro.json index d9b1f3d8..1e420cd6 100644 --- a/docs/.output/nitro.json +++ b/docs/.output/nitro.json @@ -1,7 +1,7 @@ { - "date": "2023-03-10T02:08:03.304Z", - "preset": "node-server", + "date": "2023-03-13T16:53:34.877Z", + "preset": "nitro-prerender", "commands": { - "preview": "node ./server/index.mjs" + "preview": "npx serve ./public" } } \ No newline at end of file diff --git a/docs/.output/public/200.html b/docs/.output/public/200.html new file mode 100644 index 00000000..135078cf --- /dev/null +++ b/docs/.output/public/200.html @@ -0,0 +1,8 @@ + + + + + +
    + \ No newline at end of file diff --git a/docs/.output/public/404.html b/docs/.output/public/404.html new file mode 100644 index 00000000..135078cf --- /dev/null +++ b/docs/.output/public/404.html @@ -0,0 +1,8 @@ + + + + + +
    + \ No newline at end of file diff --git a/docs/.output/public/__app_config.json/_payload.js b/docs/.output/public/__app_config.json/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/__app_config.json/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/__app_config.json/index.html b/docs/.output/public/__app_config.json/index.html new file mode 100644 index 00000000..23320331 --- /dev/null +++ b/docs/.output/public/__app_config.json/index.html @@ -0,0 +1,74 @@ +{ + "prose": { + "copyButton": { + "iconCopy": "ph:copy", + "iconCopied": "ph:check" + }, + "headings": { + "icon": "ph:link" + } + }, + "docus": { + "title": "Frontier", + "description": "", + "image": "", + "socials": { + "twitter": "", + "github": "realdecoy/frontier", + "facebook": "", + "instagram": "", + "youtube": "", + "medium": "" + }, + "layout": { + "fluid": true + }, + "header": { + "title": "", + "logo": "Logo", + "showLinkIcon": false, + "fluid": false, + "exclude": [] + }, + "aside": { + "level": 1, + "collapsed": false, + "exclude": [] + }, + "footer": { + "credits": { + "icon": "IconDocus", + "text": "Powered by Docus", + "href": "https://docus.dev" + }, + "textLinks": [], + "iconLinks": [ + { + "label": "Realdecoy", + "href": "https://realdecoy.com", + "icon": "IconNuxt" + } + ], + "fluid": false + }, + "github": { + "dir": "", + "branch": "main", + "repo": "frontier", + "owner": "realdecoy", + "edit": true, + "root": "", + "releases": true + }, + "url": "https://realdecoy.com", + "cover": { + "src": "/cover.jpg", + "alt": "Tooling maded easy for developers" + } + }, + "github": { + "owner": "realdecoy", + "repo": "frontier", + "branch": "main" + } +} \ No newline at end of file diff --git a/docs/.output/public/__studio.json b/docs/.output/public/__studio.json index ca06f258..a50b635e 100644 --- a/docs/.output/public/__studio.json +++ b/docs/.output/public/__studio.json @@ -1 +1 @@ -{"version":"0.7.2","appConfigSchema":{"properties":{"id":"#appConfig","properties":{"nuxtIcon":{"title":"Nuxt Icon","description":"Configure the defaults of Nuxt Icon","id":"#appConfig/nuxtIcon","properties":{"size":{"title":"Icon Size","description":"Set the default icon size","tags":["@studioIcon material-symbols:format-size-rounded"],"id":"#appConfig/nuxtIcon/size","default":"","type":"string"},"class":{"title":"CSS Class","description":"Set the default CSS class","tags":["@studioIcon material-symbols:css"],"id":"#appConfig/nuxtIcon/class","default":"","type":"string"},"aliases":{"title":"Icon aliases","description":"Define Icon aliases to update them easily without code changes.","tags":["@studioIcon material-symbols:star-rounded","@studioInputObjectValueType icon"],"tsType":"{ [alias: string]: string }","id":"#appConfig/nuxtIcon/aliases","default":{},"type":"object"}},"type":"object","default":{"size":"","class":"","aliases":{}}},"prose":{"title":"Prose configuration from Nuxt Typography","description":"","tags":["@studioIcon material-symbols:short-text-rounded","@studioInput icon"],"id":"#appConfig/prose","properties":{"copyButton":{"title":"Copy button (used in code blocks)","description":"","tags":["@studioIcon material-symbols:content-copy"],"id":"#appConfig/prose/copyButton","properties":{"iconCopy":{"title":"Icon displayed to copy","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopy","default":"ph:copy","type":"string"},"iconCopied":{"title":"Icon displayed when copied","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopied","default":"ph:check","type":"string"}},"type":"object","default":{"iconCopy":"ph:copy","iconCopied":"ph:check"}},"headings":{"title":"Default configuration for all headings (h1, h2, h3, h4, h5 and h6)","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/prose/headings","properties":{"icon":{"title":"Default icon for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/headings/icon","default":"ph:link","type":"string"}},"type":"object","default":{"icon":"ph:link"}},"h1":{"title":"First heading configuration","description":"","tags":["@studioIcon material-symbols:format-h1"],"id":"#appConfig/prose/h1","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h1/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h2":{"title":"Second heading configuration","description":"","tags":["@studioIcon material-symbols:format-h2"],"id":"#appConfig/prose/h2","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h2/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h3":{"title":"Third heading configuration","description":"","tags":["@studioIcon material-symbols:format-h3"],"id":"#appConfig/prose/h3","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h3/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h4":{"title":"Fourth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h4"],"id":"#appConfig/prose/h4","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h4/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h5":{"title":"Fifth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h5"],"id":"#appConfig/prose/h5","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h5/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h6":{"title":"Sixth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h6"],"id":"#appConfig/prose/h6","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h6/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}}},"type":"object","default":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}}},"docus":{"title":"Docus theme configuration.","description":"","tags":["@studioIcon material-symbols:docs"],"id":"#appConfig/docus","properties":{"title":{"title":"Website title, used as header default title and meta title.","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/title","default":"Docus","type":"string"},"titleTemplate":{"title":"The website title template, to overwrite the default one.","description":"","tags":[],"id":"#appConfig/docus/titleTemplate","default":"%s · Docus","type":"string"},"description":{"title":"Website description, used for meta description.","description":"","tags":["@studioIcon material-symbols:description"],"id":"#appConfig/docus/description","default":"The best place to start your documentation.","type":"string"},"image":{"title":"Cover image.","description":"","tags":["@example '/cover.jpg'","@studioIcon dashicons:cover-image","@studioInput file"],"id":"#appConfig/docus/image","default":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","type":"string"},"socials":{"title":"Social links","description":"Will be used in AppSocialIcons component.","tags":["@studioIcon material-symbols:share-outline"],"id":"#appConfig/docus/socials","properties":{"twitter":{"title":"Twitter social handle","description":"","tags":["@example 'nuxt_js'","@studioIcon simple-icons:twitter"],"id":"#appConfig/docus/socials/twitter","default":"","type":"string"},"github":{"title":"GitHub org or repository","description":"","tags":["@example 'nuxt/framework'","@studioIcon simple-icons:github"],"id":"#appConfig/docus/socials/github","default":"","type":"string"},"facebook":{"title":"Facebook page url","description":"","tags":["@example https://www.facebook.com/groups/nuxtjs","@studioIcon simple-icons:facebook"],"id":"#appConfig/docus/socials/facebook","default":"","type":"string"},"instagram":{"title":"Instagram page url","description":"","tags":["@example https://www.instagram.com/wearenuxt","@studioIcon simple-icons:instagram"],"id":"#appConfig/docus/socials/instagram","default":"","type":"string"},"youtube":{"title":"Instagram page url","description":"","tags":["@example https://www.youtube.com/@NuxtLabs","@studioIcon simple-icons:youtube"],"id":"#appConfig/docus/socials/youtube","default":"","type":"string"},"medium":{"title":"Medium page url","description":"","tags":["@example https://medium.com/nuxt","@studioIcon simple-icons:medium"],"id":"#appConfig/docus/socials/medium","default":"","type":"string"}},"type":"object","default":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""}},"layout":{"title":"Theme layout configuration.","description":"","tags":["@studioIcon tabler:arrow-autofit-width"],"tsType":"'default'|'page'","id":"#appConfig/docus/layout","default":"default","type":"string"},"aside":{"title":"Aside navigation configuration.","description":"","tags":["@studioIcon fluent:document-page-24-regular"],"id":"#appConfig/docus/aside","properties":{"level":{"title":"Aside navigation level","description":"Use 0 to disable all nesting. Use 1 and more to display nested navigation in header and aside navigation.","tags":[],"id":"#appConfig/docus/aside/level","default":0,"type":"number"},"collapsed":{"title":"Specify if default collapsibles state globally for aside navigation.","description":"","tags":[],"id":"#appConfig/docus/aside/collapsed","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from aside navigation.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/aside/exclude","default":[],"type":"array","items":{"type":"any"}}},"type":"object","default":{"level":0,"collapsed":false,"exclude":[]}},"header":{"title":"Header configuration.","description":"","tags":["@studioIcon fluent:document-header-24-regular"],"id":"#appConfig/docus/header","properties":{"title":{"title":"Website title","description":"Title to be displayed in header or as aria-label if logo is defined.\nDefault to docus.title","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/header/title","default":"","type":"string"},"logo":{"title":"Logo configuration","description":"Boolean to disable or use the `Logo.vue` component.\nString to be used as a name of a component.","tags":["@example 'MyLogo'","@studioInput boolean"],"id":"#appConfig/docus/header/logo","default":false,"type":"boolean"},"showLinkIcon":{"title":"Header links","description":"Toggle links icons in the header.","tags":[],"id":"#appConfig/docus/header/showLinkIcon","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from header links.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/header/exclude","default":[],"type":"array","items":{"type":"any"}},"fluid":{"title":"Makes the content of the header fluid.","description":"","tags":[],"id":"#appConfig/docus/header/fluid","default":false,"type":"boolean"}},"type":"object","default":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false}},"main":{"title":"Main content configuration.","description":"","tags":["@studioIcon fluent:document-header-footer-24-filled"],"id":"#appConfig/docus/main","properties":{"fluid":{"title":"Makes the content of the main container fluid.","description":"","tags":[],"id":"#appConfig/docus/main/fluid","default":false,"type":"boolean"},"padded":{"title":"Makes the content of the main container padded.","description":"","tags":[],"id":"#appConfig/docus/main/padded","default":true,"type":"boolean"}},"type":"object","default":{"fluid":false,"padded":true}},"footer":{"title":"Footer configuration","description":"","tags":["@studioIcon fluent:document-footer-24-regular"],"id":"#appConfig/docus/footer","properties":{"credits":{"title":"Website credits configuration.","description":"","tags":["@studioIcon material-symbols:copyright"],"tsType":"false|{icon: string, text: string, href: string}","id":"#appConfig/docus/footer/credits","properties":{"icon":{"title":"Icon to show on credits","description":"","tags":["@formtype Icon"],"id":"#appConfig/docus/footer/credits/icon","default":"IconDocus","type":"string"},"text":{"type":"string","id":"#appConfig/docus/footer/credits/text","default":"Powered by Docus"},"href":{"type":"string","id":"#appConfig/docus/footer/credits/href","default":"https://docus.dev"}},"type":"object","default":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"}},"textLinks":{"type":"array","items":{"type":"object","required":["text","href"],"properties":{"href":{"type":"string","description":"URL when clicking the link"},"text":{"type":"string","description":"Text of the link"},"target":{"type":"string","description":"Target attribute of the link"}}},"title":"Text links","description":"Will be added into center section of the footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/textLinks"},"iconLinks":{"type":"array","items":{"type":"object","required":["icon","href"],"properties":{"icon":{"type":"string","description":"Icon name"},"href":{"type":"string","description":"Link when clicking on the icon"},"label":{"type":"string","description":"Label of the icon"}}},"title":"Icon links","description":"Icons to be added to Social Icons in footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/iconLinks"},"fluid":{"title":"Makes the content of the footer fluid.","description":"","tags":[],"id":"#appConfig/docus/footer/fluid","default":true,"type":"boolean"}},"type":"object","default":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true}},"github":{"title":"GitHub integration","description":"Configure the Edit on Github integration.","tags":["@studioIcon simple-icons:github"],"id":"#appConfig/docus/github","properties":{"dir":{"title":"Directory","description":"Your GitHub repository root directory.","tags":[],"id":"#appConfig/docus/github/dir","default":"","type":"string"},"branch":{"title":"Branch","description":"Your GitHub repository branch.","tags":[],"id":"#appConfig/docus/github/branch","default":"","type":"string"},"repo":{"title":"Repository","description":"Your GitHub repository name.","tags":[],"id":"#appConfig/docus/github/repo","default":"","type":"string"},"owner":{"title":"Owner","description":"Your GitHub repository owner.","tags":[],"id":"#appConfig/docus/github/owner","default":"","type":"string"},"edit":{"title":"EditOnGithub","description":"Display EditOnGithub button.","tags":[],"id":"#appConfig/docus/github/edit","default":false,"type":"boolean"}},"type":"object","default":{"dir":"","branch":"","repo":"","owner":"","edit":false}}},"type":"object","default":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"type":"object","default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"appConfig":{"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"}},"docus":{"title":"Frontier","description":"Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.","image":"https://content.nuxtjs.org/preview.png","socials":{"twitter":"","github":"realdecoy/frontier","facebook":"","instagram":"","youtube":"","medium":""},"layout":{"fluid":true},"header":{"title":"","logo":"Logo","showLinkIcon":false,"fluid":false,"exclude":[]},"aside":{"level":1,"collapsed":false,"exclude":[]},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"textLinks":[],"iconLinks":[{"label":"Realdecoy","href":"https://realdecoy.com","icon":"IconNuxt"}],"fluid":false},"github":{"dir":"","branch":"main","repo":"frontier","owner":"realdecoy","edit":true,"root":"","releases":true},"url":"https://realdecoy.com","cover":{"src":"/cover.jpg","alt":"Tooling maded easy for developers"}},"github":{"owner":"realdecoy","repo":"frontier","branch":"main"}},"tokensConfigSchema":{"properties":{"id":"#tokensConfig","properties":{"color":{"title":"Your website color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/color","properties":{"primary":{"id":"#tokensConfig/color/primary","properties":{"50":{"id":"#tokensConfig/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/50/value","default":"#fff2cc"}},"type":"object","default":{"value":"#fff2cc"}},"100":{"id":"#tokensConfig/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/100/value","default":"#ffe599"}},"type":"object","default":{"value":"#ffe599"}},"200":{"id":"#tokensConfig/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/200/value","default":"#ffd966"}},"type":"object","default":{"value":"#ffd966"}},"300":{"id":"#tokensConfig/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/300/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"400":{"id":"#tokensConfig/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/400/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"500":{"id":"#tokensConfig/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/500/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"600":{"id":"#tokensConfig/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/600/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"700":{"id":"#tokensConfig/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/700/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"800":{"id":"#tokensConfig/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/800/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"900":{"id":"#tokensConfig/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/900/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}}},"type":"object","default":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}}},"white":{"id":"#tokensConfig/color/white","properties":{"value":{"type":"string","id":"#tokensConfig/color/white/value","default":"#ffffff"}},"type":"object","default":{"value":"#ffffff"}},"black":{"id":"#tokensConfig/color/black","properties":{"value":{"type":"string","id":"#tokensConfig/color/black/value","default":"#0c0c0d"}},"type":"object","default":{"value":"#0c0c0d"}},"secondary":{"id":"#tokensConfig/color/secondary","properties":{"50":{"id":"#tokensConfig/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}},"gray":{"id":"#tokensConfig/color/gray","properties":{"50":{"id":"#tokensConfig/color/gray/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/50/value","default":"#fafafa"}},"type":"object","default":{"value":"#fafafa"}},"100":{"id":"#tokensConfig/color/gray/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/100/value","default":"#f4f4f5"}},"type":"object","default":{"value":"#f4f4f5"}},"200":{"id":"#tokensConfig/color/gray/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/200/value","default":"#e4e4e7"}},"type":"object","default":{"value":"#e4e4e7"}},"300":{"id":"#tokensConfig/color/gray/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/300/value","default":"#D4d4d8"}},"type":"object","default":{"value":"#D4d4d8"}},"400":{"id":"#tokensConfig/color/gray/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/400/value","default":"#a1a1aa"}},"type":"object","default":{"value":"#a1a1aa"}},"500":{"id":"#tokensConfig/color/gray/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/500/value","default":"#71717A"}},"type":"object","default":{"value":"#71717A"}},"600":{"id":"#tokensConfig/color/gray/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/600/value","default":"#52525B"}},"type":"object","default":{"value":"#52525B"}},"700":{"id":"#tokensConfig/color/gray/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/700/value","default":"#3f3f46"}},"type":"object","default":{"value":"#3f3f46"}},"800":{"id":"#tokensConfig/color/gray/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/800/value","default":"#27272A"}},"type":"object","default":{"value":"#27272A"}},"900":{"id":"#tokensConfig/color/gray/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/900/value","default":"#18181B"}},"type":"object","default":{"value":"#18181B"}}},"type":"object","default":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}}},"green":{"id":"#tokensConfig/color/green","properties":{"50":{"id":"#tokensConfig/color/green/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/50/value","default":"#d6ffee"}},"type":"object","default":{"value":"#d6ffee"}},"100":{"id":"#tokensConfig/color/green/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/100/value","default":"#acffdd"}},"type":"object","default":{"value":"#acffdd"}},"200":{"id":"#tokensConfig/color/green/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/200/value","default":"#83ffcc"}},"type":"object","default":{"value":"#83ffcc"}},"300":{"id":"#tokensConfig/color/green/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/300/value","default":"#30ffaa"}},"type":"object","default":{"value":"#30ffaa"}},"400":{"id":"#tokensConfig/color/green/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/400/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"500":{"id":"#tokensConfig/color/green/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/500/value","default":"#00bd6f"}},"type":"object","default":{"value":"#00bd6f"}},"600":{"id":"#tokensConfig/color/green/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/600/value","default":"#009d5d"}},"type":"object","default":{"value":"#009d5d"}},"700":{"id":"#tokensConfig/color/green/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/700/value","default":"#007e4a"}},"type":"object","default":{"value":"#007e4a"}},"800":{"id":"#tokensConfig/color/green/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/800/value","default":"#005e38"}},"type":"object","default":{"value":"#005e38"}},"900":{"id":"#tokensConfig/color/green/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/900/value","default":"#003f25"}},"type":"object","default":{"value":"#003f25"}}},"type":"object","default":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}}},"yellow":{"id":"#tokensConfig/color/yellow","properties":{"50":{"id":"#tokensConfig/color/yellow/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/50/value","default":"#fdf6db"}},"type":"object","default":{"value":"#fdf6db"}},"100":{"id":"#tokensConfig/color/yellow/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/100/value","default":"#fcedb7"}},"type":"object","default":{"value":"#fcedb7"}},"200":{"id":"#tokensConfig/color/yellow/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/200/value","default":"#fae393"}},"type":"object","default":{"value":"#fae393"}},"300":{"id":"#tokensConfig/color/yellow/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/300/value","default":"#f8da70"}},"type":"object","default":{"value":"#f8da70"}},"400":{"id":"#tokensConfig/color/yellow/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/400/value","default":"#f7d14c"}},"type":"object","default":{"value":"#f7d14c"}},"500":{"id":"#tokensConfig/color/yellow/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/500/value","default":"#f5c828"}},"type":"object","default":{"value":"#f5c828"}},"600":{"id":"#tokensConfig/color/yellow/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/600/value","default":"#daac0a"}},"type":"object","default":{"value":"#daac0a"}},"700":{"id":"#tokensConfig/color/yellow/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/700/value","default":"#a38108"}},"type":"object","default":{"value":"#a38108"}},"800":{"id":"#tokensConfig/color/yellow/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/800/value","default":"#6d5605"}},"type":"object","default":{"value":"#6d5605"}},"900":{"id":"#tokensConfig/color/yellow/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/900/value","default":"#362b03"}},"type":"object","default":{"value":"#362b03"}}},"type":"object","default":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}}},"orange":{"id":"#tokensConfig/color/orange","properties":{"50":{"id":"#tokensConfig/color/orange/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/50/value","default":"#ffe9d9"}},"type":"object","default":{"value":"#ffe9d9"}},"100":{"id":"#tokensConfig/color/orange/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/100/value","default":"#ffd3b3"}},"type":"object","default":{"value":"#ffd3b3"}},"200":{"id":"#tokensConfig/color/orange/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/200/value","default":"#ffbd8d"}},"type":"object","default":{"value":"#ffbd8d"}},"300":{"id":"#tokensConfig/color/orange/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/300/value","default":"#ffa666"}},"type":"object","default":{"value":"#ffa666"}},"400":{"id":"#tokensConfig/color/orange/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/400/value","default":"#ff9040"}},"type":"object","default":{"value":"#ff9040"}},"500":{"id":"#tokensConfig/color/orange/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/500/value","default":"#ff7a1a"}},"type":"object","default":{"value":"#ff7a1a"}},"600":{"id":"#tokensConfig/color/orange/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/600/value","default":"#e15e00"}},"type":"object","default":{"value":"#e15e00"}},"700":{"id":"#tokensConfig/color/orange/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/700/value","default":"#a94700"}},"type":"object","default":{"value":"#a94700"}},"800":{"id":"#tokensConfig/color/orange/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/800/value","default":"#702f00"}},"type":"object","default":{"value":"#702f00"}},"900":{"id":"#tokensConfig/color/orange/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/900/value","default":"#381800"}},"type":"object","default":{"value":"#381800"}}},"type":"object","default":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}}},"red":{"id":"#tokensConfig/color/red","properties":{"50":{"id":"#tokensConfig/color/red/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/50/value","default":"#ffdbd9"}},"type":"object","default":{"value":"#ffdbd9"}},"100":{"id":"#tokensConfig/color/red/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/100/value","default":"#ffb7b3"}},"type":"object","default":{"value":"#ffb7b3"}},"200":{"id":"#tokensConfig/color/red/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/200/value","default":"#ff948d"}},"type":"object","default":{"value":"#ff948d"}},"300":{"id":"#tokensConfig/color/red/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/300/value","default":"#ff7066"}},"type":"object","default":{"value":"#ff7066"}},"400":{"id":"#tokensConfig/color/red/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/400/value","default":"#ff4c40"}},"type":"object","default":{"value":"#ff4c40"}},"500":{"id":"#tokensConfig/color/red/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/500/value","default":"#ff281a"}},"type":"object","default":{"value":"#ff281a"}},"600":{"id":"#tokensConfig/color/red/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/600/value","default":"#e10e00"}},"type":"object","default":{"value":"#e10e00"}},"700":{"id":"#tokensConfig/color/red/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/700/value","default":"#a90a00"}},"type":"object","default":{"value":"#a90a00"}},"800":{"id":"#tokensConfig/color/red/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/800/value","default":"#700700"}},"type":"object","default":{"value":"#700700"}},"900":{"id":"#tokensConfig/color/red/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/900/value","default":"#380300"}},"type":"object","default":{"value":"#380300"}}},"type":"object","default":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}}},"pear":{"id":"#tokensConfig/color/pear","properties":{"50":{"id":"#tokensConfig/color/pear/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/50/value","default":"#f7f8dc"}},"type":"object","default":{"value":"#f7f8dc"}},"100":{"id":"#tokensConfig/color/pear/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/100/value","default":"#eff0ba"}},"type":"object","default":{"value":"#eff0ba"}},"200":{"id":"#tokensConfig/color/pear/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/200/value","default":"#e8e997"}},"type":"object","default":{"value":"#e8e997"}},"300":{"id":"#tokensConfig/color/pear/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/300/value","default":"#e0e274"}},"type":"object","default":{"value":"#e0e274"}},"400":{"id":"#tokensConfig/color/pear/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/400/value","default":"#d8da52"}},"type":"object","default":{"value":"#d8da52"}},"500":{"id":"#tokensConfig/color/pear/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/500/value","default":"#d0d32f"}},"type":"object","default":{"value":"#d0d32f"}},"600":{"id":"#tokensConfig/color/pear/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/600/value","default":"#a8aa24"}},"type":"object","default":{"value":"#a8aa24"}},"700":{"id":"#tokensConfig/color/pear/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/700/value","default":"#7e801b"}},"type":"object","default":{"value":"#7e801b"}},"800":{"id":"#tokensConfig/color/pear/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/800/value","default":"#545512"}},"type":"object","default":{"value":"#545512"}},"900":{"id":"#tokensConfig/color/pear/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/900/value","default":"#2a2b09"}},"type":"object","default":{"value":"#2a2b09"}}},"type":"object","default":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}}},"teal":{"id":"#tokensConfig/color/teal","properties":{"50":{"id":"#tokensConfig/color/teal/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/50/value","default":"#d7faf8"}},"type":"object","default":{"value":"#d7faf8"}},"100":{"id":"#tokensConfig/color/teal/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/100/value","default":"#aff4f0"}},"type":"object","default":{"value":"#aff4f0"}},"200":{"id":"#tokensConfig/color/teal/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/200/value","default":"#87efe9"}},"type":"object","default":{"value":"#87efe9"}},"300":{"id":"#tokensConfig/color/teal/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/300/value","default":"#5fe9e1"}},"type":"object","default":{"value":"#5fe9e1"}},"400":{"id":"#tokensConfig/color/teal/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/400/value","default":"#36e4da"}},"type":"object","default":{"value":"#36e4da"}},"500":{"id":"#tokensConfig/color/teal/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/500/value","default":"#1cd1c6"}},"type":"object","default":{"value":"#1cd1c6"}},"600":{"id":"#tokensConfig/color/teal/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/600/value","default":"#16a79e"}},"type":"object","default":{"value":"#16a79e"}},"700":{"id":"#tokensConfig/color/teal/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/700/value","default":"#117d77"}},"type":"object","default":{"value":"#117d77"}},"800":{"id":"#tokensConfig/color/teal/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/800/value","default":"#0b544f"}},"type":"object","default":{"value":"#0b544f"}},"900":{"id":"#tokensConfig/color/teal/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/900/value","default":"#062a28"}},"type":"object","default":{"value":"#062a28"}}},"type":"object","default":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}}},"lightblue":{"id":"#tokensConfig/color/lightblue","properties":{"50":{"id":"#tokensConfig/color/lightblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/50/value","default":"#d9f8ff"}},"type":"object","default":{"value":"#d9f8ff"}},"100":{"id":"#tokensConfig/color/lightblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/100/value","default":"#b3f1ff"}},"type":"object","default":{"value":"#b3f1ff"}},"200":{"id":"#tokensConfig/color/lightblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/200/value","default":"#8deaff"}},"type":"object","default":{"value":"#8deaff"}},"300":{"id":"#tokensConfig/color/lightblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/300/value","default":"#66e4ff"}},"type":"object","default":{"value":"#66e4ff"}},"400":{"id":"#tokensConfig/color/lightblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/400/value","default":"#40ddff"}},"type":"object","default":{"value":"#40ddff"}},"500":{"id":"#tokensConfig/color/lightblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/500/value","default":"#1ad6ff"}},"type":"object","default":{"value":"#1ad6ff"}},"600":{"id":"#tokensConfig/color/lightblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/600/value","default":"#00b9e1"}},"type":"object","default":{"value":"#00b9e1"}},"700":{"id":"#tokensConfig/color/lightblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/700/value","default":"#008aa9"}},"type":"object","default":{"value":"#008aa9"}},"800":{"id":"#tokensConfig/color/lightblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/800/value","default":"#005c70"}},"type":"object","default":{"value":"#005c70"}},"900":{"id":"#tokensConfig/color/lightblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/900/value","default":"#002e38"}},"type":"object","default":{"value":"#002e38"}}},"type":"object","default":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}}},"blue":{"id":"#tokensConfig/color/blue","properties":{"50":{"id":"#tokensConfig/color/blue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/50/value","default":"#d9f1ff"}},"type":"object","default":{"value":"#d9f1ff"}},"100":{"id":"#tokensConfig/color/blue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/100/value","default":"#b3e4ff"}},"type":"object","default":{"value":"#b3e4ff"}},"200":{"id":"#tokensConfig/color/blue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/200/value","default":"#8dd6ff"}},"type":"object","default":{"value":"#8dd6ff"}},"300":{"id":"#tokensConfig/color/blue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/300/value","default":"#66c8ff"}},"type":"object","default":{"value":"#66c8ff"}},"400":{"id":"#tokensConfig/color/blue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/400/value","default":"#40bbff"}},"type":"object","default":{"value":"#40bbff"}},"500":{"id":"#tokensConfig/color/blue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/500/value","default":"#1aadff"}},"type":"object","default":{"value":"#1aadff"}},"600":{"id":"#tokensConfig/color/blue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/600/value","default":"#0090e1"}},"type":"object","default":{"value":"#0090e1"}},"700":{"id":"#tokensConfig/color/blue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/700/value","default":"#006ca9"}},"type":"object","default":{"value":"#006ca9"}},"800":{"id":"#tokensConfig/color/blue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/800/value","default":"#004870"}},"type":"object","default":{"value":"#004870"}},"900":{"id":"#tokensConfig/color/blue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/900/value","default":"#002438"}},"type":"object","default":{"value":"#002438"}}},"type":"object","default":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}}},"indigoblue":{"id":"#tokensConfig/color/indigoblue","properties":{"50":{"id":"#tokensConfig/color/indigoblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/50/value","default":"#d9e5ff"}},"type":"object","default":{"value":"#d9e5ff"}},"100":{"id":"#tokensConfig/color/indigoblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/100/value","default":"#b3cbff"}},"type":"object","default":{"value":"#b3cbff"}},"200":{"id":"#tokensConfig/color/indigoblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/200/value","default":"#8db0ff"}},"type":"object","default":{"value":"#8db0ff"}},"300":{"id":"#tokensConfig/color/indigoblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/300/value","default":"#6696ff"}},"type":"object","default":{"value":"#6696ff"}},"400":{"id":"#tokensConfig/color/indigoblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/400/value","default":"#407cff"}},"type":"object","default":{"value":"#407cff"}},"500":{"id":"#tokensConfig/color/indigoblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/500/value","default":"#1a62ff"}},"type":"object","default":{"value":"#1a62ff"}},"600":{"id":"#tokensConfig/color/indigoblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/600/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}},"700":{"id":"#tokensConfig/color/indigoblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/700/value","default":"#0035a9"}},"type":"object","default":{"value":"#0035a9"}},"800":{"id":"#tokensConfig/color/indigoblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/800/value","default":"#002370"}},"type":"object","default":{"value":"#002370"}},"900":{"id":"#tokensConfig/color/indigoblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/900/value","default":"#001238"}},"type":"object","default":{"value":"#001238"}}},"type":"object","default":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}}},"royalblue":{"id":"#tokensConfig/color/royalblue","properties":{"50":{"id":"#tokensConfig/color/royalblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/50/value","default":"#dfdbfb"}},"type":"object","default":{"value":"#dfdbfb"}},"100":{"id":"#tokensConfig/color/royalblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/100/value","default":"#c0b7f7"}},"type":"object","default":{"value":"#c0b7f7"}},"200":{"id":"#tokensConfig/color/royalblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/200/value","default":"#a093f3"}},"type":"object","default":{"value":"#a093f3"}},"300":{"id":"#tokensConfig/color/royalblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/300/value","default":"#806ff0"}},"type":"object","default":{"value":"#806ff0"}},"400":{"id":"#tokensConfig/color/royalblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/400/value","default":"#614bec"}},"type":"object","default":{"value":"#614bec"}},"500":{"id":"#tokensConfig/color/royalblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/500/value","default":"#4127e8"}},"type":"object","default":{"value":"#4127e8"}},"600":{"id":"#tokensConfig/color/royalblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/600/value","default":"#2c15c4"}},"type":"object","default":{"value":"#2c15c4"}},"700":{"id":"#tokensConfig/color/royalblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/700/value","default":"#211093"}},"type":"object","default":{"value":"#211093"}},"800":{"id":"#tokensConfig/color/royalblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/800/value","default":"#160a62"}},"type":"object","default":{"value":"#160a62"}},"900":{"id":"#tokensConfig/color/royalblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/900/value","default":"#0b0531"}},"type":"object","default":{"value":"#0b0531"}}},"type":"object","default":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}}},"purple":{"id":"#tokensConfig/color/purple","properties":{"50":{"id":"#tokensConfig/color/purple/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/50/value","default":"#ead9ff"}},"type":"object","default":{"value":"#ead9ff"}},"100":{"id":"#tokensConfig/color/purple/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/100/value","default":"#d5b3ff"}},"type":"object","default":{"value":"#d5b3ff"}},"200":{"id":"#tokensConfig/color/purple/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/200/value","default":"#c08dff"}},"type":"object","default":{"value":"#c08dff"}},"300":{"id":"#tokensConfig/color/purple/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/300/value","default":"#ab66ff"}},"type":"object","default":{"value":"#ab66ff"}},"400":{"id":"#tokensConfig/color/purple/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/400/value","default":"#9640ff"}},"type":"object","default":{"value":"#9640ff"}},"500":{"id":"#tokensConfig/color/purple/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/500/value","default":"#811aff"}},"type":"object","default":{"value":"#811aff"}},"600":{"id":"#tokensConfig/color/purple/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/600/value","default":"#6500e1"}},"type":"object","default":{"value":"#6500e1"}},"700":{"id":"#tokensConfig/color/purple/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/700/value","default":"#4c00a9"}},"type":"object","default":{"value":"#4c00a9"}},"800":{"id":"#tokensConfig/color/purple/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/800/value","default":"#330070"}},"type":"object","default":{"value":"#330070"}},"900":{"id":"#tokensConfig/color/purple/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/900/value","default":"#190038"}},"type":"object","default":{"value":"#190038"}}},"type":"object","default":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}}},"pink":{"id":"#tokensConfig/color/pink","properties":{"50":{"id":"#tokensConfig/color/pink/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/50/value","default":"#ffd9f2"}},"type":"object","default":{"value":"#ffd9f2"}},"100":{"id":"#tokensConfig/color/pink/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/100/value","default":"#ffb3e5"}},"type":"object","default":{"value":"#ffb3e5"}},"200":{"id":"#tokensConfig/color/pink/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/200/value","default":"#ff8dd8"}},"type":"object","default":{"value":"#ff8dd8"}},"300":{"id":"#tokensConfig/color/pink/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/300/value","default":"#ff66cc"}},"type":"object","default":{"value":"#ff66cc"}},"400":{"id":"#tokensConfig/color/pink/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/400/value","default":"#ff40bf"}},"type":"object","default":{"value":"#ff40bf"}},"500":{"id":"#tokensConfig/color/pink/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/500/value","default":"#ff1ab2"}},"type":"object","default":{"value":"#ff1ab2"}},"600":{"id":"#tokensConfig/color/pink/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/600/value","default":"#e10095"}},"type":"object","default":{"value":"#e10095"}},"700":{"id":"#tokensConfig/color/pink/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/700/value","default":"#a90070"}},"type":"object","default":{"value":"#a90070"}},"800":{"id":"#tokensConfig/color/pink/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/800/value","default":"#70004b"}},"type":"object","default":{"value":"#70004b"}},"900":{"id":"#tokensConfig/color/pink/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/900/value","default":"#380025"}},"type":"object","default":{"value":"#380025"}}},"type":"object","default":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}}},"ruby":{"id":"#tokensConfig/color/ruby","properties":{"50":{"id":"#tokensConfig/color/ruby/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/50/value","default":"#ffd9e4"}},"type":"object","default":{"value":"#ffd9e4"}},"100":{"id":"#tokensConfig/color/ruby/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/100/value","default":"#ffb3c9"}},"type":"object","default":{"value":"#ffb3c9"}},"200":{"id":"#tokensConfig/color/ruby/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/200/value","default":"#ff8dae"}},"type":"object","default":{"value":"#ff8dae"}},"300":{"id":"#tokensConfig/color/ruby/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/300/value","default":"#ff6694"}},"type":"object","default":{"value":"#ff6694"}},"400":{"id":"#tokensConfig/color/ruby/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/400/value","default":"#ff4079"}},"type":"object","default":{"value":"#ff4079"}},"500":{"id":"#tokensConfig/color/ruby/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/500/value","default":"#ff1a5e"}},"type":"object","default":{"value":"#ff1a5e"}},"600":{"id":"#tokensConfig/color/ruby/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/600/value","default":"#e10043"}},"type":"object","default":{"value":"#e10043"}},"700":{"id":"#tokensConfig/color/ruby/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/700/value","default":"#a90032"}},"type":"object","default":{"value":"#a90032"}},"800":{"id":"#tokensConfig/color/ruby/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/800/value","default":"#700021"}},"type":"object","default":{"value":"#700021"}},"900":{"id":"#tokensConfig/color/ruby/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/900/value","default":"#380011"}},"type":"object","default":{"value":"#380011"}}},"type":"object","default":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"type":"object","default":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"elements":{"title":"All the configurable tokens for your Elements.","tags":["@studioIcon uiw:component"],"id":"#tokensConfig/elements","properties":{"text":{"id":"#tokensConfig/elements/text","properties":{"primary":{"id":"#tokensConfig/elements/text/primary","properties":{"color":{"id":"#tokensConfig/elements/text/primary/color","properties":{"static":{"id":"#tokensConfig/elements/text/primary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/primary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/initial","default":"{color.gray.900}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/dark","default":"{color.gray.50}"}},"type":"object","default":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"type":"object","default":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"hover":{"id":"#tokensConfig/elements/text/primary/color/hover","type":"any","default":{}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"secondary":{"id":"#tokensConfig/elements/text/secondary","properties":{"color":{"id":"#tokensConfig/elements/text/secondary/color","properties":{"static":{"id":"#tokensConfig/elements/text/secondary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/initial","default":"{color.gray.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/dark","default":"{color.gray.400}"}},"type":"object","default":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"type":"object","default":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"hover":{"id":"#tokensConfig/elements/text/secondary/color/hover","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/initial","default":"{color.gray.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/dark","default":"{color.gray.200}"}},"type":"object","default":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}},"type":"object","default":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"type":"object","default":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"container":{"title":"Main container sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:width-full-outline"],"id":"#tokensConfig/elements/container","properties":{"maxWidth":{"id":"#tokensConfig/elements/container/maxWidth","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/maxWidth/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"padding":{"id":"#tokensConfig/elements/container/padding","properties":{"mobile":{"id":"#tokensConfig/elements/container/padding/mobile","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/mobile/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"xs":{"id":"#tokensConfig/elements/container/padding/xs","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/xs/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"sm":{"id":"#tokensConfig/elements/container/padding/sm","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/sm/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}},"md":{"id":"#tokensConfig/elements/container/padding/md","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/md/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}}},"type":"object","default":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"type":"object","default":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"backdrop":{"title":"Backdrops used in Elements.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:blur-circular"],"id":"#tokensConfig/elements/backdrop","properties":{"filter":{"id":"#tokensConfig/elements/backdrop/filter","properties":{"value":{"type":"string","id":"#tokensConfig/elements/backdrop/filter/value","default":"saturate(200%) blur(20px)"}},"type":"object","default":{"value":"saturate(200%) blur(20px)"}},"background":{"id":"#tokensConfig/elements/backdrop/background","properties":{"value":{"id":"#tokensConfig/elements/backdrop/background/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/initial","default":"#fffc"},"dark":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/dark","default":"#0c0d0ccc"}},"type":"object","default":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"type":"object","default":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"type":"object","default":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"border":{"title":"Borders used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/elements/border","properties":{"primary":{"id":"#tokensConfig/elements/border/primary","properties":{"static":{"id":"#tokensConfig/elements/border/primary/static","properties":{"value":{"id":"#tokensConfig/elements/border/primary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"hover":{"id":"#tokensConfig/elements/border/primary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/primary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"secondary":{"id":"#tokensConfig/elements/border/secondary","properties":{"static":{"id":"#tokensConfig/elements/border/secondary/static","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"hover":{"id":"#tokensConfig/elements/border/secondary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/initial","default":""},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/dark","default":""}},"type":"object","default":{"initial":"","dark":""}}},"type":"object","default":{"value":{"initial":"","dark":""}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"type":"object","default":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"surface":{"title":"Surfaces used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon fluent:surface-hub-20-filled"],"id":"#tokensConfig/elements/surface","properties":{"background":{"id":"#tokensConfig/elements/surface/background","properties":{"base":{"id":"#tokensConfig/elements/surface/background/base","properties":{"value":{"id":"#tokensConfig/elements/surface/background/base/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"type":"object","default":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"type":"object","default":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"state":{"title":"Color states used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon mdi:palette-advanced"],"id":"#tokensConfig/elements/state","properties":{"primary":{"id":"#tokensConfig/elements/state/primary","properties":{"color":{"id":"#tokensConfig/elements/state/primary/color","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/initial","default":"{color.primary.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/dark","default":"{color.primary.400}"}},"type":"object","default":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/initial","default":"{color.primary.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/dark","default":"{color.primary.200}"}},"type":"object","default":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"type":"object","default":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/primary/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial","default":"{color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark","default":"{color.primary.900}"}},"type":"object","default":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/primary/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/initial","default":"{color.primary.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/dark","default":"{color.primary.700}"}},"type":"object","default":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}},"type":"object","default":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"info":{"id":"#tokensConfig/elements/state/info","properties":{"color":{"id":"#tokensConfig/elements/state/info/color","properties":{"primary":{"id":"#tokensConfig/elements/state/info/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/initial","default":"{color.blue.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/dark","default":"{color.blue.400}"}},"type":"object","default":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"type":"object","default":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/initial","default":"{color.blue.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/dark","default":"{color.blue.200}"}},"type":"object","default":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"type":"object","default":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/info/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/initial","default":"{color.blue.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/dark","default":"{color.blue.900}"}},"type":"object","default":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"type":"object","default":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/info/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/initial","default":"{color.blue.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/dark","default":"{color.blue.700}"}},"type":"object","default":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}},"type":"object","default":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"success":{"id":"#tokensConfig/elements/state/success","properties":{"color":{"id":"#tokensConfig/elements/state/success/color","properties":{"primary":{"id":"#tokensConfig/elements/state/success/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/initial","default":"{color.green.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/dark","default":"{color.green.400}"}},"type":"object","default":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"type":"object","default":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/initial","default":"{color.green.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/dark","default":"{color.green.200}"}},"type":"object","default":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"type":"object","default":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/success/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/initial","default":"{color.green.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/dark","default":"{color.green.900}"}},"type":"object","default":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"type":"object","default":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/success/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/initial","default":"{color.green.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/dark","default":"{color.green.700}"}},"type":"object","default":{"initial":"{color.green.200}","dark":"{color.green.700}"}}},"type":"object","default":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"warning":{"id":"#tokensConfig/elements/state/warning","properties":{"color":{"id":"#tokensConfig/elements/state/warning/color","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/initial","default":"{color.yellow.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/dark","default":"{color.yellow.400}"}},"type":"object","default":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/initial","default":"{color.yellow.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/dark","default":"{color.yellow.200}"}},"type":"object","default":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/warning/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial","default":"{color.yellow.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark","default":"{color.yellow.900}"}},"type":"object","default":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/warning/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/initial","default":"{color.yellow.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/dark","default":"{color.yellow.700}"}},"type":"object","default":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"danger":{"id":"#tokensConfig/elements/state/danger","properties":{"color":{"id":"#tokensConfig/elements/state/danger/color","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/initial","default":"{color.red.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/dark","default":"{color.red.300}"}},"type":"object","default":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"type":"object","default":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/initial","default":"{color.red.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/dark","default":"{color.red.200}"}},"type":"object","default":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"type":"object","default":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/danger/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial","default":"{color.red.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark","default":"{color.red.900}"}},"type":"object","default":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"type":"object","default":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/danger/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/initial","default":"{color.red.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/dark","default":"{color.red.700}"}},"type":"object","default":{"initial":"{color.red.200}","dark":"{color.red.700}"}}},"type":"object","default":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"type":"object","default":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"type":"object","default":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"typography":{"title":"All the configurable tokens for your Typography.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:article"],"id":"#tokensConfig/typography","properties":{"verticalMargin":{"title":"Vertical spacings between paragraphs.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:line-height-line"],"id":"#tokensConfig/typography/verticalMargin","properties":{"sm":{"id":"#tokensConfig/typography/verticalMargin/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/sm/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"base":{"id":"#tokensConfig/typography/verticalMargin/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/base/value","default":"32px"}},"type":"object","default":{"value":"32px"}}},"type":"object","default":{"sm":{"value":"16px"},"base":{"value":"32px"}}},"letterSpacing":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:letter-spacing-line"],"id":"#tokensConfig/typography/letterSpacing","properties":{"tight":{"id":"#tokensConfig/typography/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"wide":{"id":"#tokensConfig/typography/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}}},"type":"object","default":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}}},"fontSize":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:font-size-fill"],"id":"#tokensConfig/typography/fontSize","properties":{"xs":{"id":"#tokensConfig/typography/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xs/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"sm":{"id":"#tokensConfig/typography/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/sm/value","default":"14px"}},"type":"object","default":{"value":"14px"}},"base":{"id":"#tokensConfig/typography/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/base/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"lg":{"id":"#tokensConfig/typography/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/lg/value","default":"18px"}},"type":"object","default":{"value":"18px"}},"xl":{"id":"#tokensConfig/typography/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xl/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"2xl":{"id":"#tokensConfig/typography/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/2xl/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"3xl":{"id":"#tokensConfig/typography/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/3xl/value","default":"30px"}},"type":"object","default":{"value":"30px"}},"4xl":{"id":"#tokensConfig/typography/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/4xl/value","default":"36px"}},"type":"object","default":{"value":"36px"}},"5xl":{"id":"#tokensConfig/typography/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/5xl/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"6xl":{"id":"#tokensConfig/typography/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/6xl/value","default":"60px"}},"type":"object","default":{"value":"60px"}},"7xl":{"id":"#tokensConfig/typography/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/7xl/value","default":"72px"}},"type":"object","default":{"value":"72px"}},"8xl":{"id":"#tokensConfig/typography/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/8xl/value","default":"96px"}},"type":"object","default":{"value":"96px"}},"9xl":{"id":"#tokensConfig/typography/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/9xl/value","default":"128px"}},"type":"object","default":{"value":"128px"}}},"type":"object","default":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}}},"fontWeight":{"title":"Font weights used in typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:bold-fill"],"id":"#tokensConfig/typography/fontWeight","properties":{"thin":{"id":"#tokensConfig/typography/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/typography/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/typography/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/typography/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/typography/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/typography/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/typography/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/typography/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/typography/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"lead":{"title":"Line heights used in your typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon material-symbols:height-rounded"],"id":"#tokensConfig/typography/lead","properties":{"none":{"id":"#tokensConfig/typography/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/typography/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/typography/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/typography/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/typography/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/typography/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your typography fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/typography/font","properties":{"display":{"id":"#tokensConfig/typography/font/display","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/display/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"body":{"id":"#tokensConfig/typography/font/body","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/body/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"code":{"id":"#tokensConfig/typography/font/code","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/code/value","default":"{font.mono}"}},"type":"object","default":{"value":"{font.mono}"}}},"type":"object","default":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}}},"color":{"title":"Your typography color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/typography/color","properties":{"primary":{"id":"#tokensConfig/typography/color/primary","properties":{"50":{"id":"#tokensConfig/typography/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/50/value","default":"{color.primary.50}"}},"type":"object","default":{"value":"{color.primary.50}"}},"100":{"id":"#tokensConfig/typography/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/100/value","default":"{color.primary.100}"}},"type":"object","default":{"value":"{color.primary.100}"}},"200":{"id":"#tokensConfig/typography/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/200/value","default":"{color.primary.200}"}},"type":"object","default":{"value":"{color.primary.200}"}},"300":{"id":"#tokensConfig/typography/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/300/value","default":"{color.primary.300}"}},"type":"object","default":{"value":"{color.primary.300}"}},"400":{"id":"#tokensConfig/typography/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/400/value","default":"{color.primary.400}"}},"type":"object","default":{"value":"{color.primary.400}"}},"500":{"id":"#tokensConfig/typography/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/500/value","default":"{color.primary.500}"}},"type":"object","default":{"value":"{color.primary.500}"}},"600":{"id":"#tokensConfig/typography/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/600/value","default":"{color.primary.600}"}},"type":"object","default":{"value":"{color.primary.600}"}},"700":{"id":"#tokensConfig/typography/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/700/value","default":"{color.primary.700}"}},"type":"object","default":{"value":"{color.primary.700}"}},"800":{"id":"#tokensConfig/typography/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/800/value","default":"{color.primary.800}"}},"type":"object","default":{"value":"{color.primary.800}"}},"900":{"id":"#tokensConfig/typography/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/900/value","default":"{color.primary.900}"}},"type":"object","default":{"value":"{color.primary.900}"}}},"type":"object","default":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/typography/color/secondary","properties":{"50":{"id":"#tokensConfig/typography/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/typography/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/typography/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/typography/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/typography/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/typography/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/typography/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/typography/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/typography/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/typography/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"type":"object","default":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"type":"object","default":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"prose":{"title":"All the configurable tokens for your Prose components.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon lucide:component"],"id":"#tokensConfig/prose","properties":{"p":{"id":"#tokensConfig/prose/p","properties":{"fontSize":{"id":"#tokensConfig/prose/p/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/fontSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/prose/p/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"margin":{"id":"#tokensConfig/prose/p/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"br":{"id":"#tokensConfig/prose/p/br","properties":{"margin":{"id":"#tokensConfig/prose/p/br/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/br/margin/value","default":"{typography.verticalMargin.base} 0 0 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"h1":{"id":"#tokensConfig/prose/h1","properties":{"margin":{"id":"#tokensConfig/prose/h1/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/margin/value","default":"0 0 2rem"}},"type":"object","default":{"value":"0 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h1/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontSize/value","default":"{typography.fontSize.5xl}"}},"type":"object","default":{"value":"{typography.fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h1/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h1/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontWeight/value","default":"{typography.fontWeight.bold}"}},"type":"object","default":{"value":"{typography.fontWeight.bold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h1/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h1/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/iconSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}}},"type":"object","default":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}}},"h2":{"id":"#tokensConfig/prose/h2","properties":{"margin":{"id":"#tokensConfig/prose/h2/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h2/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontSize/value","default":"{typography.fontSize.4xl}"}},"type":"object","default":{"value":"{typography.fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h2/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h2/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h2/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h2/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/iconSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}}},"h3":{"id":"#tokensConfig/prose/h3","properties":{"margin":{"id":"#tokensConfig/prose/h3/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h3/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h3/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h3/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h3/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h3/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/iconSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}}},"h4":{"id":"#tokensConfig/prose/h4","properties":{"margin":{"id":"#tokensConfig/prose/h4/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h4/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h4/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h4/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h4/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h4/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h5":{"id":"#tokensConfig/prose/h5","properties":{"margin":{"id":"#tokensConfig/prose/h5/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h5/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h5/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h5/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h5/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h6":{"id":"#tokensConfig/prose/h6","properties":{"margin":{"id":"#tokensConfig/prose/h6/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h6/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/prose/h6/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"fontWeight":{"id":"#tokensConfig/prose/h6/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h6/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/iconSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}}},"strong":{"id":"#tokensConfig/prose/strong","properties":{"fontWeight":{"id":"#tokensConfig/prose/strong/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/strong/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"img":{"id":"#tokensConfig/prose/img","properties":{"margin":{"id":"#tokensConfig/prose/img/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/img/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"}}},"a":{"id":"#tokensConfig/prose/a","properties":{"textDecoration":{"id":"#tokensConfig/prose/a/textDecoration","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/textDecoration/value","default":"none"}},"type":"object","default":{"value":"none"}},"color":{"id":"#tokensConfig/prose/a/color","properties":{"static":{"id":"#tokensConfig/prose/a/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/initial","default":"inherit"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/dark","default":"inherit"}},"type":"object","default":{"initial":"inherit","dark":"inherit"}}},"type":"object","default":{"value":{"initial":"inherit","dark":"inherit"}}},"hover":{"id":"#tokensConfig/prose/a/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/dark","default":"{typography.color.primary.400}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"type":"object","default":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"border":{"id":"#tokensConfig/prose/a/border","properties":{"width":{"id":"#tokensConfig/prose/a/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/a/border/style","properties":{"static":{"id":"#tokensConfig/prose/a/border/style/static","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/static/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"hover":{"id":"#tokensConfig/prose/a/border/style/hover","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/hover/value","default":"solid"}},"type":"object","default":{"value":"solid"}}},"type":"object","default":{"static":{"value":"dashed"},"hover":{"value":"solid"}}},"color":{"id":"#tokensConfig/prose/a/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"distance":{"id":"#tokensConfig/prose/a/border/distance","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/distance/value","default":"2px"}},"type":"object","default":{"value":"2px"}}},"type":"object","default":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}}},"fontWeight":{"id":"#tokensConfig/prose/a/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/fontWeight/value","default":"{typography.fontWeight.medium}"}},"type":"object","default":{"value":"{typography.fontWeight.medium}"}},"hasCode":{"id":"#tokensConfig/prose/a/hasCode","properties":{"borderBottom":{"id":"#tokensConfig/prose/a/hasCode/borderBottom","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/hasCode/borderBottom/value","default":"none"}},"type":"object","default":{"value":"none"}}},"type":"object","default":{"borderBottom":{"value":"none"}}},"code":{"id":"#tokensConfig/prose/a/code","properties":{"border":{"id":"#tokensConfig/prose/a/code/border","properties":{"width":{"id":"#tokensConfig/prose/a/code/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/width/value","default":"{prose.a.border.width}"}},"type":"object","default":{"value":"{prose.a.border.width}"}},"style":{"id":"#tokensConfig/prose/a/code/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/style/value","default":"{prose.a.border.style.static}"}},"type":"object","default":{"value":"{prose.a.border.style.static}"}},"color":{"id":"#tokensConfig/prose/a/code/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"hover":{"id":"#tokensConfig/prose/a/code/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/dark","default":"{typography.color.primary.600}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"type":"object","default":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"type":"object","default":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"color":{"id":"#tokensConfig/prose/a/code/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/code/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"background":{"id":"#tokensConfig/prose/a/code/background","properties":{"static":{"id":"#tokensConfig/prose/a/code/background/static","type":"any","default":{}},"hover":{"id":"#tokensConfig/prose/a/code/background/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/background/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/initial","default":"{typography.color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/dark","default":"{typography.color.primary.900}"}},"type":"object","default":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}},"type":"object","default":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"type":"object","default":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"type":"object","default":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"blockquote":{"id":"#tokensConfig/prose/blockquote","properties":{"margin":{"id":"#tokensConfig/prose/blockquote/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/blockquote/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/padding/value","default":"0 0 0 24px"}},"type":"object","default":{"value":"0 0 0 24px"}},"quotes":{"id":"#tokensConfig/prose/blockquote/quotes","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/quotes/value","default":"'201C' '201D' '2018' '2019'"}},"type":"object","default":{"value":"'201C' '201D' '2018' '2019'"}},"color":{"id":"#tokensConfig/prose/blockquote/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"border":{"id":"#tokensConfig/prose/blockquote/border","properties":{"width":{"id":"#tokensConfig/prose/blockquote/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/width/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"style":{"id":"#tokensConfig/prose/blockquote/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/blockquote/border/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"ul":{"id":"#tokensConfig/prose/ul","properties":{"listStyleType":{"id":"#tokensConfig/prose/ul/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/listStyleType/value","default":"disc"}},"type":"object","default":{"value":"disc"}},"margin":{"id":"#tokensConfig/prose/ul/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ul/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ul/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ul/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ul/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"ol":{"id":"#tokensConfig/prose/ol","properties":{"listStyleType":{"id":"#tokensConfig/prose/ol/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/listStyleType/value","default":"decimal"}},"type":"object","default":{"value":"decimal"}},"margin":{"id":"#tokensConfig/prose/ol/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ol/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ol/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ol/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ol/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"li":{"id":"#tokensConfig/prose/li","properties":{"margin":{"id":"#tokensConfig/prose/li/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/margin/value","default":"{typography.verticalMargin.sm} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.sm} 0"}},"listStylePosition":{"id":"#tokensConfig/prose/li/listStylePosition","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/listStylePosition/value","default":"outside"}},"type":"object","default":{"value":"outside"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}}},"hr":{"id":"#tokensConfig/prose/hr","properties":{"margin":{"id":"#tokensConfig/prose/hr/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"style":{"id":"#tokensConfig/prose/hr/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"width":{"id":"#tokensConfig/prose/hr/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"color":{"id":"#tokensConfig/prose/hr/color","properties":{"value":{"id":"#tokensConfig/prose/hr/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/hr/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/hr/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"table":{"id":"#tokensConfig/prose/table","properties":{"margin":{"id":"#tokensConfig/prose/table/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"textAlign":{"id":"#tokensConfig/prose/table/textAlign","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/textAlign/value","default":"left"}},"type":"object","default":{"value":"left"}},"fontSize":{"id":"#tokensConfig/prose/table/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/prose/table/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/lineHeight/value","default":"inherit"}},"type":"object","default":{"value":"inherit"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}}},"thead":{"id":"#tokensConfig/prose/thead","properties":{"border":{"id":"#tokensConfig/prose/thead/border","properties":{"width":{"id":"#tokensConfig/prose/thead/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/width/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"style":{"id":"#tokensConfig/prose/thead/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/border/color","properties":{"value":{"id":"#tokensConfig/prose/thead/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"borderBottom":{"id":"#tokensConfig/prose/thead/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/thead/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/thead/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/thead/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"type":"object","default":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"th":{"id":"#tokensConfig/prose/th","properties":{"color":{"id":"#tokensConfig/prose/th/color","properties":{"value":{"id":"#tokensConfig/prose/th/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/th/color/value/initial","default":"{typography.color.secondary.600}"},"dark":{"type":"string","id":"#tokensConfig/prose/th/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"padding":{"id":"#tokensConfig/prose/th/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/padding/value","default":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"type":"object","default":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/th/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"tbody":{"id":"#tokensConfig/prose/tbody","properties":{"tr":{"id":"#tokensConfig/prose/tbody/tr","properties":{"borderBottom":{"id":"#tokensConfig/prose/tbody/tr/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/style/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"color":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"td":{"id":"#tokensConfig/prose/tbody/td","properties":{"padding":{"id":"#tokensConfig/prose/tbody/td/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/td/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"code":{"id":"#tokensConfig/prose/tbody/code","properties":{"inline":{"id":"#tokensConfig/prose/tbody/code/inline","properties":{"fontSize":{"id":"#tokensConfig/prose/tbody/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"type":"object","default":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"type":"object","default":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"code":{"id":"#tokensConfig/prose/code","properties":{"block":{"id":"#tokensConfig/prose/code/block","properties":{"fontSize":{"id":"#tokensConfig/prose/code/block/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"margin":{"id":"#tokensConfig/prose/code/block/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"border":{"id":"#tokensConfig/prose/code/block/border","properties":{"width":{"id":"#tokensConfig/prose/code/block/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/code/block/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/code/block/border/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"color":{"id":"#tokensConfig/prose/code/block/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/block/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/block/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"pre":{"id":"#tokensConfig/prose/code/block/pre","properties":{"padding":{"id":"#tokensConfig/prose/code/block/pre/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/pre/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"inline":{"id":"#tokensConfig/prose/code/inline","properties":{"borderRadius":{"id":"#tokensConfig/prose/code/inline/borderRadius","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/borderRadius/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"padding":{"id":"#tokensConfig/prose/code/inline/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/padding/value","default":"0.25rem 0.375rem 0.25rem 0.375rem"}},"type":"object","default":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"}},"fontSize":{"id":"#tokensConfig/prose/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/code/inline/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontWeight/value","default":"{typography.fontWeight.normal}"}},"type":"object","default":{"value":"{typography.fontWeight.normal}"}},"color":{"id":"#tokensConfig/prose/code/inline/color","properties":{"value":{"id":"#tokensConfig/prose/code/inline/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/inline/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/inline/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}},"type":"object","default":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"type":"object","default":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"type":"object","default":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"radii":{"title":"Your website border radiuses.","tags":["@studioInput design-token","@studioInpuTokenType size","@studioIcon material-symbols:rounded-corner","@studioInputTokenType size"],"id":"#tokensConfig/radii","properties":{"sm":{"id":"#tokensConfig/radii/sm","properties":{"value":{"type":"string","id":"#tokensConfig/radii/sm/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"md":{"id":"#tokensConfig/radii/md","properties":{"value":{"type":"string","id":"#tokensConfig/radii/md/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"lg":{"id":"#tokensConfig/radii/lg","properties":{"value":{"type":"string","id":"#tokensConfig/radii/lg/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"none":{"id":"#tokensConfig/radii/none","properties":{"value":{"type":"string","id":"#tokensConfig/radii/none/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2xs":{"id":"#tokensConfig/radii/2xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xs/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"xs":{"id":"#tokensConfig/radii/xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xs/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"xl":{"id":"#tokensConfig/radii/xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xl/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"2xl":{"id":"#tokensConfig/radii/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/radii/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/3xl/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"full":{"id":"#tokensConfig/radii/full","properties":{"value":{"type":"string","id":"#tokensConfig/radii/full/value","default":"9999px"}},"type":"object","default":{"value":"9999px"}}},"type":"object","default":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}}},"fontSize":{"title":"Your website font sizes.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontSize","properties":{"xs":{"id":"#tokensConfig/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xs/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"sm":{"id":"#tokensConfig/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/sm/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}},"base":{"id":"#tokensConfig/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/base/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"lg":{"id":"#tokensConfig/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/lg/value","default":"1.125rem"}},"type":"object","default":{"value":"1.125rem"}},"xl":{"id":"#tokensConfig/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xl/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"2xl":{"id":"#tokensConfig/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/3xl/value","default":"1.875rem"}},"type":"object","default":{"value":"1.875rem"}},"4xl":{"id":"#tokensConfig/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/4xl/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"5xl":{"id":"#tokensConfig/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/5xl/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"6xl":{"id":"#tokensConfig/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/6xl/value","default":"3.75rem"}},"type":"object","default":{"value":"3.75rem"}},"7xl":{"id":"#tokensConfig/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/7xl/value","default":"4.5rem"}},"type":"object","default":{"value":"4.5rem"}},"8xl":{"id":"#tokensConfig/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/8xl/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"9xl":{"id":"#tokensConfig/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/9xl/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}}},"type":"object","default":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}}},"lead":{"title":"Your website line heights.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon icon-park-outline:auto-line-height"],"id":"#tokensConfig/lead","properties":{"1":{"id":"#tokensConfig/lead/1","properties":{"value":{"type":"string","id":"#tokensConfig/lead/1/value","default":".025rem"}},"type":"object","default":{"value":".025rem"}},"2":{"id":"#tokensConfig/lead/2","properties":{"value":{"type":"string","id":"#tokensConfig/lead/2/value","default":".5rem"}},"type":"object","default":{"value":".5rem"}},"3":{"id":"#tokensConfig/lead/3","properties":{"value":{"type":"string","id":"#tokensConfig/lead/3/value","default":".75rem"}},"type":"object","default":{"value":".75rem"}},"4":{"id":"#tokensConfig/lead/4","properties":{"value":{"type":"string","id":"#tokensConfig/lead/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/lead/5","properties":{"value":{"type":"string","id":"#tokensConfig/lead/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/lead/6","properties":{"value":{"type":"string","id":"#tokensConfig/lead/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/lead/7","properties":{"value":{"type":"string","id":"#tokensConfig/lead/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/lead/8","properties":{"value":{"type":"string","id":"#tokensConfig/lead/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/lead/9","properties":{"value":{"type":"string","id":"#tokensConfig/lead/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/lead/10","properties":{"value":{"type":"string","id":"#tokensConfig/lead/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"none":{"id":"#tokensConfig/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your website fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/font","properties":{"sans":{"id":"#tokensConfig/font/sans","properties":{"value":{"type":"string","id":"#tokensConfig/font/sans/value","default":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"type":"object","default":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"serif":{"id":"#tokensConfig/font/serif","properties":{"value":{"type":"string","id":"#tokensConfig/font/serif/value","default":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"type":"object","default":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"mono":{"id":"#tokensConfig/font/mono","properties":{"value":{"type":"string","id":"#tokensConfig/font/mono/value","default":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"type":"object","default":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"type":"object","default":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"docus":{"title":"All the configurable tokens from Docus.","tags":["@studioIcon material-symbols:docs"],"id":"#tokensConfig/docus","properties":{"header":{"id":"#tokensConfig/docus/header","properties":{"height":{"id":"#tokensConfig/docus/header/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/header/height/value","default":"64px"}},"type":"object","default":{"value":"64px"}}},"type":"object","default":{"height":{"value":"64px"}}},"footer":{"id":"#tokensConfig/docus/footer","properties":{"padding":{"id":"#tokensConfig/docus/footer/padding","properties":{"value":{"type":"string","id":"#tokensConfig/docus/footer/padding/value","default":"{space.4} 0"}},"type":"object","default":{"value":"{space.4} 0"}}},"type":"object","default":{"padding":{"value":"{space.4} 0"}}},"readableLine":{"id":"#tokensConfig/docus/readableLine","properties":{"value":{"type":"string","id":"#tokensConfig/docus/readableLine/value","default":"78ch"}},"type":"object","default":{"value":"78ch"}},"loadingBar":{"id":"#tokensConfig/docus/loadingBar","properties":{"height":{"id":"#tokensConfig/docus/loadingBar/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/height/value","default":"3px"}},"type":"object","default":{"value":"3px"}},"gradientColorStop1":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop1","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop1/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"gradientColorStop2":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop2","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop2/value","default":"#34cdfe"}},"type":"object","default":{"value":"#34cdfe"}},"gradientColorStop3":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop3","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop3/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}}},"type":"object","default":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"type":"object","default":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"media":{"title":"Your website media queries.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:screenshot-monitor-outline-rounded"],"id":"#tokensConfig/media","properties":{"xs":{"id":"#tokensConfig/media/xs","properties":{"value":{"type":"string","id":"#tokensConfig/media/xs/value","default":"(min-width: 475px)"}},"type":"object","default":{"value":"(min-width: 475px)"}},"sm":{"id":"#tokensConfig/media/sm","properties":{"value":{"type":"string","id":"#tokensConfig/media/sm/value","default":"(min-width: 640px)"}},"type":"object","default":{"value":"(min-width: 640px)"}},"md":{"id":"#tokensConfig/media/md","properties":{"value":{"type":"string","id":"#tokensConfig/media/md/value","default":"(min-width: 768px)"}},"type":"object","default":{"value":"(min-width: 768px)"}},"lg":{"id":"#tokensConfig/media/lg","properties":{"value":{"type":"string","id":"#tokensConfig/media/lg/value","default":"(min-width: 1024px)"}},"type":"object","default":{"value":"(min-width: 1024px)"}},"xl":{"id":"#tokensConfig/media/xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/xl/value","default":"(min-width: 1280px)"}},"type":"object","default":{"value":"(min-width: 1280px)"}},"2xl":{"id":"#tokensConfig/media/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/2xl/value","default":"(min-width: 1536px)"}},"type":"object","default":{"value":"(min-width: 1536px)"}},"rm":{"id":"#tokensConfig/media/rm","properties":{"value":{"type":"string","id":"#tokensConfig/media/rm/value","default":"(prefers-reduced-motion: reduce)"}},"type":"object","default":{"value":"(prefers-reduced-motion: reduce)"}},"landscape":{"id":"#tokensConfig/media/landscape","properties":{"value":{"type":"string","id":"#tokensConfig/media/landscape/value","default":"only screen and (orientation: landscape)"}},"type":"object","default":{"value":"only screen and (orientation: landscape)"}},"portrait":{"id":"#tokensConfig/media/portrait","properties":{"value":{"type":"string","id":"#tokensConfig/media/portrait/value","default":"only screen and (orientation: portrait)"}},"type":"object","default":{"value":"only screen and (orientation: portrait)"}}},"type":"object","default":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}}},"width":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/width","properties":{"screen":{"id":"#tokensConfig/width/screen","properties":{"value":{"type":"string","id":"#tokensConfig/width/screen/value","default":"100vw"}},"type":"object","default":{"value":"100vw"}}},"type":"object","default":{"screen":{"value":"100vw"}}},"height":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/height","properties":{"screen":{"id":"#tokensConfig/height/screen","properties":{"value":{"type":"string","id":"#tokensConfig/height/screen/value","default":"100vh"}},"type":"object","default":{"value":"100vh"}}},"type":"object","default":{"screen":{"value":"100vh"}}},"shadow":{"title":"Your website shadows.","tags":["@studioInput design-token","@studioInputTokenType shadow","@studioIcon mdi:box-shadow"],"id":"#tokensConfig/shadow","properties":{"xs":{"id":"#tokensConfig/shadow/xs","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xs/value","default":"0px 1px 2px 0px #000000"}},"type":"object","default":{"value":"0px 1px 2px 0px #000000"}},"sm":{"id":"#tokensConfig/shadow/sm","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/sm/value","default":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"type":"object","default":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"md":{"id":"#tokensConfig/shadow/md","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/md/value","default":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"type":"object","default":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"lg":{"id":"#tokensConfig/shadow/lg","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/lg/value","default":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"type":"object","default":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"xl":{"id":"#tokensConfig/shadow/xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xl/value","default":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"type":"object","default":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"2xl":{"id":"#tokensConfig/shadow/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/2xl/value","default":"0px 25px 50px -12px {color.gray.900}"}},"type":"object","default":{"value":"0px 25px 50px -12px {color.gray.900}"}},"none":{"id":"#tokensConfig/shadow/none","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/none/value","default":"0px 0px 0px 0px transparent"}},"type":"object","default":{"value":"0px 0px 0px 0px transparent"}}},"type":"object","default":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}}},"size":{"title":"Your website sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/size","properties":{"0":{"id":"#tokensConfig/size/0","properties":{"value":{"type":"string","id":"#tokensConfig/size/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2":{"id":"#tokensConfig/size/2","properties":{"value":{"type":"string","id":"#tokensConfig/size/2/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"4":{"id":"#tokensConfig/size/4","properties":{"value":{"type":"string","id":"#tokensConfig/size/4/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"6":{"id":"#tokensConfig/size/6","properties":{"value":{"type":"string","id":"#tokensConfig/size/6/value","default":"6px"}},"type":"object","default":{"value":"6px"}},"8":{"id":"#tokensConfig/size/8","properties":{"value":{"type":"string","id":"#tokensConfig/size/8/value","default":"8px"}},"type":"object","default":{"value":"8px"}},"12":{"id":"#tokensConfig/size/12","properties":{"value":{"type":"string","id":"#tokensConfig/size/12/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"16":{"id":"#tokensConfig/size/16","properties":{"value":{"type":"string","id":"#tokensConfig/size/16/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"20":{"id":"#tokensConfig/size/20","properties":{"value":{"type":"string","id":"#tokensConfig/size/20/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"24":{"id":"#tokensConfig/size/24","properties":{"value":{"type":"string","id":"#tokensConfig/size/24/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"32":{"id":"#tokensConfig/size/32","properties":{"value":{"type":"string","id":"#tokensConfig/size/32/value","default":"32px"}},"type":"object","default":{"value":"32px"}},"40":{"id":"#tokensConfig/size/40","properties":{"value":{"type":"string","id":"#tokensConfig/size/40/value","default":"40px"}},"type":"object","default":{"value":"40px"}},"48":{"id":"#tokensConfig/size/48","properties":{"value":{"type":"string","id":"#tokensConfig/size/48/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"56":{"id":"#tokensConfig/size/56","properties":{"value":{"type":"string","id":"#tokensConfig/size/56/value","default":"56px"}},"type":"object","default":{"value":"56px"}},"64":{"id":"#tokensConfig/size/64","properties":{"value":{"type":"string","id":"#tokensConfig/size/64/value","default":"64px"}},"type":"object","default":{"value":"64px"}},"80":{"id":"#tokensConfig/size/80","properties":{"value":{"type":"string","id":"#tokensConfig/size/80/value","default":"80px"}},"type":"object","default":{"value":"80px"}},"104":{"id":"#tokensConfig/size/104","properties":{"value":{"type":"string","id":"#tokensConfig/size/104/value","default":"104px"}},"type":"object","default":{"value":"104px"}},"200":{"id":"#tokensConfig/size/200","properties":{"value":{"type":"string","id":"#tokensConfig/size/200/value","default":"200px"}},"type":"object","default":{"value":"200px"}},"xs":{"id":"#tokensConfig/size/xs","properties":{"value":{"type":"string","id":"#tokensConfig/size/xs/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"sm":{"id":"#tokensConfig/size/sm","properties":{"value":{"type":"string","id":"#tokensConfig/size/sm/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"md":{"id":"#tokensConfig/size/md","properties":{"value":{"type":"string","id":"#tokensConfig/size/md/value","default":"28rem"}},"type":"object","default":{"value":"28rem"}},"lg":{"id":"#tokensConfig/size/lg","properties":{"value":{"type":"string","id":"#tokensConfig/size/lg/value","default":"32rem"}},"type":"object","default":{"value":"32rem"}},"xl":{"id":"#tokensConfig/size/xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/xl/value","default":"36rem"}},"type":"object","default":{"value":"36rem"}},"2xl":{"id":"#tokensConfig/size/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/2xl/value","default":"42rem"}},"type":"object","default":{"value":"42rem"}},"3xl":{"id":"#tokensConfig/size/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/3xl/value","default":"48rem"}},"type":"object","default":{"value":"48rem"}},"4xl":{"id":"#tokensConfig/size/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/4xl/value","default":"56rem"}},"type":"object","default":{"value":"56rem"}},"5xl":{"id":"#tokensConfig/size/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/5xl/value","default":"64rem"}},"type":"object","default":{"value":"64rem"}},"6xl":{"id":"#tokensConfig/size/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/6xl/value","default":"72rem"}},"type":"object","default":{"value":"72rem"}},"7xl":{"id":"#tokensConfig/size/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/7xl/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"full":{"id":"#tokensConfig/size/full","properties":{"value":{"type":"string","id":"#tokensConfig/size/full/value","default":"100%"}},"type":"object","default":{"value":"100%"}}},"type":"object","default":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}}},"space":{"title":"Your website spacings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/space","properties":{"0":{"id":"#tokensConfig/space/0","properties":{"value":{"type":"string","id":"#tokensConfig/space/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"1":{"id":"#tokensConfig/space/1","properties":{"value":{"type":"string","id":"#tokensConfig/space/1/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"2":{"id":"#tokensConfig/space/2","properties":{"value":{"type":"string","id":"#tokensConfig/space/2/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"3":{"id":"#tokensConfig/space/3","properties":{"value":{"type":"string","id":"#tokensConfig/space/3/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"4":{"id":"#tokensConfig/space/4","properties":{"value":{"type":"string","id":"#tokensConfig/space/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/space/5","properties":{"value":{"type":"string","id":"#tokensConfig/space/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/space/6","properties":{"value":{"type":"string","id":"#tokensConfig/space/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/space/7","properties":{"value":{"type":"string","id":"#tokensConfig/space/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/space/8","properties":{"value":{"type":"string","id":"#tokensConfig/space/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/space/9","properties":{"value":{"type":"string","id":"#tokensConfig/space/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/space/10","properties":{"value":{"type":"string","id":"#tokensConfig/space/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"11":{"id":"#tokensConfig/space/11","properties":{"value":{"type":"string","id":"#tokensConfig/space/11/value","default":"2.75rem"}},"type":"object","default":{"value":"2.75rem"}},"12":{"id":"#tokensConfig/space/12","properties":{"value":{"type":"string","id":"#tokensConfig/space/12/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"14":{"id":"#tokensConfig/space/14","properties":{"value":{"type":"string","id":"#tokensConfig/space/14/value","default":"3.5rem"}},"type":"object","default":{"value":"3.5rem"}},"16":{"id":"#tokensConfig/space/16","properties":{"value":{"type":"string","id":"#tokensConfig/space/16/value","default":"4rem"}},"type":"object","default":{"value":"4rem"}},"20":{"id":"#tokensConfig/space/20","properties":{"value":{"type":"string","id":"#tokensConfig/space/20/value","default":"5rem"}},"type":"object","default":{"value":"5rem"}},"24":{"id":"#tokensConfig/space/24","properties":{"value":{"type":"string","id":"#tokensConfig/space/24/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"28":{"id":"#tokensConfig/space/28","properties":{"value":{"type":"string","id":"#tokensConfig/space/28/value","default":"7rem"}},"type":"object","default":{"value":"7rem"}},"32":{"id":"#tokensConfig/space/32","properties":{"value":{"type":"string","id":"#tokensConfig/space/32/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}},"36":{"id":"#tokensConfig/space/36","properties":{"value":{"type":"string","id":"#tokensConfig/space/36/value","default":"9rem"}},"type":"object","default":{"value":"9rem"}},"40":{"id":"#tokensConfig/space/40","properties":{"value":{"type":"string","id":"#tokensConfig/space/40/value","default":"10rem"}},"type":"object","default":{"value":"10rem"}},"44":{"id":"#tokensConfig/space/44","properties":{"value":{"type":"string","id":"#tokensConfig/space/44/value","default":"11rem"}},"type":"object","default":{"value":"11rem"}},"48":{"id":"#tokensConfig/space/48","properties":{"value":{"type":"string","id":"#tokensConfig/space/48/value","default":"12rem"}},"type":"object","default":{"value":"12rem"}},"52":{"id":"#tokensConfig/space/52","properties":{"value":{"type":"string","id":"#tokensConfig/space/52/value","default":"13rem"}},"type":"object","default":{"value":"13rem"}},"56":{"id":"#tokensConfig/space/56","properties":{"value":{"type":"string","id":"#tokensConfig/space/56/value","default":"14rem"}},"type":"object","default":{"value":"14rem"}},"60":{"id":"#tokensConfig/space/60","properties":{"value":{"type":"string","id":"#tokensConfig/space/60/value","default":"15rem"}},"type":"object","default":{"value":"15rem"}},"64":{"id":"#tokensConfig/space/64","properties":{"value":{"type":"string","id":"#tokensConfig/space/64/value","default":"16rem"}},"type":"object","default":{"value":"16rem"}},"72":{"id":"#tokensConfig/space/72","properties":{"value":{"type":"string","id":"#tokensConfig/space/72/value","default":"18rem"}},"type":"object","default":{"value":"18rem"}},"80":{"id":"#tokensConfig/space/80","properties":{"value":{"type":"string","id":"#tokensConfig/space/80/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"96":{"id":"#tokensConfig/space/96","properties":{"value":{"type":"string","id":"#tokensConfig/space/96/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"px":{"id":"#tokensConfig/space/px","properties":{"value":{"type":"string","id":"#tokensConfig/space/px/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"rem":{"id":"#tokensConfig/space/rem","properties":{"125":{"id":"#tokensConfig/space/rem/125","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/125/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"375":{"id":"#tokensConfig/space/rem/375","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/375/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"625":{"id":"#tokensConfig/space/rem/625","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/625/value","default":"0.625rem"}},"type":"object","default":{"value":"0.625rem"}},"875":{"id":"#tokensConfig/space/rem/875","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/875/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}}},"type":"object","default":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"type":"object","default":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"borderWidth":{"title":"Your website border widths.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/borderWidth","properties":{"noBorder":{"id":"#tokensConfig/borderWidth/noBorder","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/noBorder/value","default":"0"}},"type":"object","default":{"value":"0"}},"sm":{"id":"#tokensConfig/borderWidth/sm","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/sm/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"md":{"id":"#tokensConfig/borderWidth/md","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/md/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"lg":{"id":"#tokensConfig/borderWidth/lg","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/lg/value","default":"3px"}},"type":"object","default":{"value":"3px"}}},"type":"object","default":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}}},"opacity":{"title":"Your website opacities.","tags":["@studioInput design-token","@studioInputTokenType opacity","@studioIcon material-symbols:opacity"],"id":"#tokensConfig/opacity","properties":{"noOpacity":{"id":"#tokensConfig/opacity/noOpacity","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/noOpacity/value","default":"0"}},"type":"object","default":{"value":"0"}},"bright":{"id":"#tokensConfig/opacity/bright","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/bright/value","default":"0.1"}},"type":"object","default":{"value":"0.1"}},"light":{"id":"#tokensConfig/opacity/light","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/light/value","default":"0.15"}},"type":"object","default":{"value":"0.15"}},"soft":{"id":"#tokensConfig/opacity/soft","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/soft/value","default":"0.3"}},"type":"object","default":{"value":"0.3"}},"medium":{"id":"#tokensConfig/opacity/medium","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/medium/value","default":"0.5"}},"type":"object","default":{"value":"0.5"}},"high":{"id":"#tokensConfig/opacity/high","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/high/value","default":"0.8"}},"type":"object","default":{"value":"0.8"}},"total":{"id":"#tokensConfig/opacity/total","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/total/value","default":"1"}},"type":"object","default":{"value":"1"}}},"type":"object","default":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}}},"fontWeight":{"title":"Your website font weights.","tags":["@studioInput design-token","@studioInputTokenType font-weight","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontWeight","properties":{"thin":{"id":"#tokensConfig/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"letterSpacing":{"title":"Your website letter spacings.","tags":["@studioInput design-token","@studioInputTokenType letter-spacing","@studioIcon fluent:font-space-tracking-out-24-filled"],"id":"#tokensConfig/letterSpacing","properties":{"tighter":{"id":"#tokensConfig/letterSpacing/tighter","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tighter/value","default":"-0.05em"}},"type":"object","default":{"value":"-0.05em"}},"tight":{"id":"#tokensConfig/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"normal":{"id":"#tokensConfig/letterSpacing/normal","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/normal/value","default":"0em"}},"type":"object","default":{"value":"0em"}},"wide":{"id":"#tokensConfig/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}},"wider":{"id":"#tokensConfig/letterSpacing/wider","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wider/value","default":"0.05em"}},"type":"object","default":{"value":"0.05em"}},"widest":{"id":"#tokensConfig/letterSpacing/widest","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/widest/value","default":"0.1em"}},"type":"object","default":{"value":"0.1em"}}},"type":"object","default":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}}},"text":{"title":"Your website text scales.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:format-size-rounded"],"id":"#tokensConfig/text","properties":{"xs":{"id":"#tokensConfig/text/xs","properties":{"fontSize":{"id":"#tokensConfig/text/xs/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/fontSize/value","default":"{fontSize.xs}"}},"type":"object","default":{"value":"{fontSize.xs}"}},"lineHeight":{"id":"#tokensConfig/text/xs/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/lineHeight/value","default":"{lead.4}"}},"type":"object","default":{"value":"{lead.4}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}}},"sm":{"id":"#tokensConfig/text/sm","properties":{"fontSize":{"id":"#tokensConfig/text/sm/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/fontSize/value","default":"{fontSize.sm}"}},"type":"object","default":{"value":"{fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/text/sm/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/lineHeight/value","default":"{lead.5}"}},"type":"object","default":{"value":"{lead.5}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}}},"base":{"id":"#tokensConfig/text/base","properties":{"fontSize":{"id":"#tokensConfig/text/base/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/fontSize/value","default":"{fontSize.base}"}},"type":"object","default":{"value":"{fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/text/base/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/lineHeight/value","default":"{lead.6}"}},"type":"object","default":{"value":"{lead.6}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}}},"lg":{"id":"#tokensConfig/text/lg","properties":{"fontSize":{"id":"#tokensConfig/text/lg/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/fontSize/value","default":"{fontSize.lg}"}},"type":"object","default":{"value":"{fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/text/lg/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}}},"xl":{"id":"#tokensConfig/text/xl","properties":{"fontSize":{"id":"#tokensConfig/text/xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/fontSize/value","default":"{fontSize.xl}"}},"type":"object","default":{"value":"{fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/text/xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}}},"2xl":{"id":"#tokensConfig/text/2xl","properties":{"fontSize":{"id":"#tokensConfig/text/2xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/fontSize/value","default":"{fontSize.2xl}"}},"type":"object","default":{"value":"{fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/text/2xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/lineHeight/value","default":"{lead.8}"}},"type":"object","default":{"value":"{lead.8}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}}},"3xl":{"id":"#tokensConfig/text/3xl","properties":{"fontSize":{"id":"#tokensConfig/text/3xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/fontSize/value","default":"{fontSize.3xl}"}},"type":"object","default":{"value":"{fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/text/3xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/lineHeight/value","default":"{lead.9}"}},"type":"object","default":{"value":"{lead.9}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}}},"4xl":{"id":"#tokensConfig/text/4xl","properties":{"fontSize":{"id":"#tokensConfig/text/4xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/fontSize/value","default":"{fontSize.4xl}"}},"type":"object","default":{"value":"{fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/text/4xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/lineHeight/value","default":"{lead.10}"}},"type":"object","default":{"value":"{lead.10}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}}},"5xl":{"id":"#tokensConfig/text/5xl","properties":{"fontSize":{"id":"#tokensConfig/text/5xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/fontSize/value","default":"{fontSize.5xl}"}},"type":"object","default":{"value":"{fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/text/5xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}}},"6xl":{"id":"#tokensConfig/text/6xl","properties":{"fontSize":{"id":"#tokensConfig/text/6xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/fontSize/value","default":"{fontSize.6xl}"}},"type":"object","default":{"value":"{fontSize.6xl}"}},"lineHeight":{"id":"#tokensConfig/text/6xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}},"type":"object","default":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"type":"object","default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"tokensConfig":{"color":{"primary":{"50":{"value":"#fff2cc","variable":"var(--color-primary-50)","original":"#fff2cc"},"100":{"value":"#ffe599","variable":"var(--color-primary-100)","original":"#ffe599"},"200":{"value":"#ffd966","variable":"var(--color-primary-200)","original":"#ffd966"},"300":{"value":"#f1c232","variable":"var(--color-primary-300)","original":"#f1c232"},"400":{"value":"#f1c232","variable":"var(--color-primary-400)","original":"#f1c232"},"500":{"value":"#f1c232","variable":"var(--color-primary-500)","original":"#f1c232"},"600":{"value":"#f1c232","variable":"var(--color-primary-600)","original":"#f1c232"},"700":{"value":"#f1c232","variable":"var(--color-primary-700)","original":"#f1c232"},"800":{"value":"#f1c232","variable":"var(--color-primary-800)","original":"#f1c232"},"900":{"value":"#f1c232","variable":"var(--color-primary-900)","original":"#f1c232"}},"white":{"value":"#ffffff","variable":"var(--color-white)","original":"#ffffff"},"black":{"value":"#0c0c0d","variable":"var(--color-black)","original":"#0c0c0d"},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--color-secondary-900)","original":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa","variable":"var(--color-gray-50)","original":"#fafafa"},"100":{"value":"#f4f4f5","variable":"var(--color-gray-100)","original":"#f4f4f5"},"200":{"value":"#e4e4e7","variable":"var(--color-gray-200)","original":"#e4e4e7"},"300":{"value":"#D4d4d8","variable":"var(--color-gray-300)","original":"#D4d4d8"},"400":{"value":"#a1a1aa","variable":"var(--color-gray-400)","original":"#a1a1aa"},"500":{"value":"#71717A","variable":"var(--color-gray-500)","original":"#71717A"},"600":{"value":"#52525B","variable":"var(--color-gray-600)","original":"#52525B"},"700":{"value":"#3f3f46","variable":"var(--color-gray-700)","original":"#3f3f46"},"800":{"value":"#27272A","variable":"var(--color-gray-800)","original":"#27272A"},"900":{"value":"#18181B","variable":"var(--color-gray-900)","original":"#18181B"}},"green":{"50":{"value":"#d6ffee","variable":"var(--color-green-50)","original":"#d6ffee"},"100":{"value":"#acffdd","variable":"var(--color-green-100)","original":"#acffdd"},"200":{"value":"#83ffcc","variable":"var(--color-green-200)","original":"#83ffcc"},"300":{"value":"#30ffaa","variable":"var(--color-green-300)","original":"#30ffaa"},"400":{"value":"#00dc82","variable":"var(--color-green-400)","original":"#00dc82"},"500":{"value":"#00bd6f","variable":"var(--color-green-500)","original":"#00bd6f"},"600":{"value":"#009d5d","variable":"var(--color-green-600)","original":"#009d5d"},"700":{"value":"#007e4a","variable":"var(--color-green-700)","original":"#007e4a"},"800":{"value":"#005e38","variable":"var(--color-green-800)","original":"#005e38"},"900":{"value":"#003f25","variable":"var(--color-green-900)","original":"#003f25"}},"yellow":{"50":{"value":"#fdf6db","variable":"var(--color-yellow-50)","original":"#fdf6db"},"100":{"value":"#fcedb7","variable":"var(--color-yellow-100)","original":"#fcedb7"},"200":{"value":"#fae393","variable":"var(--color-yellow-200)","original":"#fae393"},"300":{"value":"#f8da70","variable":"var(--color-yellow-300)","original":"#f8da70"},"400":{"value":"#f7d14c","variable":"var(--color-yellow-400)","original":"#f7d14c"},"500":{"value":"#f5c828","variable":"var(--color-yellow-500)","original":"#f5c828"},"600":{"value":"#daac0a","variable":"var(--color-yellow-600)","original":"#daac0a"},"700":{"value":"#a38108","variable":"var(--color-yellow-700)","original":"#a38108"},"800":{"value":"#6d5605","variable":"var(--color-yellow-800)","original":"#6d5605"},"900":{"value":"#362b03","variable":"var(--color-yellow-900)","original":"#362b03"}},"orange":{"50":{"value":"#ffe9d9","variable":"var(--color-orange-50)","original":"#ffe9d9"},"100":{"value":"#ffd3b3","variable":"var(--color-orange-100)","original":"#ffd3b3"},"200":{"value":"#ffbd8d","variable":"var(--color-orange-200)","original":"#ffbd8d"},"300":{"value":"#ffa666","variable":"var(--color-orange-300)","original":"#ffa666"},"400":{"value":"#ff9040","variable":"var(--color-orange-400)","original":"#ff9040"},"500":{"value":"#ff7a1a","variable":"var(--color-orange-500)","original":"#ff7a1a"},"600":{"value":"#e15e00","variable":"var(--color-orange-600)","original":"#e15e00"},"700":{"value":"#a94700","variable":"var(--color-orange-700)","original":"#a94700"},"800":{"value":"#702f00","variable":"var(--color-orange-800)","original":"#702f00"},"900":{"value":"#381800","variable":"var(--color-orange-900)","original":"#381800"}},"red":{"50":{"value":"#ffdbd9","variable":"var(--color-red-50)","original":"#ffdbd9"},"100":{"value":"#ffb7b3","variable":"var(--color-red-100)","original":"#ffb7b3"},"200":{"value":"#ff948d","variable":"var(--color-red-200)","original":"#ff948d"},"300":{"value":"#ff7066","variable":"var(--color-red-300)","original":"#ff7066"},"400":{"value":"#ff4c40","variable":"var(--color-red-400)","original":"#ff4c40"},"500":{"value":"#ff281a","variable":"var(--color-red-500)","original":"#ff281a"},"600":{"value":"#e10e00","variable":"var(--color-red-600)","original":"#e10e00"},"700":{"value":"#a90a00","variable":"var(--color-red-700)","original":"#a90a00"},"800":{"value":"#700700","variable":"var(--color-red-800)","original":"#700700"},"900":{"value":"#380300","variable":"var(--color-red-900)","original":"#380300"}},"pear":{"50":{"value":"#f7f8dc","variable":"var(--color-pear-50)","original":"#f7f8dc"},"100":{"value":"#eff0ba","variable":"var(--color-pear-100)","original":"#eff0ba"},"200":{"value":"#e8e997","variable":"var(--color-pear-200)","original":"#e8e997"},"300":{"value":"#e0e274","variable":"var(--color-pear-300)","original":"#e0e274"},"400":{"value":"#d8da52","variable":"var(--color-pear-400)","original":"#d8da52"},"500":{"value":"#d0d32f","variable":"var(--color-pear-500)","original":"#d0d32f"},"600":{"value":"#a8aa24","variable":"var(--color-pear-600)","original":"#a8aa24"},"700":{"value":"#7e801b","variable":"var(--color-pear-700)","original":"#7e801b"},"800":{"value":"#545512","variable":"var(--color-pear-800)","original":"#545512"},"900":{"value":"#2a2b09","variable":"var(--color-pear-900)","original":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8","variable":"var(--color-teal-50)","original":"#d7faf8"},"100":{"value":"#aff4f0","variable":"var(--color-teal-100)","original":"#aff4f0"},"200":{"value":"#87efe9","variable":"var(--color-teal-200)","original":"#87efe9"},"300":{"value":"#5fe9e1","variable":"var(--color-teal-300)","original":"#5fe9e1"},"400":{"value":"#36e4da","variable":"var(--color-teal-400)","original":"#36e4da"},"500":{"value":"#1cd1c6","variable":"var(--color-teal-500)","original":"#1cd1c6"},"600":{"value":"#16a79e","variable":"var(--color-teal-600)","original":"#16a79e"},"700":{"value":"#117d77","variable":"var(--color-teal-700)","original":"#117d77"},"800":{"value":"#0b544f","variable":"var(--color-teal-800)","original":"#0b544f"},"900":{"value":"#062a28","variable":"var(--color-teal-900)","original":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff","variable":"var(--color-lightblue-50)","original":"#d9f8ff"},"100":{"value":"#b3f1ff","variable":"var(--color-lightblue-100)","original":"#b3f1ff"},"200":{"value":"#8deaff","variable":"var(--color-lightblue-200)","original":"#8deaff"},"300":{"value":"#66e4ff","variable":"var(--color-lightblue-300)","original":"#66e4ff"},"400":{"value":"#40ddff","variable":"var(--color-lightblue-400)","original":"#40ddff"},"500":{"value":"#1ad6ff","variable":"var(--color-lightblue-500)","original":"#1ad6ff"},"600":{"value":"#00b9e1","variable":"var(--color-lightblue-600)","original":"#00b9e1"},"700":{"value":"#008aa9","variable":"var(--color-lightblue-700)","original":"#008aa9"},"800":{"value":"#005c70","variable":"var(--color-lightblue-800)","original":"#005c70"},"900":{"value":"#002e38","variable":"var(--color-lightblue-900)","original":"#002e38"}},"blue":{"50":{"value":"#d9f1ff","variable":"var(--color-blue-50)","original":"#d9f1ff"},"100":{"value":"#b3e4ff","variable":"var(--color-blue-100)","original":"#b3e4ff"},"200":{"value":"#8dd6ff","variable":"var(--color-blue-200)","original":"#8dd6ff"},"300":{"value":"#66c8ff","variable":"var(--color-blue-300)","original":"#66c8ff"},"400":{"value":"#40bbff","variable":"var(--color-blue-400)","original":"#40bbff"},"500":{"value":"#1aadff","variable":"var(--color-blue-500)","original":"#1aadff"},"600":{"value":"#0090e1","variable":"var(--color-blue-600)","original":"#0090e1"},"700":{"value":"#006ca9","variable":"var(--color-blue-700)","original":"#006ca9"},"800":{"value":"#004870","variable":"var(--color-blue-800)","original":"#004870"},"900":{"value":"#002438","variable":"var(--color-blue-900)","original":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff","variable":"var(--color-indigoblue-50)","original":"#d9e5ff"},"100":{"value":"#b3cbff","variable":"var(--color-indigoblue-100)","original":"#b3cbff"},"200":{"value":"#8db0ff","variable":"var(--color-indigoblue-200)","original":"#8db0ff"},"300":{"value":"#6696ff","variable":"var(--color-indigoblue-300)","original":"#6696ff"},"400":{"value":"#407cff","variable":"var(--color-indigoblue-400)","original":"#407cff"},"500":{"value":"#1a62ff","variable":"var(--color-indigoblue-500)","original":"#1a62ff"},"600":{"value":"#0047e1","variable":"var(--color-indigoblue-600)","original":"#0047e1"},"700":{"value":"#0035a9","variable":"var(--color-indigoblue-700)","original":"#0035a9"},"800":{"value":"#002370","variable":"var(--color-indigoblue-800)","original":"#002370"},"900":{"value":"#001238","variable":"var(--color-indigoblue-900)","original":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb","variable":"var(--color-royalblue-50)","original":"#dfdbfb"},"100":{"value":"#c0b7f7","variable":"var(--color-royalblue-100)","original":"#c0b7f7"},"200":{"value":"#a093f3","variable":"var(--color-royalblue-200)","original":"#a093f3"},"300":{"value":"#806ff0","variable":"var(--color-royalblue-300)","original":"#806ff0"},"400":{"value":"#614bec","variable":"var(--color-royalblue-400)","original":"#614bec"},"500":{"value":"#4127e8","variable":"var(--color-royalblue-500)","original":"#4127e8"},"600":{"value":"#2c15c4","variable":"var(--color-royalblue-600)","original":"#2c15c4"},"700":{"value":"#211093","variable":"var(--color-royalblue-700)","original":"#211093"},"800":{"value":"#160a62","variable":"var(--color-royalblue-800)","original":"#160a62"},"900":{"value":"#0b0531","variable":"var(--color-royalblue-900)","original":"#0b0531"}},"purple":{"50":{"value":"#ead9ff","variable":"var(--color-purple-50)","original":"#ead9ff"},"100":{"value":"#d5b3ff","variable":"var(--color-purple-100)","original":"#d5b3ff"},"200":{"value":"#c08dff","variable":"var(--color-purple-200)","original":"#c08dff"},"300":{"value":"#ab66ff","variable":"var(--color-purple-300)","original":"#ab66ff"},"400":{"value":"#9640ff","variable":"var(--color-purple-400)","original":"#9640ff"},"500":{"value":"#811aff","variable":"var(--color-purple-500)","original":"#811aff"},"600":{"value":"#6500e1","variable":"var(--color-purple-600)","original":"#6500e1"},"700":{"value":"#4c00a9","variable":"var(--color-purple-700)","original":"#4c00a9"},"800":{"value":"#330070","variable":"var(--color-purple-800)","original":"#330070"},"900":{"value":"#190038","variable":"var(--color-purple-900)","original":"#190038"}},"pink":{"50":{"value":"#ffd9f2","variable":"var(--color-pink-50)","original":"#ffd9f2"},"100":{"value":"#ffb3e5","variable":"var(--color-pink-100)","original":"#ffb3e5"},"200":{"value":"#ff8dd8","variable":"var(--color-pink-200)","original":"#ff8dd8"},"300":{"value":"#ff66cc","variable":"var(--color-pink-300)","original":"#ff66cc"},"400":{"value":"#ff40bf","variable":"var(--color-pink-400)","original":"#ff40bf"},"500":{"value":"#ff1ab2","variable":"var(--color-pink-500)","original":"#ff1ab2"},"600":{"value":"#e10095","variable":"var(--color-pink-600)","original":"#e10095"},"700":{"value":"#a90070","variable":"var(--color-pink-700)","original":"#a90070"},"800":{"value":"#70004b","variable":"var(--color-pink-800)","original":"#70004b"},"900":{"value":"#380025","variable":"var(--color-pink-900)","original":"#380025"}},"ruby":{"50":{"value":"#ffd9e4","variable":"var(--color-ruby-50)","original":"#ffd9e4"},"100":{"value":"#ffb3c9","variable":"var(--color-ruby-100)","original":"#ffb3c9"},"200":{"value":"#ff8dae","variable":"var(--color-ruby-200)","original":"#ff8dae"},"300":{"value":"#ff6694","variable":"var(--color-ruby-300)","original":"#ff6694"},"400":{"value":"#ff4079","variable":"var(--color-ruby-400)","original":"#ff4079"},"500":{"value":"#ff1a5e","variable":"var(--color-ruby-500)","original":"#ff1a5e"},"600":{"value":"#e10043","variable":"var(--color-ruby-600)","original":"#e10043"},"700":{"value":"#a90032","variable":"var(--color-ruby-700)","original":"#a90032"},"800":{"value":"#700021","variable":"var(--color-ruby-800)","original":"#700021"},"900":{"value":"#380011","variable":"var(--color-ruby-900)","original":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"var(--color-gray-900)","dark":"var(--color-gray-50)"},"variable":"var(--elements-text-primary-color-static)","original":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"var(--color-gray-500)","dark":"var(--color-gray-400)"},"variable":"var(--elements-text-secondary-color-static)","original":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"var(--color-gray-700)","dark":"var(--color-gray-200)"},"variable":"var(--elements-text-secondary-color-hover)","original":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem","variable":"var(--elements-container-maxWidth)","original":"80rem"},"padding":{"mobile":{"value":"var(--space-4)","variable":"var(--elements-container-padding-mobile)","original":"{space.4}"},"xs":{"value":"var(--space-4)","variable":"var(--elements-container-padding-xs)","original":"{space.4}"},"sm":{"value":"var(--space-6)","variable":"var(--elements-container-padding-sm)","original":"{space.6}"},"md":{"value":"var(--space-6)","variable":"var(--elements-container-padding-md)","original":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)","variable":"var(--elements-backdrop-filter)","original":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"},"variable":"var(--elements-backdrop-background)","original":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-border-primary-static)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-primary-hover)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-secondary-static)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""},"variable":"var(--elements-border-secondary-hover)","original":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-surface-background-base)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"var(--color-primary-600)","dark":"var(--color-primary-400)"},"variable":"var(--elements-state-primary-color-primary)","original":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"var(--color-primary-700)","dark":"var(--color-primary-200)"},"variable":"var(--elements-state-primary-color-secondary)","original":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-primary-50)","dark":"var(--color-primary-900)"},"variable":"var(--elements-state-primary-backgroundColor-primary)","original":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-backgroundColor-secondary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-borderColor-primary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"var(--color-primary-200)","dark":"var(--color-primary-700)"},"variable":"var(--elements-state-primary-borderColor-secondary)","original":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"var(--color-blue-500)","dark":"var(--color-blue-400)"},"variable":"var(--elements-state-info-color-primary)","original":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"var(--color-blue-600)","dark":"var(--color-blue-200)"},"variable":"var(--elements-state-info-color-secondary)","original":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-blue-50)","dark":"var(--color-blue-900)"},"variable":"var(--elements-state-info-backgroundColor-primary)","original":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-backgroundColor-secondary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-borderColor-primary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"var(--color-blue-200)","dark":"var(--color-blue-700)"},"variable":"var(--elements-state-info-borderColor-secondary)","original":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"var(--color-green-500)","dark":"var(--color-green-400)"},"variable":"var(--elements-state-success-color-primary)","original":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"var(--color-green-600)","dark":"var(--color-green-200)"},"variable":"var(--elements-state-success-color-secondary)","original":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-green-50)","dark":"var(--color-green-900)"},"variable":"var(--elements-state-success-backgroundColor-primary)","original":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-backgroundColor-secondary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-borderColor-primary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"var(--color-green-200)","dark":"var(--color-green-700)"},"variable":"var(--elements-state-success-borderColor-secondary)","original":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"var(--color-yellow-600)","dark":"var(--color-yellow-400)"},"variable":"var(--elements-state-warning-color-primary)","original":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"var(--color-yellow-700)","dark":"var(--color-yellow-200)"},"variable":"var(--elements-state-warning-color-secondary)","original":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-yellow-50)","dark":"var(--color-yellow-900)"},"variable":"var(--elements-state-warning-backgroundColor-primary)","original":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-backgroundColor-secondary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-borderColor-primary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"var(--color-yellow-200)","dark":"var(--color-yellow-700)"},"variable":"var(--elements-state-warning-borderColor-secondary)","original":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"var(--color-red-500)","dark":"var(--color-red-300)"},"variable":"var(--elements-state-danger-color-primary)","original":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"var(--color-red-600)","dark":"var(--color-red-200)"},"variable":"var(--elements-state-danger-color-secondary)","original":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-red-50)","dark":"var(--color-red-900)"},"variable":"var(--elements-state-danger-backgroundColor-primary)","original":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-backgroundColor-secondary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-borderColor-primary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"var(--color-red-200)","dark":"var(--color-red-700)"},"variable":"var(--elements-state-danger-borderColor-secondary)","original":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px","variable":"var(--typography-verticalMargin-sm)","original":"16px"},"base":{"value":"32px","variable":"var(--typography-verticalMargin-base)","original":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em","variable":"var(--typography-letterSpacing-tight)","original":"-0.025em"},"wide":{"value":"0.025em","variable":"var(--typography-letterSpacing-wide)","original":"0.025em"}},"fontSize":{"xs":{"value":"12px","variable":"var(--typography-fontSize-xs)","original":"12px"},"sm":{"value":"14px","variable":"var(--typography-fontSize-sm)","original":"14px"},"base":{"value":"16px","variable":"var(--typography-fontSize-base)","original":"16px"},"lg":{"value":"18px","variable":"var(--typography-fontSize-lg)","original":"18px"},"xl":{"value":"20px","variable":"var(--typography-fontSize-xl)","original":"20px"},"2xl":{"value":"24px","variable":"var(--typography-fontSize-2xl)","original":"24px"},"3xl":{"value":"30px","variable":"var(--typography-fontSize-3xl)","original":"30px"},"4xl":{"value":"36px","variable":"var(--typography-fontSize-4xl)","original":"36px"},"5xl":{"value":"48px","variable":"var(--typography-fontSize-5xl)","original":"48px"},"6xl":{"value":"60px","variable":"var(--typography-fontSize-6xl)","original":"60px"},"7xl":{"value":"72px","variable":"var(--typography-fontSize-7xl)","original":"72px"},"8xl":{"value":"96px","variable":"var(--typography-fontSize-8xl)","original":"96px"},"9xl":{"value":"128px","variable":"var(--typography-fontSize-9xl)","original":"128px"}},"fontWeight":{"thin":{"value":"100","variable":"var(--typography-fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--typography-fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--typography-fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--typography-fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--typography-fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--typography-fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--typography-fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--typography-fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--typography-fontWeight-black)","original":"900"}},"lead":{"none":{"value":"1","variable":"var(--typography-lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--typography-lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--typography-lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--typography-lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--typography-lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--typography-lead-loose)","original":"2"}},"font":{"display":{"value":"var(--font-sans)","variable":"var(--typography-font-display)","original":"{font.sans}"},"body":{"value":"var(--font-sans)","variable":"var(--typography-font-body)","original":"{font.sans}"},"code":{"value":"var(--font-mono)","variable":"var(--typography-font-code)","original":"{font.mono}"}},"color":{"primary":{"50":{"value":"var(--color-primary-50)","variable":"var(--typography-color-primary-50)","original":"{color.primary.50}"},"100":{"value":"var(--color-primary-100)","variable":"var(--typography-color-primary-100)","original":"{color.primary.100}"},"200":{"value":"var(--color-primary-200)","variable":"var(--typography-color-primary-200)","original":"{color.primary.200}"},"300":{"value":"var(--color-primary-300)","variable":"var(--typography-color-primary-300)","original":"{color.primary.300}"},"400":{"value":"var(--color-primary-400)","variable":"var(--typography-color-primary-400)","original":"{color.primary.400}"},"500":{"value":"var(--color-primary-500)","variable":"var(--typography-color-primary-500)","original":"{color.primary.500}"},"600":{"value":"var(--color-primary-600)","variable":"var(--typography-color-primary-600)","original":"{color.primary.600}"},"700":{"value":"var(--color-primary-700)","variable":"var(--typography-color-primary-700)","original":"{color.primary.700}"},"800":{"value":"var(--color-primary-800)","variable":"var(--typography-color-primary-800)","original":"{color.primary.800}"},"900":{"value":"var(--color-primary-900)","variable":"var(--typography-color-primary-900)","original":"{color.primary.900}"}},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--typography-color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--typography-color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--typography-color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--typography-color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--typography-color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--typography-color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--typography-color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--typography-color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--typography-color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--typography-color-secondary-900)","original":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-p-fontSize)","original":"{typography.fontSize.base}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-p-lineHeight)","original":"{typography.lead.normal}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-p-margin)","original":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"var(--typography-verticalMargin-base) 0 0 0","variable":"var(--prose-p-br-margin)","original":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem","variable":"var(--prose-h1-margin)","original":"0 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-5xl)","variable":"var(--prose-h1-fontSize)","original":"{typography.fontSize.5xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h1-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-bold)","variable":"var(--prose-h1-fontWeight)","original":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h1-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h1-iconSize)","original":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h2-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-4xl)","variable":"var(--prose-h2-fontSize)","original":"{typography.fontSize.4xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h2-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h2-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h2-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h2-iconSize)","original":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h3-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h3-fontSize)","original":"{typography.fontSize.3xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h3-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h3-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h3-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h3-iconSize)","original":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h4-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h4-fontSize)","original":"{typography.fontSize.2xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h4-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h4-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h4-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h4-iconSize)","original":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h5-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h5-fontSize)","original":"{typography.fontSize.xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h5-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h5-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h5-iconSize)","original":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h6-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h6-fontSize)","original":"{typography.fontSize.lg}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-h6-lineHeight)","original":"{typography.lead.normal}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h6-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-h6-iconSize)","original":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-strong-fontWeight)","original":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-img-margin)","original":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none","variable":"var(--prose-a-textDecoration)","original":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"},"variable":"var(--prose-a-color-static)","original":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-400)"},"variable":"var(--prose-a-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px","variable":"var(--prose-a-border-width)","original":"1px"},"style":{"static":{"value":"dashed","variable":"var(--prose-a-border-style-static)","original":"dashed"},"hover":{"value":"solid","variable":"var(--prose-a-border-style-hover)","original":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px","variable":"var(--prose-a-border-distance)","original":"2px"}},"fontWeight":{"value":"var(--typography-fontWeight-medium)","variable":"var(--prose-a-fontWeight)","original":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none","variable":"var(--prose-a-hasCode-borderBottom)","original":"none"}},"code":{"border":{"width":{"value":"var(--prose-a-border-width)","variable":"var(--prose-a-code-border-width)","original":"{prose.a.border.width}"},"style":{"value":"var(--prose-a-border-style-static)","variable":"var(--prose-a-code-border-style)","original":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-a-code-border-color-static)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-600)"},"variable":"var(--prose-a-code-border-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"var(--typography-color-primary-50)","dark":"var(--typography-color-primary-900)"},"variable":"var(--prose-a-code-background-hover)","original":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-blockquote-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px","variable":"var(--prose-blockquote-padding)","original":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'","variable":"var(--prose-blockquote-quotes)","original":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-blockquote-color)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px","variable":"var(--prose-blockquote-border-width)","original":"4px"},"style":{"value":"solid","variable":"var(--prose-blockquote-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-blockquote-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc","variable":"var(--prose-ul-listStyleType)","original":"disc"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ul-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ul-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ul-li-markerColor)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal","variable":"var(--prose-ol-listStyleType)","original":"decimal"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ol-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ol-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ol-li-markerColor)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"var(--typography-verticalMargin-sm) 0","variable":"var(--prose-li-margin)","original":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside","variable":"var(--prose-li-listStylePosition)","original":"outside"}},"hr":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-hr-margin)","original":"{typography.verticalMargin.base} 0"},"style":{"value":"solid","variable":"var(--prose-hr-style)","original":"solid"},"width":{"value":"1px","variable":"var(--prose-hr-width)","original":"1px"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-hr-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-table-margin)","original":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left","variable":"var(--prose-table-textAlign)","original":"left"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-table-fontSize)","original":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit","variable":"var(--prose-table-lineHeight)","original":"inherit"}},"thead":{"border":{"width":{"value":"0px","variable":"var(--prose-thead-border-width)","original":"0px"},"style":{"value":"solid","variable":"var(--prose-thead-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-border-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px","variable":"var(--prose-thead-borderBottom-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-thead-borderBottom-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"var(--typography-color-secondary-600)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-th-color)","original":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)","variable":"var(--prose-th-padding)","original":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-th-fontWeight)","original":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px","variable":"var(--prose-tbody-tr-borderBottom-width)","original":"1px"},"style":{"value":"dashed","variable":"var(--prose-tbody-tr-borderBottom-style)","original":"dashed"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-tbody-tr-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-tbody-td-padding)","original":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-tbody-code-inline-fontSize)","original":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-block-fontSize)","original":"{typography.fontSize.sm}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-code-block-margin)","original":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px","variable":"var(--prose-code-block-border-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-code-block-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-code-block-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-block-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-block-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-code-block-pre-padding)","original":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem","variable":"var(--prose-code-inline-borderRadius)","original":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem","variable":"var(--prose-code-inline-padding)","original":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-inline-fontSize)","original":"{typography.fontSize.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-normal)","variable":"var(--prose-code-inline-fontWeight)","original":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-inline-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-inline-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem","variable":"var(--radii-sm)","original":"0.375rem"},"md":{"value":"0.5rem","variable":"var(--radii-md)","original":"0.5rem"},"lg":{"value":"0.75rem","variable":"var(--radii-lg)","original":"0.75rem"},"none":{"value":"0px","variable":"var(--radii-none)","original":"0px"},"2xs":{"value":"0.125rem","variable":"var(--radii-2xs)","original":"0.125rem"},"xs":{"value":"0.25rem","variable":"var(--radii-xs)","original":"0.25rem"},"xl":{"value":"1rem","variable":"var(--radii-xl)","original":"1rem"},"2xl":{"value":"1.5rem","variable":"var(--radii-2xl)","original":"1.5rem"},"3xl":{"value":"1.75rem","variable":"var(--radii-3xl)","original":"1.75rem"},"full":{"value":"9999px","variable":"var(--radii-full)","original":"9999px"}},"fontSize":{"xs":{"value":"0.75rem","variable":"var(--fontSize-xs)","original":"0.75rem"},"sm":{"value":"0.875rem","variable":"var(--fontSize-sm)","original":"0.875rem"},"base":{"value":"1rem","variable":"var(--fontSize-base)","original":"1rem"},"lg":{"value":"1.125rem","variable":"var(--fontSize-lg)","original":"1.125rem"},"xl":{"value":"1.25rem","variable":"var(--fontSize-xl)","original":"1.25rem"},"2xl":{"value":"1.5rem","variable":"var(--fontSize-2xl)","original":"1.5rem"},"3xl":{"value":"1.875rem","variable":"var(--fontSize-3xl)","original":"1.875rem"},"4xl":{"value":"2.25rem","variable":"var(--fontSize-4xl)","original":"2.25rem"},"5xl":{"value":"3rem","variable":"var(--fontSize-5xl)","original":"3rem"},"6xl":{"value":"3.75rem","variable":"var(--fontSize-6xl)","original":"3.75rem"},"7xl":{"value":"4.5rem","variable":"var(--fontSize-7xl)","original":"4.5rem"},"8xl":{"value":"6rem","variable":"var(--fontSize-8xl)","original":"6rem"},"9xl":{"value":"8rem","variable":"var(--fontSize-9xl)","original":"8rem"}},"lead":{"1":{"value":".025rem","variable":"var(--lead-1)","original":".025rem"},"2":{"value":".5rem","variable":"var(--lead-2)","original":".5rem"},"3":{"value":".75rem","variable":"var(--lead-3)","original":".75rem"},"4":{"value":"1rem","variable":"var(--lead-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--lead-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--lead-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--lead-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--lead-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--lead-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--lead-10)","original":"2.5rem"},"none":{"value":"1","variable":"var(--lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--lead-loose)","original":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji","variable":"var(--font-sans)","original":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif","variable":"var(--font-serif)","original":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace","variable":"var(--font-mono)","original":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px","variable":"var(--docus-header-height)","original":"64px"}},"footer":{"padding":{"value":"var(--space-4) 0","variable":"var(--docus-footer-padding)","original":"{space.4} 0"}},"readableLine":{"value":"78ch","variable":"var(--docus-readableLine)","original":"78ch"},"loadingBar":{"height":{"value":"3px","variable":"var(--docus-loadingBar-height)","original":"3px"},"gradientColorStop1":{"value":"#00dc82","variable":"var(--docus-loadingBar-gradientColorStop1)","original":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe","variable":"var(--docus-loadingBar-gradientColorStop2)","original":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1","variable":"var(--docus-loadingBar-gradientColorStop3)","original":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)","variable":"var(--media-xs)","original":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)","variable":"var(--media-sm)","original":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)","variable":"var(--media-md)","original":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)","variable":"var(--media-lg)","original":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)","variable":"var(--media-xl)","original":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)","variable":"var(--media-2xl)","original":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)","variable":"var(--media-rm)","original":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)","variable":"var(--media-landscape)","original":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)","variable":"var(--media-portrait)","original":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw","variable":"var(--width-screen)","original":"100vw"}},"height":{"screen":{"value":"100vh","variable":"var(--height-screen)","original":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000","variable":"var(--shadow-xs)","original":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000","variable":"var(--shadow-sm)","original":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000","variable":"var(--shadow-md)","original":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000","variable":"var(--shadow-lg)","original":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000","variable":"var(--shadow-xl)","original":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px var(--color-gray-900)","variable":"var(--shadow-2xl)","original":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent","variable":"var(--shadow-none)","original":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px","variable":"var(--size-0)","original":"0px"},"2":{"value":"2px","variable":"var(--size-2)","original":"2px"},"4":{"value":"4px","variable":"var(--size-4)","original":"4px"},"6":{"value":"6px","variable":"var(--size-6)","original":"6px"},"8":{"value":"8px","variable":"var(--size-8)","original":"8px"},"12":{"value":"12px","variable":"var(--size-12)","original":"12px"},"16":{"value":"16px","variable":"var(--size-16)","original":"16px"},"20":{"value":"20px","variable":"var(--size-20)","original":"20px"},"24":{"value":"24px","variable":"var(--size-24)","original":"24px"},"32":{"value":"32px","variable":"var(--size-32)","original":"32px"},"40":{"value":"40px","variable":"var(--size-40)","original":"40px"},"48":{"value":"48px","variable":"var(--size-48)","original":"48px"},"56":{"value":"56px","variable":"var(--size-56)","original":"56px"},"64":{"value":"64px","variable":"var(--size-64)","original":"64px"},"80":{"value":"80px","variable":"var(--size-80)","original":"80px"},"104":{"value":"104px","variable":"var(--size-104)","original":"104px"},"200":{"value":"200px","variable":"var(--size-200)","original":"200px"},"xs":{"value":"20rem","variable":"var(--size-xs)","original":"20rem"},"sm":{"value":"24rem","variable":"var(--size-sm)","original":"24rem"},"md":{"value":"28rem","variable":"var(--size-md)","original":"28rem"},"lg":{"value":"32rem","variable":"var(--size-lg)","original":"32rem"},"xl":{"value":"36rem","variable":"var(--size-xl)","original":"36rem"},"2xl":{"value":"42rem","variable":"var(--size-2xl)","original":"42rem"},"3xl":{"value":"48rem","variable":"var(--size-3xl)","original":"48rem"},"4xl":{"value":"56rem","variable":"var(--size-4xl)","original":"56rem"},"5xl":{"value":"64rem","variable":"var(--size-5xl)","original":"64rem"},"6xl":{"value":"72rem","variable":"var(--size-6xl)","original":"72rem"},"7xl":{"value":"80rem","variable":"var(--size-7xl)","original":"80rem"},"full":{"value":"100%","variable":"var(--size-full)","original":"100%"}},"space":{"0":{"value":"0px","variable":"var(--space-0)","original":"0px"},"1":{"value":"0.25rem","variable":"var(--space-1)","original":"0.25rem"},"2":{"value":"0.5rem","variable":"var(--space-2)","original":"0.5rem"},"3":{"value":"0.75rem","variable":"var(--space-3)","original":"0.75rem"},"4":{"value":"1rem","variable":"var(--space-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--space-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--space-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--space-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--space-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--space-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--space-10)","original":"2.5rem"},"11":{"value":"2.75rem","variable":"var(--space-11)","original":"2.75rem"},"12":{"value":"3rem","variable":"var(--space-12)","original":"3rem"},"14":{"value":"3.5rem","variable":"var(--space-14)","original":"3.5rem"},"16":{"value":"4rem","variable":"var(--space-16)","original":"4rem"},"20":{"value":"5rem","variable":"var(--space-20)","original":"5rem"},"24":{"value":"6rem","variable":"var(--space-24)","original":"6rem"},"28":{"value":"7rem","variable":"var(--space-28)","original":"7rem"},"32":{"value":"8rem","variable":"var(--space-32)","original":"8rem"},"36":{"value":"9rem","variable":"var(--space-36)","original":"9rem"},"40":{"value":"10rem","variable":"var(--space-40)","original":"10rem"},"44":{"value":"11rem","variable":"var(--space-44)","original":"11rem"},"48":{"value":"12rem","variable":"var(--space-48)","original":"12rem"},"52":{"value":"13rem","variable":"var(--space-52)","original":"13rem"},"56":{"value":"14rem","variable":"var(--space-56)","original":"14rem"},"60":{"value":"15rem","variable":"var(--space-60)","original":"15rem"},"64":{"value":"16rem","variable":"var(--space-64)","original":"16rem"},"72":{"value":"18rem","variable":"var(--space-72)","original":"18rem"},"80":{"value":"20rem","variable":"var(--space-80)","original":"20rem"},"96":{"value":"24rem","variable":"var(--space-96)","original":"24rem"},"px":{"value":"1px","variable":"var(--space-px)","original":"1px"},"rem":{"125":{"value":"0.125rem","variable":"var(--space-rem-125)","original":"0.125rem"},"375":{"value":"0.375rem","variable":"var(--space-rem-375)","original":"0.375rem"},"625":{"value":"0.625rem","variable":"var(--space-rem-625)","original":"0.625rem"},"875":{"value":"0.875rem","variable":"var(--space-rem-875)","original":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0","variable":"var(--borderWidth-noBorder)","original":"0"},"sm":{"value":"1px","variable":"var(--borderWidth-sm)","original":"1px"},"md":{"value":"2px","variable":"var(--borderWidth-md)","original":"2px"},"lg":{"value":"3px","variable":"var(--borderWidth-lg)","original":"3px"}},"opacity":{"noOpacity":{"value":"0","variable":"var(--opacity-noOpacity)","original":"0"},"bright":{"value":"0.1","variable":"var(--opacity-bright)","original":"0.1"},"light":{"value":"0.15","variable":"var(--opacity-light)","original":"0.15"},"soft":{"value":"0.3","variable":"var(--opacity-soft)","original":"0.3"},"medium":{"value":"0.5","variable":"var(--opacity-medium)","original":"0.5"},"high":{"value":"0.8","variable":"var(--opacity-high)","original":"0.8"},"total":{"value":"1","variable":"var(--opacity-total)","original":"1"}},"fontWeight":{"thin":{"value":"100","variable":"var(--fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--fontWeight-black)","original":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em","variable":"var(--letterSpacing-tighter)","original":"-0.05em"},"tight":{"value":"-0.025em","variable":"var(--letterSpacing-tight)","original":"-0.025em"},"normal":{"value":"0em","variable":"var(--letterSpacing-normal)","original":"0em"},"wide":{"value":"0.025em","variable":"var(--letterSpacing-wide)","original":"0.025em"},"wider":{"value":"0.05em","variable":"var(--letterSpacing-wider)","original":"0.05em"},"widest":{"value":"0.1em","variable":"var(--letterSpacing-widest)","original":"0.1em"}},"text":{"xs":{"fontSize":{"value":"var(--fontSize-xs)","variable":"var(--text-xs-fontSize)","original":"{fontSize.xs}"},"lineHeight":{"value":"var(--lead-4)","variable":"var(--text-xs-lineHeight)","original":"{lead.4}"}},"sm":{"fontSize":{"value":"var(--fontSize-sm)","variable":"var(--text-sm-fontSize)","original":"{fontSize.sm}"},"lineHeight":{"value":"var(--lead-5)","variable":"var(--text-sm-lineHeight)","original":"{lead.5}"}},"base":{"fontSize":{"value":"var(--fontSize-base)","variable":"var(--text-base-fontSize)","original":"{fontSize.base}"},"lineHeight":{"value":"var(--lead-6)","variable":"var(--text-base-lineHeight)","original":"{lead.6}"}},"lg":{"fontSize":{"value":"var(--fontSize-lg)","variable":"var(--text-lg-fontSize)","original":"{fontSize.lg}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-lg-lineHeight)","original":"{lead.7}"}},"xl":{"fontSize":{"value":"var(--fontSize-xl)","variable":"var(--text-xl-fontSize)","original":"{fontSize.xl}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-xl-lineHeight)","original":"{lead.7}"}},"2xl":{"fontSize":{"value":"var(--fontSize-2xl)","variable":"var(--text-2xl-fontSize)","original":"{fontSize.2xl}"},"lineHeight":{"value":"var(--lead-8)","variable":"var(--text-2xl-lineHeight)","original":"{lead.8}"}},"3xl":{"fontSize":{"value":"var(--fontSize-3xl)","variable":"var(--text-3xl-fontSize)","original":"{fontSize.3xl}"},"lineHeight":{"value":"var(--lead-9)","variable":"var(--text-3xl-lineHeight)","original":"{lead.9}"}},"4xl":{"fontSize":{"value":"var(--fontSize-4xl)","variable":"var(--text-4xl-fontSize)","original":"{fontSize.4xl}"},"lineHeight":{"value":"var(--lead-10)","variable":"var(--text-4xl-lineHeight)","original":"{lead.10}"}},"5xl":{"fontSize":{"value":"var(--fontSize-5xl)","variable":"var(--text-5xl-fontSize)","original":"{fontSize.5xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-5xl-lineHeight)","original":"{lead.none}"}},"6xl":{"fontSize":{"value":"var(--fontSize-6xl)","variable":"var(--text-6xl-fontSize)","original":"{fontSize.6xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-6xl-lineHeight)","original":"{lead.none}"}}}},"content":{"sources":{},"ignores":["\\.","-"],"locales":[],"highlight":{"theme":{"dark":"github-dark","default":"github-light"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini"]},"navigation":{"fields":["icon","titleTemplate","header","main","aside","footer","layout"]},"documentDriven":true},"components":[{"name":"ExampleCard","path":"/components/content/Example/ExampleCard.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleHero","path":"/components/content/Example/ExampleHero.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleIconCard","path":"/components/content/Example/ExampleIconCard.vue","meta":{"props":[{"name":"description","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default description\""},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default title\""},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"IconMarkdown\""}],"slots":[],"events":[]}},{"name":"ExampleMultiselect","path":"/components/content/Example/ExampleMultiselect.vue","meta":{"props":[{"name":"options","global":false,"description":"","tags":[],"required":false,"type":"string | unknown[] | undefined","schema":{"kind":"enum","type":"string | unknown[] | undefined","schema":["undefined","string",{"kind":"array","type":"unknown[]","schema":["unknown"]}]},"default":"[]"}],"slots":[],"events":[]}},{"name":"ExampleTheTitle","path":"/components/content/Example/ExampleTheTitle.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"HeroAnnouncement","path":"/components/content/HeroAnnouncement.vue","meta":{"props":[{"name":"to","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"label","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"IconMarkdown","path":"/components/content/IconMarkdown.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Logo","path":"/components/content/Logo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"MyButton","path":"/components/content/MyButton.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"PropInspector","path":"/components/content/PropInspector.vue","meta":{"props":[{"name":"prop","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any"}],"slots":[],"events":[]}},{"name":"ReadMore","path":"/components/content/ReadMore.vue","meta":{"props":[{"name":"link","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"}],"slots":[],"events":[]}},{"name":"AppFooter","path":"/node_modules/@nuxt-themes/docus/components/app/AppFooter.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeader","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeader.vue","meta":{"props":[{"name":"length","global":false,"description":"Gets the length of the array. This is a number one higher than the highest element defined in an array.","tags":[],"required":true,"type":"number | Prop | null | undefined","schema":{"kind":"enum","type":"number | Prop | null | undefined","schema":["undefined","null","number","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]}]}},{"name":"concat","global":false,"description":"Combines two or more arrays.","tags":[{"name":"param","text":"items Additional items to add to the end of array1."},{"name":"param","text":"items Additional items to add to the end of array1."}],"required":true,"type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }"]}},{"name":"join","global":false,"description":"Adds all the elements of an array separated by the specified separator string.","tags":[{"name":"param","text":"separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma."}],"required":true,"type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":{"kind":"enum","type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]}]}},{"name":"slice","global":false,"description":"Returns a section of an array.","tags":[{"name":"param","text":"start The beginning of the specified portion of the array."},{"name":"param","text":"end The end of the specified portion of the array. This is exclusive of the element at the index 'end'."}],"required":true,"type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]}]}},{"name":"indexOf","global":false,"description":"Returns the index of the first occurrence of a value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"lastIndexOf","global":false,"description":"Returns the index of the last occurrence of a specified value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"every","global":false,"description":"Determines whether all the members of an array satisfy the specified test.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }"]}},{"name":"some","global":false,"description":"Determines whether the specified callback function returns true for any element of an array.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]}]}},{"name":"forEach","global":false,"description":"Performs the specified action for each element in an array.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]}]}},{"name":"map","global":false,"description":"Calls a defined callback function on each element of an array, and returns an array that contains the results.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]}]}},{"name":"filter","global":false,"description":"Returns the elements of an array that meet the condition specified in a callback function.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }"]}},{"name":"reduce","global":false,"description":"Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"reduceRight","global":false,"description":"Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"find","global":false,"description":"Returns the value of the first element in the array where predicate is true, and undefined\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found, find\r\nimmediately returns that element value. Otherwise, find returns undefined."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":{"kind":"enum","type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }"]}},{"name":"findIndex","global":false,"description":"Returns the index of the first element in the array where predicate is true, and -1\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found,\r\nfindIndex immediately returns that element index. Otherwise, findIndex returns -1."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]}]}},{"name":"entries","global":false,"description":"Returns an iterable of key, value pairs for every entry in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"}]}},{"name":"keys","global":false,"description":"Returns an iterable of keys in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"values","global":false,"description":"Returns an iterable of values in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"includes","global":false,"description":"Determines whether an array includes a certain element, returning true or false as appropriate.","tags":[{"name":"param","text":"searchElement The element to search for."},{"name":"param","text":"fromIndex The position in this array at which to begin searching for searchElement."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]}]}},{"name":"flatMap","global":false,"description":"Calls a defined callback function on each element of an array. Then, flattens the result into\r\na new array.\r\nThis is identical to a map followed by flat with depth 1.","tags":[{"name":"param","text":"callback A function that accepts up to three arguments. The flatMap method calls the\r\ncallback function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callback function. If\r\nthisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":{"kind":"enum","type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]}]}},{"name":"flat","global":false,"description":"Returns a new array with all sub-array elements concatenated into it recursively up to the\r\nspecified depth.","tags":[{"name":"param","text":"depth The maximum recursion depth"}],"required":true,"type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]}]}},{"name":"at","global":false,"description":"Returns the item located at the specified index.","tags":[{"name":"param","text":"index The zero-based index of the desired code unit. A negative index will count back from the last item."}],"required":true,"type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":{"kind":"enum","type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]}]}},{"name":"toString","global":false,"description":"Returns a string representation of an object.\nReturns a string representation of an array.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}},{"name":"toLocaleString","global":false,"description":"Returns a date converted to a string using the current locale.\nReturns a string representation of an array. The elements are converted to string using their toLocaleString methods.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}}],"slots":[],"events":[]}},{"name":"AppHeaderDialog","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderLogo","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderNavigation","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppLayout","path":"/node_modules/@nuxt-themes/docus/components/app/AppLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"AppLoadingBar","path":"/node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue","meta":{"props":[{"name":"throttle","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"200"},{"name":"duration","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"2000"}],"slots":[],"events":[]}},{"name":"AppSearch","path":"/node_modules/@nuxt-themes/docus/components/app/AppSearch.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppSocialIcons","path":"/node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ThemeSelect","path":"/node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAside","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAsideTree","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"[]"},{"name":"level","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"0"},{"name":"max","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"null"},{"name":"parent","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"null"}],"slots":[],"events":[]}},{"name":"DocsPageBottom","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsPageLayout","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"DocsPrevNext","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsToc","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue","meta":{"props":[],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"DocsTocLinks","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":{"kind":"enum","type":"TocLink[] | undefined","schema":["undefined",{"kind":"array","type":"TocLink[]","schema":[{"kind":"object","type":"TocLink","schema":{"id":{"name":"id","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"text":{"name":"text","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"depth":{"name":"depth","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"},"children":{"name":"children","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":"TocLink[] | undefined"}}}]}]},"default":"[]"}],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"EditOnLink","path":"/node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue","meta":{"props":[{"name":"owner","global":false,"description":"Repository owner.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.owner"},{"name":"repo","global":false,"description":"Repository name.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.repo"},{"name":"branch","global":false,"description":"The branch to use for the edit link.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.branch"},{"name":"dir","global":false,"description":"A base directory to append to the source path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir"},{"name":"source","global":false,"description":"Source file path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"},{"name":"page","global":false,"description":"Use page from @nuxt/content.","tags":[],"required":false,"type":"any","schema":"any","default":"undefined"},{"name":"contentDir","global":false,"description":"Content directory (to be used with `page`)","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir || \"content\""},{"name":"edit","global":false,"description":"Send to an edit page or not.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"useAppConfig()?.docus?.github?.edit"}],"slots":[],"events":[]}},{"name":"Alert","path":"/node_modules/@nuxt-themes/elements/components/globals/Alert.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Badge","path":"/node_modules/@nuxt-themes/elements/components/globals/Badge.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ButtonLink","path":"/node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue","meta":{"props":[{"name":"color","global":false,"description":"","tags":[],"required":false,"type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":{"kind":"enum","type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":["undefined","\"ruby\"","\"primary\"","\"white\"","\"black\"","\"secondary\"","\"gray\"","\"green\"","\"yellow\"","\"orange\"","\"red\"","\"pear\"","\"teal\"","\"lightblue\"","\"blue\"","\"indigoblue\"","\"royalblue\"","\"purple\"","\"pink\"","{ md?: \"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\" | undefined; ... 10 more ...; portrait?: \"ruby\" | ... 17 more ... | undefined; }"]}},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"href","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blank","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"size","global":false,"description":"","tags":[],"required":false,"type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":{"kind":"enum","type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":["undefined","\"small\"","\"medium\"","\"large\"","\"giant\"","{ md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; initial?: \"small\" | ... 3 more ... | undefined; ... 7 more ...; portrait?: \"small\" | ... 3 more ... | undefined; }"]}},{"name":"transparent","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Callout","path":"/node_modules/@nuxt-themes/elements/components/globals/Callout.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""},{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"ref(false)"}],"slots":[{"name":"summary","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"content","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"CodeBlock","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue","meta":{"props":[{"name":"label","global":false,"description":"Label to display for the tab","tags":[],"required":true,"type":"string","schema":"string"},{"name":"active","global":false,"description":"Select which tab should be active","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"preview","global":false,"description":"Preiew block are bordered and have small padding.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CodeGroup","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Container","path":"/node_modules/@nuxt-themes/elements/components/globals/Container.vue","meta":{"props":[{"name":"as","global":false,"description":"","tags":[],"required":false,"type":"keyof HTMLElementTagNameMap | undefined","schema":{"kind":"enum","type":"keyof HTMLElementTagNameMap | undefined","schema":["undefined","\"object\"","\"style\"","\"map\"","\"data\"","\"template\"","\"link\"","\"small\"","\"sub\"","\"sup\"","\"title\"","\"label\"","\"source\"","\"main\"","\"html\"","\"ruby\"","\"code\"","\"a\"","\"abbr\"","\"address\"","\"area\"","\"article\"","\"aside\"","\"audio\"","\"b\"","\"base\"","\"bdi\"","\"bdo\"","\"blockquote\"","\"body\"","\"br\"","\"button\"","\"canvas\"","\"caption\"","\"cite\"","\"col\"","\"colgroup\"","\"datalist\"","\"dd\"","\"del\"","\"details\"","\"dfn\"","\"dialog\"","\"div\"","\"dl\"","\"dt\"","\"em\"","\"embed\"","\"fieldset\"","\"figcaption\"","\"figure\"","\"footer\"","\"form\"","\"h1\"","\"h2\"","\"h3\"","\"h4\"","\"h5\"","\"h6\"","\"head\"","\"header\"","\"hgroup\"","\"hr\"","\"i\"","\"iframe\"","\"img\"","\"input\"","\"ins\"","\"kbd\"","\"legend\"","\"li\"","\"mark\"","\"menu\"","\"meta\"","\"meter\"","\"nav\"","\"noscript\"","\"ol\"","\"optgroup\"","\"option\"","\"output\"","\"p\"","\"picture\"","\"pre\"","\"progress\"","\"q\"","\"rp\"","\"rt\"","\"s\"","\"samp\"","\"script\"","\"section\"","\"select\"","\"slot\"","\"span\"","\"strong\"","\"summary\"","\"table\"","\"tbody\"","\"td\"","\"textarea\"","\"tfoot\"","\"th\"","\"thead\"","\"time\"","\"tr\"","\"track\"","\"u\"","\"ul\"","\"var\"","\"video\"","\"wbr\""]},"default":"\"div\""},{"name":"padded","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}},{"name":"fluid","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CopyButton","path":"/node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"Ellipsis","path":"/node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue","meta":{"props":[{"name":"height","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"width","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"left","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"zIndex","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10\""},{"name":"top","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"0\""},{"name":"right","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"blur","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"50px\""},{"name":"colors","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]},"default":"[\"rgba(0, 71, 225, 0.22)\", \"rgba(26, 214, 255, 0.22)\", \"rgba(0, 220, 130, 0.22)\"]"}],"slots":[],"events":[]}},{"name":"List","path":"/node_modules/@nuxt-themes/elements/components/globals/List.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"NuxtImg","path":"/node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Props","path":"/node_modules/@nuxt-themes/elements/components/globals/Props.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Sandbox","path":"/node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue","meta":{"props":[{"name":"repo","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"branch","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"dir","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"file","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"app.vue\""}],"slots":[],"events":[]}},{"name":"SourceLink","path":"/node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue","meta":{"props":[{"name":"source","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"TabsHeader","path":"/node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue","meta":{"props":[{"name":"tabs","global":false,"description":"","tags":[],"required":true,"type":"{ label: string; }[]","schema":{"kind":"array","type":"{ label: string; }[]","schema":[{"kind":"object","type":"{ label: string; }","schema":{"label":{"name":"label","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}}}]}},{"name":"activeTabIndex","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"}],"slots":[{"name":"footer","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:activeTabIndex","type":"any[]","signature":"(event: \"update:activeTabIndex\", ...args: any[]): void","schema":["any"]}]}},{"name":"Terminal","path":"/node_modules/@nuxt-themes/elements/components/globals/Terminal.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"VideoPlayer","path":"/node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue","meta":{"props":[{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"poster","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"sources","global":false,"description":"","tags":[],"required":false,"type":"any[] | undefined","schema":{"kind":"enum","type":"any[] | undefined","schema":["undefined",{"kind":"array","type":"any[]","schema":["any"]}]},"default":"[]"},{"name":"autoplay","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[],"events":[]}},{"name":"IconCodeSandBox","path":"/node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconDocus","path":"/node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxt","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtContent","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtLabs","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtStudio","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconStackBlitz","path":"/node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconVueTelescope","path":"/node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"BlockHero","path":"/node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue","meta":{"props":[{"name":"secondary","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"video","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"cta","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"snippet","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]}}],"slots":[{"name":"announce","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"extra","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"actions","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"support","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Card","path":"/node_modules/@nuxt-themes/elements/components/landing/Card.vue","meta":{"props":[{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"iconClass","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blurry","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"true"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CardGrid","path":"/node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue","meta":{"props":[{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Features\""}],"slots":[{"name":"root","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"VoltaBoard","path":"/node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue","meta":{"props":[{"name":"token","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"ComponentPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundData","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"},{"name":"componentData","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundProps","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"},{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundSlots","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"ComponentPlaygroundTokens","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"TokensPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRepository","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLink","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReadme","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReleases","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLastRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubFileContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubCommits","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs","meta":{"props":[],"slots":[],"events":[]}}]} \ No newline at end of file +{"version":"0.7.2","appConfigSchema":{"properties":{"id":"#appConfig","properties":{"nuxtIcon":{"title":"Nuxt Icon","description":"Configure the defaults of Nuxt Icon","id":"#appConfig/nuxtIcon","properties":{"size":{"title":"Icon Size","description":"Set the default icon size","tags":["@studioIcon material-symbols:format-size-rounded"],"id":"#appConfig/nuxtIcon/size","default":"","type":"string"},"class":{"title":"CSS Class","description":"Set the default CSS class","tags":["@studioIcon material-symbols:css"],"id":"#appConfig/nuxtIcon/class","default":"","type":"string"},"aliases":{"title":"Icon aliases","description":"Define Icon aliases to update them easily without code changes.","tags":["@studioIcon material-symbols:star-rounded","@studioInputObjectValueType icon"],"tsType":"{ [alias: string]: string }","id":"#appConfig/nuxtIcon/aliases","default":{},"type":"object"}},"type":"object","default":{"size":"","class":"","aliases":{}}},"prose":{"title":"Prose configuration from Nuxt Typography","description":"","tags":["@studioIcon material-symbols:short-text-rounded","@studioInput icon"],"id":"#appConfig/prose","properties":{"copyButton":{"title":"Copy button (used in code blocks)","description":"","tags":["@studioIcon material-symbols:content-copy"],"id":"#appConfig/prose/copyButton","properties":{"iconCopy":{"title":"Icon displayed to copy","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopy","default":"ph:copy","type":"string"},"iconCopied":{"title":"Icon displayed when copied","description":"","tags":[],"id":"#appConfig/prose/copyButton/iconCopied","default":"ph:check","type":"string"}},"type":"object","default":{"iconCopy":"ph:copy","iconCopied":"ph:check"}},"headings":{"title":"Default configuration for all headings (h1, h2, h3, h4, h5 and h6)","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/prose/headings","properties":{"icon":{"title":"Default icon for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/headings/icon","default":"ph:link","type":"string"}},"type":"object","default":{"icon":"ph:link"}},"h1":{"title":"First heading configuration","description":"","tags":["@studioIcon material-symbols:format-h1"],"id":"#appConfig/prose/h1","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h1/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h2":{"title":"Second heading configuration","description":"","tags":["@studioIcon material-symbols:format-h2"],"id":"#appConfig/prose/h2","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h2/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h3":{"title":"Third heading configuration","description":"","tags":["@studioIcon material-symbols:format-h3"],"id":"#appConfig/prose/h3","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h3/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h4":{"title":"Fourth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h4"],"id":"#appConfig/prose/h4","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h4/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h5":{"title":"Fifth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h5"],"id":"#appConfig/prose/h5","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h5/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}},"h6":{"title":"Sixth heading configuration","description":"","tags":["@studioIcon material-symbols:format-h6"],"id":"#appConfig/prose/h6","properties":{"icon":{"title":"Icon displayed for anchor link on hover","description":"","tags":[],"tsType":"string|false","id":"#appConfig/prose/h6/icon","default":"","type":"string"}},"type":"object","default":{"icon":""}}},"type":"object","default":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}}},"docus":{"title":"Docus theme configuration.","description":"","tags":["@studioIcon material-symbols:docs"],"id":"#appConfig/docus","properties":{"title":{"title":"Website title, used as header default title and meta title.","description":"","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/title","default":"Docus","type":"string"},"titleTemplate":{"title":"The website title template, to overwrite the default one.","description":"","tags":[],"id":"#appConfig/docus/titleTemplate","default":"%s · Docus","type":"string"},"description":{"title":"Website description, used for meta description.","description":"","tags":["@studioIcon material-symbols:description"],"id":"#appConfig/docus/description","default":"The best place to start your documentation.","type":"string"},"image":{"title":"Cover image.","description":"","tags":["@example '/cover.jpg'","@studioIcon dashicons:cover-image","@studioInput file"],"id":"#appConfig/docus/image","default":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","type":"string"},"socials":{"title":"Social links","description":"Will be used in AppSocialIcons component.","tags":["@studioIcon material-symbols:share-outline"],"id":"#appConfig/docus/socials","properties":{"twitter":{"title":"Twitter social handle","description":"","tags":["@example 'nuxt_js'","@studioIcon simple-icons:twitter"],"id":"#appConfig/docus/socials/twitter","default":"","type":"string"},"github":{"title":"GitHub org or repository","description":"","tags":["@example 'nuxt/framework'","@studioIcon simple-icons:github"],"id":"#appConfig/docus/socials/github","default":"","type":"string"},"facebook":{"title":"Facebook page url","description":"","tags":["@example https://www.facebook.com/groups/nuxtjs","@studioIcon simple-icons:facebook"],"id":"#appConfig/docus/socials/facebook","default":"","type":"string"},"instagram":{"title":"Instagram page url","description":"","tags":["@example https://www.instagram.com/wearenuxt","@studioIcon simple-icons:instagram"],"id":"#appConfig/docus/socials/instagram","default":"","type":"string"},"youtube":{"title":"Instagram page url","description":"","tags":["@example https://www.youtube.com/@NuxtLabs","@studioIcon simple-icons:youtube"],"id":"#appConfig/docus/socials/youtube","default":"","type":"string"},"medium":{"title":"Medium page url","description":"","tags":["@example https://medium.com/nuxt","@studioIcon simple-icons:medium"],"id":"#appConfig/docus/socials/medium","default":"","type":"string"}},"type":"object","default":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""}},"layout":{"title":"Theme layout configuration.","description":"","tags":["@studioIcon tabler:arrow-autofit-width"],"tsType":"'default'|'page'","id":"#appConfig/docus/layout","default":"default","type":"string"},"aside":{"title":"Aside navigation configuration.","description":"","tags":["@studioIcon fluent:document-page-24-regular"],"id":"#appConfig/docus/aside","properties":{"level":{"title":"Aside navigation level","description":"Use 0 to disable all nesting. Use 1 and more to display nested navigation in header and aside navigation.","tags":[],"id":"#appConfig/docus/aside/level","default":0,"type":"number"},"collapsed":{"title":"Specify if default collapsibles state globally for aside navigation.","description":"","tags":[],"id":"#appConfig/docus/aside/collapsed","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from aside navigation.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/aside/exclude","default":[],"type":"array","items":{"type":"any"}}},"type":"object","default":{"level":0,"collapsed":false,"exclude":[]}},"header":{"title":"Header configuration.","description":"","tags":["@studioIcon fluent:document-header-24-regular"],"id":"#appConfig/docus/header","properties":{"title":{"title":"Website title","description":"Title to be displayed in header or as aria-label if logo is defined.\nDefault to docus.title","tags":["@studioIcon material-symbols:title"],"id":"#appConfig/docus/header/title","default":"","type":"string"},"logo":{"title":"Logo configuration","description":"Boolean to disable or use the `Logo.vue` component.\nString to be used as a name of a component.","tags":["@example 'MyLogo'","@studioInput boolean"],"id":"#appConfig/docus/header/logo","default":false,"type":"boolean"},"showLinkIcon":{"title":"Header links","description":"Toggle links icons in the header.","tags":[],"id":"#appConfig/docus/header/showLinkIcon","default":false,"type":"boolean"},"exclude":{"title":"Paths to be excluded from header links.","description":"","tags":[],"tsType":"string[]","id":"#appConfig/docus/header/exclude","default":[],"type":"array","items":{"type":"any"}},"fluid":{"title":"Makes the content of the header fluid.","description":"","tags":[],"id":"#appConfig/docus/header/fluid","default":false,"type":"boolean"}},"type":"object","default":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false}},"main":{"title":"Main content configuration.","description":"","tags":["@studioIcon fluent:document-header-footer-24-filled"],"id":"#appConfig/docus/main","properties":{"fluid":{"title":"Makes the content of the main container fluid.","description":"","tags":[],"id":"#appConfig/docus/main/fluid","default":false,"type":"boolean"},"padded":{"title":"Makes the content of the main container padded.","description":"","tags":[],"id":"#appConfig/docus/main/padded","default":true,"type":"boolean"}},"type":"object","default":{"fluid":false,"padded":true}},"footer":{"title":"Footer configuration","description":"","tags":["@studioIcon fluent:document-footer-24-regular"],"id":"#appConfig/docus/footer","properties":{"credits":{"title":"Website credits configuration.","description":"","tags":["@studioIcon material-symbols:copyright"],"tsType":"false|{icon: string, text: string, href: string}","id":"#appConfig/docus/footer/credits","properties":{"icon":{"title":"Icon to show on credits","description":"","tags":["@formtype Icon"],"id":"#appConfig/docus/footer/credits/icon","default":"IconDocus","type":"string"},"text":{"type":"string","id":"#appConfig/docus/footer/credits/text","default":"Powered by Docus"},"href":{"type":"string","id":"#appConfig/docus/footer/credits/href","default":"https://docus.dev"}},"type":"object","default":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"}},"textLinks":{"type":"array","items":{"type":"object","required":["text","href"],"properties":{"href":{"type":"string","description":"URL when clicking the link"},"text":{"type":"string","description":"Text of the link"},"target":{"type":"string","description":"Target attribute of the link"}}},"title":"Text links","description":"Will be added into center section of the footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/textLinks"},"iconLinks":{"type":"array","items":{"type":"object","required":["icon","href"],"properties":{"icon":{"type":"string","description":"Icon name"},"href":{"type":"string","description":"Link when clicking on the icon"},"label":{"type":"string","description":"Label of the icon"}}},"title":"Icon links","description":"Icons to be added to Social Icons in footer.","tags":["@studioIcon material-symbols:add-link"],"id":"#appConfig/docus/footer/iconLinks"},"fluid":{"title":"Makes the content of the footer fluid.","description":"","tags":[],"id":"#appConfig/docus/footer/fluid","default":true,"type":"boolean"}},"type":"object","default":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true}},"github":{"title":"GitHub integration","description":"Configure the Edit on Github integration.","tags":["@studioIcon simple-icons:github"],"id":"#appConfig/docus/github","properties":{"dir":{"title":"Directory","description":"Your GitHub repository root directory.","tags":[],"id":"#appConfig/docus/github/dir","default":"","type":"string"},"branch":{"title":"Branch","description":"Your GitHub repository branch.","tags":[],"id":"#appConfig/docus/github/branch","default":"","type":"string"},"repo":{"title":"Repository","description":"Your GitHub repository name.","tags":[],"id":"#appConfig/docus/github/repo","default":"","type":"string"},"owner":{"title":"Owner","description":"Your GitHub repository owner.","tags":[],"id":"#appConfig/docus/github/owner","default":"","type":"string"},"edit":{"title":"EditOnGithub","description":"Display EditOnGithub button.","tags":[],"id":"#appConfig/docus/github/edit","default":false,"type":"boolean"}},"type":"object","default":{"dir":"","branch":"","repo":"","owner":"","edit":false}}},"type":"object","default":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"type":"object","default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"default":{"nuxtIcon":{"size":"","class":"","aliases":{}},"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"},"h1":{"icon":""},"h2":{"icon":""},"h3":{"icon":""},"h4":{"icon":""},"h5":{"icon":""},"h6":{"icon":""}},"docus":{"title":"Docus","titleTemplate":"%s · Docus","description":"The best place to start your documentation.","image":"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png","socials":{"twitter":"","github":"","facebook":"","instagram":"","youtube":"","medium":""},"layout":"default","aside":{"level":0,"collapsed":false,"exclude":[]},"header":{"title":"","logo":false,"showLinkIcon":false,"exclude":[],"fluid":false},"main":{"fluid":false,"padded":true},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"fluid":true},"github":{"dir":"","branch":"","repo":"","owner":"","edit":false}}}},"appConfig":{"prose":{"copyButton":{"iconCopy":"ph:copy","iconCopied":"ph:check"},"headings":{"icon":"ph:link"}},"docus":{"title":"Frontier","description":"","image":"","socials":{"twitter":"","github":"realdecoy/frontier","facebook":"","instagram":"","youtube":"","medium":""},"layout":{"fluid":true},"header":{"title":"","logo":"Logo","showLinkIcon":false,"fluid":false,"exclude":[]},"aside":{"level":1,"collapsed":false,"exclude":[]},"footer":{"credits":{"icon":"IconDocus","text":"Powered by Docus","href":"https://docus.dev"},"textLinks":[],"iconLinks":[{"label":"Realdecoy","href":"https://realdecoy.com","icon":"IconNuxt"}],"fluid":false},"github":{"dir":"","branch":"main","repo":"frontier","owner":"realdecoy","edit":true,"root":"","releases":true},"url":"https://realdecoy.com","cover":{"src":"/cover.jpg","alt":"Tooling maded easy for developers"}},"github":{"owner":"realdecoy","repo":"frontier","branch":"main"}},"tokensConfigSchema":{"properties":{"id":"#tokensConfig","properties":{"color":{"title":"Your website color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/color","properties":{"primary":{"id":"#tokensConfig/color/primary","properties":{"50":{"id":"#tokensConfig/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/50/value","default":"#fff2cc"}},"type":"object","default":{"value":"#fff2cc"}},"100":{"id":"#tokensConfig/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/100/value","default":"#ffe599"}},"type":"object","default":{"value":"#ffe599"}},"200":{"id":"#tokensConfig/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/200/value","default":"#ffd966"}},"type":"object","default":{"value":"#ffd966"}},"300":{"id":"#tokensConfig/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/300/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"400":{"id":"#tokensConfig/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/400/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"500":{"id":"#tokensConfig/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/500/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"600":{"id":"#tokensConfig/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/600/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"700":{"id":"#tokensConfig/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/700/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"800":{"id":"#tokensConfig/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/800/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}},"900":{"id":"#tokensConfig/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/primary/900/value","default":"#f1c232"}},"type":"object","default":{"value":"#f1c232"}}},"type":"object","default":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}}},"white":{"id":"#tokensConfig/color/white","properties":{"value":{"type":"string","id":"#tokensConfig/color/white/value","default":"#ffffff"}},"type":"object","default":{"value":"#ffffff"}},"black":{"id":"#tokensConfig/color/black","properties":{"value":{"type":"string","id":"#tokensConfig/color/black/value","default":"#0c0c0d"}},"type":"object","default":{"value":"#0c0c0d"}},"secondary":{"id":"#tokensConfig/color/secondary","properties":{"50":{"id":"#tokensConfig/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}},"gray":{"id":"#tokensConfig/color/gray","properties":{"50":{"id":"#tokensConfig/color/gray/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/50/value","default":"#fafafa"}},"type":"object","default":{"value":"#fafafa"}},"100":{"id":"#tokensConfig/color/gray/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/100/value","default":"#f4f4f5"}},"type":"object","default":{"value":"#f4f4f5"}},"200":{"id":"#tokensConfig/color/gray/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/200/value","default":"#e4e4e7"}},"type":"object","default":{"value":"#e4e4e7"}},"300":{"id":"#tokensConfig/color/gray/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/300/value","default":"#D4d4d8"}},"type":"object","default":{"value":"#D4d4d8"}},"400":{"id":"#tokensConfig/color/gray/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/400/value","default":"#a1a1aa"}},"type":"object","default":{"value":"#a1a1aa"}},"500":{"id":"#tokensConfig/color/gray/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/500/value","default":"#71717A"}},"type":"object","default":{"value":"#71717A"}},"600":{"id":"#tokensConfig/color/gray/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/600/value","default":"#52525B"}},"type":"object","default":{"value":"#52525B"}},"700":{"id":"#tokensConfig/color/gray/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/700/value","default":"#3f3f46"}},"type":"object","default":{"value":"#3f3f46"}},"800":{"id":"#tokensConfig/color/gray/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/800/value","default":"#27272A"}},"type":"object","default":{"value":"#27272A"}},"900":{"id":"#tokensConfig/color/gray/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/gray/900/value","default":"#18181B"}},"type":"object","default":{"value":"#18181B"}}},"type":"object","default":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}}},"green":{"id":"#tokensConfig/color/green","properties":{"50":{"id":"#tokensConfig/color/green/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/50/value","default":"#d6ffee"}},"type":"object","default":{"value":"#d6ffee"}},"100":{"id":"#tokensConfig/color/green/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/100/value","default":"#acffdd"}},"type":"object","default":{"value":"#acffdd"}},"200":{"id":"#tokensConfig/color/green/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/200/value","default":"#83ffcc"}},"type":"object","default":{"value":"#83ffcc"}},"300":{"id":"#tokensConfig/color/green/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/300/value","default":"#30ffaa"}},"type":"object","default":{"value":"#30ffaa"}},"400":{"id":"#tokensConfig/color/green/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/400/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"500":{"id":"#tokensConfig/color/green/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/500/value","default":"#00bd6f"}},"type":"object","default":{"value":"#00bd6f"}},"600":{"id":"#tokensConfig/color/green/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/600/value","default":"#009d5d"}},"type":"object","default":{"value":"#009d5d"}},"700":{"id":"#tokensConfig/color/green/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/700/value","default":"#007e4a"}},"type":"object","default":{"value":"#007e4a"}},"800":{"id":"#tokensConfig/color/green/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/800/value","default":"#005e38"}},"type":"object","default":{"value":"#005e38"}},"900":{"id":"#tokensConfig/color/green/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/green/900/value","default":"#003f25"}},"type":"object","default":{"value":"#003f25"}}},"type":"object","default":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}}},"yellow":{"id":"#tokensConfig/color/yellow","properties":{"50":{"id":"#tokensConfig/color/yellow/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/50/value","default":"#fdf6db"}},"type":"object","default":{"value":"#fdf6db"}},"100":{"id":"#tokensConfig/color/yellow/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/100/value","default":"#fcedb7"}},"type":"object","default":{"value":"#fcedb7"}},"200":{"id":"#tokensConfig/color/yellow/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/200/value","default":"#fae393"}},"type":"object","default":{"value":"#fae393"}},"300":{"id":"#tokensConfig/color/yellow/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/300/value","default":"#f8da70"}},"type":"object","default":{"value":"#f8da70"}},"400":{"id":"#tokensConfig/color/yellow/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/400/value","default":"#f7d14c"}},"type":"object","default":{"value":"#f7d14c"}},"500":{"id":"#tokensConfig/color/yellow/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/500/value","default":"#f5c828"}},"type":"object","default":{"value":"#f5c828"}},"600":{"id":"#tokensConfig/color/yellow/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/600/value","default":"#daac0a"}},"type":"object","default":{"value":"#daac0a"}},"700":{"id":"#tokensConfig/color/yellow/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/700/value","default":"#a38108"}},"type":"object","default":{"value":"#a38108"}},"800":{"id":"#tokensConfig/color/yellow/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/800/value","default":"#6d5605"}},"type":"object","default":{"value":"#6d5605"}},"900":{"id":"#tokensConfig/color/yellow/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/yellow/900/value","default":"#362b03"}},"type":"object","default":{"value":"#362b03"}}},"type":"object","default":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}}},"orange":{"id":"#tokensConfig/color/orange","properties":{"50":{"id":"#tokensConfig/color/orange/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/50/value","default":"#ffe9d9"}},"type":"object","default":{"value":"#ffe9d9"}},"100":{"id":"#tokensConfig/color/orange/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/100/value","default":"#ffd3b3"}},"type":"object","default":{"value":"#ffd3b3"}},"200":{"id":"#tokensConfig/color/orange/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/200/value","default":"#ffbd8d"}},"type":"object","default":{"value":"#ffbd8d"}},"300":{"id":"#tokensConfig/color/orange/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/300/value","default":"#ffa666"}},"type":"object","default":{"value":"#ffa666"}},"400":{"id":"#tokensConfig/color/orange/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/400/value","default":"#ff9040"}},"type":"object","default":{"value":"#ff9040"}},"500":{"id":"#tokensConfig/color/orange/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/500/value","default":"#ff7a1a"}},"type":"object","default":{"value":"#ff7a1a"}},"600":{"id":"#tokensConfig/color/orange/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/600/value","default":"#e15e00"}},"type":"object","default":{"value":"#e15e00"}},"700":{"id":"#tokensConfig/color/orange/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/700/value","default":"#a94700"}},"type":"object","default":{"value":"#a94700"}},"800":{"id":"#tokensConfig/color/orange/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/800/value","default":"#702f00"}},"type":"object","default":{"value":"#702f00"}},"900":{"id":"#tokensConfig/color/orange/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/orange/900/value","default":"#381800"}},"type":"object","default":{"value":"#381800"}}},"type":"object","default":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}}},"red":{"id":"#tokensConfig/color/red","properties":{"50":{"id":"#tokensConfig/color/red/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/50/value","default":"#ffdbd9"}},"type":"object","default":{"value":"#ffdbd9"}},"100":{"id":"#tokensConfig/color/red/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/100/value","default":"#ffb7b3"}},"type":"object","default":{"value":"#ffb7b3"}},"200":{"id":"#tokensConfig/color/red/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/200/value","default":"#ff948d"}},"type":"object","default":{"value":"#ff948d"}},"300":{"id":"#tokensConfig/color/red/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/300/value","default":"#ff7066"}},"type":"object","default":{"value":"#ff7066"}},"400":{"id":"#tokensConfig/color/red/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/400/value","default":"#ff4c40"}},"type":"object","default":{"value":"#ff4c40"}},"500":{"id":"#tokensConfig/color/red/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/500/value","default":"#ff281a"}},"type":"object","default":{"value":"#ff281a"}},"600":{"id":"#tokensConfig/color/red/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/600/value","default":"#e10e00"}},"type":"object","default":{"value":"#e10e00"}},"700":{"id":"#tokensConfig/color/red/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/700/value","default":"#a90a00"}},"type":"object","default":{"value":"#a90a00"}},"800":{"id":"#tokensConfig/color/red/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/800/value","default":"#700700"}},"type":"object","default":{"value":"#700700"}},"900":{"id":"#tokensConfig/color/red/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/red/900/value","default":"#380300"}},"type":"object","default":{"value":"#380300"}}},"type":"object","default":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}}},"pear":{"id":"#tokensConfig/color/pear","properties":{"50":{"id":"#tokensConfig/color/pear/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/50/value","default":"#f7f8dc"}},"type":"object","default":{"value":"#f7f8dc"}},"100":{"id":"#tokensConfig/color/pear/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/100/value","default":"#eff0ba"}},"type":"object","default":{"value":"#eff0ba"}},"200":{"id":"#tokensConfig/color/pear/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/200/value","default":"#e8e997"}},"type":"object","default":{"value":"#e8e997"}},"300":{"id":"#tokensConfig/color/pear/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/300/value","default":"#e0e274"}},"type":"object","default":{"value":"#e0e274"}},"400":{"id":"#tokensConfig/color/pear/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/400/value","default":"#d8da52"}},"type":"object","default":{"value":"#d8da52"}},"500":{"id":"#tokensConfig/color/pear/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/500/value","default":"#d0d32f"}},"type":"object","default":{"value":"#d0d32f"}},"600":{"id":"#tokensConfig/color/pear/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/600/value","default":"#a8aa24"}},"type":"object","default":{"value":"#a8aa24"}},"700":{"id":"#tokensConfig/color/pear/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/700/value","default":"#7e801b"}},"type":"object","default":{"value":"#7e801b"}},"800":{"id":"#tokensConfig/color/pear/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/800/value","default":"#545512"}},"type":"object","default":{"value":"#545512"}},"900":{"id":"#tokensConfig/color/pear/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pear/900/value","default":"#2a2b09"}},"type":"object","default":{"value":"#2a2b09"}}},"type":"object","default":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}}},"teal":{"id":"#tokensConfig/color/teal","properties":{"50":{"id":"#tokensConfig/color/teal/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/50/value","default":"#d7faf8"}},"type":"object","default":{"value":"#d7faf8"}},"100":{"id":"#tokensConfig/color/teal/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/100/value","default":"#aff4f0"}},"type":"object","default":{"value":"#aff4f0"}},"200":{"id":"#tokensConfig/color/teal/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/200/value","default":"#87efe9"}},"type":"object","default":{"value":"#87efe9"}},"300":{"id":"#tokensConfig/color/teal/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/300/value","default":"#5fe9e1"}},"type":"object","default":{"value":"#5fe9e1"}},"400":{"id":"#tokensConfig/color/teal/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/400/value","default":"#36e4da"}},"type":"object","default":{"value":"#36e4da"}},"500":{"id":"#tokensConfig/color/teal/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/500/value","default":"#1cd1c6"}},"type":"object","default":{"value":"#1cd1c6"}},"600":{"id":"#tokensConfig/color/teal/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/600/value","default":"#16a79e"}},"type":"object","default":{"value":"#16a79e"}},"700":{"id":"#tokensConfig/color/teal/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/700/value","default":"#117d77"}},"type":"object","default":{"value":"#117d77"}},"800":{"id":"#tokensConfig/color/teal/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/800/value","default":"#0b544f"}},"type":"object","default":{"value":"#0b544f"}},"900":{"id":"#tokensConfig/color/teal/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/teal/900/value","default":"#062a28"}},"type":"object","default":{"value":"#062a28"}}},"type":"object","default":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}}},"lightblue":{"id":"#tokensConfig/color/lightblue","properties":{"50":{"id":"#tokensConfig/color/lightblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/50/value","default":"#d9f8ff"}},"type":"object","default":{"value":"#d9f8ff"}},"100":{"id":"#tokensConfig/color/lightblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/100/value","default":"#b3f1ff"}},"type":"object","default":{"value":"#b3f1ff"}},"200":{"id":"#tokensConfig/color/lightblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/200/value","default":"#8deaff"}},"type":"object","default":{"value":"#8deaff"}},"300":{"id":"#tokensConfig/color/lightblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/300/value","default":"#66e4ff"}},"type":"object","default":{"value":"#66e4ff"}},"400":{"id":"#tokensConfig/color/lightblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/400/value","default":"#40ddff"}},"type":"object","default":{"value":"#40ddff"}},"500":{"id":"#tokensConfig/color/lightblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/500/value","default":"#1ad6ff"}},"type":"object","default":{"value":"#1ad6ff"}},"600":{"id":"#tokensConfig/color/lightblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/600/value","default":"#00b9e1"}},"type":"object","default":{"value":"#00b9e1"}},"700":{"id":"#tokensConfig/color/lightblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/700/value","default":"#008aa9"}},"type":"object","default":{"value":"#008aa9"}},"800":{"id":"#tokensConfig/color/lightblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/800/value","default":"#005c70"}},"type":"object","default":{"value":"#005c70"}},"900":{"id":"#tokensConfig/color/lightblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/lightblue/900/value","default":"#002e38"}},"type":"object","default":{"value":"#002e38"}}},"type":"object","default":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}}},"blue":{"id":"#tokensConfig/color/blue","properties":{"50":{"id":"#tokensConfig/color/blue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/50/value","default":"#d9f1ff"}},"type":"object","default":{"value":"#d9f1ff"}},"100":{"id":"#tokensConfig/color/blue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/100/value","default":"#b3e4ff"}},"type":"object","default":{"value":"#b3e4ff"}},"200":{"id":"#tokensConfig/color/blue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/200/value","default":"#8dd6ff"}},"type":"object","default":{"value":"#8dd6ff"}},"300":{"id":"#tokensConfig/color/blue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/300/value","default":"#66c8ff"}},"type":"object","default":{"value":"#66c8ff"}},"400":{"id":"#tokensConfig/color/blue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/400/value","default":"#40bbff"}},"type":"object","default":{"value":"#40bbff"}},"500":{"id":"#tokensConfig/color/blue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/500/value","default":"#1aadff"}},"type":"object","default":{"value":"#1aadff"}},"600":{"id":"#tokensConfig/color/blue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/600/value","default":"#0090e1"}},"type":"object","default":{"value":"#0090e1"}},"700":{"id":"#tokensConfig/color/blue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/700/value","default":"#006ca9"}},"type":"object","default":{"value":"#006ca9"}},"800":{"id":"#tokensConfig/color/blue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/800/value","default":"#004870"}},"type":"object","default":{"value":"#004870"}},"900":{"id":"#tokensConfig/color/blue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/blue/900/value","default":"#002438"}},"type":"object","default":{"value":"#002438"}}},"type":"object","default":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}}},"indigoblue":{"id":"#tokensConfig/color/indigoblue","properties":{"50":{"id":"#tokensConfig/color/indigoblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/50/value","default":"#d9e5ff"}},"type":"object","default":{"value":"#d9e5ff"}},"100":{"id":"#tokensConfig/color/indigoblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/100/value","default":"#b3cbff"}},"type":"object","default":{"value":"#b3cbff"}},"200":{"id":"#tokensConfig/color/indigoblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/200/value","default":"#8db0ff"}},"type":"object","default":{"value":"#8db0ff"}},"300":{"id":"#tokensConfig/color/indigoblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/300/value","default":"#6696ff"}},"type":"object","default":{"value":"#6696ff"}},"400":{"id":"#tokensConfig/color/indigoblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/400/value","default":"#407cff"}},"type":"object","default":{"value":"#407cff"}},"500":{"id":"#tokensConfig/color/indigoblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/500/value","default":"#1a62ff"}},"type":"object","default":{"value":"#1a62ff"}},"600":{"id":"#tokensConfig/color/indigoblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/600/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}},"700":{"id":"#tokensConfig/color/indigoblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/700/value","default":"#0035a9"}},"type":"object","default":{"value":"#0035a9"}},"800":{"id":"#tokensConfig/color/indigoblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/800/value","default":"#002370"}},"type":"object","default":{"value":"#002370"}},"900":{"id":"#tokensConfig/color/indigoblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/indigoblue/900/value","default":"#001238"}},"type":"object","default":{"value":"#001238"}}},"type":"object","default":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}}},"royalblue":{"id":"#tokensConfig/color/royalblue","properties":{"50":{"id":"#tokensConfig/color/royalblue/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/50/value","default":"#dfdbfb"}},"type":"object","default":{"value":"#dfdbfb"}},"100":{"id":"#tokensConfig/color/royalblue/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/100/value","default":"#c0b7f7"}},"type":"object","default":{"value":"#c0b7f7"}},"200":{"id":"#tokensConfig/color/royalblue/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/200/value","default":"#a093f3"}},"type":"object","default":{"value":"#a093f3"}},"300":{"id":"#tokensConfig/color/royalblue/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/300/value","default":"#806ff0"}},"type":"object","default":{"value":"#806ff0"}},"400":{"id":"#tokensConfig/color/royalblue/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/400/value","default":"#614bec"}},"type":"object","default":{"value":"#614bec"}},"500":{"id":"#tokensConfig/color/royalblue/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/500/value","default":"#4127e8"}},"type":"object","default":{"value":"#4127e8"}},"600":{"id":"#tokensConfig/color/royalblue/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/600/value","default":"#2c15c4"}},"type":"object","default":{"value":"#2c15c4"}},"700":{"id":"#tokensConfig/color/royalblue/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/700/value","default":"#211093"}},"type":"object","default":{"value":"#211093"}},"800":{"id":"#tokensConfig/color/royalblue/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/800/value","default":"#160a62"}},"type":"object","default":{"value":"#160a62"}},"900":{"id":"#tokensConfig/color/royalblue/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/royalblue/900/value","default":"#0b0531"}},"type":"object","default":{"value":"#0b0531"}}},"type":"object","default":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}}},"purple":{"id":"#tokensConfig/color/purple","properties":{"50":{"id":"#tokensConfig/color/purple/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/50/value","default":"#ead9ff"}},"type":"object","default":{"value":"#ead9ff"}},"100":{"id":"#tokensConfig/color/purple/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/100/value","default":"#d5b3ff"}},"type":"object","default":{"value":"#d5b3ff"}},"200":{"id":"#tokensConfig/color/purple/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/200/value","default":"#c08dff"}},"type":"object","default":{"value":"#c08dff"}},"300":{"id":"#tokensConfig/color/purple/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/300/value","default":"#ab66ff"}},"type":"object","default":{"value":"#ab66ff"}},"400":{"id":"#tokensConfig/color/purple/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/400/value","default":"#9640ff"}},"type":"object","default":{"value":"#9640ff"}},"500":{"id":"#tokensConfig/color/purple/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/500/value","default":"#811aff"}},"type":"object","default":{"value":"#811aff"}},"600":{"id":"#tokensConfig/color/purple/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/600/value","default":"#6500e1"}},"type":"object","default":{"value":"#6500e1"}},"700":{"id":"#tokensConfig/color/purple/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/700/value","default":"#4c00a9"}},"type":"object","default":{"value":"#4c00a9"}},"800":{"id":"#tokensConfig/color/purple/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/800/value","default":"#330070"}},"type":"object","default":{"value":"#330070"}},"900":{"id":"#tokensConfig/color/purple/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/purple/900/value","default":"#190038"}},"type":"object","default":{"value":"#190038"}}},"type":"object","default":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}}},"pink":{"id":"#tokensConfig/color/pink","properties":{"50":{"id":"#tokensConfig/color/pink/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/50/value","default":"#ffd9f2"}},"type":"object","default":{"value":"#ffd9f2"}},"100":{"id":"#tokensConfig/color/pink/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/100/value","default":"#ffb3e5"}},"type":"object","default":{"value":"#ffb3e5"}},"200":{"id":"#tokensConfig/color/pink/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/200/value","default":"#ff8dd8"}},"type":"object","default":{"value":"#ff8dd8"}},"300":{"id":"#tokensConfig/color/pink/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/300/value","default":"#ff66cc"}},"type":"object","default":{"value":"#ff66cc"}},"400":{"id":"#tokensConfig/color/pink/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/400/value","default":"#ff40bf"}},"type":"object","default":{"value":"#ff40bf"}},"500":{"id":"#tokensConfig/color/pink/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/500/value","default":"#ff1ab2"}},"type":"object","default":{"value":"#ff1ab2"}},"600":{"id":"#tokensConfig/color/pink/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/600/value","default":"#e10095"}},"type":"object","default":{"value":"#e10095"}},"700":{"id":"#tokensConfig/color/pink/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/700/value","default":"#a90070"}},"type":"object","default":{"value":"#a90070"}},"800":{"id":"#tokensConfig/color/pink/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/800/value","default":"#70004b"}},"type":"object","default":{"value":"#70004b"}},"900":{"id":"#tokensConfig/color/pink/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/pink/900/value","default":"#380025"}},"type":"object","default":{"value":"#380025"}}},"type":"object","default":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}}},"ruby":{"id":"#tokensConfig/color/ruby","properties":{"50":{"id":"#tokensConfig/color/ruby/50","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/50/value","default":"#ffd9e4"}},"type":"object","default":{"value":"#ffd9e4"}},"100":{"id":"#tokensConfig/color/ruby/100","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/100/value","default":"#ffb3c9"}},"type":"object","default":{"value":"#ffb3c9"}},"200":{"id":"#tokensConfig/color/ruby/200","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/200/value","default":"#ff8dae"}},"type":"object","default":{"value":"#ff8dae"}},"300":{"id":"#tokensConfig/color/ruby/300","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/300/value","default":"#ff6694"}},"type":"object","default":{"value":"#ff6694"}},"400":{"id":"#tokensConfig/color/ruby/400","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/400/value","default":"#ff4079"}},"type":"object","default":{"value":"#ff4079"}},"500":{"id":"#tokensConfig/color/ruby/500","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/500/value","default":"#ff1a5e"}},"type":"object","default":{"value":"#ff1a5e"}},"600":{"id":"#tokensConfig/color/ruby/600","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/600/value","default":"#e10043"}},"type":"object","default":{"value":"#e10043"}},"700":{"id":"#tokensConfig/color/ruby/700","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/700/value","default":"#a90032"}},"type":"object","default":{"value":"#a90032"}},"800":{"id":"#tokensConfig/color/ruby/800","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/800/value","default":"#700021"}},"type":"object","default":{"value":"#700021"}},"900":{"id":"#tokensConfig/color/ruby/900","properties":{"value":{"type":"string","id":"#tokensConfig/color/ruby/900/value","default":"#380011"}},"type":"object","default":{"value":"#380011"}}},"type":"object","default":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"type":"object","default":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}}},"elements":{"title":"All the configurable tokens for your Elements.","tags":["@studioIcon uiw:component"],"id":"#tokensConfig/elements","properties":{"text":{"id":"#tokensConfig/elements/text","properties":{"primary":{"id":"#tokensConfig/elements/text/primary","properties":{"color":{"id":"#tokensConfig/elements/text/primary/color","properties":{"static":{"id":"#tokensConfig/elements/text/primary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/primary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/initial","default":"{color.gray.900}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/primary/color/static/value/dark","default":"{color.gray.50}"}},"type":"object","default":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"type":"object","default":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}}},"hover":{"id":"#tokensConfig/elements/text/primary/color/hover","type":"any","default":{}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}}},"secondary":{"id":"#tokensConfig/elements/text/secondary","properties":{"color":{"id":"#tokensConfig/elements/text/secondary/color","properties":{"static":{"id":"#tokensConfig/elements/text/secondary/color/static","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/initial","default":"{color.gray.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/static/value/dark","default":"{color.gray.400}"}},"type":"object","default":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"type":"object","default":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}}},"hover":{"id":"#tokensConfig/elements/text/secondary/color/hover","properties":{"value":{"id":"#tokensConfig/elements/text/secondary/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/initial","default":"{color.gray.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/text/secondary/color/hover/value/dark","default":"{color.gray.200}"}},"type":"object","default":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}},"type":"object","default":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"type":"object","default":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"type":"object","default":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}}},"container":{"title":"Main container sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:width-full-outline"],"id":"#tokensConfig/elements/container","properties":{"maxWidth":{"id":"#tokensConfig/elements/container/maxWidth","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/maxWidth/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"padding":{"id":"#tokensConfig/elements/container/padding","properties":{"mobile":{"id":"#tokensConfig/elements/container/padding/mobile","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/mobile/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"xs":{"id":"#tokensConfig/elements/container/padding/xs","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/xs/value","default":"{space.4}"}},"type":"object","default":{"value":"{space.4}"}},"sm":{"id":"#tokensConfig/elements/container/padding/sm","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/sm/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}},"md":{"id":"#tokensConfig/elements/container/padding/md","properties":{"value":{"type":"string","id":"#tokensConfig/elements/container/padding/md/value","default":"{space.6}"}},"type":"object","default":{"value":"{space.6}"}}},"type":"object","default":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"type":"object","default":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}}},"backdrop":{"title":"Backdrops used in Elements.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:blur-circular"],"id":"#tokensConfig/elements/backdrop","properties":{"filter":{"id":"#tokensConfig/elements/backdrop/filter","properties":{"value":{"type":"string","id":"#tokensConfig/elements/backdrop/filter/value","default":"saturate(200%) blur(20px)"}},"type":"object","default":{"value":"saturate(200%) blur(20px)"}},"background":{"id":"#tokensConfig/elements/backdrop/background","properties":{"value":{"id":"#tokensConfig/elements/backdrop/background/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/initial","default":"#fffc"},"dark":{"type":"string","id":"#tokensConfig/elements/backdrop/background/value/dark","default":"#0c0d0ccc"}},"type":"object","default":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"type":"object","default":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"type":"object","default":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}}},"border":{"title":"Borders used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/elements/border","properties":{"primary":{"id":"#tokensConfig/elements/border/primary","properties":{"static":{"id":"#tokensConfig/elements/border/primary/static","properties":{"value":{"id":"#tokensConfig/elements/border/primary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/static/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"hover":{"id":"#tokensConfig/elements/border/primary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/primary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/primary/hover/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}}},"secondary":{"id":"#tokensConfig/elements/border/secondary","properties":{"static":{"id":"#tokensConfig/elements/border/secondary/static","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/initial","default":"{color.gray.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/static/value/dark","default":"{color.gray.800}"}},"type":"object","default":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"type":"object","default":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"hover":{"id":"#tokensConfig/elements/border/secondary/hover","properties":{"value":{"id":"#tokensConfig/elements/border/secondary/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/initial","default":""},"dark":{"type":"string","id":"#tokensConfig/elements/border/secondary/hover/value/dark","default":""}},"type":"object","default":{"initial":"","dark":""}}},"type":"object","default":{"value":{"initial":"","dark":""}}}},"type":"object","default":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"type":"object","default":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}}},"surface":{"title":"Surfaces used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon fluent:surface-hub-20-filled"],"id":"#tokensConfig/elements/surface","properties":{"background":{"id":"#tokensConfig/elements/surface/background","properties":{"base":{"id":"#tokensConfig/elements/surface/background/base","properties":{"value":{"id":"#tokensConfig/elements/surface/background/base/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/initial","default":"{color.gray.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/surface/background/base/value/dark","default":"{color.gray.900}"}},"type":"object","default":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}},"type":"object","default":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"type":"object","default":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"type":"object","default":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}}},"state":{"title":"Color states used in Elements.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon mdi:palette-advanced"],"id":"#tokensConfig/elements/state","properties":{"primary":{"id":"#tokensConfig/elements/state/primary","properties":{"color":{"id":"#tokensConfig/elements/state/primary/color","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/initial","default":"{color.primary.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/primary/value/dark","default":"{color.primary.400}"}},"type":"object","default":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/initial","default":"{color.primary.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/color/secondary/value/dark","default":"{color.primary.200}"}},"type":"object","default":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"type":"object","default":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/primary/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial","default":"{color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark","default":"{color.primary.900}"}},"type":"object","default":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/primary/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/primary/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/initial","default":"{color.primary.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/primary/value/dark","default":"{color.primary.800}"}},"type":"object","default":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"type":"object","default":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/primary/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/initial","default":"{color.primary.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/primary/borderColor/secondary/value/dark","default":"{color.primary.700}"}},"type":"object","default":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}},"type":"object","default":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}}},"info":{"id":"#tokensConfig/elements/state/info","properties":{"color":{"id":"#tokensConfig/elements/state/info/color","properties":{"primary":{"id":"#tokensConfig/elements/state/info/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/initial","default":"{color.blue.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/primary/value/dark","default":"{color.blue.400}"}},"type":"object","default":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"type":"object","default":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/initial","default":"{color.blue.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/color/secondary/value/dark","default":"{color.blue.200}"}},"type":"object","default":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"type":"object","default":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/info/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/initial","default":"{color.blue.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/primary/value/dark","default":"{color.blue.900}"}},"type":"object","default":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"type":"object","default":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/info/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/info/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/initial","default":"{color.blue.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/primary/value/dark","default":"{color.blue.800}"}},"type":"object","default":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"type":"object","default":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/info/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/info/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/initial","default":"{color.blue.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/info/borderColor/secondary/value/dark","default":"{color.blue.700}"}},"type":"object","default":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}},"type":"object","default":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}}},"success":{"id":"#tokensConfig/elements/state/success","properties":{"color":{"id":"#tokensConfig/elements/state/success/color","properties":{"primary":{"id":"#tokensConfig/elements/state/success/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/initial","default":"{color.green.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/primary/value/dark","default":"{color.green.400}"}},"type":"object","default":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"type":"object","default":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/initial","default":"{color.green.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/color/secondary/value/dark","default":"{color.green.200}"}},"type":"object","default":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"type":"object","default":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/success/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/initial","default":"{color.green.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/primary/value/dark","default":"{color.green.900}"}},"type":"object","default":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"type":"object","default":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/success/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/success/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/initial","default":"{color.green.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/primary/value/dark","default":"{color.green.800}"}},"type":"object","default":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"type":"object","default":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/success/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/success/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/initial","default":"{color.green.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/success/borderColor/secondary/value/dark","default":"{color.green.700}"}},"type":"object","default":{"initial":"{color.green.200}","dark":"{color.green.700}"}}},"type":"object","default":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}}},"warning":{"id":"#tokensConfig/elements/state/warning","properties":{"color":{"id":"#tokensConfig/elements/state/warning/color","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/initial","default":"{color.yellow.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/primary/value/dark","default":"{color.yellow.400}"}},"type":"object","default":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/initial","default":"{color.yellow.700}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/color/secondary/value/dark","default":"{color.yellow.200}"}},"type":"object","default":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/warning/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial","default":"{color.yellow.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark","default":"{color.yellow.900}"}},"type":"object","default":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/warning/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/warning/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/initial","default":"{color.yellow.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/primary/value/dark","default":"{color.yellow.800}"}},"type":"object","default":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/warning/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/initial","default":"{color.yellow.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/warning/borderColor/secondary/value/dark","default":"{color.yellow.700}"}},"type":"object","default":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}},"type":"object","default":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}}},"danger":{"id":"#tokensConfig/elements/state/danger","properties":{"color":{"id":"#tokensConfig/elements/state/danger/color","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/color/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/initial","default":"{color.red.500}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/primary/value/dark","default":"{color.red.300}"}},"type":"object","default":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"type":"object","default":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/color/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/color/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/initial","default":"{color.red.600}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/color/secondary/value/dark","default":"{color.red.200}"}},"type":"object","default":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"type":"object","default":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}}},"backgroundColor":{"id":"#tokensConfig/elements/state/danger/backgroundColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial","default":"{color.red.50}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark","default":"{color.red.900}"}},"type":"object","default":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"type":"object","default":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}}},"borderColor":{"id":"#tokensConfig/elements/state/danger/borderColor","properties":{"primary":{"id":"#tokensConfig/elements/state/danger/borderColor/primary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/primary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/initial","default":"{color.red.100}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/primary/value/dark","default":"{color.red.800}"}},"type":"object","default":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"type":"object","default":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"secondary":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary","properties":{"value":{"id":"#tokensConfig/elements/state/danger/borderColor/secondary/value","properties":{"initial":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/initial","default":"{color.red.200}"},"dark":{"type":"string","id":"#tokensConfig/elements/state/danger/borderColor/secondary/value/dark","default":"{color.red.700}"}},"type":"object","default":{"initial":"{color.red.200}","dark":"{color.red.700}"}}},"type":"object","default":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}},"type":"object","default":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}},"type":"object","default":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"type":"object","default":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"type":"object","default":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}}},"typography":{"title":"All the configurable tokens for your Typography.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:article"],"id":"#tokensConfig/typography","properties":{"verticalMargin":{"title":"Vertical spacings between paragraphs.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:line-height-line"],"id":"#tokensConfig/typography/verticalMargin","properties":{"sm":{"id":"#tokensConfig/typography/verticalMargin/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/sm/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"base":{"id":"#tokensConfig/typography/verticalMargin/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/verticalMargin/base/value","default":"32px"}},"type":"object","default":{"value":"32px"}}},"type":"object","default":{"sm":{"value":"16px"},"base":{"value":"32px"}}},"letterSpacing":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon mingcute:letter-spacing-line"],"id":"#tokensConfig/typography/letterSpacing","properties":{"tight":{"id":"#tokensConfig/typography/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"wide":{"id":"#tokensConfig/typography/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/typography/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}}},"type":"object","default":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}}},"fontSize":{"title":"Horizontal spacings between letters.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:font-size-fill"],"id":"#tokensConfig/typography/fontSize","properties":{"xs":{"id":"#tokensConfig/typography/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xs/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"sm":{"id":"#tokensConfig/typography/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/sm/value","default":"14px"}},"type":"object","default":{"value":"14px"}},"base":{"id":"#tokensConfig/typography/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/base/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"lg":{"id":"#tokensConfig/typography/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/lg/value","default":"18px"}},"type":"object","default":{"value":"18px"}},"xl":{"id":"#tokensConfig/typography/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/xl/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"2xl":{"id":"#tokensConfig/typography/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/2xl/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"3xl":{"id":"#tokensConfig/typography/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/3xl/value","default":"30px"}},"type":"object","default":{"value":"30px"}},"4xl":{"id":"#tokensConfig/typography/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/4xl/value","default":"36px"}},"type":"object","default":{"value":"36px"}},"5xl":{"id":"#tokensConfig/typography/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/5xl/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"6xl":{"id":"#tokensConfig/typography/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/6xl/value","default":"60px"}},"type":"object","default":{"value":"60px"}},"7xl":{"id":"#tokensConfig/typography/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/7xl/value","default":"72px"}},"type":"object","default":{"value":"72px"}},"8xl":{"id":"#tokensConfig/typography/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/8xl/value","default":"96px"}},"type":"object","default":{"value":"96px"}},"9xl":{"id":"#tokensConfig/typography/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontSize/9xl/value","default":"128px"}},"type":"object","default":{"value":"128px"}}},"type":"object","default":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}}},"fontWeight":{"title":"Font weights used in typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon mingcute:bold-fill"],"id":"#tokensConfig/typography/fontWeight","properties":{"thin":{"id":"#tokensConfig/typography/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/typography/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/typography/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/typography/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/typography/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/typography/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/typography/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/typography/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/typography/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/typography/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"lead":{"title":"Line heights used in your typography.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon material-symbols:height-rounded"],"id":"#tokensConfig/typography/lead","properties":{"none":{"id":"#tokensConfig/typography/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/typography/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/typography/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/typography/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/typography/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/typography/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/typography/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your typography fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/typography/font","properties":{"display":{"id":"#tokensConfig/typography/font/display","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/display/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"body":{"id":"#tokensConfig/typography/font/body","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/body/value","default":"{font.sans}"}},"type":"object","default":{"value":"{font.sans}"}},"code":{"id":"#tokensConfig/typography/font/code","properties":{"value":{"type":"string","id":"#tokensConfig/typography/font/code/value","default":"{font.mono}"}},"type":"object","default":{"value":"{font.mono}"}}},"type":"object","default":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}}},"color":{"title":"Your typography color palette.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon ph:palette"],"id":"#tokensConfig/typography/color","properties":{"primary":{"id":"#tokensConfig/typography/color/primary","properties":{"50":{"id":"#tokensConfig/typography/color/primary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/50/value","default":"{color.primary.50}"}},"type":"object","default":{"value":"{color.primary.50}"}},"100":{"id":"#tokensConfig/typography/color/primary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/100/value","default":"{color.primary.100}"}},"type":"object","default":{"value":"{color.primary.100}"}},"200":{"id":"#tokensConfig/typography/color/primary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/200/value","default":"{color.primary.200}"}},"type":"object","default":{"value":"{color.primary.200}"}},"300":{"id":"#tokensConfig/typography/color/primary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/300/value","default":"{color.primary.300}"}},"type":"object","default":{"value":"{color.primary.300}"}},"400":{"id":"#tokensConfig/typography/color/primary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/400/value","default":"{color.primary.400}"}},"type":"object","default":{"value":"{color.primary.400}"}},"500":{"id":"#tokensConfig/typography/color/primary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/500/value","default":"{color.primary.500}"}},"type":"object","default":{"value":"{color.primary.500}"}},"600":{"id":"#tokensConfig/typography/color/primary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/600/value","default":"{color.primary.600}"}},"type":"object","default":{"value":"{color.primary.600}"}},"700":{"id":"#tokensConfig/typography/color/primary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/700/value","default":"{color.primary.700}"}},"type":"object","default":{"value":"{color.primary.700}"}},"800":{"id":"#tokensConfig/typography/color/primary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/800/value","default":"{color.primary.800}"}},"type":"object","default":{"value":"{color.primary.800}"}},"900":{"id":"#tokensConfig/typography/color/primary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/primary/900/value","default":"{color.primary.900}"}},"type":"object","default":{"value":"{color.primary.900}"}}},"type":"object","default":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}}},"secondary":{"id":"#tokensConfig/typography/color/secondary","properties":{"50":{"id":"#tokensConfig/typography/color/secondary/50","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/50/value","default":"{color.gray.50}"}},"type":"object","default":{"value":"{color.gray.50}"}},"100":{"id":"#tokensConfig/typography/color/secondary/100","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/100/value","default":"{color.gray.100}"}},"type":"object","default":{"value":"{color.gray.100}"}},"200":{"id":"#tokensConfig/typography/color/secondary/200","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/200/value","default":"{color.gray.200}"}},"type":"object","default":{"value":"{color.gray.200}"}},"300":{"id":"#tokensConfig/typography/color/secondary/300","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/300/value","default":"{color.gray.300}"}},"type":"object","default":{"value":"{color.gray.300}"}},"400":{"id":"#tokensConfig/typography/color/secondary/400","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/400/value","default":"{color.gray.400}"}},"type":"object","default":{"value":"{color.gray.400}"}},"500":{"id":"#tokensConfig/typography/color/secondary/500","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/500/value","default":"{color.gray.500}"}},"type":"object","default":{"value":"{color.gray.500}"}},"600":{"id":"#tokensConfig/typography/color/secondary/600","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/600/value","default":"{color.gray.600}"}},"type":"object","default":{"value":"{color.gray.600}"}},"700":{"id":"#tokensConfig/typography/color/secondary/700","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/700/value","default":"{color.gray.700}"}},"type":"object","default":{"value":"{color.gray.700}"}},"800":{"id":"#tokensConfig/typography/color/secondary/800","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/800/value","default":"{color.gray.800}"}},"type":"object","default":{"value":"{color.gray.800}"}},"900":{"id":"#tokensConfig/typography/color/secondary/900","properties":{"value":{"type":"string","id":"#tokensConfig/typography/color/secondary/900/value","default":"{color.gray.900}"}},"type":"object","default":{"value":"{color.gray.900}"}}},"type":"object","default":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"type":"object","default":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"type":"object","default":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}}},"prose":{"title":"All the configurable tokens for your Prose components.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon lucide:component"],"id":"#tokensConfig/prose","properties":{"p":{"id":"#tokensConfig/prose/p","properties":{"fontSize":{"id":"#tokensConfig/prose/p/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/fontSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/prose/p/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"margin":{"id":"#tokensConfig/prose/p/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"br":{"id":"#tokensConfig/prose/p/br","properties":{"margin":{"id":"#tokensConfig/prose/p/br/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/p/br/margin/value","default":"{typography.verticalMargin.base} 0 0 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}}},"h1":{"id":"#tokensConfig/prose/h1","properties":{"margin":{"id":"#tokensConfig/prose/h1/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/margin/value","default":"0 0 2rem"}},"type":"object","default":{"value":"0 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h1/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontSize/value","default":"{typography.fontSize.5xl}"}},"type":"object","default":{"value":"{typography.fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h1/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h1/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/fontWeight/value","default":"{typography.fontWeight.bold}"}},"type":"object","default":{"value":"{typography.fontWeight.bold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h1/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h1/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h1/iconSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}}},"type":"object","default":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}}},"h2":{"id":"#tokensConfig/prose/h2","properties":{"margin":{"id":"#tokensConfig/prose/h2/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h2/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontSize/value","default":"{typography.fontSize.4xl}"}},"type":"object","default":{"value":"{typography.fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h2/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/lineHeight/value","default":"{typography.lead.tight}"}},"type":"object","default":{"value":"{typography.lead.tight}"}},"fontWeight":{"id":"#tokensConfig/prose/h2/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h2/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h2/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h2/iconSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}}},"h3":{"id":"#tokensConfig/prose/h3","properties":{"margin":{"id":"#tokensConfig/prose/h3/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h3/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontSize/value","default":"{typography.fontSize.3xl}"}},"type":"object","default":{"value":"{typography.fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h3/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h3/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h3/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h3/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h3/iconSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}}},"h4":{"id":"#tokensConfig/prose/h4","properties":{"margin":{"id":"#tokensConfig/prose/h4/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h4/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontSize/value","default":"{typography.fontSize.2xl}"}},"type":"object","default":{"value":"{typography.fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h4/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h4/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"letterSpacing":{"id":"#tokensConfig/prose/h4/letterSpacing","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/letterSpacing/value","default":"{typography.letterSpacing.tight}"}},"type":"object","default":{"value":"{typography.letterSpacing.tight}"}},"iconSize":{"id":"#tokensConfig/prose/h4/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h4/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h5":{"id":"#tokensConfig/prose/h5","properties":{"margin":{"id":"#tokensConfig/prose/h5/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h5/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontSize/value","default":"{typography.fontSize.xl}"}},"type":"object","default":{"value":"{typography.fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/prose/h5/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/lineHeight/value","default":"{typography.lead.snug}"}},"type":"object","default":{"value":"{typography.lead.snug}"}},"fontWeight":{"id":"#tokensConfig/prose/h5/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h5/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h5/iconSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}}},"h6":{"id":"#tokensConfig/prose/h6","properties":{"margin":{"id":"#tokensConfig/prose/h6/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/margin/value","default":"3rem 0 2rem"}},"type":"object","default":{"value":"3rem 0 2rem"}},"fontSize":{"id":"#tokensConfig/prose/h6/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontSize/value","default":"{typography.fontSize.lg}"}},"type":"object","default":{"value":"{typography.fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/prose/h6/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/lineHeight/value","default":"{typography.lead.normal}"}},"type":"object","default":{"value":"{typography.lead.normal}"}},"fontWeight":{"id":"#tokensConfig/prose/h6/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}},"iconSize":{"id":"#tokensConfig/prose/h6/iconSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/h6/iconSize/value","default":"{typography.fontSize.base}"}},"type":"object","default":{"value":"{typography.fontSize.base}"}}},"type":"object","default":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}}},"strong":{"id":"#tokensConfig/prose/strong","properties":{"fontWeight":{"id":"#tokensConfig/prose/strong/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/strong/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"img":{"id":"#tokensConfig/prose/img","properties":{"margin":{"id":"#tokensConfig/prose/img/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/img/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"}}},"a":{"id":"#tokensConfig/prose/a","properties":{"textDecoration":{"id":"#tokensConfig/prose/a/textDecoration","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/textDecoration/value","default":"none"}},"type":"object","default":{"value":"none"}},"color":{"id":"#tokensConfig/prose/a/color","properties":{"static":{"id":"#tokensConfig/prose/a/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/initial","default":"inherit"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/static/value/dark","default":"inherit"}},"type":"object","default":{"initial":"inherit","dark":"inherit"}}},"type":"object","default":{"value":{"initial":"inherit","dark":"inherit"}}},"hover":{"id":"#tokensConfig/prose/a/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/color/hover/value/dark","default":"{typography.color.primary.400}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"type":"object","default":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}}},"border":{"id":"#tokensConfig/prose/a/border","properties":{"width":{"id":"#tokensConfig/prose/a/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/a/border/style","properties":{"static":{"id":"#tokensConfig/prose/a/border/style/static","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/static/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"hover":{"id":"#tokensConfig/prose/a/border/style/hover","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/style/hover/value","default":"solid"}},"type":"object","default":{"value":"solid"}}},"type":"object","default":{"static":{"value":"dashed"},"hover":{"value":"solid"}}},"color":{"id":"#tokensConfig/prose/a/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/border/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"distance":{"id":"#tokensConfig/prose/a/border/distance","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/border/distance/value","default":"2px"}},"type":"object","default":{"value":"2px"}}},"type":"object","default":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}}},"fontWeight":{"id":"#tokensConfig/prose/a/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/fontWeight/value","default":"{typography.fontWeight.medium}"}},"type":"object","default":{"value":"{typography.fontWeight.medium}"}},"hasCode":{"id":"#tokensConfig/prose/a/hasCode","properties":{"borderBottom":{"id":"#tokensConfig/prose/a/hasCode/borderBottom","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/hasCode/borderBottom/value","default":"none"}},"type":"object","default":{"value":"none"}}},"type":"object","default":{"borderBottom":{"value":"none"}}},"code":{"id":"#tokensConfig/prose/a/code","properties":{"border":{"id":"#tokensConfig/prose/a/code/border","properties":{"width":{"id":"#tokensConfig/prose/a/code/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/width/value","default":"{prose.a.border.width}"}},"type":"object","default":{"value":"{prose.a.border.width}"}},"style":{"id":"#tokensConfig/prose/a/code/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/a/code/border/style/value","default":"{prose.a.border.style.static}"}},"type":"object","default":{"value":"{prose.a.border.style.static}"}},"color":{"id":"#tokensConfig/prose/a/code/border/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/border/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/static/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}}},"hover":{"id":"#tokensConfig/prose/a/code/border/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/border/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/initial","default":"{typography.color.primary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/border/color/hover/value/dark","default":"{typography.color.primary.600}"}},"type":"object","default":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"type":"object","default":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"type":"object","default":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}}},"color":{"id":"#tokensConfig/prose/a/code/color","properties":{"static":{"id":"#tokensConfig/prose/a/code/color/static","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/static/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/static/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}},"hover":{"id":"#tokensConfig/prose/a/code/color/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/color/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/initial","default":"currentColor"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/color/hover/value/dark","default":"currentColor"}},"type":"object","default":{"initial":"currentColor","dark":"currentColor"}}},"type":"object","default":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"type":"object","default":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}}},"background":{"id":"#tokensConfig/prose/a/code/background","properties":{"static":{"id":"#tokensConfig/prose/a/code/background/static","type":"any","default":{}},"hover":{"id":"#tokensConfig/prose/a/code/background/hover","properties":{"value":{"id":"#tokensConfig/prose/a/code/background/hover/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/initial","default":"{typography.color.primary.50}"},"dark":{"type":"string","id":"#tokensConfig/prose/a/code/background/hover/value/dark","default":"{typography.color.primary.900}"}},"type":"object","default":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}},"type":"object","default":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"type":"object","default":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"type":"object","default":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}}},"blockquote":{"id":"#tokensConfig/prose/blockquote","properties":{"margin":{"id":"#tokensConfig/prose/blockquote/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/blockquote/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/padding/value","default":"0 0 0 24px"}},"type":"object","default":{"value":"0 0 0 24px"}},"quotes":{"id":"#tokensConfig/prose/blockquote/quotes","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/quotes/value","default":"'201C' '201D' '2018' '2019'"}},"type":"object","default":{"value":"'201C' '201D' '2018' '2019'"}},"color":{"id":"#tokensConfig/prose/blockquote/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}}},"border":{"id":"#tokensConfig/prose/blockquote/border","properties":{"width":{"id":"#tokensConfig/prose/blockquote/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/width/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"style":{"id":"#tokensConfig/prose/blockquote/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/blockquote/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/blockquote/border/color","properties":{"value":{"id":"#tokensConfig/prose/blockquote/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/blockquote/border/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}}},"ul":{"id":"#tokensConfig/prose/ul","properties":{"listStyleType":{"id":"#tokensConfig/prose/ul/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/listStyleType/value","default":"disc"}},"type":"object","default":{"value":"disc"}},"margin":{"id":"#tokensConfig/prose/ul/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ul/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ul/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ul/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ul/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ul/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/initial","default":"{typography.color.secondary.400}"},"dark":{"type":"string","id":"#tokensConfig/prose/ul/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}}},"ol":{"id":"#tokensConfig/prose/ol","properties":{"listStyleType":{"id":"#tokensConfig/prose/ol/listStyleType","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/listStyleType/value","default":"decimal"}},"type":"object","default":{"value":"decimal"}},"margin":{"id":"#tokensConfig/prose/ol/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"padding":{"id":"#tokensConfig/prose/ol/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/ol/padding/value","default":"0 0 0 21px"}},"type":"object","default":{"value":"0 0 0 21px"}},"li":{"id":"#tokensConfig/prose/ol/li","properties":{"markerColor":{"id":"#tokensConfig/prose/ol/li/markerColor","properties":{"value":{"id":"#tokensConfig/prose/ol/li/markerColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/initial","default":"{typography.color.secondary.500}"},"dark":{"type":"string","id":"#tokensConfig/prose/ol/li/markerColor/value/dark","default":"{typography.color.secondary.500}"}},"type":"object","default":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"type":"object","default":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"type":"object","default":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}}},"li":{"id":"#tokensConfig/prose/li","properties":{"margin":{"id":"#tokensConfig/prose/li/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/margin/value","default":"{typography.verticalMargin.sm} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.sm} 0"}},"listStylePosition":{"id":"#tokensConfig/prose/li/listStylePosition","properties":{"value":{"type":"string","id":"#tokensConfig/prose/li/listStylePosition/value","default":"outside"}},"type":"object","default":{"value":"outside"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}}},"hr":{"id":"#tokensConfig/prose/hr","properties":{"margin":{"id":"#tokensConfig/prose/hr/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"style":{"id":"#tokensConfig/prose/hr/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"width":{"id":"#tokensConfig/prose/hr/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/hr/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"color":{"id":"#tokensConfig/prose/hr/color","properties":{"value":{"id":"#tokensConfig/prose/hr/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/hr/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/hr/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"table":{"id":"#tokensConfig/prose/table","properties":{"margin":{"id":"#tokensConfig/prose/table/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"textAlign":{"id":"#tokensConfig/prose/table/textAlign","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/textAlign/value","default":"left"}},"type":"object","default":{"value":"left"}},"fontSize":{"id":"#tokensConfig/prose/table/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/prose/table/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/table/lineHeight/value","default":"inherit"}},"type":"object","default":{"value":"inherit"}}},"type":"object","default":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}}},"thead":{"id":"#tokensConfig/prose/thead","properties":{"border":{"id":"#tokensConfig/prose/thead/border","properties":{"width":{"id":"#tokensConfig/prose/thead/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/width/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"style":{"id":"#tokensConfig/prose/thead/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/border/color","properties":{"value":{"id":"#tokensConfig/prose/thead/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/border/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"borderBottom":{"id":"#tokensConfig/prose/thead/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/thead/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/thead/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/thead/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/thead/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/thead/borderBottom/color/value/dark","default":"{typography.color.secondary.600}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"type":"object","default":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}}},"th":{"id":"#tokensConfig/prose/th","properties":{"color":{"id":"#tokensConfig/prose/th/color","properties":{"value":{"id":"#tokensConfig/prose/th/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/th/color/value/initial","default":"{typography.color.secondary.600}"},"dark":{"type":"string","id":"#tokensConfig/prose/th/color/value/dark","default":"{typography.color.secondary.400}"}},"type":"object","default":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}}},"padding":{"id":"#tokensConfig/prose/th/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/padding/value","default":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"type":"object","default":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/th/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/th/fontWeight/value","default":"{typography.fontWeight.semibold}"}},"type":"object","default":{"value":"{typography.fontWeight.semibold}"}}},"type":"object","default":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}}},"tbody":{"id":"#tokensConfig/prose/tbody","properties":{"tr":{"id":"#tokensConfig/prose/tbody/tr","properties":{"borderBottom":{"id":"#tokensConfig/prose/tbody/tr/borderBottom","properties":{"width":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/style/value","default":"dashed"}},"type":"object","default":{"value":"dashed"}},"color":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color","properties":{"value":{"id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial","default":"{typography.color.secondary.300}"},"dark":{"type":"string","id":"#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark","default":"{typography.color.secondary.700}"}},"type":"object","default":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"type":"object","default":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}}},"td":{"id":"#tokensConfig/prose/tbody/td","properties":{"padding":{"id":"#tokensConfig/prose/tbody/td/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/td/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"code":{"id":"#tokensConfig/prose/tbody/code","properties":{"inline":{"id":"#tokensConfig/prose/tbody/code/inline","properties":{"fontSize":{"id":"#tokensConfig/prose/tbody/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/tbody/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"type":"object","default":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"type":"object","default":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}}},"code":{"id":"#tokensConfig/prose/code","properties":{"block":{"id":"#tokensConfig/prose/code/block","properties":{"fontSize":{"id":"#tokensConfig/prose/code/block/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"margin":{"id":"#tokensConfig/prose/code/block/margin","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/margin/value","default":"{typography.verticalMargin.base} 0"}},"type":"object","default":{"value":"{typography.verticalMargin.base} 0"}},"border":{"id":"#tokensConfig/prose/code/block/border","properties":{"width":{"id":"#tokensConfig/prose/code/block/border/width","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/width/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"style":{"id":"#tokensConfig/prose/code/block/border/style","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/border/style/value","default":"solid"}},"type":"object","default":{"value":"solid"}},"color":{"id":"#tokensConfig/prose/code/block/border/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/border/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/initial","default":"{typography.color.secondary.200}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/border/color/value/dark","default":"{typography.color.secondary.800}"}},"type":"object","default":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"type":"object","default":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}}},"color":{"id":"#tokensConfig/prose/code/block/color","properties":{"value":{"id":"#tokensConfig/prose/code/block/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/block/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/block/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/block/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"pre":{"id":"#tokensConfig/prose/code/block/pre","properties":{"padding":{"id":"#tokensConfig/prose/code/block/pre/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/block/pre/padding/value","default":"{typography.verticalMargin.sm}"}},"type":"object","default":{"value":"{typography.verticalMargin.sm}"}}},"type":"object","default":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"type":"object","default":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}}},"inline":{"id":"#tokensConfig/prose/code/inline","properties":{"borderRadius":{"id":"#tokensConfig/prose/code/inline/borderRadius","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/borderRadius/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"padding":{"id":"#tokensConfig/prose/code/inline/padding","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/padding/value","default":"0.25rem 0.375rem 0.25rem 0.375rem"}},"type":"object","default":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"}},"fontSize":{"id":"#tokensConfig/prose/code/inline/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontSize/value","default":"{typography.fontSize.sm}"}},"type":"object","default":{"value":"{typography.fontSize.sm}"}},"fontWeight":{"id":"#tokensConfig/prose/code/inline/fontWeight","properties":{"value":{"type":"string","id":"#tokensConfig/prose/code/inline/fontWeight/value","default":"{typography.fontWeight.normal}"}},"type":"object","default":{"value":"{typography.fontWeight.normal}"}},"color":{"id":"#tokensConfig/prose/code/inline/color","properties":{"value":{"id":"#tokensConfig/prose/code/inline/color/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/initial","default":"{typography.color.secondary.700}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/color/value/dark","default":"{typography.color.secondary.200}"}},"type":"object","default":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}}},"backgroundColor":{"id":"#tokensConfig/prose/code/inline/backgroundColor","properties":{"value":{"id":"#tokensConfig/prose/code/inline/backgroundColor/value","properties":{"initial":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/initial","default":"{typography.color.secondary.100}"},"dark":{"type":"string","id":"#tokensConfig/prose/code/inline/backgroundColor/value/dark","default":"{typography.color.secondary.900}"}},"type":"object","default":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}},"type":"object","default":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}},"type":"object","default":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"type":"object","default":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"type":"object","default":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}}},"radii":{"title":"Your website border radiuses.","tags":["@studioInput design-token","@studioInpuTokenType size","@studioIcon material-symbols:rounded-corner","@studioInputTokenType size"],"id":"#tokensConfig/radii","properties":{"sm":{"id":"#tokensConfig/radii/sm","properties":{"value":{"type":"string","id":"#tokensConfig/radii/sm/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"md":{"id":"#tokensConfig/radii/md","properties":{"value":{"type":"string","id":"#tokensConfig/radii/md/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"lg":{"id":"#tokensConfig/radii/lg","properties":{"value":{"type":"string","id":"#tokensConfig/radii/lg/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"none":{"id":"#tokensConfig/radii/none","properties":{"value":{"type":"string","id":"#tokensConfig/radii/none/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2xs":{"id":"#tokensConfig/radii/2xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xs/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"xs":{"id":"#tokensConfig/radii/xs","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xs/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"xl":{"id":"#tokensConfig/radii/xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/xl/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"2xl":{"id":"#tokensConfig/radii/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/radii/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/radii/3xl/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"full":{"id":"#tokensConfig/radii/full","properties":{"value":{"type":"string","id":"#tokensConfig/radii/full/value","default":"9999px"}},"type":"object","default":{"value":"9999px"}}},"type":"object","default":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}}},"fontSize":{"title":"Your website font sizes.","tags":["@studioInput design-token","@studioInputTokenType font-size","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontSize","properties":{"xs":{"id":"#tokensConfig/fontSize/xs","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xs/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"sm":{"id":"#tokensConfig/fontSize/sm","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/sm/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}},"base":{"id":"#tokensConfig/fontSize/base","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/base/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"lg":{"id":"#tokensConfig/fontSize/lg","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/lg/value","default":"1.125rem"}},"type":"object","default":{"value":"1.125rem"}},"xl":{"id":"#tokensConfig/fontSize/xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/xl/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"2xl":{"id":"#tokensConfig/fontSize/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/2xl/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"3xl":{"id":"#tokensConfig/fontSize/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/3xl/value","default":"1.875rem"}},"type":"object","default":{"value":"1.875rem"}},"4xl":{"id":"#tokensConfig/fontSize/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/4xl/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"5xl":{"id":"#tokensConfig/fontSize/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/5xl/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"6xl":{"id":"#tokensConfig/fontSize/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/6xl/value","default":"3.75rem"}},"type":"object","default":{"value":"3.75rem"}},"7xl":{"id":"#tokensConfig/fontSize/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/7xl/value","default":"4.5rem"}},"type":"object","default":{"value":"4.5rem"}},"8xl":{"id":"#tokensConfig/fontSize/8xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/8xl/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"9xl":{"id":"#tokensConfig/fontSize/9xl","properties":{"value":{"type":"string","id":"#tokensConfig/fontSize/9xl/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}}},"type":"object","default":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}}},"lead":{"title":"Your website line heights.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon icon-park-outline:auto-line-height"],"id":"#tokensConfig/lead","properties":{"1":{"id":"#tokensConfig/lead/1","properties":{"value":{"type":"string","id":"#tokensConfig/lead/1/value","default":".025rem"}},"type":"object","default":{"value":".025rem"}},"2":{"id":"#tokensConfig/lead/2","properties":{"value":{"type":"string","id":"#tokensConfig/lead/2/value","default":".5rem"}},"type":"object","default":{"value":".5rem"}},"3":{"id":"#tokensConfig/lead/3","properties":{"value":{"type":"string","id":"#tokensConfig/lead/3/value","default":".75rem"}},"type":"object","default":{"value":".75rem"}},"4":{"id":"#tokensConfig/lead/4","properties":{"value":{"type":"string","id":"#tokensConfig/lead/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/lead/5","properties":{"value":{"type":"string","id":"#tokensConfig/lead/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/lead/6","properties":{"value":{"type":"string","id":"#tokensConfig/lead/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/lead/7","properties":{"value":{"type":"string","id":"#tokensConfig/lead/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/lead/8","properties":{"value":{"type":"string","id":"#tokensConfig/lead/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/lead/9","properties":{"value":{"type":"string","id":"#tokensConfig/lead/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/lead/10","properties":{"value":{"type":"string","id":"#tokensConfig/lead/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"none":{"id":"#tokensConfig/lead/none","properties":{"value":{"type":"string","id":"#tokensConfig/lead/none/value","default":"1"}},"type":"object","default":{"value":"1"}},"tight":{"id":"#tokensConfig/lead/tight","properties":{"value":{"type":"string","id":"#tokensConfig/lead/tight/value","default":"1.25"}},"type":"object","default":{"value":"1.25"}},"snug":{"id":"#tokensConfig/lead/snug","properties":{"value":{"type":"string","id":"#tokensConfig/lead/snug/value","default":"1.375"}},"type":"object","default":{"value":"1.375"}},"normal":{"id":"#tokensConfig/lead/normal","properties":{"value":{"type":"string","id":"#tokensConfig/lead/normal/value","default":"1.5"}},"type":"object","default":{"value":"1.5"}},"relaxed":{"id":"#tokensConfig/lead/relaxed","properties":{"value":{"type":"string","id":"#tokensConfig/lead/relaxed/value","default":"1.625"}},"type":"object","default":{"value":"1.625"}},"loose":{"id":"#tokensConfig/lead/loose","properties":{"value":{"type":"string","id":"#tokensConfig/lead/loose/value","default":"2"}},"type":"object","default":{"value":"2"}}},"type":"object","default":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}}},"font":{"title":"Your website fonts","tags":["@studioInput design-token","@studioInputTokenType font","@studioIcon material-symbols:font-download-rounded"],"id":"#tokensConfig/font","properties":{"sans":{"id":"#tokensConfig/font/sans","properties":{"value":{"type":"string","id":"#tokensConfig/font/sans/value","default":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"type":"object","default":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"}},"serif":{"id":"#tokensConfig/font/serif","properties":{"value":{"type":"string","id":"#tokensConfig/font/serif/value","default":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"type":"object","default":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"}},"mono":{"id":"#tokensConfig/font/mono","properties":{"value":{"type":"string","id":"#tokensConfig/font/mono/value","default":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"type":"object","default":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"type":"object","default":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}}},"docus":{"title":"All the configurable tokens from Docus.","tags":["@studioIcon material-symbols:docs"],"id":"#tokensConfig/docus","properties":{"header":{"id":"#tokensConfig/docus/header","properties":{"height":{"id":"#tokensConfig/docus/header/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/header/height/value","default":"64px"}},"type":"object","default":{"value":"64px"}}},"type":"object","default":{"height":{"value":"64px"}}},"footer":{"id":"#tokensConfig/docus/footer","properties":{"padding":{"id":"#tokensConfig/docus/footer/padding","properties":{"value":{"type":"string","id":"#tokensConfig/docus/footer/padding/value","default":"{space.4} 0"}},"type":"object","default":{"value":"{space.4} 0"}}},"type":"object","default":{"padding":{"value":"{space.4} 0"}}},"readableLine":{"id":"#tokensConfig/docus/readableLine","properties":{"value":{"type":"string","id":"#tokensConfig/docus/readableLine/value","default":"78ch"}},"type":"object","default":{"value":"78ch"}},"loadingBar":{"id":"#tokensConfig/docus/loadingBar","properties":{"height":{"id":"#tokensConfig/docus/loadingBar/height","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/height/value","default":"3px"}},"type":"object","default":{"value":"3px"}},"gradientColorStop1":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop1","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop1/value","default":"#00dc82"}},"type":"object","default":{"value":"#00dc82"}},"gradientColorStop2":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop2","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop2/value","default":"#34cdfe"}},"type":"object","default":{"value":"#34cdfe"}},"gradientColorStop3":{"id":"#tokensConfig/docus/loadingBar/gradientColorStop3","properties":{"value":{"type":"string","id":"#tokensConfig/docus/loadingBar/gradientColorStop3/value","default":"#0047e1"}},"type":"object","default":{"value":"#0047e1"}}},"type":"object","default":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"type":"object","default":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}}},"media":{"title":"Your website media queries.","tags":["@studioInput design-token","@studioInputTokenType color","@studioIcon material-symbols:screenshot-monitor-outline-rounded"],"id":"#tokensConfig/media","properties":{"xs":{"id":"#tokensConfig/media/xs","properties":{"value":{"type":"string","id":"#tokensConfig/media/xs/value","default":"(min-width: 475px)"}},"type":"object","default":{"value":"(min-width: 475px)"}},"sm":{"id":"#tokensConfig/media/sm","properties":{"value":{"type":"string","id":"#tokensConfig/media/sm/value","default":"(min-width: 640px)"}},"type":"object","default":{"value":"(min-width: 640px)"}},"md":{"id":"#tokensConfig/media/md","properties":{"value":{"type":"string","id":"#tokensConfig/media/md/value","default":"(min-width: 768px)"}},"type":"object","default":{"value":"(min-width: 768px)"}},"lg":{"id":"#tokensConfig/media/lg","properties":{"value":{"type":"string","id":"#tokensConfig/media/lg/value","default":"(min-width: 1024px)"}},"type":"object","default":{"value":"(min-width: 1024px)"}},"xl":{"id":"#tokensConfig/media/xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/xl/value","default":"(min-width: 1280px)"}},"type":"object","default":{"value":"(min-width: 1280px)"}},"2xl":{"id":"#tokensConfig/media/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/media/2xl/value","default":"(min-width: 1536px)"}},"type":"object","default":{"value":"(min-width: 1536px)"}},"rm":{"id":"#tokensConfig/media/rm","properties":{"value":{"type":"string","id":"#tokensConfig/media/rm/value","default":"(prefers-reduced-motion: reduce)"}},"type":"object","default":{"value":"(prefers-reduced-motion: reduce)"}},"landscape":{"id":"#tokensConfig/media/landscape","properties":{"value":{"type":"string","id":"#tokensConfig/media/landscape/value","default":"only screen and (orientation: landscape)"}},"type":"object","default":{"value":"only screen and (orientation: landscape)"}},"portrait":{"id":"#tokensConfig/media/portrait","properties":{"value":{"type":"string","id":"#tokensConfig/media/portrait/value","default":"only screen and (orientation: portrait)"}},"type":"object","default":{"value":"only screen and (orientation: portrait)"}}},"type":"object","default":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}}},"width":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/width","properties":{"screen":{"id":"#tokensConfig/width/screen","properties":{"value":{"type":"string","id":"#tokensConfig/width/screen/value","default":"100vw"}},"type":"object","default":{"value":"100vw"}}},"type":"object","default":{"screen":{"value":"100vw"}}},"height":{"title":"Your website screen sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/height","properties":{"screen":{"id":"#tokensConfig/height/screen","properties":{"value":{"type":"string","id":"#tokensConfig/height/screen/value","default":"100vh"}},"type":"object","default":{"value":"100vh"}}},"type":"object","default":{"screen":{"value":"100vh"}}},"shadow":{"title":"Your website shadows.","tags":["@studioInput design-token","@studioInputTokenType shadow","@studioIcon mdi:box-shadow"],"id":"#tokensConfig/shadow","properties":{"xs":{"id":"#tokensConfig/shadow/xs","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xs/value","default":"0px 1px 2px 0px #000000"}},"type":"object","default":{"value":"0px 1px 2px 0px #000000"}},"sm":{"id":"#tokensConfig/shadow/sm","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/sm/value","default":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"type":"object","default":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"}},"md":{"id":"#tokensConfig/shadow/md","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/md/value","default":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"type":"object","default":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"}},"lg":{"id":"#tokensConfig/shadow/lg","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/lg/value","default":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"type":"object","default":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"}},"xl":{"id":"#tokensConfig/shadow/xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/xl/value","default":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"type":"object","default":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"}},"2xl":{"id":"#tokensConfig/shadow/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/2xl/value","default":"0px 25px 50px -12px {color.gray.900}"}},"type":"object","default":{"value":"0px 25px 50px -12px {color.gray.900}"}},"none":{"id":"#tokensConfig/shadow/none","properties":{"value":{"type":"string","id":"#tokensConfig/shadow/none/value","default":"0px 0px 0px 0px transparent"}},"type":"object","default":{"value":"0px 0px 0px 0px transparent"}}},"type":"object","default":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}}},"size":{"title":"Your website sizings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/size","properties":{"0":{"id":"#tokensConfig/size/0","properties":{"value":{"type":"string","id":"#tokensConfig/size/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"2":{"id":"#tokensConfig/size/2","properties":{"value":{"type":"string","id":"#tokensConfig/size/2/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"4":{"id":"#tokensConfig/size/4","properties":{"value":{"type":"string","id":"#tokensConfig/size/4/value","default":"4px"}},"type":"object","default":{"value":"4px"}},"6":{"id":"#tokensConfig/size/6","properties":{"value":{"type":"string","id":"#tokensConfig/size/6/value","default":"6px"}},"type":"object","default":{"value":"6px"}},"8":{"id":"#tokensConfig/size/8","properties":{"value":{"type":"string","id":"#tokensConfig/size/8/value","default":"8px"}},"type":"object","default":{"value":"8px"}},"12":{"id":"#tokensConfig/size/12","properties":{"value":{"type":"string","id":"#tokensConfig/size/12/value","default":"12px"}},"type":"object","default":{"value":"12px"}},"16":{"id":"#tokensConfig/size/16","properties":{"value":{"type":"string","id":"#tokensConfig/size/16/value","default":"16px"}},"type":"object","default":{"value":"16px"}},"20":{"id":"#tokensConfig/size/20","properties":{"value":{"type":"string","id":"#tokensConfig/size/20/value","default":"20px"}},"type":"object","default":{"value":"20px"}},"24":{"id":"#tokensConfig/size/24","properties":{"value":{"type":"string","id":"#tokensConfig/size/24/value","default":"24px"}},"type":"object","default":{"value":"24px"}},"32":{"id":"#tokensConfig/size/32","properties":{"value":{"type":"string","id":"#tokensConfig/size/32/value","default":"32px"}},"type":"object","default":{"value":"32px"}},"40":{"id":"#tokensConfig/size/40","properties":{"value":{"type":"string","id":"#tokensConfig/size/40/value","default":"40px"}},"type":"object","default":{"value":"40px"}},"48":{"id":"#tokensConfig/size/48","properties":{"value":{"type":"string","id":"#tokensConfig/size/48/value","default":"48px"}},"type":"object","default":{"value":"48px"}},"56":{"id":"#tokensConfig/size/56","properties":{"value":{"type":"string","id":"#tokensConfig/size/56/value","default":"56px"}},"type":"object","default":{"value":"56px"}},"64":{"id":"#tokensConfig/size/64","properties":{"value":{"type":"string","id":"#tokensConfig/size/64/value","default":"64px"}},"type":"object","default":{"value":"64px"}},"80":{"id":"#tokensConfig/size/80","properties":{"value":{"type":"string","id":"#tokensConfig/size/80/value","default":"80px"}},"type":"object","default":{"value":"80px"}},"104":{"id":"#tokensConfig/size/104","properties":{"value":{"type":"string","id":"#tokensConfig/size/104/value","default":"104px"}},"type":"object","default":{"value":"104px"}},"200":{"id":"#tokensConfig/size/200","properties":{"value":{"type":"string","id":"#tokensConfig/size/200/value","default":"200px"}},"type":"object","default":{"value":"200px"}},"xs":{"id":"#tokensConfig/size/xs","properties":{"value":{"type":"string","id":"#tokensConfig/size/xs/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"sm":{"id":"#tokensConfig/size/sm","properties":{"value":{"type":"string","id":"#tokensConfig/size/sm/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"md":{"id":"#tokensConfig/size/md","properties":{"value":{"type":"string","id":"#tokensConfig/size/md/value","default":"28rem"}},"type":"object","default":{"value":"28rem"}},"lg":{"id":"#tokensConfig/size/lg","properties":{"value":{"type":"string","id":"#tokensConfig/size/lg/value","default":"32rem"}},"type":"object","default":{"value":"32rem"}},"xl":{"id":"#tokensConfig/size/xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/xl/value","default":"36rem"}},"type":"object","default":{"value":"36rem"}},"2xl":{"id":"#tokensConfig/size/2xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/2xl/value","default":"42rem"}},"type":"object","default":{"value":"42rem"}},"3xl":{"id":"#tokensConfig/size/3xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/3xl/value","default":"48rem"}},"type":"object","default":{"value":"48rem"}},"4xl":{"id":"#tokensConfig/size/4xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/4xl/value","default":"56rem"}},"type":"object","default":{"value":"56rem"}},"5xl":{"id":"#tokensConfig/size/5xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/5xl/value","default":"64rem"}},"type":"object","default":{"value":"64rem"}},"6xl":{"id":"#tokensConfig/size/6xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/6xl/value","default":"72rem"}},"type":"object","default":{"value":"72rem"}},"7xl":{"id":"#tokensConfig/size/7xl","properties":{"value":{"type":"string","id":"#tokensConfig/size/7xl/value","default":"80rem"}},"type":"object","default":{"value":"80rem"}},"full":{"id":"#tokensConfig/size/full","properties":{"value":{"type":"string","id":"#tokensConfig/size/full/value","default":"100%"}},"type":"object","default":{"value":"100%"}}},"type":"object","default":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}}},"space":{"title":"Your website spacings.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon ph:ruler"],"id":"#tokensConfig/space","properties":{"0":{"id":"#tokensConfig/space/0","properties":{"value":{"type":"string","id":"#tokensConfig/space/0/value","default":"0px"}},"type":"object","default":{"value":"0px"}},"1":{"id":"#tokensConfig/space/1","properties":{"value":{"type":"string","id":"#tokensConfig/space/1/value","default":"0.25rem"}},"type":"object","default":{"value":"0.25rem"}},"2":{"id":"#tokensConfig/space/2","properties":{"value":{"type":"string","id":"#tokensConfig/space/2/value","default":"0.5rem"}},"type":"object","default":{"value":"0.5rem"}},"3":{"id":"#tokensConfig/space/3","properties":{"value":{"type":"string","id":"#tokensConfig/space/3/value","default":"0.75rem"}},"type":"object","default":{"value":"0.75rem"}},"4":{"id":"#tokensConfig/space/4","properties":{"value":{"type":"string","id":"#tokensConfig/space/4/value","default":"1rem"}},"type":"object","default":{"value":"1rem"}},"5":{"id":"#tokensConfig/space/5","properties":{"value":{"type":"string","id":"#tokensConfig/space/5/value","default":"1.25rem"}},"type":"object","default":{"value":"1.25rem"}},"6":{"id":"#tokensConfig/space/6","properties":{"value":{"type":"string","id":"#tokensConfig/space/6/value","default":"1.5rem"}},"type":"object","default":{"value":"1.5rem"}},"7":{"id":"#tokensConfig/space/7","properties":{"value":{"type":"string","id":"#tokensConfig/space/7/value","default":"1.75rem"}},"type":"object","default":{"value":"1.75rem"}},"8":{"id":"#tokensConfig/space/8","properties":{"value":{"type":"string","id":"#tokensConfig/space/8/value","default":"2rem"}},"type":"object","default":{"value":"2rem"}},"9":{"id":"#tokensConfig/space/9","properties":{"value":{"type":"string","id":"#tokensConfig/space/9/value","default":"2.25rem"}},"type":"object","default":{"value":"2.25rem"}},"10":{"id":"#tokensConfig/space/10","properties":{"value":{"type":"string","id":"#tokensConfig/space/10/value","default":"2.5rem"}},"type":"object","default":{"value":"2.5rem"}},"11":{"id":"#tokensConfig/space/11","properties":{"value":{"type":"string","id":"#tokensConfig/space/11/value","default":"2.75rem"}},"type":"object","default":{"value":"2.75rem"}},"12":{"id":"#tokensConfig/space/12","properties":{"value":{"type":"string","id":"#tokensConfig/space/12/value","default":"3rem"}},"type":"object","default":{"value":"3rem"}},"14":{"id":"#tokensConfig/space/14","properties":{"value":{"type":"string","id":"#tokensConfig/space/14/value","default":"3.5rem"}},"type":"object","default":{"value":"3.5rem"}},"16":{"id":"#tokensConfig/space/16","properties":{"value":{"type":"string","id":"#tokensConfig/space/16/value","default":"4rem"}},"type":"object","default":{"value":"4rem"}},"20":{"id":"#tokensConfig/space/20","properties":{"value":{"type":"string","id":"#tokensConfig/space/20/value","default":"5rem"}},"type":"object","default":{"value":"5rem"}},"24":{"id":"#tokensConfig/space/24","properties":{"value":{"type":"string","id":"#tokensConfig/space/24/value","default":"6rem"}},"type":"object","default":{"value":"6rem"}},"28":{"id":"#tokensConfig/space/28","properties":{"value":{"type":"string","id":"#tokensConfig/space/28/value","default":"7rem"}},"type":"object","default":{"value":"7rem"}},"32":{"id":"#tokensConfig/space/32","properties":{"value":{"type":"string","id":"#tokensConfig/space/32/value","default":"8rem"}},"type":"object","default":{"value":"8rem"}},"36":{"id":"#tokensConfig/space/36","properties":{"value":{"type":"string","id":"#tokensConfig/space/36/value","default":"9rem"}},"type":"object","default":{"value":"9rem"}},"40":{"id":"#tokensConfig/space/40","properties":{"value":{"type":"string","id":"#tokensConfig/space/40/value","default":"10rem"}},"type":"object","default":{"value":"10rem"}},"44":{"id":"#tokensConfig/space/44","properties":{"value":{"type":"string","id":"#tokensConfig/space/44/value","default":"11rem"}},"type":"object","default":{"value":"11rem"}},"48":{"id":"#tokensConfig/space/48","properties":{"value":{"type":"string","id":"#tokensConfig/space/48/value","default":"12rem"}},"type":"object","default":{"value":"12rem"}},"52":{"id":"#tokensConfig/space/52","properties":{"value":{"type":"string","id":"#tokensConfig/space/52/value","default":"13rem"}},"type":"object","default":{"value":"13rem"}},"56":{"id":"#tokensConfig/space/56","properties":{"value":{"type":"string","id":"#tokensConfig/space/56/value","default":"14rem"}},"type":"object","default":{"value":"14rem"}},"60":{"id":"#tokensConfig/space/60","properties":{"value":{"type":"string","id":"#tokensConfig/space/60/value","default":"15rem"}},"type":"object","default":{"value":"15rem"}},"64":{"id":"#tokensConfig/space/64","properties":{"value":{"type":"string","id":"#tokensConfig/space/64/value","default":"16rem"}},"type":"object","default":{"value":"16rem"}},"72":{"id":"#tokensConfig/space/72","properties":{"value":{"type":"string","id":"#tokensConfig/space/72/value","default":"18rem"}},"type":"object","default":{"value":"18rem"}},"80":{"id":"#tokensConfig/space/80","properties":{"value":{"type":"string","id":"#tokensConfig/space/80/value","default":"20rem"}},"type":"object","default":{"value":"20rem"}},"96":{"id":"#tokensConfig/space/96","properties":{"value":{"type":"string","id":"#tokensConfig/space/96/value","default":"24rem"}},"type":"object","default":{"value":"24rem"}},"px":{"id":"#tokensConfig/space/px","properties":{"value":{"type":"string","id":"#tokensConfig/space/px/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"rem":{"id":"#tokensConfig/space/rem","properties":{"125":{"id":"#tokensConfig/space/rem/125","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/125/value","default":"0.125rem"}},"type":"object","default":{"value":"0.125rem"}},"375":{"id":"#tokensConfig/space/rem/375","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/375/value","default":"0.375rem"}},"type":"object","default":{"value":"0.375rem"}},"625":{"id":"#tokensConfig/space/rem/625","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/625/value","default":"0.625rem"}},"type":"object","default":{"value":"0.625rem"}},"875":{"id":"#tokensConfig/space/rem/875","properties":{"value":{"type":"string","id":"#tokensConfig/space/rem/875/value","default":"0.875rem"}},"type":"object","default":{"value":"0.875rem"}}},"type":"object","default":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"type":"object","default":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}}},"borderWidth":{"title":"Your website border widths.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:border-all-outline-rounded"],"id":"#tokensConfig/borderWidth","properties":{"noBorder":{"id":"#tokensConfig/borderWidth/noBorder","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/noBorder/value","default":"0"}},"type":"object","default":{"value":"0"}},"sm":{"id":"#tokensConfig/borderWidth/sm","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/sm/value","default":"1px"}},"type":"object","default":{"value":"1px"}},"md":{"id":"#tokensConfig/borderWidth/md","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/md/value","default":"2px"}},"type":"object","default":{"value":"2px"}},"lg":{"id":"#tokensConfig/borderWidth/lg","properties":{"value":{"type":"string","id":"#tokensConfig/borderWidth/lg/value","default":"3px"}},"type":"object","default":{"value":"3px"}}},"type":"object","default":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}}},"opacity":{"title":"Your website opacities.","tags":["@studioInput design-token","@studioInputTokenType opacity","@studioIcon material-symbols:opacity"],"id":"#tokensConfig/opacity","properties":{"noOpacity":{"id":"#tokensConfig/opacity/noOpacity","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/noOpacity/value","default":"0"}},"type":"object","default":{"value":"0"}},"bright":{"id":"#tokensConfig/opacity/bright","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/bright/value","default":"0.1"}},"type":"object","default":{"value":"0.1"}},"light":{"id":"#tokensConfig/opacity/light","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/light/value","default":"0.15"}},"type":"object","default":{"value":"0.15"}},"soft":{"id":"#tokensConfig/opacity/soft","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/soft/value","default":"0.3"}},"type":"object","default":{"value":"0.3"}},"medium":{"id":"#tokensConfig/opacity/medium","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/medium/value","default":"0.5"}},"type":"object","default":{"value":"0.5"}},"high":{"id":"#tokensConfig/opacity/high","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/high/value","default":"0.8"}},"type":"object","default":{"value":"0.8"}},"total":{"id":"#tokensConfig/opacity/total","properties":{"value":{"type":"string","id":"#tokensConfig/opacity/total/value","default":"1"}},"type":"object","default":{"value":"1"}}},"type":"object","default":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}}},"fontWeight":{"title":"Your website font weights.","tags":["@studioInput design-token","@studioInputTokenType font-weight","@studioIcon radix-icons:font-style"],"id":"#tokensConfig/fontWeight","properties":{"thin":{"id":"#tokensConfig/fontWeight/thin","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/thin/value","default":"100"}},"type":"object","default":{"value":"100"}},"extralight":{"id":"#tokensConfig/fontWeight/extralight","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extralight/value","default":"200"}},"type":"object","default":{"value":"200"}},"light":{"id":"#tokensConfig/fontWeight/light","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/light/value","default":"300"}},"type":"object","default":{"value":"300"}},"normal":{"id":"#tokensConfig/fontWeight/normal","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/normal/value","default":"400"}},"type":"object","default":{"value":"400"}},"medium":{"id":"#tokensConfig/fontWeight/medium","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/medium/value","default":"500"}},"type":"object","default":{"value":"500"}},"semibold":{"id":"#tokensConfig/fontWeight/semibold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/semibold/value","default":"600"}},"type":"object","default":{"value":"600"}},"bold":{"id":"#tokensConfig/fontWeight/bold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/bold/value","default":"700"}},"type":"object","default":{"value":"700"}},"extrabold":{"id":"#tokensConfig/fontWeight/extrabold","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/extrabold/value","default":"800"}},"type":"object","default":{"value":"800"}},"black":{"id":"#tokensConfig/fontWeight/black","properties":{"value":{"type":"string","id":"#tokensConfig/fontWeight/black/value","default":"900"}},"type":"object","default":{"value":"900"}}},"type":"object","default":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}}},"letterSpacing":{"title":"Your website letter spacings.","tags":["@studioInput design-token","@studioInputTokenType letter-spacing","@studioIcon fluent:font-space-tracking-out-24-filled"],"id":"#tokensConfig/letterSpacing","properties":{"tighter":{"id":"#tokensConfig/letterSpacing/tighter","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tighter/value","default":"-0.05em"}},"type":"object","default":{"value":"-0.05em"}},"tight":{"id":"#tokensConfig/letterSpacing/tight","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/tight/value","default":"-0.025em"}},"type":"object","default":{"value":"-0.025em"}},"normal":{"id":"#tokensConfig/letterSpacing/normal","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/normal/value","default":"0em"}},"type":"object","default":{"value":"0em"}},"wide":{"id":"#tokensConfig/letterSpacing/wide","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wide/value","default":"0.025em"}},"type":"object","default":{"value":"0.025em"}},"wider":{"id":"#tokensConfig/letterSpacing/wider","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/wider/value","default":"0.05em"}},"type":"object","default":{"value":"0.05em"}},"widest":{"id":"#tokensConfig/letterSpacing/widest","properties":{"value":{"type":"string","id":"#tokensConfig/letterSpacing/widest/value","default":"0.1em"}},"type":"object","default":{"value":"0.1em"}}},"type":"object","default":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}}},"text":{"title":"Your website text scales.","tags":["@studioInput design-token","@studioInputTokenType size","@studioIcon material-symbols:format-size-rounded"],"id":"#tokensConfig/text","properties":{"xs":{"id":"#tokensConfig/text/xs","properties":{"fontSize":{"id":"#tokensConfig/text/xs/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/fontSize/value","default":"{fontSize.xs}"}},"type":"object","default":{"value":"{fontSize.xs}"}},"lineHeight":{"id":"#tokensConfig/text/xs/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xs/lineHeight/value","default":"{lead.4}"}},"type":"object","default":{"value":"{lead.4}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}}},"sm":{"id":"#tokensConfig/text/sm","properties":{"fontSize":{"id":"#tokensConfig/text/sm/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/fontSize/value","default":"{fontSize.sm}"}},"type":"object","default":{"value":"{fontSize.sm}"}},"lineHeight":{"id":"#tokensConfig/text/sm/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/sm/lineHeight/value","default":"{lead.5}"}},"type":"object","default":{"value":"{lead.5}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}}},"base":{"id":"#tokensConfig/text/base","properties":{"fontSize":{"id":"#tokensConfig/text/base/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/fontSize/value","default":"{fontSize.base}"}},"type":"object","default":{"value":"{fontSize.base}"}},"lineHeight":{"id":"#tokensConfig/text/base/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/base/lineHeight/value","default":"{lead.6}"}},"type":"object","default":{"value":"{lead.6}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}}},"lg":{"id":"#tokensConfig/text/lg","properties":{"fontSize":{"id":"#tokensConfig/text/lg/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/fontSize/value","default":"{fontSize.lg}"}},"type":"object","default":{"value":"{fontSize.lg}"}},"lineHeight":{"id":"#tokensConfig/text/lg/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/lg/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}}},"xl":{"id":"#tokensConfig/text/xl","properties":{"fontSize":{"id":"#tokensConfig/text/xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/fontSize/value","default":"{fontSize.xl}"}},"type":"object","default":{"value":"{fontSize.xl}"}},"lineHeight":{"id":"#tokensConfig/text/xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/xl/lineHeight/value","default":"{lead.7}"}},"type":"object","default":{"value":"{lead.7}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}}},"2xl":{"id":"#tokensConfig/text/2xl","properties":{"fontSize":{"id":"#tokensConfig/text/2xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/fontSize/value","default":"{fontSize.2xl}"}},"type":"object","default":{"value":"{fontSize.2xl}"}},"lineHeight":{"id":"#tokensConfig/text/2xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/2xl/lineHeight/value","default":"{lead.8}"}},"type":"object","default":{"value":"{lead.8}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}}},"3xl":{"id":"#tokensConfig/text/3xl","properties":{"fontSize":{"id":"#tokensConfig/text/3xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/fontSize/value","default":"{fontSize.3xl}"}},"type":"object","default":{"value":"{fontSize.3xl}"}},"lineHeight":{"id":"#tokensConfig/text/3xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/3xl/lineHeight/value","default":"{lead.9}"}},"type":"object","default":{"value":"{lead.9}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}}},"4xl":{"id":"#tokensConfig/text/4xl","properties":{"fontSize":{"id":"#tokensConfig/text/4xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/fontSize/value","default":"{fontSize.4xl}"}},"type":"object","default":{"value":"{fontSize.4xl}"}},"lineHeight":{"id":"#tokensConfig/text/4xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/4xl/lineHeight/value","default":"{lead.10}"}},"type":"object","default":{"value":"{lead.10}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}}},"5xl":{"id":"#tokensConfig/text/5xl","properties":{"fontSize":{"id":"#tokensConfig/text/5xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/fontSize/value","default":"{fontSize.5xl}"}},"type":"object","default":{"value":"{fontSize.5xl}"}},"lineHeight":{"id":"#tokensConfig/text/5xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/5xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}}},"6xl":{"id":"#tokensConfig/text/6xl","properties":{"fontSize":{"id":"#tokensConfig/text/6xl/fontSize","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/fontSize/value","default":"{fontSize.6xl}"}},"type":"object","default":{"value":"{fontSize.6xl}"}},"lineHeight":{"id":"#tokensConfig/text/6xl/lineHeight","properties":{"value":{"type":"string","id":"#tokensConfig/text/6xl/lineHeight/value","default":"{lead.none}"}},"type":"object","default":{"value":"{lead.none}"}}},"type":"object","default":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}},"type":"object","default":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"type":"object","default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"default":{"color":{"primary":{"50":{"value":"#fff2cc"},"100":{"value":"#ffe599"},"200":{"value":"#ffd966"},"300":{"value":"#f1c232"},"400":{"value":"#f1c232"},"500":{"value":"#f1c232"},"600":{"value":"#f1c232"},"700":{"value":"#f1c232"},"800":{"value":"#f1c232"},"900":{"value":"#f1c232"}},"white":{"value":"#ffffff"},"black":{"value":"#0c0c0d"},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa"},"100":{"value":"#f4f4f5"},"200":{"value":"#e4e4e7"},"300":{"value":"#D4d4d8"},"400":{"value":"#a1a1aa"},"500":{"value":"#71717A"},"600":{"value":"#52525B"},"700":{"value":"#3f3f46"},"800":{"value":"#27272A"},"900":{"value":"#18181B"}},"green":{"50":{"value":"#d6ffee"},"100":{"value":"#acffdd"},"200":{"value":"#83ffcc"},"300":{"value":"#30ffaa"},"400":{"value":"#00dc82"},"500":{"value":"#00bd6f"},"600":{"value":"#009d5d"},"700":{"value":"#007e4a"},"800":{"value":"#005e38"},"900":{"value":"#003f25"}},"yellow":{"50":{"value":"#fdf6db"},"100":{"value":"#fcedb7"},"200":{"value":"#fae393"},"300":{"value":"#f8da70"},"400":{"value":"#f7d14c"},"500":{"value":"#f5c828"},"600":{"value":"#daac0a"},"700":{"value":"#a38108"},"800":{"value":"#6d5605"},"900":{"value":"#362b03"}},"orange":{"50":{"value":"#ffe9d9"},"100":{"value":"#ffd3b3"},"200":{"value":"#ffbd8d"},"300":{"value":"#ffa666"},"400":{"value":"#ff9040"},"500":{"value":"#ff7a1a"},"600":{"value":"#e15e00"},"700":{"value":"#a94700"},"800":{"value":"#702f00"},"900":{"value":"#381800"}},"red":{"50":{"value":"#ffdbd9"},"100":{"value":"#ffb7b3"},"200":{"value":"#ff948d"},"300":{"value":"#ff7066"},"400":{"value":"#ff4c40"},"500":{"value":"#ff281a"},"600":{"value":"#e10e00"},"700":{"value":"#a90a00"},"800":{"value":"#700700"},"900":{"value":"#380300"}},"pear":{"50":{"value":"#f7f8dc"},"100":{"value":"#eff0ba"},"200":{"value":"#e8e997"},"300":{"value":"#e0e274"},"400":{"value":"#d8da52"},"500":{"value":"#d0d32f"},"600":{"value":"#a8aa24"},"700":{"value":"#7e801b"},"800":{"value":"#545512"},"900":{"value":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8"},"100":{"value":"#aff4f0"},"200":{"value":"#87efe9"},"300":{"value":"#5fe9e1"},"400":{"value":"#36e4da"},"500":{"value":"#1cd1c6"},"600":{"value":"#16a79e"},"700":{"value":"#117d77"},"800":{"value":"#0b544f"},"900":{"value":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff"},"100":{"value":"#b3f1ff"},"200":{"value":"#8deaff"},"300":{"value":"#66e4ff"},"400":{"value":"#40ddff"},"500":{"value":"#1ad6ff"},"600":{"value":"#00b9e1"},"700":{"value":"#008aa9"},"800":{"value":"#005c70"},"900":{"value":"#002e38"}},"blue":{"50":{"value":"#d9f1ff"},"100":{"value":"#b3e4ff"},"200":{"value":"#8dd6ff"},"300":{"value":"#66c8ff"},"400":{"value":"#40bbff"},"500":{"value":"#1aadff"},"600":{"value":"#0090e1"},"700":{"value":"#006ca9"},"800":{"value":"#004870"},"900":{"value":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff"},"100":{"value":"#b3cbff"},"200":{"value":"#8db0ff"},"300":{"value":"#6696ff"},"400":{"value":"#407cff"},"500":{"value":"#1a62ff"},"600":{"value":"#0047e1"},"700":{"value":"#0035a9"},"800":{"value":"#002370"},"900":{"value":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb"},"100":{"value":"#c0b7f7"},"200":{"value":"#a093f3"},"300":{"value":"#806ff0"},"400":{"value":"#614bec"},"500":{"value":"#4127e8"},"600":{"value":"#2c15c4"},"700":{"value":"#211093"},"800":{"value":"#160a62"},"900":{"value":"#0b0531"}},"purple":{"50":{"value":"#ead9ff"},"100":{"value":"#d5b3ff"},"200":{"value":"#c08dff"},"300":{"value":"#ab66ff"},"400":{"value":"#9640ff"},"500":{"value":"#811aff"},"600":{"value":"#6500e1"},"700":{"value":"#4c00a9"},"800":{"value":"#330070"},"900":{"value":"#190038"}},"pink":{"50":{"value":"#ffd9f2"},"100":{"value":"#ffb3e5"},"200":{"value":"#ff8dd8"},"300":{"value":"#ff66cc"},"400":{"value":"#ff40bf"},"500":{"value":"#ff1ab2"},"600":{"value":"#e10095"},"700":{"value":"#a90070"},"800":{"value":"#70004b"},"900":{"value":"#380025"}},"ruby":{"50":{"value":"#ffd9e4"},"100":{"value":"#ffb3c9"},"200":{"value":"#ff8dae"},"300":{"value":"#ff6694"},"400":{"value":"#ff4079"},"500":{"value":"#ff1a5e"},"600":{"value":"#e10043"},"700":{"value":"#a90032"},"800":{"value":"#700021"},"900":{"value":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem"},"padding":{"mobile":{"value":"{space.4}"},"xs":{"value":"{space.4}"},"sm":{"value":"{space.6}"},"md":{"value":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px"},"base":{"value":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em"},"wide":{"value":"0.025em"}},"fontSize":{"xs":{"value":"12px"},"sm":{"value":"14px"},"base":{"value":"16px"},"lg":{"value":"18px"},"xl":{"value":"20px"},"2xl":{"value":"24px"},"3xl":{"value":"30px"},"4xl":{"value":"36px"},"5xl":{"value":"48px"},"6xl":{"value":"60px"},"7xl":{"value":"72px"},"8xl":{"value":"96px"},"9xl":{"value":"128px"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"lead":{"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"display":{"value":"{font.sans}"},"body":{"value":"{font.sans}"},"code":{"value":"{font.mono}"}},"color":{"primary":{"50":{"value":"{color.primary.50}"},"100":{"value":"{color.primary.100}"},"200":{"value":"{color.primary.200}"},"300":{"value":"{color.primary.300}"},"400":{"value":"{color.primary.400}"},"500":{"value":"{color.primary.500}"},"600":{"value":"{color.primary.600}"},"700":{"value":"{color.primary.700}"},"800":{"value":"{color.primary.800}"},"900":{"value":"{color.primary.900}"}},"secondary":{"50":{"value":"{color.gray.50}"},"100":{"value":"{color.gray.100}"},"200":{"value":"{color.gray.200}"},"300":{"value":"{color.gray.300}"},"400":{"value":"{color.gray.400}"},"500":{"value":"{color.gray.500}"},"600":{"value":"{color.gray.600}"},"700":{"value":"{color.gray.700}"},"800":{"value":"{color.gray.800}"},"900":{"value":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"{typography.fontSize.base}"},"lineHeight":{"value":"{typography.lead.normal}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem"},"fontSize":{"value":"{typography.fontSize.5xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.4xl}"},"lineHeight":{"value":"{typography.lead.tight}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.3xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.2xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"{typography.letterSpacing.tight}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.xl}"},"lineHeight":{"value":"{typography.lead.snug}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem"},"fontSize":{"value":"{typography.fontSize.lg}"},"lineHeight":{"value":"{typography.lead.normal}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"},"iconSize":{"value":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px"},"style":{"static":{"value":"dashed"},"hover":{"value":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px"}},"fontWeight":{"value":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none"}},"code":{"border":{"width":{"value":"{prose.a.border.width}"},"style":{"value":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal"},"margin":{"value":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside"}},"hr":{"margin":{"value":"{typography.verticalMargin.base} 0"},"style":{"value":"solid"},"width":{"value":"1px"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left"},"fontSize":{"value":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit"}},"thead":{"border":{"width":{"value":"0px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px"},"style":{"value":"dashed"},"color":{"value":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"{typography.fontSize.sm}"},"margin":{"value":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px"},"style":{"value":"solid"},"color":{"value":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"{typography.fontSize.sm}"},"fontWeight":{"value":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem"},"md":{"value":"0.5rem"},"lg":{"value":"0.75rem"},"none":{"value":"0px"},"2xs":{"value":"0.125rem"},"xs":{"value":"0.25rem"},"xl":{"value":"1rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.75rem"},"full":{"value":"9999px"}},"fontSize":{"xs":{"value":"0.75rem"},"sm":{"value":"0.875rem"},"base":{"value":"1rem"},"lg":{"value":"1.125rem"},"xl":{"value":"1.25rem"},"2xl":{"value":"1.5rem"},"3xl":{"value":"1.875rem"},"4xl":{"value":"2.25rem"},"5xl":{"value":"3rem"},"6xl":{"value":"3.75rem"},"7xl":{"value":"4.5rem"},"8xl":{"value":"6rem"},"9xl":{"value":"8rem"}},"lead":{"1":{"value":".025rem"},"2":{"value":".5rem"},"3":{"value":".75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"none":{"value":"1"},"tight":{"value":"1.25"},"snug":{"value":"1.375"},"normal":{"value":"1.5"},"relaxed":{"value":"1.625"},"loose":{"value":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px"}},"footer":{"padding":{"value":"{space.4} 0"}},"readableLine":{"value":"78ch"},"loadingBar":{"height":{"value":"3px"},"gradientColorStop1":{"value":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw"}},"height":{"screen":{"value":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px"},"2":{"value":"2px"},"4":{"value":"4px"},"6":{"value":"6px"},"8":{"value":"8px"},"12":{"value":"12px"},"16":{"value":"16px"},"20":{"value":"20px"},"24":{"value":"24px"},"32":{"value":"32px"},"40":{"value":"40px"},"48":{"value":"48px"},"56":{"value":"56px"},"64":{"value":"64px"},"80":{"value":"80px"},"104":{"value":"104px"},"200":{"value":"200px"},"xs":{"value":"20rem"},"sm":{"value":"24rem"},"md":{"value":"28rem"},"lg":{"value":"32rem"},"xl":{"value":"36rem"},"2xl":{"value":"42rem"},"3xl":{"value":"48rem"},"4xl":{"value":"56rem"},"5xl":{"value":"64rem"},"6xl":{"value":"72rem"},"7xl":{"value":"80rem"},"full":{"value":"100%"}},"space":{"0":{"value":"0px"},"1":{"value":"0.25rem"},"2":{"value":"0.5rem"},"3":{"value":"0.75rem"},"4":{"value":"1rem"},"5":{"value":"1.25rem"},"6":{"value":"1.5rem"},"7":{"value":"1.75rem"},"8":{"value":"2rem"},"9":{"value":"2.25rem"},"10":{"value":"2.5rem"},"11":{"value":"2.75rem"},"12":{"value":"3rem"},"14":{"value":"3.5rem"},"16":{"value":"4rem"},"20":{"value":"5rem"},"24":{"value":"6rem"},"28":{"value":"7rem"},"32":{"value":"8rem"},"36":{"value":"9rem"},"40":{"value":"10rem"},"44":{"value":"11rem"},"48":{"value":"12rem"},"52":{"value":"13rem"},"56":{"value":"14rem"},"60":{"value":"15rem"},"64":{"value":"16rem"},"72":{"value":"18rem"},"80":{"value":"20rem"},"96":{"value":"24rem"},"px":{"value":"1px"},"rem":{"125":{"value":"0.125rem"},"375":{"value":"0.375rem"},"625":{"value":"0.625rem"},"875":{"value":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0"},"sm":{"value":"1px"},"md":{"value":"2px"},"lg":{"value":"3px"}},"opacity":{"noOpacity":{"value":"0"},"bright":{"value":"0.1"},"light":{"value":"0.15"},"soft":{"value":"0.3"},"medium":{"value":"0.5"},"high":{"value":"0.8"},"total":{"value":"1"}},"fontWeight":{"thin":{"value":"100"},"extralight":{"value":"200"},"light":{"value":"300"},"normal":{"value":"400"},"medium":{"value":"500"},"semibold":{"value":"600"},"bold":{"value":"700"},"extrabold":{"value":"800"},"black":{"value":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em"},"tight":{"value":"-0.025em"},"normal":{"value":"0em"},"wide":{"value":"0.025em"},"wider":{"value":"0.05em"},"widest":{"value":"0.1em"}},"text":{"xs":{"fontSize":{"value":"{fontSize.xs}"},"lineHeight":{"value":"{lead.4}"}},"sm":{"fontSize":{"value":"{fontSize.sm}"},"lineHeight":{"value":"{lead.5}"}},"base":{"fontSize":{"value":"{fontSize.base}"},"lineHeight":{"value":"{lead.6}"}},"lg":{"fontSize":{"value":"{fontSize.lg}"},"lineHeight":{"value":"{lead.7}"}},"xl":{"fontSize":{"value":"{fontSize.xl}"},"lineHeight":{"value":"{lead.7}"}},"2xl":{"fontSize":{"value":"{fontSize.2xl}"},"lineHeight":{"value":"{lead.8}"}},"3xl":{"fontSize":{"value":"{fontSize.3xl}"},"lineHeight":{"value":"{lead.9}"}},"4xl":{"fontSize":{"value":"{fontSize.4xl}"},"lineHeight":{"value":"{lead.10}"}},"5xl":{"fontSize":{"value":"{fontSize.5xl}"},"lineHeight":{"value":"{lead.none}"}},"6xl":{"fontSize":{"value":"{fontSize.6xl}"},"lineHeight":{"value":"{lead.none}"}}}}},"tokensConfig":{"color":{"primary":{"50":{"value":"#fff2cc","variable":"var(--color-primary-50)","original":"#fff2cc"},"100":{"value":"#ffe599","variable":"var(--color-primary-100)","original":"#ffe599"},"200":{"value":"#ffd966","variable":"var(--color-primary-200)","original":"#ffd966"},"300":{"value":"#f1c232","variable":"var(--color-primary-300)","original":"#f1c232"},"400":{"value":"#f1c232","variable":"var(--color-primary-400)","original":"#f1c232"},"500":{"value":"#f1c232","variable":"var(--color-primary-500)","original":"#f1c232"},"600":{"value":"#f1c232","variable":"var(--color-primary-600)","original":"#f1c232"},"700":{"value":"#f1c232","variable":"var(--color-primary-700)","original":"#f1c232"},"800":{"value":"#f1c232","variable":"var(--color-primary-800)","original":"#f1c232"},"900":{"value":"#f1c232","variable":"var(--color-primary-900)","original":"#f1c232"}},"white":{"value":"#ffffff","variable":"var(--color-white)","original":"#ffffff"},"black":{"value":"#0c0c0d","variable":"var(--color-black)","original":"#0c0c0d"},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--color-secondary-900)","original":"{color.gray.900}"}},"gray":{"50":{"value":"#fafafa","variable":"var(--color-gray-50)","original":"#fafafa"},"100":{"value":"#f4f4f5","variable":"var(--color-gray-100)","original":"#f4f4f5"},"200":{"value":"#e4e4e7","variable":"var(--color-gray-200)","original":"#e4e4e7"},"300":{"value":"#D4d4d8","variable":"var(--color-gray-300)","original":"#D4d4d8"},"400":{"value":"#a1a1aa","variable":"var(--color-gray-400)","original":"#a1a1aa"},"500":{"value":"#71717A","variable":"var(--color-gray-500)","original":"#71717A"},"600":{"value":"#52525B","variable":"var(--color-gray-600)","original":"#52525B"},"700":{"value":"#3f3f46","variable":"var(--color-gray-700)","original":"#3f3f46"},"800":{"value":"#27272A","variable":"var(--color-gray-800)","original":"#27272A"},"900":{"value":"#18181B","variable":"var(--color-gray-900)","original":"#18181B"}},"green":{"50":{"value":"#d6ffee","variable":"var(--color-green-50)","original":"#d6ffee"},"100":{"value":"#acffdd","variable":"var(--color-green-100)","original":"#acffdd"},"200":{"value":"#83ffcc","variable":"var(--color-green-200)","original":"#83ffcc"},"300":{"value":"#30ffaa","variable":"var(--color-green-300)","original":"#30ffaa"},"400":{"value":"#00dc82","variable":"var(--color-green-400)","original":"#00dc82"},"500":{"value":"#00bd6f","variable":"var(--color-green-500)","original":"#00bd6f"},"600":{"value":"#009d5d","variable":"var(--color-green-600)","original":"#009d5d"},"700":{"value":"#007e4a","variable":"var(--color-green-700)","original":"#007e4a"},"800":{"value":"#005e38","variable":"var(--color-green-800)","original":"#005e38"},"900":{"value":"#003f25","variable":"var(--color-green-900)","original":"#003f25"}},"yellow":{"50":{"value":"#fdf6db","variable":"var(--color-yellow-50)","original":"#fdf6db"},"100":{"value":"#fcedb7","variable":"var(--color-yellow-100)","original":"#fcedb7"},"200":{"value":"#fae393","variable":"var(--color-yellow-200)","original":"#fae393"},"300":{"value":"#f8da70","variable":"var(--color-yellow-300)","original":"#f8da70"},"400":{"value":"#f7d14c","variable":"var(--color-yellow-400)","original":"#f7d14c"},"500":{"value":"#f5c828","variable":"var(--color-yellow-500)","original":"#f5c828"},"600":{"value":"#daac0a","variable":"var(--color-yellow-600)","original":"#daac0a"},"700":{"value":"#a38108","variable":"var(--color-yellow-700)","original":"#a38108"},"800":{"value":"#6d5605","variable":"var(--color-yellow-800)","original":"#6d5605"},"900":{"value":"#362b03","variable":"var(--color-yellow-900)","original":"#362b03"}},"orange":{"50":{"value":"#ffe9d9","variable":"var(--color-orange-50)","original":"#ffe9d9"},"100":{"value":"#ffd3b3","variable":"var(--color-orange-100)","original":"#ffd3b3"},"200":{"value":"#ffbd8d","variable":"var(--color-orange-200)","original":"#ffbd8d"},"300":{"value":"#ffa666","variable":"var(--color-orange-300)","original":"#ffa666"},"400":{"value":"#ff9040","variable":"var(--color-orange-400)","original":"#ff9040"},"500":{"value":"#ff7a1a","variable":"var(--color-orange-500)","original":"#ff7a1a"},"600":{"value":"#e15e00","variable":"var(--color-orange-600)","original":"#e15e00"},"700":{"value":"#a94700","variable":"var(--color-orange-700)","original":"#a94700"},"800":{"value":"#702f00","variable":"var(--color-orange-800)","original":"#702f00"},"900":{"value":"#381800","variable":"var(--color-orange-900)","original":"#381800"}},"red":{"50":{"value":"#ffdbd9","variable":"var(--color-red-50)","original":"#ffdbd9"},"100":{"value":"#ffb7b3","variable":"var(--color-red-100)","original":"#ffb7b3"},"200":{"value":"#ff948d","variable":"var(--color-red-200)","original":"#ff948d"},"300":{"value":"#ff7066","variable":"var(--color-red-300)","original":"#ff7066"},"400":{"value":"#ff4c40","variable":"var(--color-red-400)","original":"#ff4c40"},"500":{"value":"#ff281a","variable":"var(--color-red-500)","original":"#ff281a"},"600":{"value":"#e10e00","variable":"var(--color-red-600)","original":"#e10e00"},"700":{"value":"#a90a00","variable":"var(--color-red-700)","original":"#a90a00"},"800":{"value":"#700700","variable":"var(--color-red-800)","original":"#700700"},"900":{"value":"#380300","variable":"var(--color-red-900)","original":"#380300"}},"pear":{"50":{"value":"#f7f8dc","variable":"var(--color-pear-50)","original":"#f7f8dc"},"100":{"value":"#eff0ba","variable":"var(--color-pear-100)","original":"#eff0ba"},"200":{"value":"#e8e997","variable":"var(--color-pear-200)","original":"#e8e997"},"300":{"value":"#e0e274","variable":"var(--color-pear-300)","original":"#e0e274"},"400":{"value":"#d8da52","variable":"var(--color-pear-400)","original":"#d8da52"},"500":{"value":"#d0d32f","variable":"var(--color-pear-500)","original":"#d0d32f"},"600":{"value":"#a8aa24","variable":"var(--color-pear-600)","original":"#a8aa24"},"700":{"value":"#7e801b","variable":"var(--color-pear-700)","original":"#7e801b"},"800":{"value":"#545512","variable":"var(--color-pear-800)","original":"#545512"},"900":{"value":"#2a2b09","variable":"var(--color-pear-900)","original":"#2a2b09"}},"teal":{"50":{"value":"#d7faf8","variable":"var(--color-teal-50)","original":"#d7faf8"},"100":{"value":"#aff4f0","variable":"var(--color-teal-100)","original":"#aff4f0"},"200":{"value":"#87efe9","variable":"var(--color-teal-200)","original":"#87efe9"},"300":{"value":"#5fe9e1","variable":"var(--color-teal-300)","original":"#5fe9e1"},"400":{"value":"#36e4da","variable":"var(--color-teal-400)","original":"#36e4da"},"500":{"value":"#1cd1c6","variable":"var(--color-teal-500)","original":"#1cd1c6"},"600":{"value":"#16a79e","variable":"var(--color-teal-600)","original":"#16a79e"},"700":{"value":"#117d77","variable":"var(--color-teal-700)","original":"#117d77"},"800":{"value":"#0b544f","variable":"var(--color-teal-800)","original":"#0b544f"},"900":{"value":"#062a28","variable":"var(--color-teal-900)","original":"#062a28"}},"lightblue":{"50":{"value":"#d9f8ff","variable":"var(--color-lightblue-50)","original":"#d9f8ff"},"100":{"value":"#b3f1ff","variable":"var(--color-lightblue-100)","original":"#b3f1ff"},"200":{"value":"#8deaff","variable":"var(--color-lightblue-200)","original":"#8deaff"},"300":{"value":"#66e4ff","variable":"var(--color-lightblue-300)","original":"#66e4ff"},"400":{"value":"#40ddff","variable":"var(--color-lightblue-400)","original":"#40ddff"},"500":{"value":"#1ad6ff","variable":"var(--color-lightblue-500)","original":"#1ad6ff"},"600":{"value":"#00b9e1","variable":"var(--color-lightblue-600)","original":"#00b9e1"},"700":{"value":"#008aa9","variable":"var(--color-lightblue-700)","original":"#008aa9"},"800":{"value":"#005c70","variable":"var(--color-lightblue-800)","original":"#005c70"},"900":{"value":"#002e38","variable":"var(--color-lightblue-900)","original":"#002e38"}},"blue":{"50":{"value":"#d9f1ff","variable":"var(--color-blue-50)","original":"#d9f1ff"},"100":{"value":"#b3e4ff","variable":"var(--color-blue-100)","original":"#b3e4ff"},"200":{"value":"#8dd6ff","variable":"var(--color-blue-200)","original":"#8dd6ff"},"300":{"value":"#66c8ff","variable":"var(--color-blue-300)","original":"#66c8ff"},"400":{"value":"#40bbff","variable":"var(--color-blue-400)","original":"#40bbff"},"500":{"value":"#1aadff","variable":"var(--color-blue-500)","original":"#1aadff"},"600":{"value":"#0090e1","variable":"var(--color-blue-600)","original":"#0090e1"},"700":{"value":"#006ca9","variable":"var(--color-blue-700)","original":"#006ca9"},"800":{"value":"#004870","variable":"var(--color-blue-800)","original":"#004870"},"900":{"value":"#002438","variable":"var(--color-blue-900)","original":"#002438"}},"indigoblue":{"50":{"value":"#d9e5ff","variable":"var(--color-indigoblue-50)","original":"#d9e5ff"},"100":{"value":"#b3cbff","variable":"var(--color-indigoblue-100)","original":"#b3cbff"},"200":{"value":"#8db0ff","variable":"var(--color-indigoblue-200)","original":"#8db0ff"},"300":{"value":"#6696ff","variable":"var(--color-indigoblue-300)","original":"#6696ff"},"400":{"value":"#407cff","variable":"var(--color-indigoblue-400)","original":"#407cff"},"500":{"value":"#1a62ff","variable":"var(--color-indigoblue-500)","original":"#1a62ff"},"600":{"value":"#0047e1","variable":"var(--color-indigoblue-600)","original":"#0047e1"},"700":{"value":"#0035a9","variable":"var(--color-indigoblue-700)","original":"#0035a9"},"800":{"value":"#002370","variable":"var(--color-indigoblue-800)","original":"#002370"},"900":{"value":"#001238","variable":"var(--color-indigoblue-900)","original":"#001238"}},"royalblue":{"50":{"value":"#dfdbfb","variable":"var(--color-royalblue-50)","original":"#dfdbfb"},"100":{"value":"#c0b7f7","variable":"var(--color-royalblue-100)","original":"#c0b7f7"},"200":{"value":"#a093f3","variable":"var(--color-royalblue-200)","original":"#a093f3"},"300":{"value":"#806ff0","variable":"var(--color-royalblue-300)","original":"#806ff0"},"400":{"value":"#614bec","variable":"var(--color-royalblue-400)","original":"#614bec"},"500":{"value":"#4127e8","variable":"var(--color-royalblue-500)","original":"#4127e8"},"600":{"value":"#2c15c4","variable":"var(--color-royalblue-600)","original":"#2c15c4"},"700":{"value":"#211093","variable":"var(--color-royalblue-700)","original":"#211093"},"800":{"value":"#160a62","variable":"var(--color-royalblue-800)","original":"#160a62"},"900":{"value":"#0b0531","variable":"var(--color-royalblue-900)","original":"#0b0531"}},"purple":{"50":{"value":"#ead9ff","variable":"var(--color-purple-50)","original":"#ead9ff"},"100":{"value":"#d5b3ff","variable":"var(--color-purple-100)","original":"#d5b3ff"},"200":{"value":"#c08dff","variable":"var(--color-purple-200)","original":"#c08dff"},"300":{"value":"#ab66ff","variable":"var(--color-purple-300)","original":"#ab66ff"},"400":{"value":"#9640ff","variable":"var(--color-purple-400)","original":"#9640ff"},"500":{"value":"#811aff","variable":"var(--color-purple-500)","original":"#811aff"},"600":{"value":"#6500e1","variable":"var(--color-purple-600)","original":"#6500e1"},"700":{"value":"#4c00a9","variable":"var(--color-purple-700)","original":"#4c00a9"},"800":{"value":"#330070","variable":"var(--color-purple-800)","original":"#330070"},"900":{"value":"#190038","variable":"var(--color-purple-900)","original":"#190038"}},"pink":{"50":{"value":"#ffd9f2","variable":"var(--color-pink-50)","original":"#ffd9f2"},"100":{"value":"#ffb3e5","variable":"var(--color-pink-100)","original":"#ffb3e5"},"200":{"value":"#ff8dd8","variable":"var(--color-pink-200)","original":"#ff8dd8"},"300":{"value":"#ff66cc","variable":"var(--color-pink-300)","original":"#ff66cc"},"400":{"value":"#ff40bf","variable":"var(--color-pink-400)","original":"#ff40bf"},"500":{"value":"#ff1ab2","variable":"var(--color-pink-500)","original":"#ff1ab2"},"600":{"value":"#e10095","variable":"var(--color-pink-600)","original":"#e10095"},"700":{"value":"#a90070","variable":"var(--color-pink-700)","original":"#a90070"},"800":{"value":"#70004b","variable":"var(--color-pink-800)","original":"#70004b"},"900":{"value":"#380025","variable":"var(--color-pink-900)","original":"#380025"}},"ruby":{"50":{"value":"#ffd9e4","variable":"var(--color-ruby-50)","original":"#ffd9e4"},"100":{"value":"#ffb3c9","variable":"var(--color-ruby-100)","original":"#ffb3c9"},"200":{"value":"#ff8dae","variable":"var(--color-ruby-200)","original":"#ff8dae"},"300":{"value":"#ff6694","variable":"var(--color-ruby-300)","original":"#ff6694"},"400":{"value":"#ff4079","variable":"var(--color-ruby-400)","original":"#ff4079"},"500":{"value":"#ff1a5e","variable":"var(--color-ruby-500)","original":"#ff1a5e"},"600":{"value":"#e10043","variable":"var(--color-ruby-600)","original":"#e10043"},"700":{"value":"#a90032","variable":"var(--color-ruby-700)","original":"#a90032"},"800":{"value":"#700021","variable":"var(--color-ruby-800)","original":"#700021"},"900":{"value":"#380011","variable":"var(--color-ruby-900)","original":"#380011"}}},"elements":{"text":{"primary":{"color":{"static":{"value":{"initial":"var(--color-gray-900)","dark":"var(--color-gray-50)"},"variable":"var(--elements-text-primary-color-static)","original":{"initial":"{color.gray.900}","dark":"{color.gray.50}"}},"hover":{}}},"secondary":{"color":{"static":{"value":{"initial":"var(--color-gray-500)","dark":"var(--color-gray-400)"},"variable":"var(--elements-text-secondary-color-static)","original":{"initial":"{color.gray.500}","dark":"{color.gray.400}"}},"hover":{"value":{"initial":"var(--color-gray-700)","dark":"var(--color-gray-200)"},"variable":"var(--elements-text-secondary-color-hover)","original":{"initial":"{color.gray.700}","dark":"{color.gray.200}"}}}}},"container":{"maxWidth":{"value":"80rem","variable":"var(--elements-container-maxWidth)","original":"80rem"},"padding":{"mobile":{"value":"var(--space-4)","variable":"var(--elements-container-padding-mobile)","original":"{space.4}"},"xs":{"value":"var(--space-4)","variable":"var(--elements-container-padding-xs)","original":"{space.4}"},"sm":{"value":"var(--space-6)","variable":"var(--elements-container-padding-sm)","original":"{space.6}"},"md":{"value":"var(--space-6)","variable":"var(--elements-container-padding-md)","original":"{space.6}"}}},"backdrop":{"filter":{"value":"saturate(200%) blur(20px)","variable":"var(--elements-backdrop-filter)","original":"saturate(200%) blur(20px)"},"background":{"value":{"initial":"#fffc","dark":"#0c0d0ccc"},"variable":"var(--elements-backdrop-background)","original":{"initial":"#fffc","dark":"#0c0d0ccc"}}},"border":{"primary":{"static":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-border-primary-static)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}},"hover":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-primary-hover)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}}},"secondary":{"static":{"value":{"initial":"var(--color-gray-200)","dark":"var(--color-gray-800)"},"variable":"var(--elements-border-secondary-static)","original":{"initial":"{color.gray.200}","dark":"{color.gray.800}"}},"hover":{"value":{"initial":"","dark":""},"variable":"var(--elements-border-secondary-hover)","original":{"initial":"","dark":""}}}},"surface":{"background":{"base":{"value":{"initial":"var(--color-gray-100)","dark":"var(--color-gray-900)"},"variable":"var(--elements-surface-background-base)","original":{"initial":"{color.gray.100}","dark":"{color.gray.900}"}}}},"state":{"primary":{"color":{"primary":{"value":{"initial":"var(--color-primary-600)","dark":"var(--color-primary-400)"},"variable":"var(--elements-state-primary-color-primary)","original":{"initial":"{color.primary.600}","dark":"{color.primary.400}"}},"secondary":{"value":{"initial":"var(--color-primary-700)","dark":"var(--color-primary-200)"},"variable":"var(--elements-state-primary-color-secondary)","original":{"initial":"{color.primary.700}","dark":"{color.primary.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-primary-50)","dark":"var(--color-primary-900)"},"variable":"var(--elements-state-primary-backgroundColor-primary)","original":{"initial":"{color.primary.50}","dark":"{color.primary.900}"}},"secondary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-backgroundColor-secondary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-primary-100)","dark":"var(--color-primary-800)"},"variable":"var(--elements-state-primary-borderColor-primary)","original":{"initial":"{color.primary.100}","dark":"{color.primary.800}"}},"secondary":{"value":{"initial":"var(--color-primary-200)","dark":"var(--color-primary-700)"},"variable":"var(--elements-state-primary-borderColor-secondary)","original":{"initial":"{color.primary.200}","dark":"{color.primary.700}"}}}},"info":{"color":{"primary":{"value":{"initial":"var(--color-blue-500)","dark":"var(--color-blue-400)"},"variable":"var(--elements-state-info-color-primary)","original":{"initial":"{color.blue.500}","dark":"{color.blue.400}"}},"secondary":{"value":{"initial":"var(--color-blue-600)","dark":"var(--color-blue-200)"},"variable":"var(--elements-state-info-color-secondary)","original":{"initial":"{color.blue.600}","dark":"{color.blue.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-blue-50)","dark":"var(--color-blue-900)"},"variable":"var(--elements-state-info-backgroundColor-primary)","original":{"initial":"{color.blue.50}","dark":"{color.blue.900}"}},"secondary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-backgroundColor-secondary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-blue-100)","dark":"var(--color-blue-800)"},"variable":"var(--elements-state-info-borderColor-primary)","original":{"initial":"{color.blue.100}","dark":"{color.blue.800}"}},"secondary":{"value":{"initial":"var(--color-blue-200)","dark":"var(--color-blue-700)"},"variable":"var(--elements-state-info-borderColor-secondary)","original":{"initial":"{color.blue.200}","dark":"{color.blue.700}"}}}},"success":{"color":{"primary":{"value":{"initial":"var(--color-green-500)","dark":"var(--color-green-400)"},"variable":"var(--elements-state-success-color-primary)","original":{"initial":"{color.green.500}","dark":"{color.green.400}"}},"secondary":{"value":{"initial":"var(--color-green-600)","dark":"var(--color-green-200)"},"variable":"var(--elements-state-success-color-secondary)","original":{"initial":"{color.green.600}","dark":"{color.green.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-green-50)","dark":"var(--color-green-900)"},"variable":"var(--elements-state-success-backgroundColor-primary)","original":{"initial":"{color.green.50}","dark":"{color.green.900}"}},"secondary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-backgroundColor-secondary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-green-100)","dark":"var(--color-green-800)"},"variable":"var(--elements-state-success-borderColor-primary)","original":{"initial":"{color.green.100}","dark":"{color.green.800}"}},"secondary":{"value":{"initial":"var(--color-green-200)","dark":"var(--color-green-700)"},"variable":"var(--elements-state-success-borderColor-secondary)","original":{"initial":"{color.green.200}","dark":"{color.green.700}"}}}},"warning":{"color":{"primary":{"value":{"initial":"var(--color-yellow-600)","dark":"var(--color-yellow-400)"},"variable":"var(--elements-state-warning-color-primary)","original":{"initial":"{color.yellow.600}","dark":"{color.yellow.400}"}},"secondary":{"value":{"initial":"var(--color-yellow-700)","dark":"var(--color-yellow-200)"},"variable":"var(--elements-state-warning-color-secondary)","original":{"initial":"{color.yellow.700}","dark":"{color.yellow.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-yellow-50)","dark":"var(--color-yellow-900)"},"variable":"var(--elements-state-warning-backgroundColor-primary)","original":{"initial":"{color.yellow.50}","dark":"{color.yellow.900}"}},"secondary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-backgroundColor-secondary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-yellow-100)","dark":"var(--color-yellow-800)"},"variable":"var(--elements-state-warning-borderColor-primary)","original":{"initial":"{color.yellow.100}","dark":"{color.yellow.800}"}},"secondary":{"value":{"initial":"var(--color-yellow-200)","dark":"var(--color-yellow-700)"},"variable":"var(--elements-state-warning-borderColor-secondary)","original":{"initial":"{color.yellow.200}","dark":"{color.yellow.700}"}}}},"danger":{"color":{"primary":{"value":{"initial":"var(--color-red-500)","dark":"var(--color-red-300)"},"variable":"var(--elements-state-danger-color-primary)","original":{"initial":"{color.red.500}","dark":"{color.red.300}"}},"secondary":{"value":{"initial":"var(--color-red-600)","dark":"var(--color-red-200)"},"variable":"var(--elements-state-danger-color-secondary)","original":{"initial":"{color.red.600}","dark":"{color.red.200}"}}},"backgroundColor":{"primary":{"value":{"initial":"var(--color-red-50)","dark":"var(--color-red-900)"},"variable":"var(--elements-state-danger-backgroundColor-primary)","original":{"initial":"{color.red.50}","dark":"{color.red.900}"}},"secondary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-backgroundColor-secondary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}}},"borderColor":{"primary":{"value":{"initial":"var(--color-red-100)","dark":"var(--color-red-800)"},"variable":"var(--elements-state-danger-borderColor-primary)","original":{"initial":"{color.red.100}","dark":"{color.red.800}"}},"secondary":{"value":{"initial":"var(--color-red-200)","dark":"var(--color-red-700)"},"variable":"var(--elements-state-danger-borderColor-secondary)","original":{"initial":"{color.red.200}","dark":"{color.red.700}"}}}}}},"typography":{"verticalMargin":{"sm":{"value":"16px","variable":"var(--typography-verticalMargin-sm)","original":"16px"},"base":{"value":"32px","variable":"var(--typography-verticalMargin-base)","original":"32px"}},"letterSpacing":{"tight":{"value":"-0.025em","variable":"var(--typography-letterSpacing-tight)","original":"-0.025em"},"wide":{"value":"0.025em","variable":"var(--typography-letterSpacing-wide)","original":"0.025em"}},"fontSize":{"xs":{"value":"12px","variable":"var(--typography-fontSize-xs)","original":"12px"},"sm":{"value":"14px","variable":"var(--typography-fontSize-sm)","original":"14px"},"base":{"value":"16px","variable":"var(--typography-fontSize-base)","original":"16px"},"lg":{"value":"18px","variable":"var(--typography-fontSize-lg)","original":"18px"},"xl":{"value":"20px","variable":"var(--typography-fontSize-xl)","original":"20px"},"2xl":{"value":"24px","variable":"var(--typography-fontSize-2xl)","original":"24px"},"3xl":{"value":"30px","variable":"var(--typography-fontSize-3xl)","original":"30px"},"4xl":{"value":"36px","variable":"var(--typography-fontSize-4xl)","original":"36px"},"5xl":{"value":"48px","variable":"var(--typography-fontSize-5xl)","original":"48px"},"6xl":{"value":"60px","variable":"var(--typography-fontSize-6xl)","original":"60px"},"7xl":{"value":"72px","variable":"var(--typography-fontSize-7xl)","original":"72px"},"8xl":{"value":"96px","variable":"var(--typography-fontSize-8xl)","original":"96px"},"9xl":{"value":"128px","variable":"var(--typography-fontSize-9xl)","original":"128px"}},"fontWeight":{"thin":{"value":"100","variable":"var(--typography-fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--typography-fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--typography-fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--typography-fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--typography-fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--typography-fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--typography-fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--typography-fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--typography-fontWeight-black)","original":"900"}},"lead":{"none":{"value":"1","variable":"var(--typography-lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--typography-lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--typography-lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--typography-lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--typography-lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--typography-lead-loose)","original":"2"}},"font":{"display":{"value":"var(--font-sans)","variable":"var(--typography-font-display)","original":"{font.sans}"},"body":{"value":"var(--font-sans)","variable":"var(--typography-font-body)","original":"{font.sans}"},"code":{"value":"var(--font-mono)","variable":"var(--typography-font-code)","original":"{font.mono}"}},"color":{"primary":{"50":{"value":"var(--color-primary-50)","variable":"var(--typography-color-primary-50)","original":"{color.primary.50}"},"100":{"value":"var(--color-primary-100)","variable":"var(--typography-color-primary-100)","original":"{color.primary.100}"},"200":{"value":"var(--color-primary-200)","variable":"var(--typography-color-primary-200)","original":"{color.primary.200}"},"300":{"value":"var(--color-primary-300)","variable":"var(--typography-color-primary-300)","original":"{color.primary.300}"},"400":{"value":"var(--color-primary-400)","variable":"var(--typography-color-primary-400)","original":"{color.primary.400}"},"500":{"value":"var(--color-primary-500)","variable":"var(--typography-color-primary-500)","original":"{color.primary.500}"},"600":{"value":"var(--color-primary-600)","variable":"var(--typography-color-primary-600)","original":"{color.primary.600}"},"700":{"value":"var(--color-primary-700)","variable":"var(--typography-color-primary-700)","original":"{color.primary.700}"},"800":{"value":"var(--color-primary-800)","variable":"var(--typography-color-primary-800)","original":"{color.primary.800}"},"900":{"value":"var(--color-primary-900)","variable":"var(--typography-color-primary-900)","original":"{color.primary.900}"}},"secondary":{"50":{"value":"var(--color-gray-50)","variable":"var(--typography-color-secondary-50)","original":"{color.gray.50}"},"100":{"value":"var(--color-gray-100)","variable":"var(--typography-color-secondary-100)","original":"{color.gray.100}"},"200":{"value":"var(--color-gray-200)","variable":"var(--typography-color-secondary-200)","original":"{color.gray.200}"},"300":{"value":"var(--color-gray-300)","variable":"var(--typography-color-secondary-300)","original":"{color.gray.300}"},"400":{"value":"var(--color-gray-400)","variable":"var(--typography-color-secondary-400)","original":"{color.gray.400}"},"500":{"value":"var(--color-gray-500)","variable":"var(--typography-color-secondary-500)","original":"{color.gray.500}"},"600":{"value":"var(--color-gray-600)","variable":"var(--typography-color-secondary-600)","original":"{color.gray.600}"},"700":{"value":"var(--color-gray-700)","variable":"var(--typography-color-secondary-700)","original":"{color.gray.700}"},"800":{"value":"var(--color-gray-800)","variable":"var(--typography-color-secondary-800)","original":"{color.gray.800}"},"900":{"value":"var(--color-gray-900)","variable":"var(--typography-color-secondary-900)","original":"{color.gray.900}"}}}},"prose":{"p":{"fontSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-p-fontSize)","original":"{typography.fontSize.base}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-p-lineHeight)","original":"{typography.lead.normal}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-p-margin)","original":"{typography.verticalMargin.base} 0"},"br":{"margin":{"value":"var(--typography-verticalMargin-base) 0 0 0","variable":"var(--prose-p-br-margin)","original":"{typography.verticalMargin.base} 0 0 0"}}},"h1":{"margin":{"value":"0 0 2rem","variable":"var(--prose-h1-margin)","original":"0 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-5xl)","variable":"var(--prose-h1-fontSize)","original":"{typography.fontSize.5xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h1-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-bold)","variable":"var(--prose-h1-fontWeight)","original":"{typography.fontWeight.bold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h1-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h1-iconSize)","original":"{typography.fontSize.3xl}"}},"h2":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h2-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-4xl)","variable":"var(--prose-h2-fontSize)","original":"{typography.fontSize.4xl}"},"lineHeight":{"value":"var(--typography-lead-tight)","variable":"var(--prose-h2-lineHeight)","original":"{typography.lead.tight}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h2-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h2-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h2-iconSize)","original":"{typography.fontSize.2xl}"}},"h3":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h3-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-3xl)","variable":"var(--prose-h3-fontSize)","original":"{typography.fontSize.3xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h3-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h3-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h3-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h3-iconSize)","original":"{typography.fontSize.xl}"}},"h4":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h4-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-2xl)","variable":"var(--prose-h4-fontSize)","original":"{typography.fontSize.2xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h4-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h4-fontWeight)","original":"{typography.fontWeight.semibold}"},"letterSpacing":{"value":"var(--typography-letterSpacing-tight)","variable":"var(--prose-h4-letterSpacing)","original":"{typography.letterSpacing.tight}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h4-iconSize)","original":"{typography.fontSize.lg}"}},"h5":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h5-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-xl)","variable":"var(--prose-h5-fontSize)","original":"{typography.fontSize.xl}"},"lineHeight":{"value":"var(--typography-lead-snug)","variable":"var(--prose-h5-lineHeight)","original":"{typography.lead.snug}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h5-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h5-iconSize)","original":"{typography.fontSize.lg}"}},"h6":{"margin":{"value":"3rem 0 2rem","variable":"var(--prose-h6-margin)","original":"3rem 0 2rem"},"fontSize":{"value":"var(--typography-fontSize-lg)","variable":"var(--prose-h6-fontSize)","original":"{typography.fontSize.lg}"},"lineHeight":{"value":"var(--typography-lead-normal)","variable":"var(--prose-h6-lineHeight)","original":"{typography.lead.normal}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-h6-fontWeight)","original":"{typography.fontWeight.semibold}"},"iconSize":{"value":"var(--typography-fontSize-base)","variable":"var(--prose-h6-iconSize)","original":"{typography.fontSize.base}"}},"strong":{"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-strong-fontWeight)","original":"{typography.fontWeight.semibold}"}},"img":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-img-margin)","original":"{typography.verticalMargin.base} 0"}},"a":{"textDecoration":{"value":"none","variable":"var(--prose-a-textDecoration)","original":"none"},"color":{"static":{"value":{"initial":"inherit","dark":"inherit"},"variable":"var(--prose-a-color-static)","original":{"initial":"inherit","dark":"inherit"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-400)"},"variable":"var(--prose-a-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.400}"}}},"border":{"width":{"value":"1px","variable":"var(--prose-a-border-width)","original":"1px"},"style":{"static":{"value":"dashed","variable":"var(--prose-a-border-style-static)","original":"dashed"},"hover":{"value":"solid","variable":"var(--prose-a-border-style-hover)","original":"solid"}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-border-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"distance":{"value":"2px","variable":"var(--prose-a-border-distance)","original":"2px"}},"fontWeight":{"value":"var(--typography-fontWeight-medium)","variable":"var(--prose-a-fontWeight)","original":"{typography.fontWeight.medium}"},"hasCode":{"borderBottom":{"value":"none","variable":"var(--prose-a-hasCode-borderBottom)","original":"none"}},"code":{"border":{"width":{"value":"var(--prose-a-border-width)","variable":"var(--prose-a-code-border-width)","original":"{prose.a.border.width}"},"style":{"value":"var(--prose-a-border-style-static)","variable":"var(--prose-a-code-border-style)","original":"{prose.a.border.style.static}"},"color":{"static":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-a-code-border-color-static)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.600}"}},"hover":{"value":{"initial":"var(--typography-color-primary-500)","dark":"var(--typography-color-primary-600)"},"variable":"var(--prose-a-code-border-color-hover)","original":{"initial":"{typography.color.primary.500}","dark":"{typography.color.primary.600}"}}}},"color":{"static":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-static)","original":{"initial":"currentColor","dark":"currentColor"}},"hover":{"value":{"initial":"currentColor","dark":"currentColor"},"variable":"var(--prose-a-code-color-hover)","original":{"initial":"currentColor","dark":"currentColor"}}},"background":{"static":{},"hover":{"value":{"initial":"var(--typography-color-primary-50)","dark":"var(--typography-color-primary-900)"},"variable":"var(--prose-a-code-background-hover)","original":{"initial":"{typography.color.primary.50}","dark":"{typography.color.primary.900}"}}}}},"blockquote":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-blockquote-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 24px","variable":"var(--prose-blockquote-padding)","original":"0 0 0 24px"},"quotes":{"value":"'201C' '201D' '2018' '2019'","variable":"var(--prose-blockquote-quotes)","original":"'201C' '201D' '2018' '2019'"},"color":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-blockquote-color)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.400}"}},"border":{"width":{"value":"4px","variable":"var(--prose-blockquote-border-width)","original":"4px"},"style":{"value":"solid","variable":"var(--prose-blockquote-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-blockquote-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.700}"}}}},"ul":{"listStyleType":{"value":"disc","variable":"var(--prose-ul-listStyleType)","original":"disc"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ul-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ul-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-400)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ul-li-markerColor)","original":{"initial":"{typography.color.secondary.400}","dark":"{typography.color.secondary.500}"}}}},"ol":{"listStyleType":{"value":"decimal","variable":"var(--prose-ol-listStyleType)","original":"decimal"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-ol-margin)","original":"{typography.verticalMargin.base} 0"},"padding":{"value":"0 0 0 21px","variable":"var(--prose-ol-padding)","original":"0 0 0 21px"},"li":{"markerColor":{"value":{"initial":"var(--typography-color-secondary-500)","dark":"var(--typography-color-secondary-500)"},"variable":"var(--prose-ol-li-markerColor)","original":{"initial":"{typography.color.secondary.500}","dark":"{typography.color.secondary.500}"}}}},"li":{"margin":{"value":"var(--typography-verticalMargin-sm) 0","variable":"var(--prose-li-margin)","original":"{typography.verticalMargin.sm} 0"},"listStylePosition":{"value":"outside","variable":"var(--prose-li-listStylePosition)","original":"outside"}},"hr":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-hr-margin)","original":"{typography.verticalMargin.base} 0"},"style":{"value":"solid","variable":"var(--prose-hr-style)","original":"solid"},"width":{"value":"1px","variable":"var(--prose-hr-width)","original":"1px"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-hr-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"table":{"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-table-margin)","original":"{typography.verticalMargin.base} 0"},"textAlign":{"value":"left","variable":"var(--prose-table-textAlign)","original":"left"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-table-fontSize)","original":"{typography.fontSize.sm}"},"lineHeight":{"value":"inherit","variable":"var(--prose-table-lineHeight)","original":"inherit"}},"thead":{"border":{"width":{"value":"0px","variable":"var(--prose-thead-border-width)","original":"0px"},"style":{"value":"solid","variable":"var(--prose-thead-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-border-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}},"borderBottom":{"width":{"value":"1px","variable":"var(--prose-thead-borderBottom-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-thead-borderBottom-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-600)"},"variable":"var(--prose-thead-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.600}"}}}},"th":{"color":{"value":{"initial":"var(--typography-color-secondary-600)","dark":"var(--typography-color-secondary-400)"},"variable":"var(--prose-th-color)","original":{"initial":"{typography.color.secondary.600}","dark":"{typography.color.secondary.400}"}},"padding":{"value":"0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)","variable":"var(--prose-th-padding)","original":"0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-semibold)","variable":"var(--prose-th-fontWeight)","original":"{typography.fontWeight.semibold}"}},"tbody":{"tr":{"borderBottom":{"width":{"value":"1px","variable":"var(--prose-tbody-tr-borderBottom-width)","original":"1px"},"style":{"value":"dashed","variable":"var(--prose-tbody-tr-borderBottom-style)","original":"dashed"},"color":{"value":{"initial":"var(--typography-color-secondary-300)","dark":"var(--typography-color-secondary-700)"},"variable":"var(--prose-tbody-tr-borderBottom-color)","original":{"initial":"{typography.color.secondary.300}","dark":"{typography.color.secondary.700}"}}}},"td":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-tbody-td-padding)","original":"{typography.verticalMargin.sm}"}},"code":{"inline":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-tbody-code-inline-fontSize)","original":"{typography.fontSize.sm}"}}}},"code":{"block":{"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-block-fontSize)","original":"{typography.fontSize.sm}"},"margin":{"value":"var(--typography-verticalMargin-base) 0","variable":"var(--prose-code-block-margin)","original":"{typography.verticalMargin.base} 0"},"border":{"width":{"value":"1px","variable":"var(--prose-code-block-border-width)","original":"1px"},"style":{"value":"solid","variable":"var(--prose-code-block-border-style)","original":"solid"},"color":{"value":{"initial":"var(--typography-color-secondary-200)","dark":"var(--typography-color-secondary-800)"},"variable":"var(--prose-code-block-border-color)","original":{"initial":"{typography.color.secondary.200}","dark":"{typography.color.secondary.800}"}}},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-block-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-block-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}},"pre":{"padding":{"value":"var(--typography-verticalMargin-sm)","variable":"var(--prose-code-block-pre-padding)","original":"{typography.verticalMargin.sm}"}}},"inline":{"borderRadius":{"value":"0.375rem","variable":"var(--prose-code-inline-borderRadius)","original":"0.375rem"},"padding":{"value":"0.25rem 0.375rem 0.25rem 0.375rem","variable":"var(--prose-code-inline-padding)","original":"0.25rem 0.375rem 0.25rem 0.375rem"},"fontSize":{"value":"var(--typography-fontSize-sm)","variable":"var(--prose-code-inline-fontSize)","original":"{typography.fontSize.sm}"},"fontWeight":{"value":"var(--typography-fontWeight-normal)","variable":"var(--prose-code-inline-fontWeight)","original":"{typography.fontWeight.normal}"},"color":{"value":{"initial":"var(--typography-color-secondary-700)","dark":"var(--typography-color-secondary-200)"},"variable":"var(--prose-code-inline-color)","original":{"initial":"{typography.color.secondary.700}","dark":"{typography.color.secondary.200}"}},"backgroundColor":{"value":{"initial":"var(--typography-color-secondary-100)","dark":"var(--typography-color-secondary-900)"},"variable":"var(--prose-code-inline-backgroundColor)","original":{"initial":"{typography.color.secondary.100}","dark":"{typography.color.secondary.900}"}}}}},"radii":{"sm":{"value":"0.375rem","variable":"var(--radii-sm)","original":"0.375rem"},"md":{"value":"0.5rem","variable":"var(--radii-md)","original":"0.5rem"},"lg":{"value":"0.75rem","variable":"var(--radii-lg)","original":"0.75rem"},"none":{"value":"0px","variable":"var(--radii-none)","original":"0px"},"2xs":{"value":"0.125rem","variable":"var(--radii-2xs)","original":"0.125rem"},"xs":{"value":"0.25rem","variable":"var(--radii-xs)","original":"0.25rem"},"xl":{"value":"1rem","variable":"var(--radii-xl)","original":"1rem"},"2xl":{"value":"1.5rem","variable":"var(--radii-2xl)","original":"1.5rem"},"3xl":{"value":"1.75rem","variable":"var(--radii-3xl)","original":"1.75rem"},"full":{"value":"9999px","variable":"var(--radii-full)","original":"9999px"}},"fontSize":{"xs":{"value":"0.75rem","variable":"var(--fontSize-xs)","original":"0.75rem"},"sm":{"value":"0.875rem","variable":"var(--fontSize-sm)","original":"0.875rem"},"base":{"value":"1rem","variable":"var(--fontSize-base)","original":"1rem"},"lg":{"value":"1.125rem","variable":"var(--fontSize-lg)","original":"1.125rem"},"xl":{"value":"1.25rem","variable":"var(--fontSize-xl)","original":"1.25rem"},"2xl":{"value":"1.5rem","variable":"var(--fontSize-2xl)","original":"1.5rem"},"3xl":{"value":"1.875rem","variable":"var(--fontSize-3xl)","original":"1.875rem"},"4xl":{"value":"2.25rem","variable":"var(--fontSize-4xl)","original":"2.25rem"},"5xl":{"value":"3rem","variable":"var(--fontSize-5xl)","original":"3rem"},"6xl":{"value":"3.75rem","variable":"var(--fontSize-6xl)","original":"3.75rem"},"7xl":{"value":"4.5rem","variable":"var(--fontSize-7xl)","original":"4.5rem"},"8xl":{"value":"6rem","variable":"var(--fontSize-8xl)","original":"6rem"},"9xl":{"value":"8rem","variable":"var(--fontSize-9xl)","original":"8rem"}},"lead":{"1":{"value":".025rem","variable":"var(--lead-1)","original":".025rem"},"2":{"value":".5rem","variable":"var(--lead-2)","original":".5rem"},"3":{"value":".75rem","variable":"var(--lead-3)","original":".75rem"},"4":{"value":"1rem","variable":"var(--lead-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--lead-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--lead-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--lead-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--lead-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--lead-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--lead-10)","original":"2.5rem"},"none":{"value":"1","variable":"var(--lead-none)","original":"1"},"tight":{"value":"1.25","variable":"var(--lead-tight)","original":"1.25"},"snug":{"value":"1.375","variable":"var(--lead-snug)","original":"1.375"},"normal":{"value":"1.5","variable":"var(--lead-normal)","original":"1.5"},"relaxed":{"value":"1.625","variable":"var(--lead-relaxed)","original":"1.625"},"loose":{"value":"2","variable":"var(--lead-loose)","original":"2"}},"font":{"sans":{"value":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji","variable":"var(--font-sans)","original":"ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji"},"serif":{"value":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif","variable":"var(--font-serif)","original":"ui-serif, Georgia, Cambria, Times New Roman, Times, serif"},"mono":{"value":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace","variable":"var(--font-mono)","original":"ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace"}},"docus":{"header":{"height":{"value":"64px","variable":"var(--docus-header-height)","original":"64px"}},"footer":{"padding":{"value":"var(--space-4) 0","variable":"var(--docus-footer-padding)","original":"{space.4} 0"}},"readableLine":{"value":"78ch","variable":"var(--docus-readableLine)","original":"78ch"},"loadingBar":{"height":{"value":"3px","variable":"var(--docus-loadingBar-height)","original":"3px"},"gradientColorStop1":{"value":"#00dc82","variable":"var(--docus-loadingBar-gradientColorStop1)","original":"#00dc82"},"gradientColorStop2":{"value":"#34cdfe","variable":"var(--docus-loadingBar-gradientColorStop2)","original":"#34cdfe"},"gradientColorStop3":{"value":"#0047e1","variable":"var(--docus-loadingBar-gradientColorStop3)","original":"#0047e1"}}},"media":{"xs":{"value":"(min-width: 475px)","variable":"var(--media-xs)","original":"(min-width: 475px)"},"sm":{"value":"(min-width: 640px)","variable":"var(--media-sm)","original":"(min-width: 640px)"},"md":{"value":"(min-width: 768px)","variable":"var(--media-md)","original":"(min-width: 768px)"},"lg":{"value":"(min-width: 1024px)","variable":"var(--media-lg)","original":"(min-width: 1024px)"},"xl":{"value":"(min-width: 1280px)","variable":"var(--media-xl)","original":"(min-width: 1280px)"},"2xl":{"value":"(min-width: 1536px)","variable":"var(--media-2xl)","original":"(min-width: 1536px)"},"rm":{"value":"(prefers-reduced-motion: reduce)","variable":"var(--media-rm)","original":"(prefers-reduced-motion: reduce)"},"landscape":{"value":"only screen and (orientation: landscape)","variable":"var(--media-landscape)","original":"only screen and (orientation: landscape)"},"portrait":{"value":"only screen and (orientation: portrait)","variable":"var(--media-portrait)","original":"only screen and (orientation: portrait)"}},"width":{"screen":{"value":"100vw","variable":"var(--width-screen)","original":"100vw"}},"height":{"screen":{"value":"100vh","variable":"var(--height-screen)","original":"100vh"}},"shadow":{"xs":{"value":"0px 1px 2px 0px #000000","variable":"var(--shadow-xs)","original":"0px 1px 2px 0px #000000"},"sm":{"value":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000","variable":"var(--shadow-sm)","original":"0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000"},"md":{"value":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000","variable":"var(--shadow-md)","original":"0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000"},"lg":{"value":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000","variable":"var(--shadow-lg)","original":"0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000"},"xl":{"value":"0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000","variable":"var(--shadow-xl)","original":"0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000"},"2xl":{"value":"0px 25px 50px -12px var(--color-gray-900)","variable":"var(--shadow-2xl)","original":"0px 25px 50px -12px {color.gray.900}"},"none":{"value":"0px 0px 0px 0px transparent","variable":"var(--shadow-none)","original":"0px 0px 0px 0px transparent"}},"size":{"0":{"value":"0px","variable":"var(--size-0)","original":"0px"},"2":{"value":"2px","variable":"var(--size-2)","original":"2px"},"4":{"value":"4px","variable":"var(--size-4)","original":"4px"},"6":{"value":"6px","variable":"var(--size-6)","original":"6px"},"8":{"value":"8px","variable":"var(--size-8)","original":"8px"},"12":{"value":"12px","variable":"var(--size-12)","original":"12px"},"16":{"value":"16px","variable":"var(--size-16)","original":"16px"},"20":{"value":"20px","variable":"var(--size-20)","original":"20px"},"24":{"value":"24px","variable":"var(--size-24)","original":"24px"},"32":{"value":"32px","variable":"var(--size-32)","original":"32px"},"40":{"value":"40px","variable":"var(--size-40)","original":"40px"},"48":{"value":"48px","variable":"var(--size-48)","original":"48px"},"56":{"value":"56px","variable":"var(--size-56)","original":"56px"},"64":{"value":"64px","variable":"var(--size-64)","original":"64px"},"80":{"value":"80px","variable":"var(--size-80)","original":"80px"},"104":{"value":"104px","variable":"var(--size-104)","original":"104px"},"200":{"value":"200px","variable":"var(--size-200)","original":"200px"},"xs":{"value":"20rem","variable":"var(--size-xs)","original":"20rem"},"sm":{"value":"24rem","variable":"var(--size-sm)","original":"24rem"},"md":{"value":"28rem","variable":"var(--size-md)","original":"28rem"},"lg":{"value":"32rem","variable":"var(--size-lg)","original":"32rem"},"xl":{"value":"36rem","variable":"var(--size-xl)","original":"36rem"},"2xl":{"value":"42rem","variable":"var(--size-2xl)","original":"42rem"},"3xl":{"value":"48rem","variable":"var(--size-3xl)","original":"48rem"},"4xl":{"value":"56rem","variable":"var(--size-4xl)","original":"56rem"},"5xl":{"value":"64rem","variable":"var(--size-5xl)","original":"64rem"},"6xl":{"value":"72rem","variable":"var(--size-6xl)","original":"72rem"},"7xl":{"value":"80rem","variable":"var(--size-7xl)","original":"80rem"},"full":{"value":"100%","variable":"var(--size-full)","original":"100%"}},"space":{"0":{"value":"0px","variable":"var(--space-0)","original":"0px"},"1":{"value":"0.25rem","variable":"var(--space-1)","original":"0.25rem"},"2":{"value":"0.5rem","variable":"var(--space-2)","original":"0.5rem"},"3":{"value":"0.75rem","variable":"var(--space-3)","original":"0.75rem"},"4":{"value":"1rem","variable":"var(--space-4)","original":"1rem"},"5":{"value":"1.25rem","variable":"var(--space-5)","original":"1.25rem"},"6":{"value":"1.5rem","variable":"var(--space-6)","original":"1.5rem"},"7":{"value":"1.75rem","variable":"var(--space-7)","original":"1.75rem"},"8":{"value":"2rem","variable":"var(--space-8)","original":"2rem"},"9":{"value":"2.25rem","variable":"var(--space-9)","original":"2.25rem"},"10":{"value":"2.5rem","variable":"var(--space-10)","original":"2.5rem"},"11":{"value":"2.75rem","variable":"var(--space-11)","original":"2.75rem"},"12":{"value":"3rem","variable":"var(--space-12)","original":"3rem"},"14":{"value":"3.5rem","variable":"var(--space-14)","original":"3.5rem"},"16":{"value":"4rem","variable":"var(--space-16)","original":"4rem"},"20":{"value":"5rem","variable":"var(--space-20)","original":"5rem"},"24":{"value":"6rem","variable":"var(--space-24)","original":"6rem"},"28":{"value":"7rem","variable":"var(--space-28)","original":"7rem"},"32":{"value":"8rem","variable":"var(--space-32)","original":"8rem"},"36":{"value":"9rem","variable":"var(--space-36)","original":"9rem"},"40":{"value":"10rem","variable":"var(--space-40)","original":"10rem"},"44":{"value":"11rem","variable":"var(--space-44)","original":"11rem"},"48":{"value":"12rem","variable":"var(--space-48)","original":"12rem"},"52":{"value":"13rem","variable":"var(--space-52)","original":"13rem"},"56":{"value":"14rem","variable":"var(--space-56)","original":"14rem"},"60":{"value":"15rem","variable":"var(--space-60)","original":"15rem"},"64":{"value":"16rem","variable":"var(--space-64)","original":"16rem"},"72":{"value":"18rem","variable":"var(--space-72)","original":"18rem"},"80":{"value":"20rem","variable":"var(--space-80)","original":"20rem"},"96":{"value":"24rem","variable":"var(--space-96)","original":"24rem"},"px":{"value":"1px","variable":"var(--space-px)","original":"1px"},"rem":{"125":{"value":"0.125rem","variable":"var(--space-rem-125)","original":"0.125rem"},"375":{"value":"0.375rem","variable":"var(--space-rem-375)","original":"0.375rem"},"625":{"value":"0.625rem","variable":"var(--space-rem-625)","original":"0.625rem"},"875":{"value":"0.875rem","variable":"var(--space-rem-875)","original":"0.875rem"}}},"borderWidth":{"noBorder":{"value":"0","variable":"var(--borderWidth-noBorder)","original":"0"},"sm":{"value":"1px","variable":"var(--borderWidth-sm)","original":"1px"},"md":{"value":"2px","variable":"var(--borderWidth-md)","original":"2px"},"lg":{"value":"3px","variable":"var(--borderWidth-lg)","original":"3px"}},"opacity":{"noOpacity":{"value":"0","variable":"var(--opacity-noOpacity)","original":"0"},"bright":{"value":"0.1","variable":"var(--opacity-bright)","original":"0.1"},"light":{"value":"0.15","variable":"var(--opacity-light)","original":"0.15"},"soft":{"value":"0.3","variable":"var(--opacity-soft)","original":"0.3"},"medium":{"value":"0.5","variable":"var(--opacity-medium)","original":"0.5"},"high":{"value":"0.8","variable":"var(--opacity-high)","original":"0.8"},"total":{"value":"1","variable":"var(--opacity-total)","original":"1"}},"fontWeight":{"thin":{"value":"100","variable":"var(--fontWeight-thin)","original":"100"},"extralight":{"value":"200","variable":"var(--fontWeight-extralight)","original":"200"},"light":{"value":"300","variable":"var(--fontWeight-light)","original":"300"},"normal":{"value":"400","variable":"var(--fontWeight-normal)","original":"400"},"medium":{"value":"500","variable":"var(--fontWeight-medium)","original":"500"},"semibold":{"value":"600","variable":"var(--fontWeight-semibold)","original":"600"},"bold":{"value":"700","variable":"var(--fontWeight-bold)","original":"700"},"extrabold":{"value":"800","variable":"var(--fontWeight-extrabold)","original":"800"},"black":{"value":"900","variable":"var(--fontWeight-black)","original":"900"}},"letterSpacing":{"tighter":{"value":"-0.05em","variable":"var(--letterSpacing-tighter)","original":"-0.05em"},"tight":{"value":"-0.025em","variable":"var(--letterSpacing-tight)","original":"-0.025em"},"normal":{"value":"0em","variable":"var(--letterSpacing-normal)","original":"0em"},"wide":{"value":"0.025em","variable":"var(--letterSpacing-wide)","original":"0.025em"},"wider":{"value":"0.05em","variable":"var(--letterSpacing-wider)","original":"0.05em"},"widest":{"value":"0.1em","variable":"var(--letterSpacing-widest)","original":"0.1em"}},"text":{"xs":{"fontSize":{"value":"var(--fontSize-xs)","variable":"var(--text-xs-fontSize)","original":"{fontSize.xs}"},"lineHeight":{"value":"var(--lead-4)","variable":"var(--text-xs-lineHeight)","original":"{lead.4}"}},"sm":{"fontSize":{"value":"var(--fontSize-sm)","variable":"var(--text-sm-fontSize)","original":"{fontSize.sm}"},"lineHeight":{"value":"var(--lead-5)","variable":"var(--text-sm-lineHeight)","original":"{lead.5}"}},"base":{"fontSize":{"value":"var(--fontSize-base)","variable":"var(--text-base-fontSize)","original":"{fontSize.base}"},"lineHeight":{"value":"var(--lead-6)","variable":"var(--text-base-lineHeight)","original":"{lead.6}"}},"lg":{"fontSize":{"value":"var(--fontSize-lg)","variable":"var(--text-lg-fontSize)","original":"{fontSize.lg}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-lg-lineHeight)","original":"{lead.7}"}},"xl":{"fontSize":{"value":"var(--fontSize-xl)","variable":"var(--text-xl-fontSize)","original":"{fontSize.xl}"},"lineHeight":{"value":"var(--lead-7)","variable":"var(--text-xl-lineHeight)","original":"{lead.7}"}},"2xl":{"fontSize":{"value":"var(--fontSize-2xl)","variable":"var(--text-2xl-fontSize)","original":"{fontSize.2xl}"},"lineHeight":{"value":"var(--lead-8)","variable":"var(--text-2xl-lineHeight)","original":"{lead.8}"}},"3xl":{"fontSize":{"value":"var(--fontSize-3xl)","variable":"var(--text-3xl-fontSize)","original":"{fontSize.3xl}"},"lineHeight":{"value":"var(--lead-9)","variable":"var(--text-3xl-lineHeight)","original":"{lead.9}"}},"4xl":{"fontSize":{"value":"var(--fontSize-4xl)","variable":"var(--text-4xl-fontSize)","original":"{fontSize.4xl}"},"lineHeight":{"value":"var(--lead-10)","variable":"var(--text-4xl-lineHeight)","original":"{lead.10}"}},"5xl":{"fontSize":{"value":"var(--fontSize-5xl)","variable":"var(--text-5xl-fontSize)","original":"{fontSize.5xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-5xl-lineHeight)","original":"{lead.none}"}},"6xl":{"fontSize":{"value":"var(--fontSize-6xl)","variable":"var(--text-6xl-fontSize)","original":"{fontSize.6xl}"},"lineHeight":{"value":"var(--lead-none)","variable":"var(--text-6xl-lineHeight)","original":"{lead.none}"}}}},"content":{"sources":{},"ignores":["\\.","-"],"locales":[],"highlight":{"theme":{"dark":"github-dark","default":"github-light"},"preload":["json","js","ts","html","css","vue","diff","shell","markdown","yaml","bash","ini"]},"navigation":{"fields":["icon","titleTemplate","header","main","aside","footer","layout"]},"documentDriven":true},"components":[{"name":"ExampleCard","path":"/components/content/Example/ExampleCard.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleHero","path":"/components/content/Example/ExampleHero.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ExampleIconCard","path":"/components/content/Example/ExampleIconCard.vue","meta":{"props":[{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default title\""},{"name":"description","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Default description\""},{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"IconMarkdown\""}],"slots":[],"events":[]}},{"name":"ExampleMultiselect","path":"/components/content/Example/ExampleMultiselect.vue","meta":{"props":[{"name":"options","global":false,"description":"","tags":[],"required":false,"type":"string | unknown[] | undefined","schema":{"kind":"enum","type":"string | unknown[] | undefined","schema":["undefined","string",{"kind":"array","type":"unknown[]","schema":["unknown"]}]},"default":"[]"}],"slots":[],"events":[]}},{"name":"ExampleTheTitle","path":"/components/content/Example/ExampleTheTitle.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"HeroAnnouncement","path":"/components/content/HeroAnnouncement.vue","meta":{"props":[{"name":"to","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"label","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"IconMarkdown","path":"/components/content/IconMarkdown.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Logo","path":"/components/content/Logo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"MyButton","path":"/components/content/MyButton.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"PropInspector","path":"/components/content/PropInspector.vue","meta":{"props":[{"name":"prop","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any"}],"slots":[],"events":[]}},{"name":"ReadMore","path":"/components/content/ReadMore.vue","meta":{"props":[{"name":"link","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"}],"slots":[],"events":[]}},{"name":"AppFooter","path":"/node_modules/@nuxt-themes/docus/components/app/AppFooter.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeader","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeader.vue","meta":{"props":[{"name":"length","global":false,"description":"Gets the length of the array. This is a number one higher than the highest element defined in an array.","tags":[],"required":true,"type":"number | Prop | null | undefined","schema":{"kind":"enum","type":"number | Prop | null | undefined","schema":["undefined","null","number","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]}]}},{"name":"concat","global":false,"description":"Combines two or more arrays.","tags":[{"name":"param","text":"items Additional items to add to the end of array1."},{"name":"param","text":"items Additional items to add to the end of array1."}],"required":true,"type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; } | { (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray<...>)[]): string[]; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }","{ (...items: ConcatArray[]): string[]; (...items: (string | ConcatArray)[]): string[]; }"]}},{"name":"join","global":false,"description":"Adds all the elements of an array separated by the specified separator string.","tags":[{"name":"param","text":"separator A string used to separate one element of an array from the next in the resulting String. If omitted, the array elements are separated with a comma."}],"required":true,"type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":{"kind":"enum","type":"Prop | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | ((separator?: string | undefined) => string) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]},{"kind":"event","type":"(separator?: string | undefined): string","schema":[]}]}},{"name":"slice","global":false,"description":"Returns a section of an array.","tags":[{"name":"param","text":"start The beginning of the specified portion of the array."},{"name":"param","text":"end The end of the specified portion of the array. This is exclusive of the element at the index 'end'."}],"required":true,"type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | ((start?: number | undefined, end?: number | undefined) => string[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]},{"kind":"event","type":"(start?: number | undefined, end?: number | undefined): string[]","schema":[]}]}},{"name":"indexOf","global":false,"description":"Returns the index of the first occurrence of a value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at index 0."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"lastIndexOf","global":false,"description":"Returns the index of the last occurrence of a specified value in an array.","tags":[{"name":"param","text":"searchElement The value to locate in the array."},{"name":"param","text":"fromIndex The array index at which to begin the search. If fromIndex is omitted, the search starts at the last index in the array."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | ((searchElement: string, fromIndex?: number | undefined) => number) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): number","schema":[]}]}},{"name":"every","global":false,"description":"Determines whether all the members of an array satisfy the specified test.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The every method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value false, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): this is readonly S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean; }"]}},{"name":"some","global":false,"description":"Determines whether the specified callback function returns true for any element of an array.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The some method calls\r\nthe predicate function for each element in the array until the predicate returns a value\r\nwhich is coercible to the Boolean value true, or until the end of the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function.\r\nIf thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any) => boolean) | ((predicate: (value: string, index: number, array: readonly string[]) ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): boolean","schema":[]}]}},{"name":"forEach","global":false,"description":"Performs the specified action for each element in an array.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. forEach calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any) => void) | ((callbackfn: (value: string, index: number, array: readonly string[]) => void, ...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => void, thisArg?: any): void","schema":[]}]}},{"name":"map","global":false,"description":"Calls a defined callback function on each element of an array, and returns an array that contains the results.","tags":[{"name":"param","text":"callbackfn A function that accepts up to three arguments. The map method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callbackfn function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":{"kind":"enum","type":"Prop | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any) => U[]) | ((callbackfn: (value: string, index: number, array: readonly string[]) => U, th...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]},{"kind":"event","type":"(callbackfn: (value: string, index: number, array: readonly string[]) => U, thisArg?: any): U[]","schema":[]}]}},{"name":"filter","global":false,"description":"Returns the elements of an array that meet the condition specified in a callback function.","tags":[{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."},{"name":"param","text":"predicate A function that accepts up to three arguments. The filter method calls the predicate function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the predicate function. If thisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":{"kind":"enum","type":"Prop | { (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; } | { ...; } | { ...; } | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }","{ (predicate: (value: string, index: number, array: readonly string[]) => value is S, thisArg?: any): S[]; (predicate: (value: string, index: number, array: readonly string[]) => unknown, thisArg?: any): string[]; }"]}},{"name":"reduce","global":false,"description":"Calls the specified callback function for all the elements in an array. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduce method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"reduceRight","global":false,"description":"Calls the specified callback function for all the elements in an array, in descending order. The return value of the callback function is the accumulated result, and is provided as an argument in the next call to the callback function.","tags":[{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."},{"name":"param","text":"callbackfn A function that accepts up to four arguments. The reduceRight method calls the callbackfn function one time for each element in the array."},{"name":"param","text":"initialValue If initialValue is specified, it is used as the initial value to start the accumulation. The first call to the callbackfn function provides this value as an argument instead of an array value."}],"required":true,"type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":{"kind":"enum","type":"Prop | { (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr...","{ (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string): string; (callbackfn: (previousValue: string, currentValue: string, currentIndex: number, array: readonly string[]) => string, initialValue: string): string; (callbackfn: (previousValue: U, curr..."]}},{"name":"find","global":false,"description":"Returns the value of the first element in the array where predicate is true, and undefined\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found, find\r\nimmediately returns that element value. Otherwise, find returns undefined."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":{"kind":"enum","type":"Prop | { (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; } | { ...; } | { ...; } | null |...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},"{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }","{ (predicate: (this: void, value: string, index: number, obj: readonly string[]) => value is S, thisArg?: any): S | undefined; (predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): string | undefined; }"]}},{"name":"findIndex","global":false,"description":"Returns the index of the first element in the array where predicate is true, and -1\r\notherwise.","tags":[{"name":"param","text":"predicate find calls predicate once for each element of the array, in ascending\r\norder, until it finds one where predicate returns true. If such an element is found,\r\nfindIndex immediately returns that element index. Otherwise, findIndex returns -1."},{"name":"param","text":"thisArg If provided, it will be used as the this value for each invocation of\r\npredicate. If it is not provided, undefined is used instead."}],"required":true,"type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":{"kind":"enum","type":"Prop | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any) => number) | ((predicate: (value: string, index: number, obj: readonly string[]) => unkno...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]},{"kind":"event","type":"(predicate: (value: string, index: number, obj: readonly string[]) => unknown, thisArg?: any): number","schema":[]}]}},{"name":"entries","global":false,"description":"Returns an iterable of key, value pairs for every entry in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | (() => IterableIterator<[number, string]>) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"},{"kind":"event","type":"(): IterableIterator<[number, string]>"}]}},{"name":"keys","global":false,"description":"Returns an iterable of keys in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"values","global":false,"description":"Returns an iterable of values in the array","tags":[],"required":true,"type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":{"kind":"enum","type":"Prop | (() => IterableIterator) | (() => IterableIterator) | (() => IterableIterator) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"},{"kind":"event","type":"(): IterableIterator"}]}},{"name":"includes","global":false,"description":"Determines whether an array includes a certain element, returning true or false as appropriate.","tags":[{"name":"param","text":"searchElement The element to search for."},{"name":"param","text":"fromIndex The position in this array at which to begin searching for searchElement."}],"required":true,"type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":{"kind":"enum","type":"Prop | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | ((searchElement: string, fromIndex?: number | undefined) => boolean) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]},{"kind":"event","type":"(searchElement: string, fromIndex?: number | undefined): boolean","schema":[]}]}},{"name":"flatMap","global":false,"description":"Calls a defined callback function on each element of an array. Then, flattens the result into\r\na new array.\r\nThis is identical to a map followed by flat with depth 1.","tags":[{"name":"param","text":"callback A function that accepts up to three arguments. The flatMap method calls the\r\ncallback function one time for each element in the array."},{"name":"param","text":"thisArg An object to which the this keyword can refer in the callback function. If\r\nthisArg is omitted, undefined is used as the this value."}],"required":true,"type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":{"kind":"enum","type":"Prop | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined) => U[]) | ((callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined...","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]},{"kind":"event","type":"(callback: (this: This, value: string, index: number, array: string[]) => U | readonly U[], thisArg?: This | undefined): U[]","schema":[]}]}},{"name":"flat","global":false,"description":"Returns a new array with all sub-array elements concatenated into it recursively up to the\r\nspecified depth.","tags":[{"name":"param","text":"depth The maximum recursion depth"}],"required":true,"type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":{"kind":"enum","type":"Prop | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray[]) | ((this: A, depth?: D | undefined) => FlatArray<...>[]) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]},{"kind":"event","type":"(this: A, depth?: D | undefined): FlatArray[]","schema":[]}]}},{"name":"at","global":false,"description":"Returns the item located at the specified index.","tags":[{"name":"param","text":"index The zero-based index of the desired code unit. A negative index will count back from the last item."}],"required":true,"type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":{"kind":"enum","type":"Prop | ((index: number) => string | undefined) | ((index: number) => string | undefined) | ((index: number) => string | undefined) | null | undefined","schema":["undefined","null","PropOptions",{"kind":"object","type":"new (...args: any[]) => {}","schema":{}},{"kind":"event","type":"(): unknown"},{"kind":"array","type":"PropConstructor[]","schema":[{"kind":"enum","type":"PropConstructor","schema":["new (...args: any[]) => {}","() => unknown"]}]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]},{"kind":"event","type":"(index: number): string | undefined","schema":[]}]}},{"name":"toString","global":false,"description":"Returns a string representation of an object.\nReturns a string representation of an array.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}},{"name":"toLocaleString","global":false,"description":"Returns a date converted to a string using the current locale.\nReturns a string representation of an array. The elements are converted to string using their toLocaleString methods.","tags":[],"required":true,"type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":{"kind":"enum","type":"(() => string) | ((() => string) & (() => string)) | ((() => string) & (() => string)) | ((() => string) & (() => string))","schema":[{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"},{"kind":"event","type":"(): string"}]}}],"slots":[],"events":[]}},{"name":"AppHeaderDialog","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderLogo","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppHeaderNavigation","path":"/node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppLayout","path":"/node_modules/@nuxt-themes/docus/components/app/AppLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"AppLoadingBar","path":"/node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue","meta":{"props":[{"name":"throttle","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"200"},{"name":"duration","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"2000"}],"slots":[],"events":[]}},{"name":"AppSearch","path":"/node_modules/@nuxt-themes/docus/components/app/AppSearch.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"AppSocialIcons","path":"/node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ThemeSelect","path":"/node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAside","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsAsideTree","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"[]"},{"name":"level","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"0"},{"name":"max","global":false,"description":"","tags":[],"required":false,"type":"number | undefined","schema":{"kind":"enum","type":"number | undefined","schema":["undefined","number"]},"default":"null"},{"name":"parent","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"null"}],"slots":[],"events":[]}},{"name":"DocsPageBottom","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsPageLayout","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue","meta":{"props":[],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"DocsPrevNext","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"DocsToc","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue","meta":{"props":[],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"DocsTocLinks","path":"/node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue","meta":{"props":[{"name":"links","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":{"kind":"enum","type":"TocLink[] | undefined","schema":["undefined",{"kind":"array","type":"TocLink[]","schema":[{"kind":"object","type":"TocLink","schema":{"id":{"name":"id","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"text":{"name":"text","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"},"depth":{"name":"depth","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"},"children":{"name":"children","global":false,"description":"","tags":[],"required":false,"type":"TocLink[] | undefined","schema":"TocLink[] | undefined"}}}]}]},"default":"[]"}],"slots":[],"events":[{"name":"move","type":"any[]","signature":"(event: \"move\", ...args: any[]): void","schema":["any"]}]}},{"name":"EditOnLink","path":"/node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue","meta":{"props":[{"name":"owner","global":false,"description":"Repository owner.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.owner"},{"name":"repo","global":false,"description":"Repository name.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.repo"},{"name":"branch","global":false,"description":"The branch to use for the edit link.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.branch"},{"name":"dir","global":false,"description":"A base directory to append to the source path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir"},{"name":"source","global":false,"description":"Source file path.\n\nWon't be used if `page` is set.","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"undefined"},{"name":"page","global":false,"description":"Use page from @nuxt/content.","tags":[],"required":false,"type":"any","schema":"any","default":"undefined"},{"name":"contentDir","global":false,"description":"Content directory (to be used with `page`)","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"useAppConfig()?.docus?.github?.dir || \"content\""},{"name":"edit","global":false,"description":"Send to an edit page or not.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"useAppConfig()?.docus?.github?.edit"}],"slots":[],"events":[]}},{"name":"Alert","path":"/node_modules/@nuxt-themes/elements/components/globals/Alert.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Badge","path":"/node_modules/@nuxt-themes/elements/components/globals/Badge.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"ButtonLink","path":"/node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue","meta":{"props":[{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"href","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blank","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"color","global":false,"description":"","tags":[],"required":false,"type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":{"kind":"enum","type":"ComputedStyleProp<\"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\"> | undefined","schema":["undefined","\"ruby\"","\"primary\"","\"white\"","\"black\"","\"secondary\"","\"gray\"","\"green\"","\"yellow\"","\"orange\"","\"red\"","\"pear\"","\"teal\"","\"lightblue\"","\"blue\"","\"indigoblue\"","\"royalblue\"","\"purple\"","\"pink\"","{ md?: \"ruby\" | \"primary\" | \"white\" | \"black\" | \"secondary\" | \"gray\" | \"green\" | \"yellow\" | \"orange\" | \"red\" | \"pear\" | \"teal\" | \"lightblue\" | \"blue\" | \"indigoblue\" | \"royalblue\" | \"purple\" | \"pink\" | undefined; ... 10 more ...; portrait?: \"ruby\" | ... 17 more ... | undefined; }"]}},{"name":"size","global":false,"description":"","tags":[],"required":false,"type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":{"kind":"enum","type":"\"small\" | \"medium\" | \"large\" | \"giant\" | { md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; ... 8 more ...; portrait?: \"small\" | ... 3 more ... | undefined; } | undefined","schema":["undefined","\"small\"","\"medium\"","\"large\"","\"giant\"","{ md?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; dark?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; light?: \"small\" | \"medium\" | \"large\" | \"giant\" | undefined; initial?: \"small\" | ... 3 more ... | undefined; ... 7 more ...; portrait?: \"small\" | ... 3 more ... | undefined; }"]}},{"name":"transparent","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Callout","path":"/node_modules/@nuxt-themes/elements/components/globals/Callout.vue","meta":{"props":[{"name":"type","global":false,"description":"","tags":[{"name":"values","text":"info, success, warning, danger"}],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"info\""},{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"any","schema":"any","default":"ref(false)"}],"slots":[{"name":"summary","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"content","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"CodeBlock","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue","meta":{"props":[{"name":"label","global":false,"description":"Label to display for the tab","tags":[],"required":true,"type":"string","schema":"string"},{"name":"active","global":false,"description":"Select which tab should be active","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"},{"name":"preview","global":false,"description":"Preiew block are bordered and have small padding.","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CodeGroup","path":"/node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Container","path":"/node_modules/@nuxt-themes/elements/components/globals/Container.vue","meta":{"props":[{"name":"as","global":false,"description":"","tags":[],"required":false,"type":"keyof HTMLElementTagNameMap | undefined","schema":{"kind":"enum","type":"keyof HTMLElementTagNameMap | undefined","schema":["undefined","\"object\"","\"style\"","\"map\"","\"title\"","\"data\"","\"template\"","\"link\"","\"small\"","\"sub\"","\"sup\"","\"label\"","\"html\"","\"ruby\"","\"code\"","\"source\"","\"main\"","\"a\"","\"abbr\"","\"address\"","\"area\"","\"article\"","\"aside\"","\"audio\"","\"b\"","\"base\"","\"bdi\"","\"bdo\"","\"blockquote\"","\"body\"","\"br\"","\"button\"","\"canvas\"","\"caption\"","\"cite\"","\"col\"","\"colgroup\"","\"datalist\"","\"dd\"","\"del\"","\"details\"","\"dfn\"","\"dialog\"","\"div\"","\"dl\"","\"dt\"","\"em\"","\"embed\"","\"fieldset\"","\"figcaption\"","\"figure\"","\"footer\"","\"form\"","\"h1\"","\"h2\"","\"h3\"","\"h4\"","\"h5\"","\"h6\"","\"head\"","\"header\"","\"hgroup\"","\"hr\"","\"i\"","\"iframe\"","\"img\"","\"input\"","\"ins\"","\"kbd\"","\"legend\"","\"li\"","\"mark\"","\"menu\"","\"meta\"","\"meter\"","\"nav\"","\"noscript\"","\"ol\"","\"optgroup\"","\"option\"","\"output\"","\"p\"","\"picture\"","\"pre\"","\"progress\"","\"q\"","\"rp\"","\"rt\"","\"s\"","\"samp\"","\"script\"","\"section\"","\"select\"","\"slot\"","\"span\"","\"strong\"","\"summary\"","\"table\"","\"tbody\"","\"td\"","\"textarea\"","\"tfoot\"","\"th\"","\"thead\"","\"time\"","\"tr\"","\"track\"","\"u\"","\"ul\"","\"var\"","\"video\"","\"wbr\""]},"default":"\"div\""},{"name":"padded","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}},{"name":"fluid","global":false,"description":"","tags":[],"required":false,"type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":{"kind":"enum","type":"boolean | { md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; } | undefined","schema":["undefined","false","true","{ md?: boolean | undefined; dark?: boolean | undefined; light?: boolean | undefined; initial?: boolean | undefined; xs?: boolean | undefined; sm?: boolean | undefined; lg?: boolean | undefined; ... 4 more ...; portrait?: boolean | undefined; }"]}}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CopyButton","path":"/node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""}],"slots":[],"events":[]}},{"name":"Ellipsis","path":"/node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue","meta":{"props":[{"name":"width","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"height","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10rem\""},{"name":"left","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"zIndex","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"10\""},{"name":"top","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"0\""},{"name":"right","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"auto\""},{"name":"blur","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"50px\""},{"name":"colors","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]},"default":"[\"rgba(0, 71, 225, 0.22)\", \"rgba(26, 214, 255, 0.22)\", \"rgba(0, 220, 130, 0.22)\"]"}],"slots":[],"events":[]}},{"name":"List","path":"/node_modules/@nuxt-themes/elements/components/globals/List.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"NuxtImg","path":"/node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Props","path":"/node_modules/@nuxt-themes/elements/components/globals/Props.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"Sandbox","path":"/node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue","meta":{"props":[{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"repo","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"branch","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"dir","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"file","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"app.vue\""}],"slots":[],"events":[]}},{"name":"SourceLink","path":"/node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue","meta":{"props":[{"name":"source","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"TabsHeader","path":"/node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue","meta":{"props":[{"name":"tabs","global":false,"description":"","tags":[],"required":true,"type":"{ label: string; }[]","schema":{"kind":"array","type":"{ label: string; }[]","schema":[{"kind":"object","type":"{ label: string; }","schema":{"label":{"name":"label","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}}}]}},{"name":"activeTabIndex","global":false,"description":"","tags":[],"required":true,"type":"number","schema":"number"}],"slots":[{"name":"footer","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[{"name":"update:activeTabIndex","type":"any[]","signature":"(event: \"update:activeTabIndex\", ...args: any[]): void","schema":["any"]}]}},{"name":"Terminal","path":"/node_modules/@nuxt-themes/elements/components/globals/Terminal.vue","meta":{"props":[{"name":"content","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"VideoPlayer","path":"/node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue","meta":{"props":[{"name":"src","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"poster","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"sources","global":false,"description":"","tags":[],"required":false,"type":"any[] | undefined","schema":{"kind":"enum","type":"any[] | undefined","schema":["undefined",{"kind":"array","type":"any[]","schema":["any"]}]},"default":"[]"},{"name":"autoplay","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"false"}],"slots":[],"events":[]}},{"name":"IconCodeSandBox","path":"/node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconDocus","path":"/node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxt","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtContent","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtLabs","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconNuxtStudio","path":"/node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconStackBlitz","path":"/node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"IconVueTelescope","path":"/node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"BlockHero","path":"/node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue","meta":{"props":[{"name":"secondary","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"video","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"cta","global":false,"description":"","tags":[],"required":false,"type":"string[] | undefined","schema":{"kind":"enum","type":"string[] | undefined","schema":["undefined",{"kind":"array","type":"string[]","schema":["string"]}]}},{"name":"snippet","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]}}],"slots":[{"name":"announce","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"description","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"extra","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"actions","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"support","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"Card","path":"/node_modules/@nuxt-themes/elements/components/landing/Card.vue","meta":{"props":[{"name":"icon","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"iconClass","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"\""},{"name":"blurry","global":false,"description":"","tags":[],"required":false,"type":"boolean | undefined","schema":{"kind":"enum","type":"boolean | undefined","schema":["undefined","false","true"]},"default":"true"}],"slots":[{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"CardGrid","path":"/node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue","meta":{"props":[{"name":"title","global":false,"description":"","tags":[],"required":false,"type":"string | undefined","schema":{"kind":"enum","type":"string | undefined","schema":["undefined","string"]},"default":"\"Features\""}],"slots":[{"name":"root","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"title","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}},{"name":"default","type":"{}","description":"","schema":{"kind":"object","type":"{}","schema":{}}}],"events":[]}},{"name":"VoltaBoard","path":"/node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue","meta":{"props":[{"name":"token","global":false,"description":"","tags":[],"required":true,"type":"string","schema":"string"}],"slots":[],"events":[]}},{"name":"ComponentPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"ComponentPlaygroundData","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"},{"name":"componentData","global":false,"description":"","tags":[],"required":false,"type":"Record | undefined","schema":{"kind":"enum","type":"Record | undefined","schema":["undefined","Record"]},"default":"{}"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundProps","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue","meta":{"props":[{"name":"modelValue","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"},{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[{"name":"update:modelValue","type":"any[]","signature":"(event: \"update:modelValue\", ...args: any[]): void","schema":["any"]}]}},{"name":"ComponentPlaygroundSlots","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"ComponentPlaygroundTokens","path":"/node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue","meta":{"props":[{"name":"componentData","global":false,"description":"","tags":[],"required":true,"type":"Record","schema":"Record"}],"slots":[],"events":[]}},{"name":"TokensPlayground","path":"/node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRepository","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLink","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReadme","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubReleases","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubLastRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubRelease","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubFileContributors","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs","meta":{"props":[],"slots":[],"events":[]}},{"name":"GithubCommits","path":"/node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs","meta":{"props":[],"slots":[],"events":[]}}]} \ No newline at end of file diff --git a/docs/.output/public/_nuxt/Alert.41cb256b.js b/docs/.output/public/_nuxt/Alert.95097db0.js similarity index 66% rename from docs/.output/public/_nuxt/Alert.41cb256b.js rename to docs/.output/public/_nuxt/Alert.95097db0.js index d0944f78..4e3ebbc7 100644 --- a/docs/.output/public/_nuxt/Alert.41cb256b.js +++ b/docs/.output/public/_nuxt/Alert.95097db0.js @@ -1 +1 @@ -import a from"./ContentSlot.c5067a4f.js";import{f as r,q as n,x as s,E as p,G as c,y as i}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as m}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const l={class:"alert-content"},_=r({__name:"Alert",props:{type:{type:String,default:"info",validator(t){return["info","success","warning","danger","primary"].includes(t)}}},setup(t){return(e,d)=>{const o=a;return n(),s("div",{class:i(["alert",[t.type]])},[p("div",l,[c(o,{use:e.$slots.default,unwrap:"p"},null,8,["use"])])],2)}}}),k=m(_,[["__scopeId","data-v-95a79b90"]]);export{k as default}; +import a from"./ContentSlot.811112da.js";import{f as r,q as n,x as s,E as p,G as c,y as i}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as m}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const l={class:"alert-content"},_=r({__name:"Alert",props:{type:{type:String,default:"info",validator(t){return["info","success","warning","danger","primary"].includes(t)}}},setup(t){return(e,d)=>{const o=a;return n(),s("div",{class:i(["alert",[t.type]])},[p("div",l,[c(o,{use:e.$slots.default,unwrap:"p"},null,8,["use"])])],2)}}}),k=m(_,[["__scopeId","data-v-95a79b90"]]);export{k as default}; diff --git a/docs/.output/public/_nuxt/AppLayout.7354fe11.js b/docs/.output/public/_nuxt/AppLayout.7354fe11.js deleted file mode 100644 index e3750a03..00000000 --- a/docs/.output/public/_nuxt/AppLayout.7354fe11.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/AppLayout.e1616a30.js b/docs/.output/public/_nuxt/AppLayout.e1616a30.js new file mode 100644 index 00000000..0715e1cb --- /dev/null +++ b/docs/.output/public/_nuxt/AppLayout.e1616a30.js @@ -0,0 +1 @@ +import{_ as o}from"./entry.c31835cb.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/Badge.af643d4e.js b/docs/.output/public/_nuxt/Badge.09ee14a8.js similarity index 63% rename from docs/.output/public/_nuxt/Badge.af643d4e.js rename to docs/.output/public/_nuxt/Badge.09ee14a8.js index f0b5af96..3d23f024 100644 --- a/docs/.output/public/_nuxt/Badge.af643d4e.js +++ b/docs/.output/public/_nuxt/Badge.09ee14a8.js @@ -1 +1 @@ -import n from"./ContentSlot.c5067a4f.js";import{f as a,q as r,x as s,G as _,y as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const m=a({__name:"Badge",props:{type:{type:String,default:"info",validator(e){return["info","success","warning","danger","primary"].includes(e)}}},setup(e){return(t,i)=>{const o=n;return r(),s("span",{class:p([[e.type],"badge"])},[_(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])],2)}}});const B=c(m,[["__scopeId","data-v-69c7b84e"]]);export{B as default}; +import n from"./ContentSlot.811112da.js";import{f as a,q as r,x as s,G as _,y as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const m=a({__name:"Badge",props:{type:{type:String,default:"info",validator(e){return["info","success","warning","danger","primary"].includes(e)}}},setup(e){return(t,i)=>{const o=n;return r(),s("span",{class:p([[e.type],"badge"])},[_(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])],2)}}});const B=c(m,[["__scopeId","data-v-69c7b84e"]]);export{B as default}; diff --git a/docs/.output/public/_nuxt/BlockHero.495ede00.js b/docs/.output/public/_nuxt/BlockHero.04826bbd.js similarity index 84% rename from docs/.output/public/_nuxt/BlockHero.495ede00.js rename to docs/.output/public/_nuxt/BlockHero.04826bbd.js index 711916b3..743492a1 100644 --- a/docs/.output/public/_nuxt/BlockHero.495ede00.js +++ b/docs/.output/public/_nuxt/BlockHero.04826bbd.js @@ -1 +1 @@ -import d from"./ContentSlot.c5067a4f.js";import m from"./ButtonLink.91883881.js";import y from"./Terminal.e111a4e9.js";import{f as _,q as t,x as o,E as a,G as c,D as n,F as f,B as i,C as h,L as k,J as l,P as $}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";/* empty css */import"./index.889aa611.js";/* empty css */const v={class:"block-hero"},w={class:"layout"},q={class:"content"},C={key:0,class:"announce"},N={key:1,class:"title"},S={key:2,class:"description"},V={key:3,class:"extra"},g={class:"actions"},A=["href"],b={class:"support"},D=_({__name:"BlockHero",props:{cta:{type:Array,required:!1},secondary:{type:Array,required:!1},snippet:{type:String,required:!1},video:{type:Array,required:!1}},setup(s){return(e,E)=>{const r=d,u=m,p=y;return t(),o("section",v,[a("div",w,[a("div",q,[e.$slots.announce?(t(),o("p",C,[c(r,{use:e.$slots.announce,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.title?(t(),o("h1",N,[c(r,{use:e.$slots.title,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.description?(t(),o("p",S,[c(r,{use:e.$slots.description,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.extra?(t(),o("div",V,[c(r,{use:e.$slots.extra,unwrap:"p"},null,8,["use"])])):n("",!0),a("div",g,[e.$slots.actions?(t(),i(r,{key:1,use:e.$slots.actions,unwrap:"p"},null,8,["use"])):(t(),o(f,{key:0},[s.cta?(t(),i(u,{key:0,class:"cta",bold:"",size:"medium",href:s.cta[1]},{default:h(()=>[k(l(s.cta[0]),1)]),_:1},8,["href"])):n("",!0),s.secondary?(t(),o("a",{key:1,href:s.secondary[1],class:"secondary"},l(s.secondary[0]),9,A)):n("",!0)],64))])]),a("div",b,[$(e.$slots,"support",{},()=>[s.snippet?(t(),i(p,{key:0,content:s.snippet},null,8,["content"])):n("",!0)],!0)])])])}}}),Q=B(D,[["__scopeId","data-v-27211c58"]]);export{Q as default}; +import d from"./ContentSlot.811112da.js";import m from"./ButtonLink.e542a711.js";import y from"./Terminal.e111a4e9.js";import{f as _,q as t,x as o,E as a,G as c,D as n,F as f,B as i,C as h,L as k,J as l,P as $}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";/* empty css */import"./index.889aa611.js";/* empty css */const v={class:"block-hero"},w={class:"layout"},q={class:"content"},C={key:0,class:"announce"},N={key:1,class:"title"},S={key:2,class:"description"},V={key:3,class:"extra"},g={class:"actions"},A=["href"],b={class:"support"},D=_({__name:"BlockHero",props:{cta:{type:Array,required:!1},secondary:{type:Array,required:!1},snippet:{type:String,required:!1},video:{type:Array,required:!1}},setup(s){return(e,E)=>{const r=d,u=m,p=y;return t(),o("section",v,[a("div",w,[a("div",q,[e.$slots.announce?(t(),o("p",C,[c(r,{use:e.$slots.announce,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.title?(t(),o("h1",N,[c(r,{use:e.$slots.title,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.description?(t(),o("p",S,[c(r,{use:e.$slots.description,unwrap:"p"},null,8,["use"])])):n("",!0),e.$slots.extra?(t(),o("div",V,[c(r,{use:e.$slots.extra,unwrap:"p"},null,8,["use"])])):n("",!0),a("div",g,[e.$slots.actions?(t(),i(r,{key:1,use:e.$slots.actions,unwrap:"p"},null,8,["use"])):(t(),o(f,{key:0},[s.cta?(t(),i(u,{key:0,class:"cta",bold:"",size:"medium",href:s.cta[1]},{default:h(()=>[k(l(s.cta[0]),1)]),_:1},8,["href"])):n("",!0),s.secondary?(t(),o("a",{key:1,href:s.secondary[1],class:"secondary"},l(s.secondary[0]),9,A)):n("",!0)],64))])]),a("div",b,[$(e.$slots,"support",{},()=>[s.snippet?(t(),i(p,{key:0,content:s.snippet},null,8,["content"])):n("",!0)],!0)])])])}}}),Q=B(D,[["__scopeId","data-v-27211c58"]]);export{Q as default}; diff --git a/docs/.output/public/_nuxt/ButtonLink.91883881.js b/docs/.output/public/_nuxt/ButtonLink.e542a711.js similarity index 82% rename from docs/.output/public/_nuxt/ButtonLink.91883881.js rename to docs/.output/public/_nuxt/ButtonLink.e542a711.js index c255e5a5..16b8bf30 100644 --- a/docs/.output/public/_nuxt/ButtonLink.91883881.js +++ b/docs/.output/public/_nuxt/ButtonLink.e542a711.js @@ -1 +1 @@ -import{_ as x}from"./DocsAsideTree.b95e55e0.js";import S from"./ContentSlot.c5067a4f.js";import{_ as h}from"./app.config.f41ab05d.js";import{c as b,u as k,d as i,a as $}from"./Container.f1017aa2.js";import{f as z,h as n,r as s,q as r,B as l,C as y,D as C,G as B,y as H,u as q}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./index.d2b0cb5e.js";const V=z({__name:"ButtonLink",props:{blank:{type:Boolean,required:!1,default:!1},color:b("primary"),href:{type:String,default:""},icon:{type:String,default:""},size:{required:!1,type:[String,Object],default:"medium"},transparent:{required:!1,type:[Boolean,Object],default:!1}},setup(t){const o=t,c=n(()=>((e=o,a=i)=>`{color.${e.color}.600}`)()),u=n(()=>((e=o,a=i)=>`{color.${e.color}.500}`)()),p=n(()=>((e=o,a=i)=>`1px solid {color.${e.color}.600}`)()),m=s({size:{small:{padding:"{space.2} {space.4}",fontSize:"{text.sm.fontSize}",lineHeight:"{text.sm.lineHeight}"},medium:{padding:"{space.rem.625} {space.5}",fontSize:"{text.base.fontSize}",lineHeight:"{text.base.lineHeight}"},large:{padding:"{space.3} {space.6}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"},giant:{padding:"{space.4} {space.8}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"}},transparent:{true:{backgroundColor:"transparent"}}}),{$pinceau:d}=k(n(()=>o),m,s({_PBS_backgroundColor:c,_m49_backgroundColor:u,_BVG_border:p}));return(e,a)=>{const f=x,_=S,g=h;return r(),l(g,{class:H(["button-link",[q(d)]]),to:t.href,target:t.blank?"_blank":void 0},{default:y(()=>[t.icon?(r(),l(f,{key:0,name:t.icon},null,8,["name"])):C("",!0),B(_,{use:e.$slots.default,unwrap:"p ul li"},null,8,["use"])]),_:1},8,["to","target","class"])}}}),D=$(V,[["__scopeId","data-v-02d3ca01"]]);export{D as default}; +import{_ as x}from"./DocsAsideTree.4387e6ea.js";import S from"./ContentSlot.811112da.js";import{_ as h}from"./app.config.88c4fc0b.js";import{c as b,u as k,d as i,a as $}from"./Container.f1017aa2.js";import{f as z,h as n,r as s,q as r,B as l,C as y,D as C,G as B,y as H,u as q}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./index.d2b0cb5e.js";const V=z({__name:"ButtonLink",props:{blank:{type:Boolean,required:!1,default:!1},color:b("primary"),href:{type:String,default:""},icon:{type:String,default:""},size:{required:!1,type:[String,Object],default:"medium"},transparent:{required:!1,type:[Boolean,Object],default:!1}},setup(t){const o=t,c=n(()=>((e=o,a=i)=>`{color.${e.color}.600}`)()),u=n(()=>((e=o,a=i)=>`{color.${e.color}.500}`)()),p=n(()=>((e=o,a=i)=>`1px solid {color.${e.color}.600}`)()),m=s({size:{small:{padding:"{space.2} {space.4}",fontSize:"{text.sm.fontSize}",lineHeight:"{text.sm.lineHeight}"},medium:{padding:"{space.rem.625} {space.5}",fontSize:"{text.base.fontSize}",lineHeight:"{text.base.lineHeight}"},large:{padding:"{space.3} {space.6}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"},giant:{padding:"{space.4} {space.8}",fontSize:"{text.lg.fontSize}",lineHeight:"{text.lg.lineHeight}"}},transparent:{true:{backgroundColor:"transparent"}}}),{$pinceau:d}=k(n(()=>o),m,s({_PBS_backgroundColor:c,_m49_backgroundColor:u,_BVG_border:p}));return(e,a)=>{const f=x,_=S,g=h;return r(),l(g,{class:H(["button-link",[q(d)]]),to:t.href,target:t.blank?"_blank":void 0},{default:y(()=>[t.icon?(r(),l(f,{key:0,name:t.icon},null,8,["name"])):C("",!0),B(_,{use:e.$slots.default,unwrap:"p ul li"},null,8,["use"])]),_:1},8,["to","target","class"])}}}),D=$(V,[["__scopeId","data-v-02d3ca01"]]);export{D as default}; diff --git a/docs/.output/public/_nuxt/Callout.12d57ced.js b/docs/.output/public/_nuxt/Callout.e583d4ce.js similarity index 72% rename from docs/.output/public/_nuxt/Callout.12d57ced.js rename to docs/.output/public/_nuxt/Callout.e583d4ce.js index d444805e..6ced338a 100644 --- a/docs/.output/public/_nuxt/Callout.12d57ced.js +++ b/docs/.output/public/_nuxt/Callout.e583d4ce.js @@ -1 +1 @@ -import p from"./ContentSlot.c5067a4f.js";import{v as d,_}from"./DocsAsideTree.b95e55e0.js";import{f,r as l,q as v,x as h,E as s,G as t,y as r,u as c,a9 as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const C={class:"summary"},V={class:"content"},w=f({__name:"Callout",props:{type:{type:String,default:"info",validator(o){return["info","success","warning","danger","primary"].includes(o)}},modelValue:{required:!1,default:()=>l(!1)}},emits:["update:modelValue"],setup(o,{emit:i}){const e=l(o.modelValue),u=()=>{e.value=!e.value,i("update:modelValue",e.value)};return(a,x)=>{const n=p,m=_;return v(),h("div",{class:r(["callout",[o.type]])},[s("span",{class:"preview",onClick:u},[s("span",C,[t(n,{use:a.$slots.summary},null,8,["use"])]),t(m,{name:"heroicons-outline:chevron-right",class:r(["icon",[c(e)&&"rotate"]])},null,8,["class"])]),y(s("div",V,[t(n,{use:a.$slots.content},null,8,["use"])],512),[[d,c(e)]])],2)}}}),D=g(w,[["__scopeId","data-v-37e0bf51"]]);export{D as default}; +import p from"./ContentSlot.811112da.js";import{v as d,_}from"./DocsAsideTree.4387e6ea.js";import{f,r as l,q as v,x as h,E as s,G as t,y as r,u as c,a9 as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const C={class:"summary"},V={class:"content"},w=f({__name:"Callout",props:{type:{type:String,default:"info",validator(o){return["info","success","warning","danger","primary"].includes(o)}},modelValue:{required:!1,default:()=>l(!1)}},emits:["update:modelValue"],setup(o,{emit:i}){const e=l(o.modelValue),u=()=>{e.value=!e.value,i("update:modelValue",e.value)};return(a,x)=>{const n=p,m=_;return v(),h("div",{class:r(["callout",[o.type]])},[s("span",{class:"preview",onClick:u},[s("span",C,[t(n,{use:a.$slots.summary},null,8,["use"])]),t(m,{name:"heroicons-outline:chevron-right",class:r(["icon",[c(e)&&"rotate"]])},null,8,["class"])]),y(s("div",V,[t(n,{use:a.$slots.content},null,8,["use"])],512),[[d,c(e)]])],2)}}}),D=g(w,[["__scopeId","data-v-37e0bf51"]]);export{D as default}; diff --git a/docs/.output/public/_nuxt/Card.178cbb97.js b/docs/.output/public/_nuxt/Card.8db8e0b6.js similarity index 70% rename from docs/.output/public/_nuxt/Card.178cbb97.js rename to docs/.output/public/_nuxt/Card.8db8e0b6.js index 95b23136..8604daf6 100644 --- a/docs/.output/public/_nuxt/Card.178cbb97.js +++ b/docs/.output/public/_nuxt/Card.8db8e0b6.js @@ -1 +1 @@ -import{_ as l}from"./DocsAsideTree.b95e55e0.js";import d from"./ContentSlot.c5067a4f.js";import{f as p,q as s,x as m,B as u,D as _,P as f,E as o,G as r,C as n,L as c,y as C}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as y}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const B={class:"title"},h={class:"description"},k=p({__name:"Card",props:{icon:{type:String,default:""},iconClass:{type:String,default:""},blurry:{type:Boolean,default:!0,required:!1}},setup(e){return(t,v)=>{const i=l,a=d;return s(),m("div",{class:C([{blurry:e.blurry},"card"])},[e.icon?(s(),u(i,{key:0,name:e.icon},null,8,["name"])):_("",!0),f(t.$slots,"default",{},void 0,!0),o("div",null,[o("h3",B,[r(a,{use:t.$slots.title,unwrap:"p"},{default:n(()=>[c(" Card title ")]),_:1},8,["use"])]),o("p",h,[r(a,{use:t.$slots.description,unwrap:"p"},{default:n(()=>[c(" Card description ")]),_:1},8,["use"])])])],2)}}}),E=y(k,[["__scopeId","data-v-496504c6"]]);export{E as default}; +import{_ as l}from"./DocsAsideTree.4387e6ea.js";import d from"./ContentSlot.811112da.js";import{f as p,q as s,x as m,B as u,D as _,P as f,E as o,G as r,C as n,L as c,y as C}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as y}from"./Container.f1017aa2.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const B={class:"title"},h={class:"description"},k=p({__name:"Card",props:{icon:{type:String,default:""},iconClass:{type:String,default:""},blurry:{type:Boolean,default:!0,required:!1}},setup(e){return(t,v)=>{const i=l,a=d;return s(),m("div",{class:C([{blurry:e.blurry},"card"])},[e.icon?(s(),u(i,{key:0,name:e.icon},null,8,["name"])):_("",!0),f(t.$slots,"default",{},void 0,!0),o("div",null,[o("h3",B,[r(a,{use:t.$slots.title,unwrap:"p"},{default:n(()=>[c(" Card title ")]),_:1},8,["use"])]),o("p",h,[r(a,{use:t.$slots.description,unwrap:"p"},{default:n(()=>[c(" Card description ")]),_:1},8,["use"])])])],2)}}}),E=y(k,[["__scopeId","data-v-496504c6"]]);export{E as default}; diff --git a/docs/.output/public/_nuxt/CardGrid.e3a9f75d.js b/docs/.output/public/_nuxt/CardGrid.b29ba276.js similarity index 67% rename from docs/.output/public/_nuxt/CardGrid.e3a9f75d.js rename to docs/.output/public/_nuxt/CardGrid.b29ba276.js index 6229a1a2..c37229fd 100644 --- a/docs/.output/public/_nuxt/CardGrid.e3a9f75d.js +++ b/docs/.output/public/_nuxt/CardGrid.b29ba276.js @@ -1 +1 @@ -import r from"./ContentSlot.c5067a4f.js";import{f as a,q as n,x as i,G as e,E as s,P as p}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const l={class:"card-grid"},d={class:"title"},_={class:"layout"},m=a({__name:"CardGrid",props:{title:{type:String,default:"Features"}},setup(u){return(t,f)=>{const o=r;return n(),i("section",l,[e(o,{use:t.$slots.root},null,8,["use"]),s("h2",d,[e(o,{use:t.$slots.title,unwrap:"p"},null,8,["use"])]),s("div",_,[p(t.$slots,"default",{},void 0,!0)])])}}}),y=c(m,[["__scopeId","data-v-8f7bcfd2"]]);export{y as default}; +import r from"./ContentSlot.811112da.js";import{f as a,q as n,x as i,G as e,E as s,P as p}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const l={class:"card-grid"},d={class:"title"},_={class:"layout"},m=a({__name:"CardGrid",props:{title:{type:String,default:"Features"}},setup(u){return(t,f)=>{const o=r;return n(),i("section",l,[e(o,{use:t.$slots.root},null,8,["use"]),s("h2",d,[e(o,{use:t.$slots.title,unwrap:"p"},null,8,["use"])]),s("div",_,[p(t.$slots,"default",{},void 0,!0)])])}}}),y=c(m,[["__scopeId","data-v-8f7bcfd2"]]);export{y as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js b/docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js deleted file mode 100644 index c6acfa6d..00000000 --- a/docs/.output/public/_nuxt/ComponentPlayground.3c424a18.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./ComponentPlayground.vue.1e5cc557.js";import{a as t}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./asyncData.7c06b2d5.js";import"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";import"./Ellipsis.50580cd1.js";import"./ComponentPlaygroundData.8cb96cd4.js";import"./TabsHeader.f80c17f8.js";import"./ComponentPlaygroundProps.583c9bda.js";import"./ProseH4.77a5278f.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.af643d4e.js";import"./ContentSlot.c5067a4f.js";import"./ProseP.9fd9b629.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";const j=t(o,[["__scopeId","data-v-9ca9b996"]]);export{j as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlayground.42e12ad5.js b/docs/.output/public/_nuxt/ComponentPlayground.42e12ad5.js new file mode 100644 index 00000000..aea98c21 --- /dev/null +++ b/docs/.output/public/_nuxt/ComponentPlayground.42e12ad5.js @@ -0,0 +1 @@ +import{_ as o}from"./ComponentPlayground.vue.69892806.js";import{a as t}from"./Container.f1017aa2.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./asyncData.45fd3bd9.js";import"./entry.c31835cb.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./query.c3f7607a.js";import"./Ellipsis.50580cd1.js";import"./ComponentPlaygroundData.b0c91250.js";import"./TabsHeader.f80c17f8.js";import"./ComponentPlaygroundProps.659d0c56.js";import"./ProseH4.282cba87.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.09ee14a8.js";import"./ContentSlot.811112da.js";import"./ProseP.9fd9b629.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";const j=t(o,[["__scopeId","data-v-9ca9b996"]]);export{j as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlayground.vue.1e5cc557.js b/docs/.output/public/_nuxt/ComponentPlayground.vue.69892806.js similarity index 83% rename from docs/.output/public/_nuxt/ComponentPlayground.vue.1e5cc557.js rename to docs/.output/public/_nuxt/ComponentPlayground.vue.69892806.js index 51a716e1..d3a6eafe 100644 --- a/docs/.output/public/_nuxt/ComponentPlayground.vue.1e5cc557.js +++ b/docs/.output/public/_nuxt/ComponentPlayground.vue.69892806.js @@ -1 +1 @@ -import{u as m}from"./app.config.f41ab05d.js";import{u as c}from"./asyncData.7c06b2d5.js";import{u,h as r,f as l,r as i,j as t,aa as d}from"./runtime-core.esm-bundler.6894272a.js";import f from"./Ellipsis.50580cd1.js";import _ from"./ComponentPlaygroundData.8cb96cd4.js";async function y(o){m();const e=u(o);{const{data:n}=await c(`nuxt-component-meta${e?`-${e}`:""}`,()=>$fetch(`/api/component-meta${e?`/${e}`:""}`));return r(()=>n.value)}}const w=l({props:{component:{type:String,required:!0},props:{type:Object,required:!1,default:()=>({})}},async setup(o){const e=r(()=>d(o.component)),n=i({...o.props}),a=await y(o.component);return{as:e,formProps:n,componentData:a}},render(o){const e=Object.entries(this.$slots).reduce((n,[a,s])=>{if(a.startsWith("component-")){const p=a.replace("component-","");n[p]=s}return n},{});return t("div",{class:"component-playground"},[t("div",{class:"component-playground-wrapper"},[t(f,{class:"component-playground-ellipsis",blur:"5vw",height:"100%",width:"100%"}),t(o.as,{...o.formProps,class:"component-playground-component"},{...e})]),t(_,{modelValue:o.formProps,componentData:o.componentData,"onUpdate:modelValue":n=>o.formProps=n})])}});export{w as _}; +import{u as m}from"./app.config.88c4fc0b.js";import{u as c}from"./asyncData.45fd3bd9.js";import{u,h as r,f as l,r as i,j as t,aa as d}from"./runtime-core.esm-bundler.6894272a.js";import f from"./Ellipsis.50580cd1.js";import _ from"./ComponentPlaygroundData.b0c91250.js";async function y(o){m();const e=u(o);{const{data:n}=await c(`nuxt-component-meta${e?`-${e}`:""}`,()=>$fetch(`/api/component-meta${e?`/${e}`:""}`));return r(()=>n.value)}}const w=l({props:{component:{type:String,required:!0},props:{type:Object,required:!1,default:()=>({})}},async setup(o){const e=r(()=>d(o.component)),n=i({...o.props}),a=await y(o.component);return{as:e,formProps:n,componentData:a}},render(o){const e=Object.entries(this.$slots).reduce((n,[a,s])=>{if(a.startsWith("component-")){const p=a.replace("component-","");n[p]=s}return n},{});return t("div",{class:"component-playground"},[t("div",{class:"component-playground-wrapper"},[t(f,{class:"component-playground-ellipsis",blur:"5vw",height:"100%",width:"100%"}),t(o.as,{...o.formProps,class:"component-playground-component"},{...e})]),t(_,{modelValue:o.formProps,componentData:o.componentData,"onUpdate:modelValue":n=>o.formProps=n})])}});export{w as _}; diff --git a/docs/.output/public/_nuxt/ComponentPlaygroundData.8cb96cd4.js b/docs/.output/public/_nuxt/ComponentPlaygroundData.b0c91250.js similarity index 81% rename from docs/.output/public/_nuxt/ComponentPlaygroundData.8cb96cd4.js rename to docs/.output/public/_nuxt/ComponentPlaygroundData.b0c91250.js index 09a17097..fbbe5a2e 100644 --- a/docs/.output/public/_nuxt/ComponentPlaygroundData.8cb96cd4.js +++ b/docs/.output/public/_nuxt/ComponentPlaygroundData.b0c91250.js @@ -1 +1 @@ -import b from"./TabsHeader.f80c17f8.js";import x from"./ComponentPlaygroundProps.583c9bda.js";import{_ as v}from"./ComponentPlaygroundSlots.vue.d9207f3c.js";import{_ as D}from"./ComponentPlaygroundTokens.vue.43c587d1.js";import{a as g}from"./index.889aa611.js";import{f as V,r as k,q as n,x as C,G as P,u as e,B as m,d as T,D as r}from"./runtime-core.esm-bundler.6894272a.js";import{a as B}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./ProseH4.77a5278f.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.af643d4e.js";import"./ContentSlot.c5067a4f.js";import"./ProseP.9fd9b629.js";const q={class:"component-playground-data"},I=V({__name:"ComponentPlaygroundData",props:{modelValue:{type:Object,required:!1,default:()=>({})},componentData:{type:Object,required:!1,default:()=>({})}},emits:["update:modelValue"],setup(t,{emit:l}){const a=g(t,"modelValue",l),o=k(0),c=[{label:"Props"},{label:"Slots"},{label:"Design Tokens"}],d=p=>o.value=p;return(p,s)=>{const u=b,_=x,i=v,f=D;return n(),C("div",q,[P(u,{"active-tab-index":e(o),tabs:c,"onUpdate:activeTabIndex":d},null,8,["active-tab-index"]),e(o)===0?(n(),m(_,{key:0,modelValue:e(a),"onUpdate:modelValue":s[0]||(s[0]=y=>T(a)?a.value=y:null),"component-data":t.componentData},null,8,["modelValue","component-data"])):r("",!0),e(o)===1?(n(),m(i,{key:1,"component-data":t.componentData},null,8,["component-data"])):r("",!0),e(o)===2?(n(),m(f,{key:2,"component-data":t.componentData},null,8,["component-data"])):r("",!0)])}}});const L=B(I,[["__scopeId","data-v-ff75821c"]]);export{L as default}; +import b from"./TabsHeader.f80c17f8.js";import x from"./ComponentPlaygroundProps.659d0c56.js";import{_ as v}from"./ComponentPlaygroundSlots.vue.d9207f3c.js";import{_ as D}from"./ComponentPlaygroundTokens.vue.43c587d1.js";import{a as g}from"./index.889aa611.js";import{f as V,r as k,q as n,x as C,G as P,u as e,B as m,d as T,D as r}from"./runtime-core.esm-bundler.6894272a.js";import{a as B}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./ProseH4.282cba87.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./ProseCodeInline.dca1a534.js";import"./Badge.09ee14a8.js";import"./ContentSlot.811112da.js";import"./ProseP.9fd9b629.js";const q={class:"component-playground-data"},I=V({__name:"ComponentPlaygroundData",props:{modelValue:{type:Object,required:!1,default:()=>({})},componentData:{type:Object,required:!1,default:()=>({})}},emits:["update:modelValue"],setup(t,{emit:l}){const a=g(t,"modelValue",l),o=k(0),c=[{label:"Props"},{label:"Slots"},{label:"Design Tokens"}],d=p=>o.value=p;return(p,s)=>{const u=b,_=x,i=v,f=D;return n(),C("div",q,[P(u,{"active-tab-index":e(o),tabs:c,"onUpdate:activeTabIndex":d},null,8,["active-tab-index"]),e(o)===0?(n(),m(_,{key:0,modelValue:e(a),"onUpdate:modelValue":s[0]||(s[0]=y=>T(a)?a.value=y:null),"component-data":t.componentData},null,8,["modelValue","component-data"])):r("",!0),e(o)===1?(n(),m(i,{key:1,"component-data":t.componentData},null,8,["component-data"])):r("",!0),e(o)===2?(n(),m(f,{key:2,"component-data":t.componentData},null,8,["component-data"])):r("",!0)])}}});const L=B(I,[["__scopeId","data-v-ff75821c"]]);export{L as default}; diff --git a/docs/.output/public/_nuxt/ComponentPlaygroundProps.583c9bda.js b/docs/.output/public/_nuxt/ComponentPlaygroundProps.659d0c56.js similarity index 80% rename from docs/.output/public/_nuxt/ComponentPlaygroundProps.583c9bda.js rename to docs/.output/public/_nuxt/ComponentPlaygroundProps.659d0c56.js index a75fcef5..cf4cbec4 100644 --- a/docs/.output/public/_nuxt/ComponentPlaygroundProps.583c9bda.js +++ b/docs/.output/public/_nuxt/ComponentPlaygroundProps.659d0c56.js @@ -1 +1 @@ -import k from"./ProseH4.77a5278f.js";import B from"./ProseCodeInline.dca1a534.js";import q from"./Badge.af643d4e.js";import D from"./ProseP.9fd9b629.js";import{a as N}from"./index.889aa611.js";import{f as b,h as j,q as n,x as m,F as E,A as F,u as d,E as c,G as i,C as r,L as s,J as u,B as l,D as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as I}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ContentSlot.c5067a4f.js";const L={class:"component-playground-data-section"},O=["id"],w=["value","onChange"],A=b({__name:"ComponentPlaygroundProps",props:{modelValue:{type:Object,required:!0},componentData:{type:Object,required:!0}},emits:["update:modelValue"],setup(f,{emit:x}){const a=f,_=N(a,"modelValue",x),y=(t,o)=>{_.value={..._.value,[o]:t.target.value}},g=j(()=>{var t,o;return(o=(t=a==null?void 0:a.componentData)==null?void 0:t.meta)==null?void 0:o.props});return(t,o)=>{const v=k,C=B,h=q,P=D;return n(),m("div",L,[(n(!0),m(E,null,F(d(g),e=>(n(),m("div",{key:e.name},[c("div",{id:e.name,class:"prop-title"},[i(v,{id:e.name},{default:r(()=>[s(u(e.name),1)]),_:2},1032,["id"]),c("span",null,[i(C,null,{default:r(()=>[s(u(e.type),1)]),_:2},1024),e.required?p("",!0):(n(),l(h,{key:0},{default:r(()=>[s(" Required ")]),_:1}))])],8,O),e.description?(n(),l(P,{key:0},{default:r(()=>[s(u(e.description),1)]),_:2},1024)):p("",!0),c("input",{value:d(_)[e.name],onChange:V=>y(V,e.name)},null,40,w)]))),128))])}}});const X=I(A,[["__scopeId","data-v-acf5a6ce"]]);export{X as default}; +import k from"./ProseH4.282cba87.js";import B from"./ProseCodeInline.dca1a534.js";import q from"./Badge.09ee14a8.js";import D from"./ProseP.9fd9b629.js";import{a as N}from"./index.889aa611.js";import{f as b,h as j,q as n,x as m,F as E,A as F,u as d,E as c,G as i,C as r,L as s,J as u,B as l,D as p}from"./runtime-core.esm-bundler.6894272a.js";import{a as I}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./ContentSlot.811112da.js";const L={class:"component-playground-data-section"},O=["id"],w=["value","onChange"],A=b({__name:"ComponentPlaygroundProps",props:{modelValue:{type:Object,required:!0},componentData:{type:Object,required:!0}},emits:["update:modelValue"],setup(f,{emit:x}){const a=f,_=N(a,"modelValue",x),y=(t,o)=>{_.value={..._.value,[o]:t.target.value}},g=j(()=>{var t,o;return(o=(t=a==null?void 0:a.componentData)==null?void 0:t.meta)==null?void 0:o.props});return(t,o)=>{const v=k,C=B,h=q,P=D;return n(),m("div",L,[(n(!0),m(E,null,F(d(g),e=>(n(),m("div",{key:e.name},[c("div",{id:e.name,class:"prop-title"},[i(v,{id:e.name},{default:r(()=>[s(u(e.name),1)]),_:2},1032,["id"]),c("span",null,[i(C,null,{default:r(()=>[s(u(e.type),1)]),_:2},1024),e.required?p("",!0):(n(),l(h,{key:0},{default:r(()=>[s(" Required ")]),_:1}))])],8,O),e.description?(n(),l(P,{key:0},{default:r(()=>[s(u(e.description),1)]),_:2},1024)):p("",!0),c("input",{value:d(_)[e.name],onChange:V=>y(V,e.name)},null,40,w)]))),128))])}}});const X=I(A,[["__scopeId","data-v-acf5a6ce"]]);export{X as default}; diff --git a/docs/.output/public/_nuxt/ContentDoc.cbc50263.js b/docs/.output/public/_nuxt/ContentDoc.0b92d62d.js similarity index 77% rename from docs/.output/public/_nuxt/ContentDoc.cbc50263.js rename to docs/.output/public/_nuxt/ContentDoc.0b92d62d.js index 4338e893..3065106b 100644 --- a/docs/.output/public/_nuxt/ContentDoc.cbc50263.js +++ b/docs/.output/public/_nuxt/ContentDoc.0b92d62d.js @@ -1 +1 @@ -import{v as s,l as y}from"./app.config.f41ab05d.js";import{a as u}from"./entry.f3791b9c.js";import g from"./ContentRenderer.b7732722.js";import v from"./ContentQuery.9f33890e.js";import{f as w,ae as C,j as o}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";import"./ContentRendererMarkdown.e52b62de.js";import"./asyncData.7c06b2d5.js";const P=w({name:"ContentDoc",props:{tag:{type:String,required:!1,default:"div"},excerpt:{type:Boolean,default:!1},path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0},head:{type:Boolean,required:!1,default:!0}},render(m){const t=C(),{tag:f,excerpt:i,path:d,query:r,head:p}=m,c={...r||{},path:d||(r==null?void 0:r.path)||s(y().path),find:"one"},l=(e,n)=>o("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:n},null,2));return o(v,c,{default:t!=null&&t.default?({data:e,refresh:n,isPartial:h})=>{var a;return p&&u(e),(a=t.default)==null?void 0:a.call(t,{doc:e,refresh:n,isPartial:h,excerpt:i,...this.$attrs})}:({data:e})=>(p&&u(e),o(g,{value:e,excerpt:i,tag:f,...this.$attrs},{empty:n=>t!=null&&t.empty?t.empty(n):l("default",e)})),empty:e=>{var n;return((n=t==null?void 0:t.empty)==null?void 0:n.call(t,e))||o("p",null,"Document is empty, overwrite this content with #empty slot in .")},"not-found":e=>{var n;return((n=t==null?void 0:t["not-found"])==null?void 0:n.call(t,e))||o("p",null,"Document not found, overwrite this content with #not-found slot in .")}})}});export{P as default}; +import{x as s,l as y}from"./app.config.88c4fc0b.js";import{a as u}from"./entry.c31835cb.js";import g from"./ContentRenderer.8e4912b9.js";import v from"./ContentQuery.5ffc4b8c.js";import{f as w,ae as C,j as o}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";import"./ContentRendererMarkdown.433c31c8.js";import"./asyncData.45fd3bd9.js";const P=w({name:"ContentDoc",props:{tag:{type:String,required:!1,default:"div"},excerpt:{type:Boolean,default:!1},path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0},head:{type:Boolean,required:!1,default:!0}},render(m){const t=C(),{tag:f,excerpt:i,path:d,query:r,head:p}=m,c={...r||{},path:d||(r==null?void 0:r.path)||s(y().path),find:"one"},l=(e,n)=>o("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:n},null,2));return o(v,c,{default:t!=null&&t.default?({data:e,refresh:n,isPartial:h})=>{var a;return p&&u(e),(a=t.default)==null?void 0:a.call(t,{doc:e,refresh:n,isPartial:h,excerpt:i,...this.$attrs})}:({data:e})=>(p&&u(e),o(g,{value:e,excerpt:i,tag:f,...this.$attrs},{empty:n=>t!=null&&t.empty?t.empty(n):l("default",e)})),empty:e=>{var n;return((n=t==null?void 0:t.empty)==null?void 0:n.call(t,e))||o("p",null,"Document is empty, overwrite this content with #empty slot in .")},"not-found":e=>{var n;return((n=t==null?void 0:t["not-found"])==null?void 0:n.call(t,e))||o("p",null,"Document not found, overwrite this content with #not-found slot in .")}})}});export{P as default}; diff --git a/docs/.output/public/_nuxt/ContentList.e8a9fb87.js b/docs/.output/public/_nuxt/ContentList.97fc1b04.js similarity index 72% rename from docs/.output/public/_nuxt/ContentList.e8a9fb87.js rename to docs/.output/public/_nuxt/ContentList.97fc1b04.js index 83d8f307..77d6dbf3 100644 --- a/docs/.output/public/_nuxt/ContentList.e8a9fb87.js +++ b/docs/.output/public/_nuxt/ContentList.97fc1b04.js @@ -1 +1 @@ -import n from"./ContentQuery.9f33890e.js";import{f as c,ae as h,j as p}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./asyncData.7c06b2d5.js";import"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const O=c({name:"ContentList",props:{path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0}},render(m){const t=h(),{path:u,query:r}=m,f={...r||{},path:u||(r==null?void 0:r.path)||"/"},a=(e,o)=>p("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:o},null,2));return p(n,f,{default:t!=null&&t.default?({data:e,refresh:o,isPartial:d})=>t==null?void 0:t.default({list:e,refresh:o,isPartial:d,...this.$attrs}):({data:e})=>a("default",e),empty:e=>t!=null&&t.empty?t.empty(e):a("default",e==null?void 0:e.data),"not-found":e=>{var o;return t!=null&&t["not-found"]?(o=t==null?void 0:t["not-found"])==null?void 0:o.call(t,e):a("not-found",e==null?void 0:e.data)}})}});export{O as default}; +import n from"./ContentQuery.5ffc4b8c.js";import{f as c,ae as h,j as p}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./asyncData.45fd3bd9.js";import"./entry.c31835cb.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const O=c({name:"ContentList",props:{path:{type:String,required:!1,default:void 0},query:{type:Object,required:!1,default:void 0}},render(m){const t=h(),{path:u,query:r}=m,f={...r||{},path:u||(r==null?void 0:r.path)||"/"},a=(e,o)=>p("pre",null,JSON.stringify({message:"You should use slots with ",slot:e,data:o},null,2));return p(n,f,{default:t!=null&&t.default?({data:e,refresh:o,isPartial:d})=>t==null?void 0:t.default({list:e,refresh:o,isPartial:d,...this.$attrs}):({data:e})=>a("default",e),empty:e=>t!=null&&t.empty?t.empty(e):a("default",e==null?void 0:e.data),"not-found":e=>{var o;return t!=null&&t["not-found"]?(o=t==null?void 0:t["not-found"])==null?void 0:o.call(t,e):a("not-found",e==null?void 0:e.data)}})}});export{O as default}; diff --git a/docs/.output/public/_nuxt/ContentNavigation.cefda237.js b/docs/.output/public/_nuxt/ContentNavigation.2763794e.js similarity index 56% rename from docs/.output/public/_nuxt/ContentNavigation.cefda237.js rename to docs/.output/public/_nuxt/ContentNavigation.2763794e.js index d47ce0cf..4cda252c 100644 --- a/docs/.output/public/_nuxt/ContentNavigation.cefda237.js +++ b/docs/.output/public/_nuxt/ContentNavigation.2763794e.js @@ -1 +1 @@ -import{u as P,_ as I}from"./app.config.f41ab05d.js";import{u as D}from"./asyncData.7c06b2d5.js";import{u as R,d as V}from"./useDocus.41ab1ca5.js";import{b as g,h as S,f as y}from"./entry.f3791b9c.js";import{_ as e}from"./Container.f1017aa2.js";import"./ContentSlot.c5067a4f.js";import"./DocsAsideTree.b95e55e0.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.77a5278f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.af643d4e.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./Ellipsis.50580cd1.js";import"./List.vue.98cb48bf.js";import"./NuxtImg.vue.a13022c3.js";import"./Props.876d937c.js";import"./TabsHeader.f80c17f8.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.1e5cc557.js";import"./ComponentPlaygroundProps.583c9bda.js";import"./ComponentPlaygroundData.8cb96cd4.js";/* empty css */import"./ContentDoc.cbc50263.js";import"./ContentList.e8a9fb87.js";import{f as a,r as v,Q as b,x as B,o as x,j as f,h as O,e as r,ak as j,ae as N}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentQuery.9f33890e.js";import"./ContentRenderer.b7732722.js";import"./ContentRendererMarkdown.e52b62de.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.7f24e431.js";import"./layout.0a22fa4a.js";import"./GithubRepository.345038c7.js";import"./GithubLink.6cd695ea.js";import"./GithubReadme.5eafd6e1.js";import"./GithubReleases.05c52708.js";import"./GithubLastRelease.a4aeb30e.js";import"./GithubRelease.d892113d.js";import"./GithubContributors.9ddddad6.js";import"./GithubFileContributors.1ad6f7bf.js";import"./GithubCommits.35c65eac.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./query.c3f7607a.js";import"./ProseTbody.37a7db42.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";import"./useGithub.1972ce55.js";const c=a({emits:{error(t){return!0}},setup(t,{slots:i,emit:o}){const _=v(null),u=P();return b(m=>{if(!u.isHydrating)return o("error",m),_.value=m,!1}),()=>{var m,n;return _.value?(m=i.error)==null?void 0:m.call(i,{error:_}):(n=i.default)==null?void 0:n.call(i)}}}),k=Object.freeze(Object.defineProperty({__proto__:null,default:c},Symbol.toStringTag,{value:"Module"})),z=a({name:"DevOnly",setup(t,i){return()=>null}}),M=Object.freeze(Object.defineProperty({__proto__:null,default:z},Symbol.toStringTag,{value:"Module"})),C=a({name:"ServerPlaceholder",render(){return B("div")}}),q=Object.freeze(Object.defineProperty({__proto__:null,default:C},Symbol.toStringTag,{value:"Module"})),$=a({name:"NuxtLoadingIndicator",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3},height:{type:Number,default:3},color:{type:[String,Boolean],default:"repeating-linear-gradient(to right,#00dc82 0%,#34cdfe 50%,#0047e1 100%)"}},setup(t,{slots:i}){const o=H({duration:t.duration,throttle:t.throttle}),_=P();return _.hook("page:start",o.start),_.hook("page:finish",o.finish),x(()=>o.clear),()=>f("div",{class:"nuxt-loading-indicator",style:{position:"fixed",top:0,right:0,left:0,pointerEvents:"none",width:`${o.progress.value}%`,height:`${t.height}px`,opacity:o.isLoading.value?1:0,background:t.color||void 0,backgroundSize:`${100/o.progress.value*100}% auto`,transition:"width 0.1s, height 0.4s, opacity 0.4s",zIndex:999999}},i)}});function H(t){const i=v(0),o=v(!1),_=O(()=>1e4/t.duration);let u=null,m=null;function n(){l(),i.value=0,t.throttle?m=setTimeout(()=>{o.value=!0,s()},t.throttle):(o.value=!0,s())}function h(){i.value=100,T()}function l(){clearInterval(u),clearTimeout(m),u=null,m=null}function A(L){i.value=Math.min(100,i.value+L)}function T(){l(),setTimeout(()=>{o.value=!1,setTimeout(()=>{i.value=0},400)},500)}function s(){u=setInterval(()=>{A(_.value)},100)}return{progress:i,isLoading:o,start:n,finish:h,clear:l}}const w=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),U=t=>Object.fromEntries(Object.entries(t).filter(([,i])=>i!==void 0)),d=(t,i)=>(o,_)=>(g(()=>t({...U(o),..._.attrs},_)),()=>{var u,m;return i?(m=(u=_.slots).default)==null?void 0:m.call(u):null}),E={accesskey:String,autocapitalize:String,autofocus:{type:Boolean,default:void 0},class:[String,Object,Array],contenteditable:{type:Boolean,default:void 0},contextmenu:String,dir:String,draggable:{type:Boolean,default:void 0},enterkeyhint:String,exportparts:String,hidden:{type:Boolean,default:void 0},id:String,inputmode:String,is:String,itemid:String,itemprop:String,itemref:String,itemscope:String,itemtype:String,lang:String,nonce:String,part:String,slot:String,spellcheck:{type:Boolean,default:void 0},style:String,tabindex:String,title:String,translate:String},F=a({name:"NoScript",inheritAttrs:!1,props:{...E,title:String,body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u;const o={...t},_=(((u=i.default)==null?void 0:u.call(i))||[]).filter(({children:m})=>m).map(({children:m})=>m).join("");return _&&(o.children=_),{noscript:[o]}})}),Q=a({name:"Link",inheritAttrs:!1,props:{...E,as:String,crossorigin:String,disabled:Boolean,fetchpriority:String,href:String,hreflang:String,imagesizes:String,imagesrcset:String,integrity:String,media:String,prefetch:{type:Boolean,default:void 0},referrerpolicy:String,rel:String,sizes:String,title:String,type:String,methods:String,target:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>({link:[t]}))}),G=a({name:"Base",inheritAttrs:!1,props:{...E,href:String,target:String},setup:d(t=>({base:t}))}),J=a({name:"Title",inheritAttrs:!1,setup:d((t,{slots:i})=>{var _,u,m;return{title:((m=(u=(_=i.default)==null?void 0:_.call(i))==null?void 0:u[0])==null?void 0:m.children)||null}})}),K=a({name:"Meta",inheritAttrs:!1,props:{...E,charset:String,content:String,httpEquiv:String,name:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>{const i={...t};return i.httpEquiv&&(i["http-equiv"]=i.httpEquiv,delete i.httpEquiv),{meta:[i]}})}),W=a({name:"Style",inheritAttrs:!1,props:{...E,type:String,media:String,nonce:String,title:String,scoped:{type:Boolean,default:void 0},body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u,m,n;const o={...t},_=(n=(m=(u=i.default)==null?void 0:u.call(i))==null?void 0:m[0])==null?void 0:n.children;return _&&(o.children=_),{style:[o]}})}),X=a({name:"Head",inheritAttrs:!1,setup:(t,i)=>()=>{var o,_;return(_=(o=i.slots).default)==null?void 0:_.call(o)}}),Y=a({name:"Html",inheritAttrs:!1,props:{...E,manifest:String,version:String,xmlns:String,renderPriority:[String,Number]},setup:d(t=>({htmlAttrs:t}),!0)}),Z=a({name:"Body",inheritAttrs:!1,props:{...E,renderPriority:[String,Number]},setup:d(t=>({bodyAttrs:t}),!0)}),p=Object.freeze(Object.defineProperty({__proto__:null,Base:G,Body:Z,Head:X,Html:Y,Link:Q,Meta:K,NoScript:F,Style:W,Title:J},Symbol.toStringTag,{value:"Module"}));r(()=>e(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleTheTitle.f00d8fad.js"),["./ExampleTheTitle.f00d8fad.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./HeroAnnouncement.15bcf84c.js"),["./HeroAnnouncement.15bcf84c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.L),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./MyButton.67bdaa98.js"),["./MyButton.67bdaa98.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ReadMore.4d40ce3f.js"),["./ReadMore.4d40ce3f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.y),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.x),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.o),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.r),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.s),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./AppLayout.7354fe11.js"),["./AppLayout.7354fe11.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.A),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.t),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.n),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenNotFound.66d77c6e.js"),["./DocumentDrivenNotFound.66d77c6e.js","./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.T),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAside.08a0955d.js"),["./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.b95e55e0.js").then(t=>t.D),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageBottom.b38ecc43.js"),["./DocsPageBottom.b38ecc43.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageLayout.d352cf62.js"),["./DocsPageLayout.d352cf62.js","./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css","./DocsPageBottom.b38ecc43.js","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2b9ea48f.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPrevNext.2b9ea48f.js"),["./DocsPrevNext.2b9ea48f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsToc.55846f28.js"),["./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsTocLinks.644c91ee.js"),["./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./EditOnLink.77af6984.js"),["./EditOnLink.77af6984.js","./EditOnLink.vue.1d2292f2.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.41ab1ca5.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseA.a4d07cc8.js"),["./ProseA.a4d07cc8.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCode.0e5c7be6.js"),["./ProseCode.0e5c7be6.js","./ProseCodeCopyButton.29965c5a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH1.c24b90eb.js"),["./ProseH1.c24b90eb.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH2.957cbe8e.js"),["./ProseH2.957cbe8e.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH3.cb2444de.js"),["./ProseH3.cb2444de.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH4.77a5278f.js"),["./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH5.8dc93198.js"),["./ProseH5.8dc93198.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH6.bdc78e01.js"),["./ProseH6.bdc78e01.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseImg.16c4c81d.js"),["./ProseImg.16c4c81d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeCopyButton.29965c5a.js"),["./ProseCodeCopyButton.29965c5a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Alert.41cb256b.js"),["./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Badge.af643d4e.js"),["./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ButtonLink.91883881.js"),["./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Callout.12d57ced.js"),["./Callout.12d57ced.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Container.f1017aa2.js").then(t=>t.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CopyButton.f7858c79.js"),["./CopyButton.f7858c79.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./List.63030545.js"),["./List.63030545.js","./List.vue.98cb48bf.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./List.a65f0e81.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./NuxtImg.66944f8e.js"),["./NuxtImg.66944f8e.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Props.876d937c.js"),["./Props.876d937c.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.f41ab05d.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Sandbox.b8bdb0c7.js"),["./Sandbox.b8bdb0c7.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Sandbox.68fd6c5d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VideoPlayer.065c6aeb.js"),["./VideoPlayer.065c6aeb.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./BlockHero.495ede00.js"),["./BlockHero.495ede00.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.91883881.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Card.178cbb97.js"),["./Card.178cbb97.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./Card.5dfb7f30.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CardGrid.e3a9f75d.js"),["./CardGrid.e3a9f75d.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlayground.3c424a18.js"),["./ComponentPlayground.3c424a18.js","./ComponentPlayground.vue.1e5cc557.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundData.8cb96cd4.js"),["./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundProps.583c9bda.js"),["./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentPreviewMode.ea418cb0.js"),["./ContentPreviewMode.ea418cb0.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentDoc.cbc50263.js"),["./ContentDoc.cbc50263.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./ContentQuery.9f33890e.js","./asyncData.7c06b2d5.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentList.e8a9fb87.js"),["./ContentList.e8a9fb87.js","./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>et),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentQuery.9f33890e.js"),["./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRenderer.b7732722.js"),["./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRendererMarkdown.e52b62de.js"),["./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentSlot.c5067a4f.js"),["./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Markdown.7f24e431.js"),["./Markdown.7f24e431.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./welcome.4086e1c1.js"),["./welcome.4086e1c1.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./asyncData.7c06b2d5.js","./ContentSlot.c5067a4f.js","./EditOnLink.vue.1d2292f2.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.77a5278f.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.af643d4e.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.98cb48bf.js","./List.a65f0e81.css","./NuxtImg.vue.a13022c3.js","./Props.876d937c.js","./ProseTbody.37a7db42.js","./ComponentPlayground.vue.1e5cc557.js","./ComponentPlaygroundData.8cb96cd4.js","./ComponentPlaygroundProps.583c9bda.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.cbc50263.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./ContentQuery.9f33890e.js","./ContentList.e8a9fb87.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.7f24e431.js","./layout.0a22fa4a.js","./GithubRepository.345038c7.js","./useGithub.1972ce55.js","./GithubLink.6cd695ea.js","./GithubReadme.5eafd6e1.js","./GithubReleases.05c52708.js","./GithubLastRelease.a4aeb30e.js","./GithubRelease.d892113d.js","./GithubContributors.9ddddad6.js","./GithubFileContributors.1ad6f7bf.js","./GithubCommits.35c65eac.js","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./layout.0a22fa4a.js"),["./layout.0a22fa4a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./entry.f3791b9c.js","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>k),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.v),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>M),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>q),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./app.config.f41ab05d.js").then(t=>t.x),["./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>w),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRepository.345038c7.js"),["./GithubRepository.345038c7.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLink.6cd695ea.js"),["./GithubLink.6cd695ea.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReadme.5eafd6e1.js"),["./GithubReadme.5eafd6e1.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReleases.05c52708.js"),["./GithubReleases.05c52708.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLastRelease.a4aeb30e.js"),["./GithubLastRelease.a4aeb30e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRelease.d892113d.js"),["./GithubRelease.d892113d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubContributors.9ddddad6.js"),["./GithubContributors.9ddddad6.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubFileContributors.1ad6f7bf.js"),["./GithubFileContributors.1ad6f7bf.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubCommits.35c65eac.js"),["./GithubCommits.35c65eac.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.1972ce55.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.w),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.b95e55e0.js").then(t=>t.I),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.f3791b9c.js").then(t=>t.p),["./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.NoScript));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Link));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Base));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Title));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Meta));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Style));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Head));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Html));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Body));const tt=a({name:"ContentNavigation",props:{query:{type:Object,required:!1,default:void 0}},async setup(t){const{query:i}=j(t),o=O(()=>{var u;return typeof((u=i.value)==null?void 0:u.params)=="function"?i.value.params():i.value});if(!o.value&&R("dd-navigation").value){const{navigation:u}=V();return{navigation:u}}const{data:_}=await D(`content-navigation-${S(o.value)}`,()=>y(o.value));return{navigation:_}},render(t){const i=N(),{navigation:o}=t,_=n=>f(I,{to:n._path},()=>n.title),u=(n,h)=>f("ul",h?{"data-level":h}:null,n.map(l=>l.children?f("li",null,[_(l),u(l.children,h+1)]):f("li",null,_(l)))),m=n=>u(n,0);return i!=null&&i.default?i.default({navigation:o,...this.$attrs}):m(o)}}),et=Object.freeze(Object.defineProperty({__proto__:null,default:tt},Symbol.toStringTag,{value:"Module"}));export{tt as default}; +import{u as P,_ as I}from"./app.config.88c4fc0b.js";import{u as D}from"./asyncData.45fd3bd9.js";import{u as R,d as V}from"./useDocus.b9e6b105.js";import{b as g,h as S,f as y}from"./entry.c31835cb.js";import{_ as e}from"./Container.f1017aa2.js";import"./ContentSlot.811112da.js";import"./DocsAsideTree.4387e6ea.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.23cee876.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.282cba87.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.09ee14a8.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./Ellipsis.50580cd1.js";import"./List.vue.9ef0bef2.js";import"./NuxtImg.vue.0972faf4.js";import"./Props.7f60a4b4.js";import"./TabsHeader.f80c17f8.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.69892806.js";import"./ComponentPlaygroundProps.659d0c56.js";import"./ComponentPlaygroundData.b0c91250.js";/* empty css */import"./ContentDoc.0b92d62d.js";import"./ContentList.97fc1b04.js";import{f as a,r as v,Q as b,x as B,o as x,j as f,h as O,e as r,ak as j,ae as N}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentQuery.5ffc4b8c.js";import"./ContentRenderer.8e4912b9.js";import"./ContentRendererMarkdown.433c31c8.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.834a7772.js";import"./layout.37427c44.js";import"./GithubRepository.a7e8d415.js";import"./GithubLink.2353077b.js";import"./GithubReadme.cec09318.js";import"./GithubReleases.adf0483e.js";import"./GithubLastRelease.79db9f48.js";import"./GithubRelease.5c4f9c85.js";import"./GithubContributors.2435a600.js";import"./GithubFileContributors.41f6cd9d.js";import"./GithubCommits.a31447d4.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./query.c3f7607a.js";import"./ProseTbody.37a7db42.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";import"./useGithub.0ae0bb61.js";const c=a({emits:{error(t){return!0}},setup(t,{slots:i,emit:o}){const _=v(null),u=P();return b(m=>{if(!u.isHydrating)return o("error",m),_.value=m,!1}),()=>{var m,n;return _.value?(m=i.error)==null?void 0:m.call(i,{error:_}):(n=i.default)==null?void 0:n.call(i)}}}),k=Object.freeze(Object.defineProperty({__proto__:null,default:c},Symbol.toStringTag,{value:"Module"})),z=a({name:"DevOnly",setup(t,i){return()=>null}}),M=Object.freeze(Object.defineProperty({__proto__:null,default:z},Symbol.toStringTag,{value:"Module"})),C=a({name:"ServerPlaceholder",render(){return B("div")}}),q=Object.freeze(Object.defineProperty({__proto__:null,default:C},Symbol.toStringTag,{value:"Module"})),$=a({name:"NuxtLoadingIndicator",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3},height:{type:Number,default:3},color:{type:[String,Boolean],default:"repeating-linear-gradient(to right,#00dc82 0%,#34cdfe 50%,#0047e1 100%)"}},setup(t,{slots:i}){const o=H({duration:t.duration,throttle:t.throttle}),_=P();return _.hook("page:start",o.start),_.hook("page:finish",o.finish),x(()=>o.clear),()=>f("div",{class:"nuxt-loading-indicator",style:{position:"fixed",top:0,right:0,left:0,pointerEvents:"none",width:`${o.progress.value}%`,height:`${t.height}px`,opacity:o.isLoading.value?1:0,background:t.color||void 0,backgroundSize:`${100/o.progress.value*100}% auto`,transition:"width 0.1s, height 0.4s, opacity 0.4s",zIndex:999999}},i)}});function H(t){const i=v(0),o=v(!1),_=O(()=>1e4/t.duration);let u=null,m=null;function n(){l(),i.value=0,t.throttle?m=setTimeout(()=>{o.value=!0,s()},t.throttle):(o.value=!0,s())}function h(){i.value=100,T()}function l(){clearInterval(u),clearTimeout(m),u=null,m=null}function A(L){i.value=Math.min(100,i.value+L)}function T(){l(),setTimeout(()=>{o.value=!1,setTimeout(()=>{i.value=0},400)},500)}function s(){u=setInterval(()=>{A(_.value)},100)}return{progress:i,isLoading:o,start:n,finish:h,clear:l}}const w=Object.freeze(Object.defineProperty({__proto__:null,default:$},Symbol.toStringTag,{value:"Module"})),U=t=>Object.fromEntries(Object.entries(t).filter(([,i])=>i!==void 0)),d=(t,i)=>(o,_)=>(g(()=>t({...U(o),..._.attrs},_)),()=>{var u,m;return i?(m=(u=_.slots).default)==null?void 0:m.call(u):null}),E={accesskey:String,autocapitalize:String,autofocus:{type:Boolean,default:void 0},class:[String,Object,Array],contenteditable:{type:Boolean,default:void 0},contextmenu:String,dir:String,draggable:{type:Boolean,default:void 0},enterkeyhint:String,exportparts:String,hidden:{type:Boolean,default:void 0},id:String,inputmode:String,is:String,itemid:String,itemprop:String,itemref:String,itemscope:String,itemtype:String,lang:String,nonce:String,part:String,slot:String,spellcheck:{type:Boolean,default:void 0},style:String,tabindex:String,title:String,translate:String},F=a({name:"NoScript",inheritAttrs:!1,props:{...E,title:String,body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u;const o={...t},_=(((u=i.default)==null?void 0:u.call(i))||[]).filter(({children:m})=>m).map(({children:m})=>m).join("");return _&&(o.children=_),{noscript:[o]}})}),Q=a({name:"Link",inheritAttrs:!1,props:{...E,as:String,crossorigin:String,disabled:Boolean,fetchpriority:String,href:String,hreflang:String,imagesizes:String,imagesrcset:String,integrity:String,media:String,prefetch:{type:Boolean,default:void 0},referrerpolicy:String,rel:String,sizes:String,title:String,type:String,methods:String,target:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>({link:[t]}))}),G=a({name:"Base",inheritAttrs:!1,props:{...E,href:String,target:String},setup:d(t=>({base:t}))}),J=a({name:"Title",inheritAttrs:!1,setup:d((t,{slots:i})=>{var _,u,m;return{title:((m=(u=(_=i.default)==null?void 0:_.call(i))==null?void 0:u[0])==null?void 0:m.children)||null}})}),K=a({name:"Meta",inheritAttrs:!1,props:{...E,charset:String,content:String,httpEquiv:String,name:String,body:Boolean,renderPriority:[String,Number]},setup:d(t=>{const i={...t};return i.httpEquiv&&(i["http-equiv"]=i.httpEquiv,delete i.httpEquiv),{meta:[i]}})}),W=a({name:"Style",inheritAttrs:!1,props:{...E,type:String,media:String,nonce:String,title:String,scoped:{type:Boolean,default:void 0},body:Boolean,renderPriority:[String,Number]},setup:d((t,{slots:i})=>{var u,m,n;const o={...t},_=(n=(m=(u=i.default)==null?void 0:u.call(i))==null?void 0:m[0])==null?void 0:n.children;return _&&(o.children=_),{style:[o]}})}),X=a({name:"Head",inheritAttrs:!1,setup:(t,i)=>()=>{var o,_;return(_=(o=i.slots).default)==null?void 0:_.call(o)}}),Y=a({name:"Html",inheritAttrs:!1,props:{...E,manifest:String,version:String,xmlns:String,renderPriority:[String,Number]},setup:d(t=>({htmlAttrs:t}),!0)}),Z=a({name:"Body",inheritAttrs:!1,props:{...E,renderPriority:[String,Number]},setup:d(t=>({bodyAttrs:t}),!0)}),p=Object.freeze(Object.defineProperty({__proto__:null,Base:G,Body:Z,Head:X,Html:Y,Link:Q,Meta:K,NoScript:F,Style:W,Title:J},Symbol.toStringTag,{value:"Module"}));r(()=>e(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ExampleTheTitle.aab4e6ec.js"),["./ExampleTheTitle.aab4e6ec.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./HeroAnnouncement.92c907fa.js"),["./HeroAnnouncement.92c907fa.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.L),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./MyButton.4292c104.js"),["./MyButton.4292c104.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ReadMore.fec51d0b.js"),["./ReadMore.fec51d0b.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.95097db0.js","./ContentSlot.811112da.js","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.y),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.x),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.o),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.r),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.s),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./AppLayout.e1616a30.js"),["./AppLayout.e1616a30.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.A),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.t),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.n),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenNotFound.d294ae47.js"),["./DocumentDrivenNotFound.d294ae47.js","./ButtonLink.e542a711.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.T),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAside.1abe9757.js"),["./DocsAside.1abe9757.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.4387e6ea.js").then(t=>t.D),["./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageBottom.dd73c7ef.js"),["./DocsPageBottom.dd73c7ef.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.a0c295ec.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.23cee876.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPageLayout.4b0475f7.js"),["./DocsPageLayout.4b0475f7.js","./DocsAside.1abe9757.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.95097db0.js","./ContentSlot.811112da.js","./Alert.f24f4058.css","./DocsPageBottom.dd73c7ef.js","./ProseA.a0c295ec.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.23cee876.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2107234e.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.3ed2837f.js","./DocsTocLinks.ff067be8.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsPrevNext.2107234e.js"),["./DocsPrevNext.2107234e.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsToc.3ed2837f.js"),["./DocsToc.3ed2837f.js","./DocsTocLinks.ff067be8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.88c4fc0b.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsTocLinks.ff067be8.js"),["./DocsTocLinks.ff067be8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.88c4fc0b.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./EditOnLink.ca577bd0.js"),["./EditOnLink.ca577bd0.js","./EditOnLink.vue.23cee876.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.b9e6b105.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseA.a0c295ec.js"),["./ProseA.a0c295ec.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCode.5f90dd93.js"),["./ProseCode.5f90dd93.js","./ProseCodeCopyButton.885123e2.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH1.f0f94d61.js"),["./ProseH1.f0f94d61.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH2.440e9004.js"),["./ProseH2.440e9004.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH3.25d5cd3a.js"),["./ProseH3.25d5cd3a.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH4.282cba87.js"),["./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH5.0ae4a534.js"),["./ProseH5.0ae4a534.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseH6.9fccd00c.js"),["./ProseH6.9fccd00c.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseImg.4eef4e65.js"),["./ProseImg.4eef4e65.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ProseCodeCopyButton.885123e2.js"),["./ProseCodeCopyButton.885123e2.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Alert.95097db0.js"),["./Alert.95097db0.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Badge.09ee14a8.js"),["./Badge.09ee14a8.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ButtonLink.e542a711.js"),["./ButtonLink.e542a711.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./ButtonLink.1b73392c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Callout.e583d4ce.js"),["./Callout.e583d4ce.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Container.f1017aa2.js").then(t=>t.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CopyButton.087ca90c.js"),["./CopyButton.087ca90c.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./List.bf56eba2.js"),["./List.bf56eba2.js","./List.vue.9ef0bef2.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./List.a65f0e81.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./NuxtImg.0b2f5a98.js"),["./NuxtImg.0b2f5a98.js","./NuxtImg.vue.0972faf4.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Props.7f60a4b4.js"),["./Props.7f60a4b4.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.88c4fc0b.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Sandbox.1394c91b.js"),["./Sandbox.1394c91b.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Sandbox.68fd6c5d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VideoPlayer.57f76f66.js"),["./VideoPlayer.57f76f66.js","./NuxtImg.vue.0972faf4.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./BlockHero.04826bbd.js"),["./BlockHero.04826bbd.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.e542a711.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Card.8db8e0b6.js"),["./Card.8db8e0b6.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./Card.5dfb7f30.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./CardGrid.b29ba276.js"),["./CardGrid.b29ba276.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlayground.42e12ad5.js"),["./ComponentPlayground.42e12ad5.js","./ComponentPlayground.vue.69892806.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.b0c91250.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.659d0c56.js","./ProseH4.282cba87.js","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.09ee14a8.js","./ContentSlot.811112da.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundData.b0c91250.js"),["./ComponentPlaygroundData.b0c91250.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.659d0c56.js","./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.09ee14a8.js","./ContentSlot.811112da.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundProps.659d0c56.js"),["./ComponentPlaygroundProps.659d0c56.js","./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.09ee14a8.js","./ContentSlot.811112da.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentPreviewMode.9fd06d7d.js"),["./ContentPreviewMode.9fd06d7d.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.88c4fc0b.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentDoc.0b92d62d.js"),["./ContentDoc.0b92d62d.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./ContentQuery.5ffc4b8c.js","./asyncData.45fd3bd9.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentList.97fc1b04.js"),["./ContentList.97fc1b04.js","./ContentQuery.5ffc4b8c.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>et),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentQuery.5ffc4b8c.js"),["./ContentQuery.5ffc4b8c.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRenderer.8e4912b9.js"),["./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentRendererMarkdown.433c31c8.js"),["./ContentRendererMarkdown.433c31c8.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./ContentSlot.811112da.js"),["./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./Markdown.834a7772.js"),["./Markdown.834a7772.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./welcome.2c2152cf.js"),["./welcome.2c2152cf.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./asyncData.45fd3bd9.js","./ContentSlot.811112da.js","./EditOnLink.vue.23cee876.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.282cba87.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.09ee14a8.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.9ef0bef2.js","./List.a65f0e81.css","./NuxtImg.vue.0972faf4.js","./Props.7f60a4b4.js","./ProseTbody.37a7db42.js","./ComponentPlayground.vue.69892806.js","./ComponentPlaygroundData.b0c91250.js","./ComponentPlaygroundProps.659d0c56.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.0b92d62d.js","./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./ContentQuery.5ffc4b8c.js","./ContentList.97fc1b04.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.834a7772.js","./layout.37427c44.js","./GithubRepository.a7e8d415.js","./useGithub.0ae0bb61.js","./GithubLink.2353077b.js","./GithubReadme.cec09318.js","./GithubReleases.adf0483e.js","./GithubLastRelease.79db9f48.js","./GithubRelease.5c4f9c85.js","./GithubContributors.2435a600.js","./GithubFileContributors.41f6cd9d.js","./GithubCommits.a31447d4.js","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./layout.37427c44.js"),["./layout.37427c44.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./entry.c31835cb.js","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>k),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.v),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>M),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>q),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./app.config.88c4fc0b.js").then(t=>t.y),["./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>w),void 0,import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRepository.a7e8d415.js"),["./GithubRepository.a7e8d415.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLink.2353077b.js"),["./GithubLink.2353077b.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReadme.cec09318.js"),["./GithubReadme.cec09318.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubReleases.adf0483e.js"),["./GithubReleases.adf0483e.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubLastRelease.79db9f48.js"),["./GithubLastRelease.79db9f48.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubRelease.5c4f9c85.js"),["./GithubRelease.5c4f9c85.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubContributors.2435a600.js"),["./GithubContributors.2435a600.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubFileContributors.41f6cd9d.js"),["./GithubFileContributors.41f6cd9d.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./GithubCommits.a31447d4.js"),["./GithubCommits.a31447d4.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./useGithub.0ae0bb61.js"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.w),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./DocsAsideTree.4387e6ea.js").then(t=>t.I),["./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>import("./entry.c31835cb.js").then(t=>t.p),["./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css"],import.meta.url).then(t=>t.default||t));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.NoScript));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Link));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Base));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Title));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Meta));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Style));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Head));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Html));r(()=>e(()=>Promise.resolve().then(()=>p),void 0,import.meta.url).then(t=>t.Body));const tt=a({name:"ContentNavigation",props:{query:{type:Object,required:!1,default:void 0}},async setup(t){const{query:i}=j(t),o=O(()=>{var u;return typeof((u=i.value)==null?void 0:u.params)=="function"?i.value.params():i.value});if(!o.value&&R("dd-navigation").value){const{navigation:u}=V();return{navigation:u}}const{data:_}=await D(`content-navigation-${S(o.value)}`,()=>y(o.value));return{navigation:_}},render(t){const i=N(),{navigation:o}=t,_=n=>f(I,{to:n._path},()=>n.title),u=(n,h)=>f("ul",h?{"data-level":h}:null,n.map(l=>l.children?f("li",null,[_(l),u(l.children,h+1)]):f("li",null,_(l)))),m=n=>u(n,0);return i!=null&&i.default?i.default({navigation:o,...this.$attrs}):m(o)}}),et=Object.freeze(Object.defineProperty({__proto__:null,default:tt},Symbol.toStringTag,{value:"Module"}));export{tt as default}; diff --git a/docs/.output/public/_nuxt/ContentPreviewMode.ea418cb0.js b/docs/.output/public/_nuxt/ContentPreviewMode.9fd06d7d.js similarity index 92% rename from docs/.output/public/_nuxt/ContentPreviewMode.ea418cb0.js rename to docs/.output/public/_nuxt/ContentPreviewMode.9fd06d7d.js index 73fa4023..37b7808c 100644 --- a/docs/.output/public/_nuxt/ContentPreviewMode.ea418cb0.js +++ b/docs/.output/public/_nuxt/ContentPreviewMode.9fd06d7d.js @@ -1 +1 @@ -import{_ as T,a as b}from"./Container.f1017aa2.js";import{u as q,l as k,p as S}from"./app.config.f41ab05d.js";import{T as g}from"./DocsAsideTree.b95e55e0.js";import{r as I}from"./asyncData.7c06b2d5.js";import{u as L}from"./cookie.b9cff64d.js";import{f as M,r as p,O as A,aj as N,q as u,x as l,y as B,F as E,E as e,D as v,G as x,C,J as R,n as U,M as z,N as D}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./index.d2b0cb5e.js";import"./useDocus.41ab1ca5.js";import"./entry.f3791b9c.js";import"./query.c3f7607a.js";const i=a=>(z("data-v-572e7d1a"),a=a(),D(),a),F=i(()=>e("svg",{viewBox:"0 0 90 90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},[e("path",{d:"M50.0016 71.0999h29.2561c.9293.0001 1.8422-.241 2.6469-.6992.8047-.4582 1.4729-1.1173 1.9373-1.9109.4645-.7936.7088-1.6939.7083-2.6102-.0004-.9162-.2455-1.8163-.7106-2.6095L64.192 29.713c-.4644-.7934-1.1325-1.4523-1.937-1.9105-.8046-.4581-1.7173-.6993-2.6463-.6993-.9291 0-1.8418.2412-2.6463.6993-.8046.4582-1.4726 1.1171-1.937 1.9105l-5.0238 8.5861-9.8224-16.7898c-.4648-.7934-1.1332-1.4522-1.938-1.9102-.8047-.4581-1.7176-.6992-2.6468-.6992-.9292 0-1.842.2411-2.6468.6992-.8048.458-1.4731 1.1168-1.9379 1.9102L6.56062 63.2701c-.46512.7932-.71021 1.6933-.71061 2.6095-.00041.9163.24389 1.8166.70831 2.6102.46443.7936 1.1326 1.4527 1.93732 1.9109.80473.4582 1.71766.6993 2.64686.6992h18.3646c7.2763 0 12.6422-3.1516 16.3345-9.3002l8.9642-15.3081 4.8015-8.1925 14.4099 24.6083H54.8058l-4.8042 8.1925ZM29.2077 62.899l-12.8161-.0028L35.603 30.0869l9.5857 16.4047-6.418 10.9645c-2.4521 3.9894-5.2377 5.4429-9.563 5.4429Z",fill:"currentColor"})],-1)),H=i(()=>e("span",null,"Preview mode enabled",-1)),V={key:0},j=i(()=>e("div",{id:"__preview_background"},null,-1)),O=i(()=>e("svg",{id:"__preview_loading_icon",width:"32",height:"32",viewBox:"0 0 24 24"},[e("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 0 0 4.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 0 1-15.357-2m15.357 2H15"})],-1)),Z=i(()=>e("p",null,"Initializing the preview...",-1)),G={key:0},J=i(()=>e("div",{id:"__preview_background"},null,-1)),$={id:"__preview_loader"},K=M({__name:"ContentPreviewMode",props:{previewToken:{type:Object,required:!0},apiURL:{type:String,required:!0},syncPreview:{type:Function,required:!0},requestPreviewSyncAPI:{type:Function,required:!0}},setup(a){const s=a,_=["__nuxt_preview","__preview_enabled"],P=q(),w=p(!0),m=p(!1),o=p(!1),n=p("");let t;const f=async()=>{L("previewToken").value="",k().query.preview="",await S(k().path),U(()=>{I()}),w.value=!1,n.value="",document.body.classList.remove(..._)},h=async c=>{const r=await s.syncPreview(c);if(o.value!==!0){if(!r){setTimeout(()=>h(c),1e3);return}o.value=!0,P.callHook("nuxt-studio:preview:ready"),window.parent&&window.self!==window.parent&&t.disconnect()}};return A(async()=>{t=(await T(()=>import("./index.e2533f77.js"),[],import.meta.url)).connect(`${s.apiURL}/preview`,{transports:["websocket","polling"],auth:{token:s.previewToken.value}});let r;t.on("connect",()=>{r=setTimeout(()=>{o.value||(r=setTimeout(()=>{n.value="Preview sync timed out",o.value=!1},3e4),t.emit("draft:requestSync"))},3e4)});const y=()=>{r&&(clearInterval(r),r=null)};t.on("draft:sync",d=>{if(y(),!d){s.requestPreviewSyncAPI(),t.once("draft:ready",()=>{t.emit("draft:requestSync")});return}h(d)}),t.on("draft:unauthorized",()=>{y(),n.value="Unauthorized preview token",o.value=!1}),t.on("disconnect",()=>{y()}),document.body.classList.add(..._),t.on("draft:update",d=>{m.value=!0,s.syncPreview(d),m.value=!1})}),N(()=>{document.body.classList.remove(..._)}),(c,r)=>(u(),l("div",null,[w.value?(u(),l("div",{key:0,id:"__nuxt_preview",class:B({__preview_ready:o.value,__preview_refreshing:m.value})},[o.value?(u(),l(E,{key:0},[F,H,e("button",{onClick:f}," Close ")],64)):v("",!0)],2)):v("",!0),x(g,{name:"preview-loading"},{default:C(()=>[w.value&&!o.value&&!n.value?(u(),l("div",V,[j,e("div",{id:"__preview_loader"},[O,Z,e("button",{onClick:f}," Cancel ")])])):v("",!0)]),_:1}),x(g,{name:"preview-loading"},{default:C(()=>[n.value?(u(),l("div",G,[J,e("div",$,[e("p",null,R(n.value),1),e("button",{onClick:f}," Exit preview ")])])):v("",!0)]),_:1})]))}}),se=b(K,[["__scopeId","data-v-572e7d1a"]]);export{se as default}; +import{_ as T,a as b}from"./Container.f1017aa2.js";import{u as q,l as k,p as S}from"./app.config.88c4fc0b.js";import{T as g}from"./DocsAsideTree.4387e6ea.js";import{r as I}from"./asyncData.45fd3bd9.js";import{u as L}from"./cookie.71eae014.js";import{f as M,r as p,O as A,aj as N,q as u,x as l,y as B,F as E,E as e,D as v,G as x,C,J as R,n as U,M as z,N as D}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import"./index.d2b0cb5e.js";import"./useDocus.b9e6b105.js";import"./entry.c31835cb.js";import"./query.c3f7607a.js";const i=a=>(z("data-v-572e7d1a"),a=a(),D(),a),F=i(()=>e("svg",{viewBox:"0 0 90 90",fill:"none",xmlns:"http://www.w3.org/2000/svg"},[e("path",{d:"M50.0016 71.0999h29.2561c.9293.0001 1.8422-.241 2.6469-.6992.8047-.4582 1.4729-1.1173 1.9373-1.9109.4645-.7936.7088-1.6939.7083-2.6102-.0004-.9162-.2455-1.8163-.7106-2.6095L64.192 29.713c-.4644-.7934-1.1325-1.4523-1.937-1.9105-.8046-.4581-1.7173-.6993-2.6463-.6993-.9291 0-1.8418.2412-2.6463.6993-.8046.4582-1.4726 1.1171-1.937 1.9105l-5.0238 8.5861-9.8224-16.7898c-.4648-.7934-1.1332-1.4522-1.938-1.9102-.8047-.4581-1.7176-.6992-2.6468-.6992-.9292 0-1.842.2411-2.6468.6992-.8048.458-1.4731 1.1168-1.9379 1.9102L6.56062 63.2701c-.46512.7932-.71021 1.6933-.71061 2.6095-.00041.9163.24389 1.8166.70831 2.6102.46443.7936 1.1326 1.4527 1.93732 1.9109.80473.4582 1.71766.6993 2.64686.6992h18.3646c7.2763 0 12.6422-3.1516 16.3345-9.3002l8.9642-15.3081 4.8015-8.1925 14.4099 24.6083H54.8058l-4.8042 8.1925ZM29.2077 62.899l-12.8161-.0028L35.603 30.0869l9.5857 16.4047-6.418 10.9645c-2.4521 3.9894-5.2377 5.4429-9.563 5.4429Z",fill:"currentColor"})],-1)),H=i(()=>e("span",null,"Preview mode enabled",-1)),V={key:0},j=i(()=>e("div",{id:"__preview_background"},null,-1)),O=i(()=>e("svg",{id:"__preview_loading_icon",width:"32",height:"32",viewBox:"0 0 24 24"},[e("path",{fill:"none",stroke:"currentColor","stroke-linecap":"round","stroke-linejoin":"round","stroke-width":"2",d:"M4 4v5h.582m15.356 2A8.001 8.001 0 0 0 4.582 9m0 0H9m11 11v-5h-.581m0 0a8.003 8.003 0 0 1-15.357-2m15.357 2H15"})],-1)),Z=i(()=>e("p",null,"Initializing the preview...",-1)),G={key:0},J=i(()=>e("div",{id:"__preview_background"},null,-1)),$={id:"__preview_loader"},K=M({__name:"ContentPreviewMode",props:{previewToken:{type:Object,required:!0},apiURL:{type:String,required:!0},syncPreview:{type:Function,required:!0},requestPreviewSyncAPI:{type:Function,required:!0}},setup(a){const s=a,_=["__nuxt_preview","__preview_enabled"],P=q(),w=p(!0),m=p(!1),o=p(!1),n=p("");let t;const f=async()=>{L("previewToken").value="",k().query.preview="",await S(k().path),U(()=>{I()}),w.value=!1,n.value="",document.body.classList.remove(..._)},h=async c=>{const r=await s.syncPreview(c);if(o.value!==!0){if(!r){setTimeout(()=>h(c),1e3);return}o.value=!0,P.callHook("nuxt-studio:preview:ready"),window.parent&&window.self!==window.parent&&t.disconnect()}};return A(async()=>{t=(await T(()=>import("./index.e2533f77.js"),[],import.meta.url)).connect(`${s.apiURL}/preview`,{transports:["websocket","polling"],auth:{token:s.previewToken.value}});let r;t.on("connect",()=>{r=setTimeout(()=>{o.value||(r=setTimeout(()=>{n.value="Preview sync timed out",o.value=!1},3e4),t.emit("draft:requestSync"))},3e4)});const y=()=>{r&&(clearInterval(r),r=null)};t.on("draft:sync",d=>{if(y(),!d){s.requestPreviewSyncAPI(),t.once("draft:ready",()=>{t.emit("draft:requestSync")});return}h(d)}),t.on("draft:unauthorized",()=>{y(),n.value="Unauthorized preview token",o.value=!1}),t.on("disconnect",()=>{y()}),document.body.classList.add(..._),t.on("draft:update",d=>{m.value=!0,s.syncPreview(d),m.value=!1})}),N(()=>{document.body.classList.remove(..._)}),(c,r)=>(u(),l("div",null,[w.value?(u(),l("div",{key:0,id:"__nuxt_preview",class:B({__preview_ready:o.value,__preview_refreshing:m.value})},[o.value?(u(),l(E,{key:0},[F,H,e("button",{onClick:f}," Close ")],64)):v("",!0)],2)):v("",!0),x(g,{name:"preview-loading"},{default:C(()=>[w.value&&!o.value&&!n.value?(u(),l("div",V,[j,e("div",{id:"__preview_loader"},[O,Z,e("button",{onClick:f}," Cancel ")])])):v("",!0)]),_:1}),x(g,{name:"preview-loading"},{default:C(()=>[n.value?(u(),l("div",G,[J,e("div",$,[e("p",null,R(n.value),1),e("button",{onClick:f}," Exit preview ")])])):v("",!0)]),_:1})]))}}),se=b(K,[["__scopeId","data-v-572e7d1a"]]);export{se as default}; diff --git a/docs/.output/public/_nuxt/ContentQuery.9f33890e.js b/docs/.output/public/_nuxt/ContentQuery.5ffc4b8c.js similarity index 89% rename from docs/.output/public/_nuxt/ContentQuery.9f33890e.js rename to docs/.output/public/_nuxt/ContentQuery.5ffc4b8c.js index 5dd18160..68a39281 100644 --- a/docs/.output/public/_nuxt/ContentQuery.9f33890e.js +++ b/docs/.output/public/_nuxt/ContentQuery.5ffc4b8c.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as q}from"./asyncData.7c06b2d5.js";import{h as g,q as m}from"./entry.f3791b9c.js";import{f as S,ak as b,h as k,a as C,ae as N,j as _}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const Y=S({name:"ContentQuery",props:{path:{type:String,required:!1,default:void 0},only:{type:Array,required:!1,default:void 0},without:{type:Array,required:!1,default:void 0},where:{type:Object,required:!1,default:void 0},sort:{type:Object,required:!1,default:void 0},limit:{type:Number,required:!1,default:void 0},skip:{type:Number,required:!1,default:void 0},locale:{type:String,required:!1,default:void 0},find:{type:String,required:!1,default:void 0}},async setup(u){const{path:t,only:r,without:n,where:a,sort:o,limit:l,skip:f,locale:s,find:d}=b(u),h=k(()=>{var e;return(e=t.value)==null?void 0:e.includes("/_")});C(()=>u,()=>p(),{deep:!0});const{data:v,refresh:p}=await q(`content-query-${g(u)}`,()=>{let e;return t.value?e=m(t.value):e=m(),r.value&&(e=e.only(r.value)),n.value&&(e=e.without(n.value)),a.value&&(e=e.where(a.value)),o.value&&(e=e.sort(o.value)),l.value&&(e=e.limit(l.value)),f.value&&(e=e.skip(f.value)),s.value&&(e=e.where({_locale:s.value})),d.value==="one"?e.findOne():d.value==="surround"?t.value?e.findSurround(t.value):(console.warn("[Content] Surround queries requires `path` prop to be set."),console.warn("[Content] Query without `path` will return regular `find()` results."),e.find()):e.find()});return{isPartial:h,data:v,refresh:p}},render(u){var y;const t=N(),{data:r,refresh:n,isPartial:a,path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e}=u,i={path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e};if(i.find==="one"){if(!r&&(t!=null&&t["not-found"]))return t["not-found"]({props:i,...this.$attrs});if(t!=null&&t.empty&&(r==null?void 0:r._type)==="markdown"&&!((y=r==null?void 0:r.body)!=null&&y.children.length))return t.empty({props:i,...this.$attrs})}else if((!r||!r.length)&&t!=null&&t["not-found"])return t["not-found"]({props:i,...this.$attrs});return t!=null&&t.default?t.default({data:r,refresh:n,isPartial:a,props:i,...this.$attrs}):((c,w)=>_("pre",null,JSON.stringify({message:"You should use slots with !",slot:c,data:w},null,2)))("default",{data:r,props:i,isPartial:a})}});export{Y as default}; +import"./app.config.88c4fc0b.js";import{u as q}from"./asyncData.45fd3bd9.js";import{h as g,q as m}from"./entry.c31835cb.js";import{f as S,ak as b,h as k,a as C,ae as N,j as _}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const Y=S({name:"ContentQuery",props:{path:{type:String,required:!1,default:void 0},only:{type:Array,required:!1,default:void 0},without:{type:Array,required:!1,default:void 0},where:{type:Object,required:!1,default:void 0},sort:{type:Object,required:!1,default:void 0},limit:{type:Number,required:!1,default:void 0},skip:{type:Number,required:!1,default:void 0},locale:{type:String,required:!1,default:void 0},find:{type:String,required:!1,default:void 0}},async setup(u){const{path:t,only:r,without:n,where:a,sort:o,limit:l,skip:f,locale:s,find:d}=b(u),h=k(()=>{var e;return(e=t.value)==null?void 0:e.includes("/_")});C(()=>u,()=>p(),{deep:!0});const{data:v,refresh:p}=await q(`content-query-${g(u)}`,()=>{let e;return t.value?e=m(t.value):e=m(),r.value&&(e=e.only(r.value)),n.value&&(e=e.without(n.value)),a.value&&(e=e.where(a.value)),o.value&&(e=e.sort(o.value)),l.value&&(e=e.limit(l.value)),f.value&&(e=e.skip(f.value)),s.value&&(e=e.where({_locale:s.value})),d.value==="one"?e.findOne():d.value==="surround"?t.value?e.findSurround(t.value):(console.warn("[Content] Surround queries requires `path` prop to be set."),console.warn("[Content] Query without `path` will return regular `find()` results."),e.find()):e.find()});return{isPartial:h,data:v,refresh:p}},render(u){var y;const t=N(),{data:r,refresh:n,isPartial:a,path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e}=u,i={path:o,only:l,without:f,where:s,sort:d,limit:h,skip:v,locale:p,find:e};if(i.find==="one"){if(!r&&(t!=null&&t["not-found"]))return t["not-found"]({props:i,...this.$attrs});if(t!=null&&t.empty&&(r==null?void 0:r._type)==="markdown"&&!((y=r==null?void 0:r.body)!=null&&y.children.length))return t.empty({props:i,...this.$attrs})}else if((!r||!r.length)&&t!=null&&t["not-found"])return t["not-found"]({props:i,...this.$attrs});return t!=null&&t.default?t.default({data:r,refresh:n,isPartial:a,props:i,...this.$attrs}):((c,w)=>_("pre",null,JSON.stringify({message:"You should use slots with !",slot:c,data:w},null,2)))("default",{data:r,props:i,isPartial:a})}});export{Y as default}; diff --git a/docs/.output/public/_nuxt/ContentRenderer.b7732722.js b/docs/.output/public/_nuxt/ContentRenderer.8e4912b9.js similarity index 90% rename from docs/.output/public/_nuxt/ContentRenderer.b7732722.js rename to docs/.output/public/_nuxt/ContentRenderer.8e4912b9.js index 1ac7444c..1fd161ea 100644 --- a/docs/.output/public/_nuxt/ContentRenderer.b7732722.js +++ b/docs/.output/public/_nuxt/ContentRenderer.8e4912b9.js @@ -1 +1 @@ -import c from"./ContentRendererMarkdown.e52b62de.js";import{f as m,a as l,ae as s,j as d}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";const w=m({name:"ContentRenderer",props:{value:{type:Object,required:!1,default:()=>({})},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"}},setup(t){l(()=>t.excerpt,n=>{var e,r,a;n&&!((e=t.value)!=null&&e.excerpt)&&(console.warn(`No excerpt found for document content/${(r=t==null?void 0:t.value)==null?void 0:r._path}.${(a=t==null?void 0:t.value)==null?void 0:a._extension}!`),console.warn("Make sure to use in your content if you want to use excerpt feature."))},{immediate:!0})},render(t){var i,o,u,f;const n=s(),{value:e,excerpt:r,tag:a}=t;return!((o=(i=e==null?void 0:e.body)==null?void 0:i.children)!=null&&o.length)&&(n!=null&&n.empty)?n.empty({value:e,excerpt:r,tag:a,...this.$attrs}):n!=null&&n.default?n.default({value:e,excerpt:r,tag:a,...this.$attrs}):(e==null?void 0:e._type)==="markdown"&&((f=(u=e==null?void 0:e.body)==null?void 0:u.children)!=null&&f.length)?d(c,{value:e,excerpt:r,tag:a,...this.$attrs}):d("pre",null,JSON.stringify({message:"You should use slots with ",value:e,excerpt:r,tag:a},null,2))}});export{w as default}; +import c from"./ContentRendererMarkdown.433c31c8.js";import{f as m,a as l,ae as s,j as d}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.71eae014.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";const w=m({name:"ContentRenderer",props:{value:{type:Object,required:!1,default:()=>({})},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"}},setup(t){l(()=>t.excerpt,n=>{var e,r,a;n&&!((e=t.value)!=null&&e.excerpt)&&(console.warn(`No excerpt found for document content/${(r=t==null?void 0:t.value)==null?void 0:r._path}.${(a=t==null?void 0:t.value)==null?void 0:a._extension}!`),console.warn("Make sure to use in your content if you want to use excerpt feature."))},{immediate:!0})},render(t){var i,o,u,f;const n=s(),{value:e,excerpt:r,tag:a}=t;return!((o=(i=e==null?void 0:e.body)==null?void 0:i.children)!=null&&o.length)&&(n!=null&&n.empty)?n.empty({value:e,excerpt:r,tag:a,...this.$attrs}):n!=null&&n.default?n.default({value:e,excerpt:r,tag:a,...this.$attrs}):(e==null?void 0:e._type)==="markdown"&&((f=(u=e==null?void 0:e.body)==null?void 0:u.children)!=null&&f.length)?d(c,{value:e,excerpt:r,tag:a,...this.$attrs}):d("pre",null,JSON.stringify({message:"You should use slots with ",value:e,excerpt:r,tag:a},null,2))}});export{w as default}; diff --git a/docs/.output/public/_nuxt/ContentRendererMarkdown.e52b62de.js b/docs/.output/public/_nuxt/ContentRendererMarkdown.433c31c8.js similarity index 99% rename from docs/.output/public/_nuxt/ContentRendererMarkdown.e52b62de.js rename to docs/.output/public/_nuxt/ContentRendererMarkdown.433c31c8.js index 4106d52f..5a72a3e7 100644 --- a/docs/.output/public/_nuxt/ContentRendererMarkdown.e52b62de.js +++ b/docs/.output/public/_nuxt/ContentRendererMarkdown.433c31c8.js @@ -1 +1 @@ -import{d as Y}from"./cookie.b9cff64d.js";import{p as Z}from"./index.d2b0cb5e.js";import{f as J,l as G}from"./app.config.f41ab05d.js";import{f as Q,j as M,aa as A,al as x}from"./runtime-core.esm-bundler.6894272a.js";class S{constructor(e,o,t){this.property=e,this.normal=o,t&&(this.space=t)}}S.prototype.property={};S.prototype.normal={};S.prototype.space=null;function E(n,e){const o={},t={};let r=-1;for(;++r4&&o.slice(0,4)==="data"&&tn.test(e)){if(e.charAt(4)==="-"){const a=e.slice(5).replace(R,sn);t="data"+a.charAt(0).toUpperCase()+a.slice(1)}else{const a=e.slice(4);if(!R.test(a)){let i=a.replace(rn,un);i.charAt(0)!=="-"&&(i="-"+i),e="data"+i}}r=L}return new r(t,e)}function un(n){return"-"+n.toLowerCase()}function sn(n){return n.charAt(1).toUpperCase()}const cn=E([B,z,H,_,en],"html");E([B,z,H,_,on],"svg");const F=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"],D="default",N=/^@|^v-on:/,V=/^:|^v-bind:/,q=/^v-model/,pn=["select","textarea","input"],Dn=Q({name:"ContentRendererMarkdown",props:{value:{type:Object,required:!0},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"},components:{type:Object,default:()=>({})}},async setup(n){var o;const{content:{tags:e={}}}=J().public;return await xn(n.value.body,{tags:{...e,...((o=n.value)==null?void 0:o._components)||{},...n.components}}),{tags:e}},render(n){var p;const{tags:e,tag:o,value:t,components:r}=n;if(!t)return null;let a=t.body||t;n.excerpt&&t.excerpt&&(a=t.excerpt);const i={...t,tags:{...e,...(t==null?void 0:t._components)||{},...r}};let s=i.component||o;return typeof i.component=="object"&&(s=i.component.name),s=X(s),M(s,{...(p=i.component)==null?void 0:p.props,...this.$attrs},K(a,M,i,i))}});function dn(n,e,o,t={}){var p;if(n.type==="text")return e(x,n.value);if(n.tag==="script")return W(n);const r=n.tag,a=typeof((p=n.props)==null?void 0:p.__ignoreMap)>"u"&&o.tags[r]||r;if(n.tag==="binding")return gn(n,e,o,t);const i=X(a);typeof i=="object"&&(i.tag=r);const s=hn(n,o);return e(i,s,K(n,e,o,{...t,...s}))}function W(n){var e,o;return n.type==="text"?n.value:(e=n.children)!=null&&e.length?`<${n.tag}>${((o=n.children)==null?void 0:o.map(W).join(""))||""}`:`<${n.tag}>`}function gn(n,e,o,t={}){var p;const r={...t,$route:()=>G(),$document:o,$doc:o},a=/\.|\[(\d+)\]/,s=((p=n.props)==null?void 0:p.value.trim().split(a).filter(Boolean)).reduce((g,y)=>y in g?typeof g[y]=="function"?g[y]():g[y]:{},r);return e(x,s)}function K(n,e,o,t){const a=(n.children||[]).reduce((s,p)=>{if(!kn(p))return s[D].push(p),s;const g=bn(p);return s[g]=s[g]||[],s[g].push(...p.children||[]),s},{[D]:[]});return Object.entries(a).reduce((s,[p,g])=>(g.length&&(s[p]=()=>{const y=g.map(h=>dn(h,e,o,t));return Sn(y)}),s),{})}function hn(n,e){const{tag:o="",props:t={}}=n;return Object.keys(t).reduce(function(r,a){if(a==="__ignoreMap")return r;const i=t[a];if(q.test(a)&&!pn.includes(o))return mn(a,i,r,e);if(a==="v-bind")return fn(a,i,r,e);if(N.test(a))return yn(a,i,r,e);if(V.test(a))return vn(a,i,r,e);const{attribute:s}=an(cn,a);return Array.isArray(i)&&i.every(p=>typeof p=="string")?(r[s]=i.join(" "),r):(r[s]=i,r)},{})}function mn(n,e,o,t){const r=h=>+h,a=h=>h.trim(),i=h=>h,s=n.replace(q,"").split(".").filter(h=>h).reduce((h,$)=>(h[$]=!0,h),{}),p="value",g=s.lazy?"change":"input",y=s.number?r:s.trim?a:i;return o[p]=C(e,t),o.on=o.on||{},o.on[g]=h=>t[e]=y(h),o}function fn(n,e,o,t){const r=C(e,t);return o=Object.assign(o,r),o}function yn(n,e,o,t){return n=n.replace(N,""),o.on=o.on||{},o.on[n]=()=>C(e,t),o}function vn(n,e,o,t){return n=n.replace(V,""),o[n]=C(e,t),o}const X=n=>{if(!F.includes(n)){const e=A(Z(n),!1);if(typeof e=="object")return e}return n};function C(n,e){const o=n.split(".").reduce((t,r)=>typeof t=="object"?t[r]:void 0,e);return typeof o>"u"?Y(n):o}function bn(n){let e="";for(const o of Object.keys(n.props||{}))if(!(!o.startsWith("#")&&!o.startsWith("v-slot:"))){e=o.split(/[:#]/,2)[1];break}return e||D}function kn(n){return n.tag==="template"}function Sn(n){const e=[];for(const o of n){const t=e[e.length-1];o.type===x&&(t==null?void 0:t.type)===x?t.children=t.children+o.children:e.push(o)}return e}async function xn(n,e){const o=Array.from(new Set(t(n,e)));await Promise.all(o.map(async r=>{const a=A(r);a!=null&&a.__asyncLoader&&!a.__asyncResolved&&await a.__asyncLoader()}));function t(r,a){var p;if(r.type==="text"||r.tag==="binding")return[];const i=typeof((p=r.props)==null?void 0:p.__ignoreMap)>"u"&&a.tags[r.tag]||r.tag,s=[];r.type!=="root"&&!F.includes(i)&&s.push(i);for(const g of r.children||[])s.push(...t(g,a));return s}}export{Dn as default}; +import{d as Y}from"./cookie.71eae014.js";import{p as Z}from"./index.d2b0cb5e.js";import{b as J,l as G}from"./app.config.88c4fc0b.js";import{f as Q,j as M,aa as A,al as x}from"./runtime-core.esm-bundler.6894272a.js";class S{constructor(e,o,t){this.property=e,this.normal=o,t&&(this.space=t)}}S.prototype.property={};S.prototype.normal={};S.prototype.space=null;function E(n,e){const o={},t={};let r=-1;for(;++r4&&o.slice(0,4)==="data"&&tn.test(e)){if(e.charAt(4)==="-"){const a=e.slice(5).replace(R,sn);t="data"+a.charAt(0).toUpperCase()+a.slice(1)}else{const a=e.slice(4);if(!R.test(a)){let i=a.replace(rn,un);i.charAt(0)!=="-"&&(i="-"+i),e="data"+i}}r=L}return new r(t,e)}function un(n){return"-"+n.toLowerCase()}function sn(n){return n.charAt(1).toUpperCase()}const cn=E([B,z,H,_,en],"html");E([B,z,H,_,on],"svg");const F=["a","abbr","address","area","article","aside","audio","b","base","bdi","bdo","blockquote","body","br","button","canvas","caption","cite","code","col","colgroup","data","datalist","dd","del","details","dfn","dialog","div","dl","dt","em","embed","fieldset","figcaption","figure","footer","form","h1","h2","h3","h4","h5","h6","head","header","hgroup","hr","html","i","iframe","img","input","ins","kbd","label","legend","li","link","main","map","mark","math","menu","menuitem","meta","meter","nav","noscript","object","ol","optgroup","option","output","p","param","picture","pre","progress","q","rb","rp","rt","rtc","ruby","s","samp","script","section","select","slot","small","source","span","strong","style","sub","summary","sup","svg","table","tbody","td","template","textarea","tfoot","th","thead","time","title","tr","track","u","ul","var","video","wbr"],D="default",N=/^@|^v-on:/,V=/^:|^v-bind:/,q=/^v-model/,pn=["select","textarea","input"],Dn=Q({name:"ContentRendererMarkdown",props:{value:{type:Object,required:!0},excerpt:{type:Boolean,default:!1},tag:{type:String,default:"div"},components:{type:Object,default:()=>({})}},async setup(n){var o;const{content:{tags:e={}}}=J().public;return await xn(n.value.body,{tags:{...e,...((o=n.value)==null?void 0:o._components)||{},...n.components}}),{tags:e}},render(n){var p;const{tags:e,tag:o,value:t,components:r}=n;if(!t)return null;let a=t.body||t;n.excerpt&&t.excerpt&&(a=t.excerpt);const i={...t,tags:{...e,...(t==null?void 0:t._components)||{},...r}};let s=i.component||o;return typeof i.component=="object"&&(s=i.component.name),s=X(s),M(s,{...(p=i.component)==null?void 0:p.props,...this.$attrs},K(a,M,i,i))}});function dn(n,e,o,t={}){var p;if(n.type==="text")return e(x,n.value);if(n.tag==="script")return W(n);const r=n.tag,a=typeof((p=n.props)==null?void 0:p.__ignoreMap)>"u"&&o.tags[r]||r;if(n.tag==="binding")return gn(n,e,o,t);const i=X(a);typeof i=="object"&&(i.tag=r);const s=hn(n,o);return e(i,s,K(n,e,o,{...t,...s}))}function W(n){var e,o;return n.type==="text"?n.value:(e=n.children)!=null&&e.length?`<${n.tag}>${((o=n.children)==null?void 0:o.map(W).join(""))||""}`:`<${n.tag}>`}function gn(n,e,o,t={}){var p;const r={...t,$route:()=>G(),$document:o,$doc:o},a=/\.|\[(\d+)\]/,s=((p=n.props)==null?void 0:p.value.trim().split(a).filter(Boolean)).reduce((g,y)=>y in g?typeof g[y]=="function"?g[y]():g[y]:{},r);return e(x,s)}function K(n,e,o,t){const a=(n.children||[]).reduce((s,p)=>{if(!kn(p))return s[D].push(p),s;const g=bn(p);return s[g]=s[g]||[],s[g].push(...p.children||[]),s},{[D]:[]});return Object.entries(a).reduce((s,[p,g])=>(g.length&&(s[p]=()=>{const y=g.map(h=>dn(h,e,o,t));return Sn(y)}),s),{})}function hn(n,e){const{tag:o="",props:t={}}=n;return Object.keys(t).reduce(function(r,a){if(a==="__ignoreMap")return r;const i=t[a];if(q.test(a)&&!pn.includes(o))return mn(a,i,r,e);if(a==="v-bind")return fn(a,i,r,e);if(N.test(a))return yn(a,i,r,e);if(V.test(a))return vn(a,i,r,e);const{attribute:s}=an(cn,a);return Array.isArray(i)&&i.every(p=>typeof p=="string")?(r[s]=i.join(" "),r):(r[s]=i,r)},{})}function mn(n,e,o,t){const r=h=>+h,a=h=>h.trim(),i=h=>h,s=n.replace(q,"").split(".").filter(h=>h).reduce((h,$)=>(h[$]=!0,h),{}),p="value",g=s.lazy?"change":"input",y=s.number?r:s.trim?a:i;return o[p]=C(e,t),o.on=o.on||{},o.on[g]=h=>t[e]=y(h),o}function fn(n,e,o,t){const r=C(e,t);return o=Object.assign(o,r),o}function yn(n,e,o,t){return n=n.replace(N,""),o.on=o.on||{},o.on[n]=()=>C(e,t),o}function vn(n,e,o,t){return n=n.replace(V,""),o[n]=C(e,t),o}const X=n=>{if(!F.includes(n)){const e=A(Z(n),!1);if(typeof e=="object")return e}return n};function C(n,e){const o=n.split(".").reduce((t,r)=>typeof t=="object"?t[r]:void 0,e);return typeof o>"u"?Y(n):o}function bn(n){let e="";for(const o of Object.keys(n.props||{}))if(!(!o.startsWith("#")&&!o.startsWith("v-slot:"))){e=o.split(/[:#]/,2)[1];break}return e||D}function kn(n){return n.tag==="template"}function Sn(n){const e=[];for(const o of n){const t=e[e.length-1];o.type===x&&(t==null?void 0:t.type)===x?t.children=t.children+o.children:e.push(o)}return e}async function xn(n,e){const o=Array.from(new Set(t(n,e)));await Promise.all(o.map(async r=>{const a=A(r);a!=null&&a.__asyncLoader&&!a.__asyncResolved&&await a.__asyncLoader()}));function t(r,a){var p;if(r.type==="text"||r.tag==="binding")return[];const i=typeof((p=r.props)==null?void 0:p.__ignoreMap)>"u"&&a.tags[r.tag]||r.tag,s=[];r.type!=="root"&&!F.includes(i)&&s.push(i);for(const g of r.children||[])s.push(...t(g,a));return s}}export{Dn as default}; diff --git a/docs/.output/public/_nuxt/ContentSlot.c5067a4f.js b/docs/.output/public/_nuxt/ContentSlot.811112da.js similarity index 83% rename from docs/.output/public/_nuxt/ContentSlot.c5067a4f.js rename to docs/.output/public/_nuxt/ContentSlot.811112da.js index 498b8677..c68cf6c9 100644 --- a/docs/.output/public/_nuxt/ContentSlot.c5067a4f.js +++ b/docs/.output/public/_nuxt/ContentSlot.811112da.js @@ -1 +1 @@ -import{u as m}from"./DocsAsideTree.b95e55e0.js";import{f as g,ae as h,h as c,j as a,g as y}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";const b=g({name:"ContentSlot",functional:!0,props:{use:{type:Function,default:void 0},unwrap:{type:[Boolean,String],default:!1}},setup(e){const{parent:l}=y(),{between:s,default:i}=h(),u=c(()=>typeof e.unwrap=="string"?e.unwrap.split(" "):["*"]);return{fallbackSlot:i,tags:u,between:s,parent:l}},render({use:e,unwrap:l,fallbackSlot:s,between:i,tags:u,parent:n}){var f;try{let o=e;if(typeof e=="string"&&(o=(n==null?void 0:n.slots[e])||((f=n==null?void 0:n.parent)==null?void 0:f.slots[e]),console.warn(`Please set :use="$slots.${e}" in component to enable reactivity`)),!o)return s?s():a("div");if(!l)return[o()];const{flatUnwrap:d}=m(),p=d(o(),u);return i?p.flatMap((t,r)=>r===0?[t]:[i(),t]):p.reduce((t,r)=>(typeof r.children=="string"?typeof t[t.length-1]=="string"?t[t.length-1]+=r.children:t.push(r.children):t.push(r),t),[])}catch{return a("div")}}});export{b as default}; +import{u as m}from"./DocsAsideTree.4387e6ea.js";import{f as g,ae as h,h as c,j as a,g as y}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";const b=g({name:"ContentSlot",functional:!0,props:{use:{type:Function,default:void 0},unwrap:{type:[Boolean,String],default:!1}},setup(e){const{parent:l}=y(),{between:s,default:i}=h(),u=c(()=>typeof e.unwrap=="string"?e.unwrap.split(" "):["*"]);return{fallbackSlot:i,tags:u,between:s,parent:l}},render({use:e,unwrap:l,fallbackSlot:s,between:i,tags:u,parent:n}){var f;try{let o=e;if(typeof e=="string"&&(o=(n==null?void 0:n.slots[e])||((f=n==null?void 0:n.parent)==null?void 0:f.slots[e]),console.warn(`Please set :use="$slots.${e}" in component to enable reactivity`)),!o)return s?s():a("div");if(!l)return[o()];const{flatUnwrap:d}=m(),p=d(o(),u);return i?p.flatMap((t,r)=>r===0?[t]:[i(),t]):p.reduce((t,r)=>(typeof r.children=="string"?typeof t[t.length-1]=="string"?t[t.length-1]+=r.children:t.push(r.children):t.push(r),t),[])}catch{return a("div")}}});export{b as default}; diff --git a/docs/.output/public/_nuxt/CopyButton.f7858c79.js b/docs/.output/public/_nuxt/CopyButton.087ca90c.js similarity index 79% rename from docs/.output/public/_nuxt/CopyButton.f7858c79.js rename to docs/.output/public/_nuxt/CopyButton.087ca90c.js index b177fa7e..93bb97ca 100644 --- a/docs/.output/public/_nuxt/CopyButton.f7858c79.js +++ b/docs/.output/public/_nuxt/CopyButton.087ca90c.js @@ -1 +1 @@ -import{_ as i}from"./DocsAsideTree.b95e55e0.js";import{u as l}from"./index.889aa611.js";import{f as m,r as u,q as t,x as f,u as d,B as n}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";const w=m({__name:"CopyButton",props:{content:{type:String,default:""}},setup(c){const a=c,{copy:p}=l(),o=u("init"),r=s=>{p(a.content).then(()=>{o.value="copied",setTimeout(()=>{o.value="init"},1e3)}).catch(()=>{console.warn("Couldn't copy to clipboard!")})};return(s,y)=>{const e=i;return t(),f("button",{class:"copy rounded-lg bg-gray-800 px-2 py-2 font-mono text-xs font-semibold leading-none text-gray-400 focus:outline-none dark:bg-black",onClick:r},[d(o)==="copied"?(t(),n(e,{key:0,name:"fa-check",class:"h-4 w-4"})):(t(),n(e,{key:1,name:"fa-copy",class:"h-4 w-4"}))])}}});export{w as default}; +import{_ as i}from"./DocsAsideTree.4387e6ea.js";import{u as l}from"./index.889aa611.js";import{f as m,r as u,q as t,x as f,u as d,B as n}from"./runtime-core.esm-bundler.6894272a.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";const w=m({__name:"CopyButton",props:{content:{type:String,default:""}},setup(c){const a=c,{copy:p}=l(),o=u("init"),r=s=>{p(a.content).then(()=>{o.value="copied",setTimeout(()=>{o.value="init"},1e3)}).catch(()=>{console.warn("Couldn't copy to clipboard!")})};return(s,y)=>{const e=i;return t(),f("button",{class:"copy rounded-lg bg-gray-800 px-2 py-2 font-mono text-xs font-semibold leading-none text-gray-400 focus:outline-none dark:bg-black",onClick:r},[d(o)==="copied"?(t(),n(e,{key:0,name:"fa-check",class:"h-4 w-4"})):(t(),n(e,{key:1,name:"fa-copy",class:"h-4 w-4"}))])}}});export{w as default}; diff --git a/docs/.output/public/_nuxt/DocsAside.08a0955d.js b/docs/.output/public/_nuxt/DocsAside.1abe9757.js similarity index 71% rename from docs/.output/public/_nuxt/DocsAside.08a0955d.js rename to docs/.output/public/_nuxt/DocsAside.1abe9757.js index 46a06e14..fd228c9b 100644 --- a/docs/.output/public/_nuxt/DocsAside.08a0955d.js +++ b/docs/.output/public/_nuxt/DocsAside.1abe9757.js @@ -1 +1 @@ -import{b as r,_ as m}from"./DocsAsideTree.b95e55e0.js";import{_ as i}from"./app.config.f41ab05d.js";import{c as l}from"./useDocus.41ab1ca5.js";import{f as u,q as t,x as f,u as s,B as c,C as d,G as k,M as x,N as h,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as I}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const N=o=>(x("data-v-4fc52927"),o=o(),h(),o),b=N(()=>B("span",{class:"text"},"Go back",-1)),v=u({__name:"DocsAside",setup(o){const{tree:e}=l();return(w,C)=>{var n;const a=r,_=m,p=i;return t(),f("nav",null,[((n=s(e))==null?void 0:n.length)>0?(t(),c(a,{key:0,links:s(e)},null,8,["links"])):(t(),c(p,{key:1,to:"/",class:"go-back-link"},{default:d(()=>[k(_,{name:"heroicons-outline:arrow-left",class:"icon"}),b]),_:1}))])}}}),V=I(v,[["__scopeId","data-v-4fc52927"]]);export{V as default}; +import{b as r,_ as m}from"./DocsAsideTree.4387e6ea.js";import{_ as i}from"./app.config.88c4fc0b.js";import{c as l}from"./useDocus.b9e6b105.js";import{f as u,q as t,x as f,u as s,B as c,C as d,G as k,M as x,N as h,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as I}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const N=o=>(x("data-v-4fc52927"),o=o(),h(),o),b=N(()=>B("span",{class:"text"},"Go back",-1)),v=u({__name:"DocsAside",setup(o){const{tree:e}=l();return(w,C)=>{var n;const a=r,_=m,p=i;return t(),f("nav",null,[((n=s(e))==null?void 0:n.length)>0?(t(),c(a,{key:0,links:s(e)},null,8,["links"])):(t(),c(p,{key:1,to:"/",class:"go-back-link"},{default:d(()=>[k(_,{name:"heroicons-outline:arrow-left",class:"icon"}),b]),_:1}))])}}}),V=I(v,[["__scopeId","data-v-4fc52927"]]);export{V as default}; diff --git a/docs/.output/public/_nuxt/DocsAsideTree.b95e55e0.js b/docs/.output/public/_nuxt/DocsAsideTree.4387e6ea.js similarity index 99% rename from docs/.output/public/_nuxt/DocsAsideTree.b95e55e0.js rename to docs/.output/public/_nuxt/DocsAsideTree.4387e6ea.js index eec8e039..8ce52755 100644 --- a/docs/.output/public/_nuxt/DocsAsideTree.b95e55e0.js +++ b/docs/.output/public/_nuxt/DocsAsideTree.4387e6ea.js @@ -1 +1 @@ -import{w as en,f as me,l as ye,u as nn,_ as on}from"./app.config.f41ab05d.js";import{u as rn}from"./cookie.b9cff64d.js";import{e as sn,u as be,c as cn}from"./useDocus.41ab1ca5.js";import{j as G,R as ve,U as At,V as an,W as we,X as rt,Y as it,Z as ln,_ as un,$ as fn,a0 as dn,a1 as pn,a2 as Se,a3 as hn,a4 as gn,a5 as mn,a6 as xe,a7 as yn,f as ct,r as bn,h as R,a as vn,a8 as wn,u as S,q as _,x as z,y as B,B as H,I as Sn,J as gt,z as xn,F as In,A as Cn,E as U,D as lt,G as _n,C as Tn,a9 as An}from"./runtime-core.esm-bundler.6894272a.js";import{a as Ie}from"./Container.f1017aa2.js";const En="http://www.w3.org/2000/svg",N=typeof document<"u"?document:null,zt=N&&N.createElement("template"),$n={insert:(t,e,n)=>{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,r)=>{const o=e?N.createElementNS(En,t):N.createElement(t,n?{is:n}:void 0);return t==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:t=>N.createTextNode(t),createComment:t=>N.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>N.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,r,o,s){const i=n?n.previousSibling:e.lastChild;if(o&&(o===s||o.nextSibling))for(;e.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{zt.innerHTML=r?`${t}`:t;const c=zt.content;if(r){const l=c.firstChild;for(;l.firstChild;)c.appendChild(l.firstChild);c.removeChild(l)}e.insertBefore(c,n)}return[i?i.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Mn(t,e,n){const r=t._vtc;r&&(e=(e?[e,...r]:[...r]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function jn(t,e,n){const r=t.style,o=rt(n);if(n&&!o){if(e&&!rt(e))for(const s in e)n[s]==null&&mt(r,s,"");for(const s in n)mt(r,s,n[s])}else{const s=r.display;o?e!==n&&(r.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(r.display=s)}}const Bt=/\s*!important$/;function mt(t,e,n){if(it(n))n.forEach(r=>mt(t,e,r));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const r=Pn(t,e);Bt.test(n)?t.setProperty(Se(r),n.replace(Bt,""),"important"):t[r]=n}}const Ht=["Webkit","Moz","ms"],ut={};function Pn(t,e){const n=ut[e];if(n)return n;let r=hn(e);if(r!=="filter"&&r in t)return ut[e]=r;r=gn(r);for(let o=0;oft||(zn.then(()=>ft=0),ft=Date.now());function Hn(t,e){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;yn(Un(r,n.value),e,5,[r])};return n.value=t,n.attached=Bn(),n}function Un(t,e){if(it(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(r=>o=>!o._stopped&&r&&r(o))}else return e}const Kt=/^on[a-z]/,qn=(t,e,n,r,o=!1,s,i,c,l)=>{e==="class"?Mn(t,r,o):e==="style"?jn(t,n,r):dn(e)?pn(e)||Dn(t,e,n,r,i):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Kn(t,e,r,o))?On(t,e,r,s,i,c,l):(e==="true-value"?t._trueValue=r:e==="false-value"&&(t._falseValue=r),Ln(t,e,r,o))};function Kn(t,e,n,r){return r?!!(e==="innerHTML"||e==="textContent"||e in t&&Kt.test(e)&&we(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||Kt.test(e)&&rt(n)?!1:e in t}const $="transition",q="animation",Ce=(t,{slots:e})=>G(ve,Vn(t),e);Ce.displayName="Transition";const _e={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Ce.props=At({},ve.props,_e);const O=(t,e=[])=>{it(t)?t.forEach(n=>n(...e)):t&&t(...e)},Vt=t=>t?it(t)?t.some(e=>e.length>1):t.length>1:!1;function Vn(t){const e={};for(const g in t)g in _e||(e[g]=t[g]);if(t.css===!1)return e;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:f=i,appearToClass:u=c,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:h=`${n}-leave-active`,leaveToClass:y=`${n}-leave-to`}=t,m=Qn(o),a=m&&m[0],p=m&&m[1],{onBeforeEnter:x,onEnter:w,onEnterCancelled:b,onLeave:j,onLeaveCancelled:A,onBeforeAppear:v=x,onAppear:I=w,onAppearCancelled:P=b}=e,E=(g,C,L)=>{F(g,C?u:c),F(g,C?f:i),L&&L()},T=(g,C)=>{g._isLeaving=!1,F(g,d),F(g,y),F(g,h),C&&C()},Nt=g=>(C,L)=>{const Dt=g?I:w,Rt=()=>E(C,g,L);O(Dt,[C,Rt]),Qt(()=>{F(C,g?l:s),M(C,g?u:c),Vt(Dt)||Wt(C,r,a,Rt)})};return At(e,{onBeforeEnter(g){O(x,[g]),M(g,s),M(g,i)},onBeforeAppear(g){O(v,[g]),M(g,l),M(g,f)},onEnter:Nt(!1),onAppear:Nt(!0),onLeave(g,C){g._isLeaving=!0;const L=()=>T(g,C);M(g,d),Jn(),M(g,h),Qt(()=>{g._isLeaving&&(F(g,d),M(g,y),Vt(j)||Wt(g,r,p,L))}),O(j,[g,L])},onEnterCancelled(g){E(g,!1),O(b,[g])},onAppearCancelled(g){E(g,!0),O(P,[g])},onLeaveCancelled(g){T(g),O(A,[g])}})}function Qn(t){if(t==null)return null;if(an(t))return[dt(t.enter),dt(t.leave)];{const e=dt(t);return[e,e]}}function dt(t){return ln(t)}function M(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function F(t,e){e.split(/\s+/).forEach(r=>r&&t.classList.remove(r));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function Qt(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Wn=0;function Wt(t,e,n,r){const o=t._endId=++Wn,s=()=>{o===t._endId&&r()};if(n)return setTimeout(s,n);const{type:i,timeout:c,propCount:l}=Gn(t,e);if(!i)return r();const f=i+"end";let u=0;const d=()=>{t.removeEventListener(f,h),s()},h=y=>{y.target===t&&++u>=l&&d()};setTimeout(()=>{u(n[m]||"").split(", "),o=r(`${$}Delay`),s=r(`${$}Duration`),i=Gt(o,s),c=r(`${q}Delay`),l=r(`${q}Duration`),f=Gt(c,l);let u=null,d=0,h=0;e===$?i>0&&(u=$,d=i,h=s.length):e===q?f>0&&(u=q,d=f,h=l.length):(d=Math.max(i,f),u=d>0?i>f?$:q:null,h=u?u===$?s.length:l.length:0);const y=u===$&&/\b(transform|all)(,|$)/.test(r(`${$}Property`).toString());return{type:u,timeout:d,propCount:h,hasTransform:y}}function Gt(t,e){for(;t.lengthJt(n)+Jt(t[r])))}function Jt(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function Jn(){return document.body.offsetHeight}const Xn=["ctrl","shift","alt","meta"],kn={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>Xn.some(n=>t[`${n}Key`]&&!e.includes(n))},Pr=(t,e)=>(n,...r)=>{for(let o=0;o{K(t,!1)}):K(t,e))},beforeUnmount(t,{value:e}){K(t,e)}};function K(t,e){t.style.display=e?t._vod:"none"}const Te=At({patchProp:qn},$n);let Q,Xt=!1;function Zn(){return Q||(Q=un(Te))}function to(){return Q=Xt?Q:fn(Te),Xt=!0,Q}const Lr=(...t)=>{const e=Zn().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(!o)return;const s=e._component;!we(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},e},Or=(...t)=>{const e=to().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(o)return n(o,!0,o instanceof SVGElement)},e};function Ae(t){return rt(t)?document.querySelector(t):t}const eo=["p","h1","h2","h3","h4","h5","h6","li"];function yt(t,e){return t.type===e||typeof t.type=="object"&&t.type.tag===e||t.tag===e}function Ee(t){return yt(t,"text")||typeof t.children=="string"}function $e(t){return Array.isArray(t.children)||typeof t.children=="string"?t.children:typeof t.children.default=="function"?t.children.default():[]}function bt(t){if(!t)return"";if(Array.isArray(t))return t.map(bt).join("");if(Ee(t))return t.children||t.value;const e=$e(t);return Array.isArray(e)?e.map(bt).join(""):""}function Et(t,e=["p"]){if(Array.isArray(t))return t.flatMap(r=>Et(r,e));let n=t;return e.some(r=>r==="*"||yt(t,r))&&(n=$e(t)||t,!Array.isArray(n)&&eo.some(r=>yt(t,r))&&(n=[n])),n}function Me(t,e=["p"]){return t=Array.isArray(t)?t:[t],e.length?t.flatMap(n=>Me(Et(n,[e[0]]),e.slice(1))).filter(n=>!(Ee(n)&&bt(n).trim()==="")):t}const Fr=t=>en(t,me().public.content.api.baseURL),Nr=()=>({unwrap:Et,flatUnwrap:Me}),Dr=()=>{const{experimental:t}=me().content;if(t.clientDB)return!0;const e=ye().query;return Object.prototype.hasOwnProperty.call(e,"preview")&&!e.preview?!1:!!(e.preview||rn("previewToken").value)},je=Object.freeze({left:0,top:0,width:16,height:16}),Pe=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),$t=Object.freeze({...je,...Pe});Object.freeze({...$t,body:"",hidden:!1});({...je});const Le=Object.freeze({width:null,height:null}),Oe=Object.freeze({...Le,...Pe});function no(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in Le?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const oo=/[\s,]+/;function ro(t,e){e.split(oo).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function so(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}const io=/(-?[0-9.]*[0-9]+[0-9.]*)/g,co=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function kt(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(io);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=co.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const ao=t=>t==="unset"||t==="undefined"||t==="none";function lo(t,e){const n={...$t,...t},r={...Oe,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=kt(d,l/f)):(u=i==="auto"?l:i,d=c===null?kt(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{ao(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const uo=/\sid="(\S+)"/g,fo="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let po=0;function ho(t,e=fo){const n=[];let r;for(;r=uo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(po++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}function go(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function mo(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function yo(t){return'url("data:image/svg+xml,'+mo(t)+'")'}const Yt={...Oe,inline:!1},bo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},vo={display:"inline-block"},vt={backgroundColor:"currentColor"},Fe={backgroundColor:"transparent"},Zt={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},te={webkitMask:vt,mask:vt,background:Fe};for(const t in te){const e=te[t];for(const n in Zt)e[t+n]=Zt[n]}const tt={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";tt[t+"-flip"]=e,tt[t.slice(0,1)+"-flip"]=e,tt[t+"Flip"]=e});function ee(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const wo=(t,e)=>{const n=no(Yt,e),r={...bo},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&ro(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=so(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=tt[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):Yt[a]===void 0&&(r[a]=p)}}}const l=lo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=ho(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=go(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":yo(m),width:ee(f.width),height:ee(f.height),...vo,...y?vt:Fe,...c},G("span",r)},So=Object.create(null),xo=ct({inheritAttrs:!1,render(){const t=this.$attrs,e=t.icon,n=typeof e=="string"?So[e]:typeof e=="object"?e:null;return n===null||typeof n!="object"||typeof n.body!="string"?this.$slots.default?this.$slots.default():null:wo({...$t,...n},t)}}),W=/^[a-z0-9]+(-[a-z0-9]+)*$/,k=(t,e,n,r="")=>{const o=t.split(":");if(t.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const c=o.pop(),l=o.pop(),f={provider:o.length>0?o[0]:r,prefix:l,name:c};return e&&!et(f)?null:f}const s=o[0],i=s.split("-");if(i.length>1){const c={provider:r,prefix:i.shift(),name:i.join("-")};return e&&!et(c)?null:c}if(n&&r===""){const c={provider:r,prefix:"",name:s};return e&&!et(c,n)?null:c}return null},et=(t,e)=>t?!!((t.provider===""||t.provider.match(W))&&(e&&t.prefix===""||t.prefix.match(W))&&t.name.match(W)):!1,Ne=Object.freeze({left:0,top:0,width:16,height:16}),st=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Y=Object.freeze({...Ne,...st}),wt=Object.freeze({...Y,body:"",hidden:!1});function Io(t,e){const n={};!t.hFlip!=!e.hFlip&&(n.hFlip=!0),!t.vFlip!=!e.vFlip&&(n.vFlip=!0);const r=((t.rotate||0)+(e.rotate||0))%4;return r&&(n.rotate=r),n}function ne(t,e){const n=Io(t,e);for(const r in wt)r in st?r in t&&!(r in n)&&(n[r]=st[r]):r in e?n[r]=e[r]:r in t&&(n[r]=t[r]);return n}function Co(t,e){const n=t.icons,r=t.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const c=r[i]&&r[i].parent,l=c&&s(c);l&&(o[i]=[c].concat(l))}return o[i]}return(e||Object.keys(n).concat(Object.keys(r))).forEach(s),o}function _o(t,e,n){const r=t.icons,o=t.aliases||Object.create(null);let s={};function i(c){s=ne(r[c]||o[c],s)}return i(e),n.forEach(i),ne(t,s)}function De(t,e){const n=[];if(typeof t!="object"||typeof t.icons!="object")return n;t.not_found instanceof Array&&t.not_found.forEach(o=>{e(o,null),n.push(o)});const r=Co(t);for(const o in r){const s=r[o];s&&(e(o,_o(t,o,s)),n.push(o))}return n}const To={provider:"",aliases:{},not_found:{},...Ne};function pt(t,e){for(const n in e)if(n in t&&typeof t[n]!=typeof e[n])return!1;return!0}function Re(t){if(typeof t!="object"||t===null)return null;const e=t;if(typeof e.prefix!="string"||!t.icons||typeof t.icons!="object"||!pt(t,To))return null;const n=e.icons;for(const o in n){const s=n[o];if(!o.match(W)||typeof s.body!="string"||!pt(s,wt))return null}const r=e.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o.match(W)||typeof i!="string"||!n[i]&&!r[i]||!pt(s,wt))return null}return e}const oe=Object.create(null);function Ao(t,e){return{provider:t,prefix:e,icons:Object.create(null),missing:new Set}}function D(t,e){const n=oe[t]||(oe[t]=Object.create(null));return n[e]||(n[e]=Ao(t,e))}function Mt(t,e){return Re(e)?De(e,(n,r)=>{r?t.icons[n]=r:t.missing.add(n)}):[]}function Eo(t,e,n){try{if(typeof n.body=="string")return t.icons[e]={...n},!0}catch{}return!1}let J=!1;function ze(t){return typeof t=="boolean"&&(J=t),J}function Be(t){const e=typeof t=="string"?k(t,!0,J):t;if(e){const n=D(e.provider,e.prefix),r=e.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function $o(t,e){const n=k(t,!0,J);if(!n)return!1;const r=D(n.provider,n.prefix);return Eo(r,n.name,e)}function Mo(t,e){if(typeof t!="object")return!1;if(typeof e!="string"&&(e=t.provider||""),J&&!e&&!t.prefix){let o=!1;return Re(t)&&(t.prefix="",De(t,(s,i)=>{i&&$o(s,i)&&(o=!0)})),o}const n=t.prefix;if(!et({provider:e,prefix:n,name:"a"}))return!1;const r=D(e,n);return!!Mt(r,t)}const He=Object.freeze({width:null,height:null}),Ue=Object.freeze({...He,...st}),jo=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Po=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function re(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(jo);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=Po.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const Lo=t=>t==="unset"||t==="undefined"||t==="none";function Oo(t,e){const n={...Y,...t},r={...Ue,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=re(d,l/f)):(u=i==="auto"?l:i,d=c===null?re(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{Lo(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const Fo=/\sid="(\S+)"/g,No="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Do=0;function Ro(t,e=No){const n=[];let r;for(;r=Fo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(Do++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}const St=Object.create(null);function zo(t,e){St[t]=e}function xt(t){return St[t]||St[""]}function jt(t){let e;if(typeof t.resources=="string")e=[t.resources];else if(e=t.resources,!(e instanceof Array)||!e.length)return null;return{resources:e,path:t.path||"/",maxURL:t.maxURL||500,rotate:t.rotate||750,timeout:t.timeout||5e3,random:t.random===!0,index:t.index||0,dataAfterTimeout:t.dataAfterTimeout!==!1}}const Pt=Object.create(null),V=["https://api.simplesvg.com","https://api.unisvg.com"],nt=[];for(;V.length>0;)V.length===1||Math.random()>.5?nt.push(V.shift()):nt.push(V.pop());Pt[""]=jt({resources:["https://api.iconify.design"].concat(nt)});function Bo(t,e){const n=jt(e);return n===null?!1:(Pt[t]=n,!0)}function Lt(t){return Pt[t]}const Ho=()=>{let t;try{if(t=fetch,typeof t=="function")return t}catch{}};let se=Ho();function Uo(t,e){const n=Lt(t);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=e+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function qo(t){return t===404}const Ko=(t,e,n)=>{const r=[],o=Uo(t,e),s="icons";let i={type:s,provider:t,prefix:e,icons:[]},c=0;return n.forEach((l,f)=>{c+=l.length+1,c>=o&&f>0&&(r.push(i),i={type:s,provider:t,prefix:e,icons:[]},c=l.length),i.icons.push(l)}),r.push(i),r};function Vo(t){if(typeof t=="string"){const e=Lt(t);if(e)return e.path}return"/"}const Qo=(t,e,n)=>{if(!se){n("abort",424);return}let r=Vo(e.provider);switch(e.type){case"icons":{const s=e.prefix,c=e.icons.join(","),l=new URLSearchParams({icons:c});r+=s+".json?"+l.toString();break}case"custom":{const s=e.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;se(t+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(qo(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},Wo={prepare:Ko,send:Qo};function Go(t){const e={loaded:[],missing:[],pending:[]},n=Object.create(null);t.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return t.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,c=o.name,l=n[s]||(n[s]=Object.create(null)),f=l[i]||(l[i]=D(s,i));let u;c in f.icons?u=e.loaded:i===""||f.missing.has(c)?u=e.missing:u=e.pending;const d={provider:s,prefix:i,name:c};u.push(d)}),e}function qe(t,e){t.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==e))})}function Jo(t){t.pendingCallbacksFlag||(t.pendingCallbacksFlag=!0,setTimeout(()=>{t.pendingCallbacksFlag=!1;const e=t.loaderCallbacks?t.loaderCallbacks.slice(0):[];if(!e.length)return;let n=!1;const r=t.provider,o=t.prefix;e.forEach(s=>{const i=s.icons,c=i.pending.length;i.pending=i.pending.filter(l=>{if(l.prefix!==o)return!0;const f=l.name;if(t.icons[f])i.loaded.push({provider:r,prefix:o,name:f});else if(t.missing.has(f))i.missing.push({provider:r,prefix:o,name:f});else return n=!0,!0;return!1}),i.pending.length!==c&&(n||qe([t],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let Xo=0;function ko(t,e,n){const r=Xo++,o=qe.bind(null,n,r);if(!e.pending.length)return o;const s={id:r,icons:e,callback:t,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function Yo(t,e=!0,n=!1){const r=[];return t.forEach(o=>{const s=typeof o=="string"?k(o,e,n):o;s&&r.push(s)}),r}var Zo={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function tr(t,e,n,r){const o=t.resources.length,s=t.random?Math.floor(Math.random()*o):t.index;let i;if(t.random){let v=t.resources.slice(0);for(i=[];v.length>1;){const I=Math.floor(Math.random()*v.length);i.push(v[I]),v=v.slice(0,I).concat(v.slice(I+1))}i=i.concat(v)}else i=t.resources.slice(s).concat(t.resources.slice(0,s));const c=Date.now();let l="pending",f=0,u,d=null,h=[],y=[];typeof r=="function"&&y.push(r);function m(){d&&(clearTimeout(d),d=null)}function a(){l==="pending"&&(l="aborted"),m(),h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function p(v,I){I&&(y=[]),typeof v=="function"&&y.push(v)}function x(){return{startTime:c,payload:e,status:l,queriesSent:f,queriesPending:h.length,subscribe:p,abort:a}}function w(){l="failed",y.forEach(v=>{v(void 0,u)})}function b(){h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function j(v,I,P){const E=I!=="success";switch(h=h.filter(T=>T!==v),l){case"pending":break;case"failed":if(E||!t.dataAfterTimeout)return;break;default:return}if(I==="abort"){u=P,w();return}if(E){u=P,h.length||(i.length?A():w());return}if(m(),b(),!t.random){const T=t.resources.indexOf(v.resource);T!==-1&&T!==t.index&&(t.index=T)}l="completed",y.forEach(T=>{T(P)})}function A(){if(l!=="pending")return;m();const v=i.shift();if(v===void 0){if(h.length){d=setTimeout(()=>{m(),l==="pending"&&(b(),w())},t.timeout);return}w();return}const I={status:"pending",resource:v,callback:(P,E)=>{j(I,P,E)}};h.push(I),f++,d=setTimeout(A,t.rotate),n(v,e,I.callback)}return setTimeout(A),x}function Ke(t){const e={...Zo,...t};let n=[];function r(){n=n.filter(c=>c().status==="pending")}function o(c,l,f){const u=tr(e,c,l,(d,h)=>{r(),f&&f(d,h)});return n.push(u),u}function s(c){return n.find(l=>c(l))||null}return{query:o,find:s,setIndex:c=>{e.index=c},getIndex:()=>e.index,cleanup:r}}function ie(){}const ht=Object.create(null);function er(t){if(!ht[t]){const e=Lt(t);if(!e)return;const n=Ke(e),r={config:e,redundancy:n};ht[t]=r}return ht[t]}function nr(t,e,n){let r,o;if(typeof t=="string"){const s=xt(t);if(!s)return n(void 0,424),ie;o=s.send;const i=er(t);i&&(r=i.redundancy)}else{const s=jt(t);if(s){r=Ke(s);const i=t.resources?t.resources[0]:"",c=xt(i);c&&(o=c.send)}}return!r||!o?(n(void 0,424),ie):r.query(e,o,n)().abort}const ce="iconify2",X="iconify",Ve=X+"-count",ae=X+"-version",Qe=36e5,or=168;function It(t,e){try{return t.getItem(e)}catch{}}function Ot(t,e,n){try{return t.setItem(e,n),!0}catch{}}function le(t,e){try{t.removeItem(e)}catch{}}function Ct(t,e){return Ot(t,Ve,e.toString())}function _t(t){return parseInt(It(t,Ve))||0}const at={local:!0,session:!0},We={local:new Set,session:new Set};let Ft=!1;function rr(t){Ft=t}let Z=typeof window>"u"?{}:window;function Ge(t){const e=t+"Storage";try{if(Z&&Z[e]&&typeof Z[e].length=="number")return Z[e]}catch{}at[t]=!1}function Je(t,e){const n=Ge(t);if(!n)return;const r=It(n,ae);if(r!==ce){if(r){const c=_t(n);for(let l=0;l{const l=X+c.toString(),f=It(n,l);if(typeof f=="string"){try{const u=JSON.parse(f);if(typeof u=="object"&&typeof u.cached=="number"&&u.cached>o&&typeof u.provider=="string"&&typeof u.data=="object"&&typeof u.data.prefix=="string"&&e(u,c))return!0}catch{}le(n,l)}};let i=_t(n);for(let c=i-1;c>=0;c--)s(c)||(c===i-1?(i--,Ct(n,i)):We[t].add(c))}function Xe(){if(!Ft){rr(!0);for(const t in at)Je(t,e=>{const n=e.data,r=e.provider,o=n.prefix,s=D(r,o);if(!Mt(s,n).length)return!1;const i=n.lastModified||-1;return s.lastModifiedCached=s.lastModifiedCached?Math.min(s.lastModifiedCached,i):i,!0})}}function sr(t,e){const n=t.lastModifiedCached;if(n&&n>=e)return n===e;if(t.lastModifiedCached=e,n)for(const r in at)Je(r,o=>{const s=o.data;return o.provider!==t.provider||s.prefix!==t.prefix||s.lastModified===e});return!0}function ir(t,e){Ft||Xe();function n(r){let o;if(!at[r]||!(o=Ge(r)))return;const s=We[r];let i;if(s.size)s.delete(i=Array.from(s).shift());else if(i=_t(o),!Ct(o,i+1))return;const c={cached:Math.floor(Date.now()/Qe),provider:t.provider,data:e};return Ot(o,X+i.toString(),JSON.stringify(c))}e.lastModified&&!sr(t,e.lastModified)||Object.keys(e.icons).length&&(e.not_found&&(e=Object.assign({},e),delete e.not_found),n("local")||n("session"))}function ue(){}function cr(t){t.iconsLoaderFlag||(t.iconsLoaderFlag=!0,setTimeout(()=>{t.iconsLoaderFlag=!1,Jo(t)}))}function ar(t,e){t.iconsToLoad?t.iconsToLoad=t.iconsToLoad.concat(e).sort():t.iconsToLoad=e,t.iconsQueueFlag||(t.iconsQueueFlag=!0,setTimeout(()=>{t.iconsQueueFlag=!1;const{provider:n,prefix:r}=t,o=t.iconsToLoad;delete t.iconsToLoad;let s;if(!o||!(s=xt(n)))return;s.prepare(n,r,o).forEach(c=>{nr(n,c,l=>{if(typeof l!="object")c.icons.forEach(f=>{t.missing.add(f)});else try{const f=Mt(t,l);if(!f.length)return;const u=t.pendingIcons;u&&f.forEach(d=>{u.delete(d)}),ir(t,l)}catch(f){console.error(f)}cr(t)})})}))}const ke=(t,e)=>{const n=Yo(t,!0,ze()),r=Go(n);if(!r.pending.length){let l=!0;return e&&setTimeout(()=>{l&&e(r.loaded,r.missing,r.pending,ue)}),()=>{l=!1}}const o=Object.create(null),s=[];let i,c;return r.pending.forEach(l=>{const{provider:f,prefix:u}=l;if(u===c&&f===i)return;i=f,c=u,s.push(D(f,u));const d=o[f]||(o[f]=Object.create(null));d[u]||(d[u]=[])}),r.pending.forEach(l=>{const{provider:f,prefix:u,name:d}=l,h=D(f,u),y=h.pendingIcons||(h.pendingIcons=new Set);y.has(d)||(y.add(d),o[f][u].push(d))}),s.forEach(l=>{const{provider:f,prefix:u}=l;o[f][u].length&&ar(l,o[f][u])}),e?ko(e,r,s):ue},lr=t=>new Promise((e,n)=>{const r=typeof t=="string"?k(t,!0):t;if(!r){n(t);return}ke([r||t],o=>{if(o.length&&r){const s=Be(r);if(s){e({...Y,...s});return}}n(t)})});function ur(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in He?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const fr=/[\s,]+/;function dr(t,e){e.split(fr).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function pr(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}function hr(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function gr(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function mr(t){return'url("data:image/svg+xml,'+gr(t)+'")'}const fe={...Ue,inline:!1},yr={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},br={display:"inline-block"},Tt={backgroundColor:"currentColor"},Ye={backgroundColor:"transparent"},de={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},pe={webkitMask:Tt,mask:Tt,background:Ye};for(const t in pe){const e=pe[t];for(const n in de)e[t+n]=de[n]}const ot={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";ot[t+"-flip"]=e,ot[t.slice(0,1)+"-flip"]=e,ot[t+"Flip"]=e});function he(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const ge=(t,e)=>{const n=ur(fe,e),r={...yr},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&dr(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=pr(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=ot[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):fe[a]===void 0&&(r[a]=p)}}}const l=Oo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=Ro(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=hr(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":mr(m),width:he(f.width),height:he(f.height),...br,...y?Tt:Ye,...c},G("span",r)};ze(!0);zo("",Wo);if(typeof document<"u"&&typeof window<"u"){Xe();const t=window;if(t.IconifyPreload!==void 0){const e=t.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof e=="object"&&e!==null&&(e instanceof Array?e:[e]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!Mo(r))&&console.error(n)}catch{console.error(n)}})}if(t.IconifyProviders!==void 0){const e=t.IconifyProviders;if(typeof e=="object"&&e!==null)for(let n in e){const r="IconifyProviders["+n+"] is invalid.";try{const o=e[n];if(typeof o!="object"||!o||o.resources===void 0)continue;Bo(n,o)||console.error(r)}catch{console.error(r)}}}}const vr={...Y,body:""};ct({inheritAttrs:!1,data(){return{iconMounted:!1,counter:0}},mounted(){this._name="",this._loadingIcon=null,this.iconMounted=!0},unmounted(){this.abortLoading()},methods:{abortLoading(){this._loadingIcon&&(this._loadingIcon.abort(),this._loadingIcon=null)},getIcon(t,e){if(typeof t=="object"&&t!==null&&typeof t.body=="string")return this._name="",this.abortLoading(),{data:t};let n;if(typeof t!="string"||(n=k(t,!1,!0))===null)return this.abortLoading(),null;const r=Be(n);if(!r)return(!this._loadingIcon||this._loadingIcon.name!==t)&&(this.abortLoading(),this._name="",r!==null&&(this._loadingIcon={name:t,abort:ke([n],()=>{this.counter++})})),null;this.abortLoading(),this._name!==t&&(this._name=t,e&&e(t));const o=["iconify"];return n.prefix!==""&&o.push("iconify--"+n.prefix),n.provider!==""&&o.push("iconify--"+n.provider),{data:r,classes:o}}},render(){this.counter;const t=this.$attrs,e=this.iconMounted?this.getIcon(t.icon,t.onLoad):null;if(!e)return ge(vr,t);let n=t;return e.classes&&(n={...t,class:(typeof t.class=="string"?t.class+" ":"")+e.classes.join(" ")}),ge({...Y,...e.data},n)}});const wr=["width","height"],Sr=ct({__name:"Icon",props:{name:{type:String,required:!0},size:{type:String,default:""}},async setup(t){var m;let e,n;const r=t,o=nn(),s=sn();(m=s==null?void 0:s.nuxtIcon)!=null&&m.aliases;const i=be("icons",()=>({})),c=bn(!1),l=R(()=>{var a;return(((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.aliases)||{})[r.name]||r.name}),f=R(()=>{var a;return(a=i.value)==null?void 0:a[l.value]}),u=R(()=>o.vueApp.component(l.value)),d=R(()=>{var p;const a=r.size||((p=s.nuxtIcon)==null?void 0:p.size)||"1em";return String(Number(a))===a?`${a}px`:a}),h=R(()=>{var a;return((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.class)??"icon"});async function y(){var a;u.value||(a=i.value)!=null&&a[l.value]||(c.value=!0,i.value[l.value]=await lr(l.value).catch(()=>{}),c.value=!1)}return vn(()=>l.value,y),!u.value&&([e,n]=wn(()=>y()),e=await e,n()),(a,p)=>S(c)?(_(),z("span",{key:0,class:B(S(h)),width:S(d),height:S(d)},null,10,wr)):S(f)?(_(),H(S(xo),{key:1,icon:S(f),class:B(S(h)),width:S(d),height:S(d)},null,8,["icon","class","width","height"])):S(u)?(_(),H(Sn(S(u)),{key:2,class:B(S(h)),width:S(d),height:S(d)},null,8,["class","width","height"])):(_(),z("span",{key:3,class:B(S(h)),style:xn({fontSize:S(d),lineHeight:S(d),width:S(d),height:S(d)})},gt(t.name),7))}});const Ze=Ie(Sr,[["__scopeId","data-v-28b5b508"]]),Rr=Object.freeze(Object.defineProperty({__proto__:null,default:Ze},Symbol.toStringTag,{value:"Module"})),xr={class:"docs-aside-tree"},Ir=["onClick"],Cr={class:"content"},_r={class:"content"},Tr=ct({__name:"DocsAsideTree",props:{links:{type:Array,default:()=>[]},level:{type:Number,default:0},max:{type:Number,default:null},parent:{type:Object,default:null}},setup(t){var f;const e=t,n=ye(),{config:r}=cn(),o=be(`docus-docs-aside-collapse-map-${((f=e.parent)==null?void 0:f._path)||"/"}`,()=>e.level===0?{}:e.links.filter(u=>!!u.children).reduce((u,d)=>(u[d._path]=!0,u),{})),s=u=>n.path===u._path,i=u=>{var d,h,y,m;if(u.children){if(typeof o.value[u._path]<"u")return o.value[u._path];if((d=u==null?void 0:u.aside)!=null&&d.collapsed)return u.aside.collapsed;if(u!=null&&u.collapsed)return u==null?void 0:u.collapsed;if((y=(h=r==null?void 0:r.value)==null?void 0:h.aside)!=null&&y.collapsed)return(m=r.value.aside)==null?void 0:m.collapsed}return!1},c=u=>o.value[u._path]=!i(u),l=R(()=>e.links.some(u=>u.children));return(u,d)=>{const h=Ze,y=on,m=tn;return _(),z("ul",xr,[(_(!0),z(In,null,Cn(t.links,a=>{var p,x,w,b,j;return _(),z("li",{key:a._path,class:B({"has-parent-icon":(p=t.parent)==null?void 0:p.icon,"has-children":t.level>0&&a.children,bordered:t.level>0||!S(l),active:s(a)})},[a.children?(_(),z("button",{key:0,class:"title-collapsible-button",onClick:A=>c(a)},[U("span",Cr,[(x=a==null?void 0:a.navigation)!=null&&x.icon||a.icon?(_(),H(h,{key:0,name:((w=a==null?void 0:a.navigation)==null?void 0:w.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((b=a==null?void 0:a.navigation)==null?void 0:b.title)||a.title||a._path),1)]),U("span",null,[_n(h,{name:i(a)?"lucide:chevrons-up-down":"lucide:chevrons-down-up",class:"collapsible-icon"},null,8,["name"])])],8,Ir)):(_(),H(y,{key:1,to:a.redirect?a.redirect:a._path,class:B(["link",{padded:t.level>0||!S(l),active:s(a)}]),exact:a.exact},{default:Tn(()=>{var A,v,I;return[U("span",_r,[(A=a==null?void 0:a.navigation)!=null&&A.icon||a.icon?(_(),H(h,{key:0,name:((v=a==null?void 0:a.navigation)==null?void 0:v.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((I=a==null?void 0:a.navigation)==null?void 0:I.title)||a.title||a._path),1)])]}),_:2},1032,["to","exact","class"])),(j=a.children)!=null&&j.length&&(t.max===null||t.level+1{e.insertBefore(t,n||null)},remove:t=>{const e=t.parentNode;e&&e.removeChild(t)},createElement:(t,e,n,r)=>{const o=e?N.createElementNS(En,t):N.createElement(t,n?{is:n}:void 0);return t==="select"&&r&&r.multiple!=null&&o.setAttribute("multiple",r.multiple),o},createText:t=>N.createTextNode(t),createComment:t=>N.createComment(t),setText:(t,e)=>{t.nodeValue=e},setElementText:(t,e)=>{t.textContent=e},parentNode:t=>t.parentNode,nextSibling:t=>t.nextSibling,querySelector:t=>N.querySelector(t),setScopeId(t,e){t.setAttribute(e,"")},insertStaticContent(t,e,n,r,o,s){const i=n?n.previousSibling:e.lastChild;if(o&&(o===s||o.nextSibling))for(;e.insertBefore(o.cloneNode(!0),n),!(o===s||!(o=o.nextSibling)););else{zt.innerHTML=r?`${t}`:t;const c=zt.content;if(r){const l=c.firstChild;for(;l.firstChild;)c.appendChild(l.firstChild);c.removeChild(l)}e.insertBefore(c,n)}return[i?i.nextSibling:e.firstChild,n?n.previousSibling:e.lastChild]}};function Mn(t,e,n){const r=t._vtc;r&&(e=(e?[e,...r]:[...r]).join(" ")),e==null?t.removeAttribute("class"):n?t.setAttribute("class",e):t.className=e}function jn(t,e,n){const r=t.style,o=rt(n);if(n&&!o){if(e&&!rt(e))for(const s in e)n[s]==null&&mt(r,s,"");for(const s in n)mt(r,s,n[s])}else{const s=r.display;o?e!==n&&(r.cssText=n):e&&t.removeAttribute("style"),"_vod"in t&&(r.display=s)}}const Bt=/\s*!important$/;function mt(t,e,n){if(it(n))n.forEach(r=>mt(t,e,r));else if(n==null&&(n=""),e.startsWith("--"))t.setProperty(e,n);else{const r=Pn(t,e);Bt.test(n)?t.setProperty(Se(r),n.replace(Bt,""),"important"):t[r]=n}}const Ht=["Webkit","Moz","ms"],ut={};function Pn(t,e){const n=ut[e];if(n)return n;let r=hn(e);if(r!=="filter"&&r in t)return ut[e]=r;r=gn(r);for(let o=0;oft||(zn.then(()=>ft=0),ft=Date.now());function Hn(t,e){const n=r=>{if(!r._vts)r._vts=Date.now();else if(r._vts<=n.attached)return;yn(Un(r,n.value),e,5,[r])};return n.value=t,n.attached=Bn(),n}function Un(t,e){if(it(e)){const n=t.stopImmediatePropagation;return t.stopImmediatePropagation=()=>{n.call(t),t._stopped=!0},e.map(r=>o=>!o._stopped&&r&&r(o))}else return e}const Kt=/^on[a-z]/,qn=(t,e,n,r,o=!1,s,i,c,l)=>{e==="class"?Mn(t,r,o):e==="style"?jn(t,n,r):dn(e)?pn(e)||Dn(t,e,n,r,i):(e[0]==="."?(e=e.slice(1),!0):e[0]==="^"?(e=e.slice(1),!1):Kn(t,e,r,o))?On(t,e,r,s,i,c,l):(e==="true-value"?t._trueValue=r:e==="false-value"&&(t._falseValue=r),Ln(t,e,r,o))};function Kn(t,e,n,r){return r?!!(e==="innerHTML"||e==="textContent"||e in t&&Kt.test(e)&&we(n)):e==="spellcheck"||e==="draggable"||e==="translate"||e==="form"||e==="list"&&t.tagName==="INPUT"||e==="type"&&t.tagName==="TEXTAREA"||Kt.test(e)&&rt(n)?!1:e in t}const $="transition",q="animation",Ce=(t,{slots:e})=>G(ve,Vn(t),e);Ce.displayName="Transition";const _e={name:String,type:String,css:{type:Boolean,default:!0},duration:[String,Number,Object],enterFromClass:String,enterActiveClass:String,enterToClass:String,appearFromClass:String,appearActiveClass:String,appearToClass:String,leaveFromClass:String,leaveActiveClass:String,leaveToClass:String};Ce.props=At({},ve.props,_e);const O=(t,e=[])=>{it(t)?t.forEach(n=>n(...e)):t&&t(...e)},Vt=t=>t?it(t)?t.some(e=>e.length>1):t.length>1:!1;function Vn(t){const e={};for(const g in t)g in _e||(e[g]=t[g]);if(t.css===!1)return e;const{name:n="v",type:r,duration:o,enterFromClass:s=`${n}-enter-from`,enterActiveClass:i=`${n}-enter-active`,enterToClass:c=`${n}-enter-to`,appearFromClass:l=s,appearActiveClass:f=i,appearToClass:u=c,leaveFromClass:d=`${n}-leave-from`,leaveActiveClass:h=`${n}-leave-active`,leaveToClass:y=`${n}-leave-to`}=t,m=Qn(o),a=m&&m[0],p=m&&m[1],{onBeforeEnter:x,onEnter:w,onEnterCancelled:b,onLeave:j,onLeaveCancelled:A,onBeforeAppear:v=x,onAppear:I=w,onAppearCancelled:P=b}=e,E=(g,C,L)=>{F(g,C?u:c),F(g,C?f:i),L&&L()},T=(g,C)=>{g._isLeaving=!1,F(g,d),F(g,y),F(g,h),C&&C()},Nt=g=>(C,L)=>{const Dt=g?I:w,Rt=()=>E(C,g,L);O(Dt,[C,Rt]),Qt(()=>{F(C,g?l:s),M(C,g?u:c),Vt(Dt)||Wt(C,r,a,Rt)})};return At(e,{onBeforeEnter(g){O(x,[g]),M(g,s),M(g,i)},onBeforeAppear(g){O(v,[g]),M(g,l),M(g,f)},onEnter:Nt(!1),onAppear:Nt(!0),onLeave(g,C){g._isLeaving=!0;const L=()=>T(g,C);M(g,d),Jn(),M(g,h),Qt(()=>{g._isLeaving&&(F(g,d),M(g,y),Vt(j)||Wt(g,r,p,L))}),O(j,[g,L])},onEnterCancelled(g){E(g,!1),O(b,[g])},onAppearCancelled(g){E(g,!0),O(P,[g])},onLeaveCancelled(g){T(g),O(A,[g])}})}function Qn(t){if(t==null)return null;if(an(t))return[dt(t.enter),dt(t.leave)];{const e=dt(t);return[e,e]}}function dt(t){return ln(t)}function M(t,e){e.split(/\s+/).forEach(n=>n&&t.classList.add(n)),(t._vtc||(t._vtc=new Set)).add(e)}function F(t,e){e.split(/\s+/).forEach(r=>r&&t.classList.remove(r));const{_vtc:n}=t;n&&(n.delete(e),n.size||(t._vtc=void 0))}function Qt(t){requestAnimationFrame(()=>{requestAnimationFrame(t)})}let Wn=0;function Wt(t,e,n,r){const o=t._endId=++Wn,s=()=>{o===t._endId&&r()};if(n)return setTimeout(s,n);const{type:i,timeout:c,propCount:l}=Gn(t,e);if(!i)return r();const f=i+"end";let u=0;const d=()=>{t.removeEventListener(f,h),s()},h=y=>{y.target===t&&++u>=l&&d()};setTimeout(()=>{u(n[m]||"").split(", "),o=r(`${$}Delay`),s=r(`${$}Duration`),i=Gt(o,s),c=r(`${q}Delay`),l=r(`${q}Duration`),f=Gt(c,l);let u=null,d=0,h=0;e===$?i>0&&(u=$,d=i,h=s.length):e===q?f>0&&(u=q,d=f,h=l.length):(d=Math.max(i,f),u=d>0?i>f?$:q:null,h=u?u===$?s.length:l.length:0);const y=u===$&&/\b(transform|all)(,|$)/.test(r(`${$}Property`).toString());return{type:u,timeout:d,propCount:h,hasTransform:y}}function Gt(t,e){for(;t.lengthJt(n)+Jt(t[r])))}function Jt(t){return Number(t.slice(0,-1).replace(",","."))*1e3}function Jn(){return document.body.offsetHeight}const Xn=["ctrl","shift","alt","meta"],kn={stop:t=>t.stopPropagation(),prevent:t=>t.preventDefault(),self:t=>t.target!==t.currentTarget,ctrl:t=>!t.ctrlKey,shift:t=>!t.shiftKey,alt:t=>!t.altKey,meta:t=>!t.metaKey,left:t=>"button"in t&&t.button!==0,middle:t=>"button"in t&&t.button!==1,right:t=>"button"in t&&t.button!==2,exact:(t,e)=>Xn.some(n=>t[`${n}Key`]&&!e.includes(n))},Pr=(t,e)=>(n,...r)=>{for(let o=0;o{K(t,!1)}):K(t,e))},beforeUnmount(t,{value:e}){K(t,e)}};function K(t,e){t.style.display=e?t._vod:"none"}const Te=At({patchProp:qn},$n);let Q,Xt=!1;function Zn(){return Q||(Q=un(Te))}function to(){return Q=Xt?Q:fn(Te),Xt=!0,Q}const Lr=(...t)=>{const e=Zn().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(!o)return;const s=e._component;!we(s)&&!s.render&&!s.template&&(s.template=o.innerHTML),o.innerHTML="";const i=n(o,!1,o instanceof SVGElement);return o instanceof Element&&(o.removeAttribute("v-cloak"),o.setAttribute("data-v-app","")),i},e},Or=(...t)=>{const e=to().createApp(...t),{mount:n}=e;return e.mount=r=>{const o=Ae(r);if(o)return n(o,!0,o instanceof SVGElement)},e};function Ae(t){return rt(t)?document.querySelector(t):t}const eo=["p","h1","h2","h3","h4","h5","h6","li"];function yt(t,e){return t.type===e||typeof t.type=="object"&&t.type.tag===e||t.tag===e}function Ee(t){return yt(t,"text")||typeof t.children=="string"}function $e(t){return Array.isArray(t.children)||typeof t.children=="string"?t.children:typeof t.children.default=="function"?t.children.default():[]}function bt(t){if(!t)return"";if(Array.isArray(t))return t.map(bt).join("");if(Ee(t))return t.children||t.value;const e=$e(t);return Array.isArray(e)?e.map(bt).join(""):""}function Et(t,e=["p"]){if(Array.isArray(t))return t.flatMap(r=>Et(r,e));let n=t;return e.some(r=>r==="*"||yt(t,r))&&(n=$e(t)||t,!Array.isArray(n)&&eo.some(r=>yt(t,r))&&(n=[n])),n}function Me(t,e=["p"]){return t=Array.isArray(t)?t:[t],e.length?t.flatMap(n=>Me(Et(n,[e[0]]),e.slice(1))).filter(n=>!(Ee(n)&&bt(n).trim()==="")):t}const Fr=t=>en(t,me().public.content.api.baseURL),Nr=()=>({unwrap:Et,flatUnwrap:Me}),Dr=()=>{const{experimental:t}=me().content;if(t.clientDB)return!0;const e=ye().query;return Object.prototype.hasOwnProperty.call(e,"preview")&&!e.preview?!1:!!(e.preview||rn("previewToken").value)},je=Object.freeze({left:0,top:0,width:16,height:16}),Pe=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),$t=Object.freeze({...je,...Pe});Object.freeze({...$t,body:"",hidden:!1});({...je});const Le=Object.freeze({width:null,height:null}),Oe=Object.freeze({...Le,...Pe});function no(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in Le?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const oo=/[\s,]+/;function ro(t,e){e.split(oo).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function so(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}const io=/(-?[0-9.]*[0-9]+[0-9.]*)/g,co=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function kt(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(io);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=co.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const ao=t=>t==="unset"||t==="undefined"||t==="none";function lo(t,e){const n={...$t,...t},r={...Oe,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=kt(d,l/f)):(u=i==="auto"?l:i,d=c===null?kt(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{ao(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const uo=/\sid="(\S+)"/g,fo="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let po=0;function ho(t,e=fo){const n=[];let r;for(;r=uo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(po++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}function go(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function mo(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function yo(t){return'url("data:image/svg+xml,'+mo(t)+'")'}const Yt={...Oe,inline:!1},bo={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},vo={display:"inline-block"},vt={backgroundColor:"currentColor"},Fe={backgroundColor:"transparent"},Zt={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},te={webkitMask:vt,mask:vt,background:Fe};for(const t in te){const e=te[t];for(const n in Zt)e[t+n]=Zt[n]}const tt={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";tt[t+"-flip"]=e,tt[t.slice(0,1)+"-flip"]=e,tt[t+"Flip"]=e});function ee(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const wo=(t,e)=>{const n=no(Yt,e),r={...bo},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&ro(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=so(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=tt[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):Yt[a]===void 0&&(r[a]=p)}}}const l=lo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=ho(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=go(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":yo(m),width:ee(f.width),height:ee(f.height),...vo,...y?vt:Fe,...c},G("span",r)},So=Object.create(null),xo=ct({inheritAttrs:!1,render(){const t=this.$attrs,e=t.icon,n=typeof e=="string"?So[e]:typeof e=="object"?e:null;return n===null||typeof n!="object"||typeof n.body!="string"?this.$slots.default?this.$slots.default():null:wo({...$t,...n},t)}}),W=/^[a-z0-9]+(-[a-z0-9]+)*$/,k=(t,e,n,r="")=>{const o=t.split(":");if(t.slice(0,1)==="@"){if(o.length<2||o.length>3)return null;r=o.shift().slice(1)}if(o.length>3||!o.length)return null;if(o.length>1){const c=o.pop(),l=o.pop(),f={provider:o.length>0?o[0]:r,prefix:l,name:c};return e&&!et(f)?null:f}const s=o[0],i=s.split("-");if(i.length>1){const c={provider:r,prefix:i.shift(),name:i.join("-")};return e&&!et(c)?null:c}if(n&&r===""){const c={provider:r,prefix:"",name:s};return e&&!et(c,n)?null:c}return null},et=(t,e)=>t?!!((t.provider===""||t.provider.match(W))&&(e&&t.prefix===""||t.prefix.match(W))&&t.name.match(W)):!1,Ne=Object.freeze({left:0,top:0,width:16,height:16}),st=Object.freeze({rotate:0,vFlip:!1,hFlip:!1}),Y=Object.freeze({...Ne,...st}),wt=Object.freeze({...Y,body:"",hidden:!1});function Io(t,e){const n={};!t.hFlip!=!e.hFlip&&(n.hFlip=!0),!t.vFlip!=!e.vFlip&&(n.vFlip=!0);const r=((t.rotate||0)+(e.rotate||0))%4;return r&&(n.rotate=r),n}function ne(t,e){const n=Io(t,e);for(const r in wt)r in st?r in t&&!(r in n)&&(n[r]=st[r]):r in e?n[r]=e[r]:r in t&&(n[r]=t[r]);return n}function Co(t,e){const n=t.icons,r=t.aliases||Object.create(null),o=Object.create(null);function s(i){if(n[i])return o[i]=[];if(!(i in o)){o[i]=null;const c=r[i]&&r[i].parent,l=c&&s(c);l&&(o[i]=[c].concat(l))}return o[i]}return(e||Object.keys(n).concat(Object.keys(r))).forEach(s),o}function _o(t,e,n){const r=t.icons,o=t.aliases||Object.create(null);let s={};function i(c){s=ne(r[c]||o[c],s)}return i(e),n.forEach(i),ne(t,s)}function De(t,e){const n=[];if(typeof t!="object"||typeof t.icons!="object")return n;t.not_found instanceof Array&&t.not_found.forEach(o=>{e(o,null),n.push(o)});const r=Co(t);for(const o in r){const s=r[o];s&&(e(o,_o(t,o,s)),n.push(o))}return n}const To={provider:"",aliases:{},not_found:{},...Ne};function pt(t,e){for(const n in e)if(n in t&&typeof t[n]!=typeof e[n])return!1;return!0}function Re(t){if(typeof t!="object"||t===null)return null;const e=t;if(typeof e.prefix!="string"||!t.icons||typeof t.icons!="object"||!pt(t,To))return null;const n=e.icons;for(const o in n){const s=n[o];if(!o.match(W)||typeof s.body!="string"||!pt(s,wt))return null}const r=e.aliases||Object.create(null);for(const o in r){const s=r[o],i=s.parent;if(!o.match(W)||typeof i!="string"||!n[i]&&!r[i]||!pt(s,wt))return null}return e}const oe=Object.create(null);function Ao(t,e){return{provider:t,prefix:e,icons:Object.create(null),missing:new Set}}function D(t,e){const n=oe[t]||(oe[t]=Object.create(null));return n[e]||(n[e]=Ao(t,e))}function Mt(t,e){return Re(e)?De(e,(n,r)=>{r?t.icons[n]=r:t.missing.add(n)}):[]}function Eo(t,e,n){try{if(typeof n.body=="string")return t.icons[e]={...n},!0}catch{}return!1}let J=!1;function ze(t){return typeof t=="boolean"&&(J=t),J}function Be(t){const e=typeof t=="string"?k(t,!0,J):t;if(e){const n=D(e.provider,e.prefix),r=e.name;return n.icons[r]||(n.missing.has(r)?null:void 0)}}function $o(t,e){const n=k(t,!0,J);if(!n)return!1;const r=D(n.provider,n.prefix);return Eo(r,n.name,e)}function Mo(t,e){if(typeof t!="object")return!1;if(typeof e!="string"&&(e=t.provider||""),J&&!e&&!t.prefix){let o=!1;return Re(t)&&(t.prefix="",De(t,(s,i)=>{i&&$o(s,i)&&(o=!0)})),o}const n=t.prefix;if(!et({provider:e,prefix:n,name:"a"}))return!1;const r=D(e,n);return!!Mt(r,t)}const He=Object.freeze({width:null,height:null}),Ue=Object.freeze({...He,...st}),jo=/(-?[0-9.]*[0-9]+[0-9.]*)/g,Po=/^-?[0-9.]*[0-9]+[0-9.]*$/g;function re(t,e,n){if(e===1)return t;if(n=n||100,typeof t=="number")return Math.ceil(t*e*n)/n;if(typeof t!="string")return t;const r=t.split(jo);if(r===null||!r.length)return t;const o=[];let s=r.shift(),i=Po.test(s);for(;;){if(i){const c=parseFloat(s);isNaN(c)?o.push(s):o.push(Math.ceil(c*e*n)/n)}else o.push(s);if(s=r.shift(),s===void 0)return o.join("");i=!i}}const Lo=t=>t==="unset"||t==="undefined"||t==="none";function Oo(t,e){const n={...Y,...t},r={...Ue,...e},o={left:n.left,top:n.top,width:n.width,height:n.height};let s=n.body;[n,r].forEach(m=>{const a=[],p=m.hFlip,x=m.vFlip;let w=m.rotate;p?x?w+=2:(a.push("translate("+(o.width+o.left).toString()+" "+(0-o.top).toString()+")"),a.push("scale(-1 1)"),o.top=o.left=0):x&&(a.push("translate("+(0-o.left).toString()+" "+(o.height+o.top).toString()+")"),a.push("scale(1 -1)"),o.top=o.left=0);let b;switch(w<0&&(w-=Math.floor(w/4)*4),w=w%4,w){case 1:b=o.height/2+o.top,a.unshift("rotate(90 "+b.toString()+" "+b.toString()+")");break;case 2:a.unshift("rotate(180 "+(o.width/2+o.left).toString()+" "+(o.height/2+o.top).toString()+")");break;case 3:b=o.width/2+o.left,a.unshift("rotate(-90 "+b.toString()+" "+b.toString()+")");break}w%2===1&&(o.left!==o.top&&(b=o.left,o.left=o.top,o.top=b),o.width!==o.height&&(b=o.width,o.width=o.height,o.height=b)),a.length&&(s=''+s+"")});const i=r.width,c=r.height,l=o.width,f=o.height;let u,d;i===null?(d=c===null?"1em":c==="auto"?f:c,u=re(d,l/f)):(u=i==="auto"?l:i,d=c===null?re(u,f/l):c==="auto"?f:c);const h={},y=(m,a)=>{Lo(a)||(h[m]=a.toString())};return y("width",u),y("height",d),h.viewBox=o.left.toString()+" "+o.top.toString()+" "+l.toString()+" "+f.toString(),{attributes:h,body:s}}const Fo=/\sid="(\S+)"/g,No="IconifyId"+Date.now().toString(16)+(Math.random()*16777216|0).toString(16);let Do=0;function Ro(t,e=No){const n=[];let r;for(;r=Fo.exec(t);)n.push(r[1]);if(!n.length)return t;const o="suffix"+(Math.random()*16777216|Date.now()).toString(16);return n.forEach(s=>{const i=typeof e=="function"?e(s):e+(Do++).toString(),c=s.replace(/[.*+?^${}()|[\]\\]/g,"\\$&");t=t.replace(new RegExp('([#;"])('+c+')([")]|\\.[a-z])',"g"),"$1"+i+o+"$3")}),t=t.replace(new RegExp(o,"g"),""),t}const St=Object.create(null);function zo(t,e){St[t]=e}function xt(t){return St[t]||St[""]}function jt(t){let e;if(typeof t.resources=="string")e=[t.resources];else if(e=t.resources,!(e instanceof Array)||!e.length)return null;return{resources:e,path:t.path||"/",maxURL:t.maxURL||500,rotate:t.rotate||750,timeout:t.timeout||5e3,random:t.random===!0,index:t.index||0,dataAfterTimeout:t.dataAfterTimeout!==!1}}const Pt=Object.create(null),V=["https://api.simplesvg.com","https://api.unisvg.com"],nt=[];for(;V.length>0;)V.length===1||Math.random()>.5?nt.push(V.shift()):nt.push(V.pop());Pt[""]=jt({resources:["https://api.iconify.design"].concat(nt)});function Bo(t,e){const n=jt(e);return n===null?!1:(Pt[t]=n,!0)}function Lt(t){return Pt[t]}const Ho=()=>{let t;try{if(t=fetch,typeof t=="function")return t}catch{}};let se=Ho();function Uo(t,e){const n=Lt(t);if(!n)return 0;let r;if(!n.maxURL)r=0;else{let o=0;n.resources.forEach(i=>{o=Math.max(o,i.length)});const s=e+".json?icons=";r=n.maxURL-o-n.path.length-s.length}return r}function qo(t){return t===404}const Ko=(t,e,n)=>{const r=[],o=Uo(t,e),s="icons";let i={type:s,provider:t,prefix:e,icons:[]},c=0;return n.forEach((l,f)=>{c+=l.length+1,c>=o&&f>0&&(r.push(i),i={type:s,provider:t,prefix:e,icons:[]},c=l.length),i.icons.push(l)}),r.push(i),r};function Vo(t){if(typeof t=="string"){const e=Lt(t);if(e)return e.path}return"/"}const Qo=(t,e,n)=>{if(!se){n("abort",424);return}let r=Vo(e.provider);switch(e.type){case"icons":{const s=e.prefix,c=e.icons.join(","),l=new URLSearchParams({icons:c});r+=s+".json?"+l.toString();break}case"custom":{const s=e.uri;r+=s.slice(0,1)==="/"?s.slice(1):s;break}default:n("abort",400);return}let o=503;se(t+r).then(s=>{const i=s.status;if(i!==200){setTimeout(()=>{n(qo(i)?"abort":"next",i)});return}return o=501,s.json()}).then(s=>{if(typeof s!="object"||s===null){setTimeout(()=>{s===404?n("abort",s):n("next",o)});return}setTimeout(()=>{n("success",s)})}).catch(()=>{n("next",o)})},Wo={prepare:Ko,send:Qo};function Go(t){const e={loaded:[],missing:[],pending:[]},n=Object.create(null);t.sort((o,s)=>o.provider!==s.provider?o.provider.localeCompare(s.provider):o.prefix!==s.prefix?o.prefix.localeCompare(s.prefix):o.name.localeCompare(s.name));let r={provider:"",prefix:"",name:""};return t.forEach(o=>{if(r.name===o.name&&r.prefix===o.prefix&&r.provider===o.provider)return;r=o;const s=o.provider,i=o.prefix,c=o.name,l=n[s]||(n[s]=Object.create(null)),f=l[i]||(l[i]=D(s,i));let u;c in f.icons?u=e.loaded:i===""||f.missing.has(c)?u=e.missing:u=e.pending;const d={provider:s,prefix:i,name:c};u.push(d)}),e}function qe(t,e){t.forEach(n=>{const r=n.loaderCallbacks;r&&(n.loaderCallbacks=r.filter(o=>o.id!==e))})}function Jo(t){t.pendingCallbacksFlag||(t.pendingCallbacksFlag=!0,setTimeout(()=>{t.pendingCallbacksFlag=!1;const e=t.loaderCallbacks?t.loaderCallbacks.slice(0):[];if(!e.length)return;let n=!1;const r=t.provider,o=t.prefix;e.forEach(s=>{const i=s.icons,c=i.pending.length;i.pending=i.pending.filter(l=>{if(l.prefix!==o)return!0;const f=l.name;if(t.icons[f])i.loaded.push({provider:r,prefix:o,name:f});else if(t.missing.has(f))i.missing.push({provider:r,prefix:o,name:f});else return n=!0,!0;return!1}),i.pending.length!==c&&(n||qe([t],s.id),s.callback(i.loaded.slice(0),i.missing.slice(0),i.pending.slice(0),s.abort))})}))}let Xo=0;function ko(t,e,n){const r=Xo++,o=qe.bind(null,n,r);if(!e.pending.length)return o;const s={id:r,icons:e,callback:t,abort:o};return n.forEach(i=>{(i.loaderCallbacks||(i.loaderCallbacks=[])).push(s)}),o}function Yo(t,e=!0,n=!1){const r=[];return t.forEach(o=>{const s=typeof o=="string"?k(o,e,n):o;s&&r.push(s)}),r}var Zo={resources:[],index:0,timeout:2e3,rotate:750,random:!1,dataAfterTimeout:!1};function tr(t,e,n,r){const o=t.resources.length,s=t.random?Math.floor(Math.random()*o):t.index;let i;if(t.random){let v=t.resources.slice(0);for(i=[];v.length>1;){const I=Math.floor(Math.random()*v.length);i.push(v[I]),v=v.slice(0,I).concat(v.slice(I+1))}i=i.concat(v)}else i=t.resources.slice(s).concat(t.resources.slice(0,s));const c=Date.now();let l="pending",f=0,u,d=null,h=[],y=[];typeof r=="function"&&y.push(r);function m(){d&&(clearTimeout(d),d=null)}function a(){l==="pending"&&(l="aborted"),m(),h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function p(v,I){I&&(y=[]),typeof v=="function"&&y.push(v)}function x(){return{startTime:c,payload:e,status:l,queriesSent:f,queriesPending:h.length,subscribe:p,abort:a}}function w(){l="failed",y.forEach(v=>{v(void 0,u)})}function b(){h.forEach(v=>{v.status==="pending"&&(v.status="aborted")}),h=[]}function j(v,I,P){const E=I!=="success";switch(h=h.filter(T=>T!==v),l){case"pending":break;case"failed":if(E||!t.dataAfterTimeout)return;break;default:return}if(I==="abort"){u=P,w();return}if(E){u=P,h.length||(i.length?A():w());return}if(m(),b(),!t.random){const T=t.resources.indexOf(v.resource);T!==-1&&T!==t.index&&(t.index=T)}l="completed",y.forEach(T=>{T(P)})}function A(){if(l!=="pending")return;m();const v=i.shift();if(v===void 0){if(h.length){d=setTimeout(()=>{m(),l==="pending"&&(b(),w())},t.timeout);return}w();return}const I={status:"pending",resource:v,callback:(P,E)=>{j(I,P,E)}};h.push(I),f++,d=setTimeout(A,t.rotate),n(v,e,I.callback)}return setTimeout(A),x}function Ke(t){const e={...Zo,...t};let n=[];function r(){n=n.filter(c=>c().status==="pending")}function o(c,l,f){const u=tr(e,c,l,(d,h)=>{r(),f&&f(d,h)});return n.push(u),u}function s(c){return n.find(l=>c(l))||null}return{query:o,find:s,setIndex:c=>{e.index=c},getIndex:()=>e.index,cleanup:r}}function ie(){}const ht=Object.create(null);function er(t){if(!ht[t]){const e=Lt(t);if(!e)return;const n=Ke(e),r={config:e,redundancy:n};ht[t]=r}return ht[t]}function nr(t,e,n){let r,o;if(typeof t=="string"){const s=xt(t);if(!s)return n(void 0,424),ie;o=s.send;const i=er(t);i&&(r=i.redundancy)}else{const s=jt(t);if(s){r=Ke(s);const i=t.resources?t.resources[0]:"",c=xt(i);c&&(o=c.send)}}return!r||!o?(n(void 0,424),ie):r.query(e,o,n)().abort}const ce="iconify2",X="iconify",Ve=X+"-count",ae=X+"-version",Qe=36e5,or=168;function It(t,e){try{return t.getItem(e)}catch{}}function Ot(t,e,n){try{return t.setItem(e,n),!0}catch{}}function le(t,e){try{t.removeItem(e)}catch{}}function Ct(t,e){return Ot(t,Ve,e.toString())}function _t(t){return parseInt(It(t,Ve))||0}const at={local:!0,session:!0},We={local:new Set,session:new Set};let Ft=!1;function rr(t){Ft=t}let Z=typeof window>"u"?{}:window;function Ge(t){const e=t+"Storage";try{if(Z&&Z[e]&&typeof Z[e].length=="number")return Z[e]}catch{}at[t]=!1}function Je(t,e){const n=Ge(t);if(!n)return;const r=It(n,ae);if(r!==ce){if(r){const c=_t(n);for(let l=0;l{const l=X+c.toString(),f=It(n,l);if(typeof f=="string"){try{const u=JSON.parse(f);if(typeof u=="object"&&typeof u.cached=="number"&&u.cached>o&&typeof u.provider=="string"&&typeof u.data=="object"&&typeof u.data.prefix=="string"&&e(u,c))return!0}catch{}le(n,l)}};let i=_t(n);for(let c=i-1;c>=0;c--)s(c)||(c===i-1?(i--,Ct(n,i)):We[t].add(c))}function Xe(){if(!Ft){rr(!0);for(const t in at)Je(t,e=>{const n=e.data,r=e.provider,o=n.prefix,s=D(r,o);if(!Mt(s,n).length)return!1;const i=n.lastModified||-1;return s.lastModifiedCached=s.lastModifiedCached?Math.min(s.lastModifiedCached,i):i,!0})}}function sr(t,e){const n=t.lastModifiedCached;if(n&&n>=e)return n===e;if(t.lastModifiedCached=e,n)for(const r in at)Je(r,o=>{const s=o.data;return o.provider!==t.provider||s.prefix!==t.prefix||s.lastModified===e});return!0}function ir(t,e){Ft||Xe();function n(r){let o;if(!at[r]||!(o=Ge(r)))return;const s=We[r];let i;if(s.size)s.delete(i=Array.from(s).shift());else if(i=_t(o),!Ct(o,i+1))return;const c={cached:Math.floor(Date.now()/Qe),provider:t.provider,data:e};return Ot(o,X+i.toString(),JSON.stringify(c))}e.lastModified&&!sr(t,e.lastModified)||Object.keys(e.icons).length&&(e.not_found&&(e=Object.assign({},e),delete e.not_found),n("local")||n("session"))}function ue(){}function cr(t){t.iconsLoaderFlag||(t.iconsLoaderFlag=!0,setTimeout(()=>{t.iconsLoaderFlag=!1,Jo(t)}))}function ar(t,e){t.iconsToLoad?t.iconsToLoad=t.iconsToLoad.concat(e).sort():t.iconsToLoad=e,t.iconsQueueFlag||(t.iconsQueueFlag=!0,setTimeout(()=>{t.iconsQueueFlag=!1;const{provider:n,prefix:r}=t,o=t.iconsToLoad;delete t.iconsToLoad;let s;if(!o||!(s=xt(n)))return;s.prepare(n,r,o).forEach(c=>{nr(n,c,l=>{if(typeof l!="object")c.icons.forEach(f=>{t.missing.add(f)});else try{const f=Mt(t,l);if(!f.length)return;const u=t.pendingIcons;u&&f.forEach(d=>{u.delete(d)}),ir(t,l)}catch(f){console.error(f)}cr(t)})})}))}const ke=(t,e)=>{const n=Yo(t,!0,ze()),r=Go(n);if(!r.pending.length){let l=!0;return e&&setTimeout(()=>{l&&e(r.loaded,r.missing,r.pending,ue)}),()=>{l=!1}}const o=Object.create(null),s=[];let i,c;return r.pending.forEach(l=>{const{provider:f,prefix:u}=l;if(u===c&&f===i)return;i=f,c=u,s.push(D(f,u));const d=o[f]||(o[f]=Object.create(null));d[u]||(d[u]=[])}),r.pending.forEach(l=>{const{provider:f,prefix:u,name:d}=l,h=D(f,u),y=h.pendingIcons||(h.pendingIcons=new Set);y.has(d)||(y.add(d),o[f][u].push(d))}),s.forEach(l=>{const{provider:f,prefix:u}=l;o[f][u].length&&ar(l,o[f][u])}),e?ko(e,r,s):ue},lr=t=>new Promise((e,n)=>{const r=typeof t=="string"?k(t,!0):t;if(!r){n(t);return}ke([r||t],o=>{if(o.length&&r){const s=Be(r);if(s){e({...Y,...s});return}}n(t)})});function ur(t,e){const n={...t};for(const r in e){const o=e[r],s=typeof o;r in He?(o===null||o&&(s==="string"||s==="number"))&&(n[r]=o):s===typeof n[r]&&(n[r]=r==="rotate"?o%4:o)}return n}const fr=/[\s,]+/;function dr(t,e){e.split(fr).forEach(n=>{switch(n.trim()){case"horizontal":t.hFlip=!0;break;case"vertical":t.vFlip=!0;break}})}function pr(t,e=0){const n=t.replace(/^-?[0-9.]*/,"");function r(o){for(;o<0;)o+=4;return o%4}if(n===""){const o=parseInt(t);return isNaN(o)?0:r(o)}else if(n!==t){let o=0;switch(n){case"%":o=25;break;case"deg":o=90}if(o){let s=parseFloat(t.slice(0,t.length-n.length));return isNaN(s)?0:(s=s/o,s%1===0?r(s):0)}}return e}function hr(t,e){let n=t.indexOf("xlink:")===-1?"":' xmlns:xlink="http://www.w3.org/1999/xlink"';for(const r in e)n+=" "+r+'="'+e[r]+'"';return'"+t+""}function gr(t){return t.replace(/"/g,"'").replace(/%/g,"%25").replace(/#/g,"%23").replace(//g,"%3E").replace(/\s+/g," ")}function mr(t){return'url("data:image/svg+xml,'+gr(t)+'")'}const fe={...Ue,inline:!1},yr={xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink","aria-hidden":!0,role:"img"},br={display:"inline-block"},Tt={backgroundColor:"currentColor"},Ye={backgroundColor:"transparent"},de={Image:"var(--svg)",Repeat:"no-repeat",Size:"100% 100%"},pe={webkitMask:Tt,mask:Tt,background:Ye};for(const t in pe){const e=pe[t];for(const n in de)e[t+n]=de[n]}const ot={};["horizontal","vertical"].forEach(t=>{const e=t.slice(0,1)+"Flip";ot[t+"-flip"]=e,ot[t.slice(0,1)+"-flip"]=e,ot[t+"Flip"]=e});function he(t){return t+(t.match(/^[-0-9.]+$/)?"px":"")}const ge=(t,e)=>{const n=ur(fe,e),r={...yr},o=e.mode||"svg",s={},i=e.style,c=typeof i=="object"&&!(i instanceof Array)?i:{};for(let a in e){const p=e[a];if(p!==void 0)switch(a){case"icon":case"style":case"onLoad":case"mode":break;case"inline":case"hFlip":case"vFlip":n[a]=p===!0||p==="true"||p===1;break;case"flip":typeof p=="string"&&dr(n,p);break;case"color":s.color=p;break;case"rotate":typeof p=="string"?n[a]=pr(p):typeof p=="number"&&(n[a]=p);break;case"ariaHidden":case"aria-hidden":p!==!0&&p!=="true"&&delete r["aria-hidden"];break;default:{const x=ot[a];x?(p===!0||p==="true"||p===1)&&(n[x]=!0):fe[a]===void 0&&(r[a]=p)}}}const l=Oo(t,n),f=l.attributes;if(n.inline&&(s.verticalAlign="-0.125em"),o==="svg"){r.style={...s,...c},Object.assign(r,f);let a=0,p=e.id;return typeof p=="string"&&(p=p.replace(/-/g,"_")),r.innerHTML=Ro(l.body,p?()=>p+"ID"+a++:"iconifyVue"),G("svg",r)}const{body:u,width:d,height:h}=t,y=o==="mask"||(o==="bg"?!1:u.indexOf("currentColor")!==-1),m=hr(u,{...f,width:d+"",height:h+""});return r.style={...s,"--svg":mr(m),width:he(f.width),height:he(f.height),...br,...y?Tt:Ye,...c},G("span",r)};ze(!0);zo("",Wo);if(typeof document<"u"&&typeof window<"u"){Xe();const t=window;if(t.IconifyPreload!==void 0){const e=t.IconifyPreload,n="Invalid IconifyPreload syntax.";typeof e=="object"&&e!==null&&(e instanceof Array?e:[e]).forEach(r=>{try{(typeof r!="object"||r===null||r instanceof Array||typeof r.icons!="object"||typeof r.prefix!="string"||!Mo(r))&&console.error(n)}catch{console.error(n)}})}if(t.IconifyProviders!==void 0){const e=t.IconifyProviders;if(typeof e=="object"&&e!==null)for(let n in e){const r="IconifyProviders["+n+"] is invalid.";try{const o=e[n];if(typeof o!="object"||!o||o.resources===void 0)continue;Bo(n,o)||console.error(r)}catch{console.error(r)}}}}const vr={...Y,body:""};ct({inheritAttrs:!1,data(){return{iconMounted:!1,counter:0}},mounted(){this._name="",this._loadingIcon=null,this.iconMounted=!0},unmounted(){this.abortLoading()},methods:{abortLoading(){this._loadingIcon&&(this._loadingIcon.abort(),this._loadingIcon=null)},getIcon(t,e){if(typeof t=="object"&&t!==null&&typeof t.body=="string")return this._name="",this.abortLoading(),{data:t};let n;if(typeof t!="string"||(n=k(t,!1,!0))===null)return this.abortLoading(),null;const r=Be(n);if(!r)return(!this._loadingIcon||this._loadingIcon.name!==t)&&(this.abortLoading(),this._name="",r!==null&&(this._loadingIcon={name:t,abort:ke([n],()=>{this.counter++})})),null;this.abortLoading(),this._name!==t&&(this._name=t,e&&e(t));const o=["iconify"];return n.prefix!==""&&o.push("iconify--"+n.prefix),n.provider!==""&&o.push("iconify--"+n.provider),{data:r,classes:o}}},render(){this.counter;const t=this.$attrs,e=this.iconMounted?this.getIcon(t.icon,t.onLoad):null;if(!e)return ge(vr,t);let n=t;return e.classes&&(n={...t,class:(typeof t.class=="string"?t.class+" ":"")+e.classes.join(" ")}),ge({...Y,...e.data},n)}});const wr=["width","height"],Sr=ct({__name:"Icon",props:{name:{type:String,required:!0},size:{type:String,default:""}},async setup(t){var m;let e,n;const r=t,o=nn(),s=sn();(m=s==null?void 0:s.nuxtIcon)!=null&&m.aliases;const i=be("icons",()=>({})),c=bn(!1),l=R(()=>{var a;return(((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.aliases)||{})[r.name]||r.name}),f=R(()=>{var a;return(a=i.value)==null?void 0:a[l.value]}),u=R(()=>o.vueApp.component(l.value)),d=R(()=>{var p;const a=r.size||((p=s.nuxtIcon)==null?void 0:p.size)||"1em";return String(Number(a))===a?`${a}px`:a}),h=R(()=>{var a;return((a=s==null?void 0:s.nuxtIcon)==null?void 0:a.class)??"icon"});async function y(){var a;u.value||(a=i.value)!=null&&a[l.value]||(c.value=!0,i.value[l.value]=await lr(l.value).catch(()=>{}),c.value=!1)}return vn(()=>l.value,y),!u.value&&([e,n]=wn(()=>y()),e=await e,n()),(a,p)=>S(c)?(_(),z("span",{key:0,class:B(S(h)),width:S(d),height:S(d)},null,10,wr)):S(f)?(_(),H(S(xo),{key:1,icon:S(f),class:B(S(h)),width:S(d),height:S(d)},null,8,["icon","class","width","height"])):S(u)?(_(),H(Sn(S(u)),{key:2,class:B(S(h)),width:S(d),height:S(d)},null,8,["class","width","height"])):(_(),z("span",{key:3,class:B(S(h)),style:xn({fontSize:S(d),lineHeight:S(d),width:S(d),height:S(d)})},gt(t.name),7))}});const Ze=Ie(Sr,[["__scopeId","data-v-28b5b508"]]),Rr=Object.freeze(Object.defineProperty({__proto__:null,default:Ze},Symbol.toStringTag,{value:"Module"})),xr={class:"docs-aside-tree"},Ir=["onClick"],Cr={class:"content"},_r={class:"content"},Tr=ct({__name:"DocsAsideTree",props:{links:{type:Array,default:()=>[]},level:{type:Number,default:0},max:{type:Number,default:null},parent:{type:Object,default:null}},setup(t){var f;const e=t,n=ye(),{config:r}=cn(),o=be(`docus-docs-aside-collapse-map-${((f=e.parent)==null?void 0:f._path)||"/"}`,()=>e.level===0?{}:e.links.filter(u=>!!u.children).reduce((u,d)=>(u[d._path]=!0,u),{})),s=u=>n.path===u._path,i=u=>{var d,h,y,m;if(u.children){if(typeof o.value[u._path]<"u")return o.value[u._path];if((d=u==null?void 0:u.aside)!=null&&d.collapsed)return u.aside.collapsed;if(u!=null&&u.collapsed)return u==null?void 0:u.collapsed;if((y=(h=r==null?void 0:r.value)==null?void 0:h.aside)!=null&&y.collapsed)return(m=r.value.aside)==null?void 0:m.collapsed}return!1},c=u=>o.value[u._path]=!i(u),l=R(()=>e.links.some(u=>u.children));return(u,d)=>{const h=Ze,y=on,m=tn;return _(),z("ul",xr,[(_(!0),z(In,null,Cn(t.links,a=>{var p,x,w,b,j;return _(),z("li",{key:a._path,class:B({"has-parent-icon":(p=t.parent)==null?void 0:p.icon,"has-children":t.level>0&&a.children,bordered:t.level>0||!S(l),active:s(a)})},[a.children?(_(),z("button",{key:0,class:"title-collapsible-button",onClick:A=>c(a)},[U("span",Cr,[(x=a==null?void 0:a.navigation)!=null&&x.icon||a.icon?(_(),H(h,{key:0,name:((w=a==null?void 0:a.navigation)==null?void 0:w.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((b=a==null?void 0:a.navigation)==null?void 0:b.title)||a.title||a._path),1)]),U("span",null,[_n(h,{name:i(a)?"lucide:chevrons-up-down":"lucide:chevrons-down-up",class:"collapsible-icon"},null,8,["name"])])],8,Ir)):(_(),H(y,{key:1,to:a.redirect?a.redirect:a._path,class:B(["link",{padded:t.level>0||!S(l),active:s(a)}]),exact:a.exact},{default:Tn(()=>{var A,v,I;return[U("span",_r,[(A=a==null?void 0:a.navigation)!=null&&A.icon||a.icon?(_(),H(h,{key:0,name:((v=a==null?void 0:a.navigation)==null?void 0:v.icon)||a.icon,class:"icon"},null,8,["name"])):lt("",!0),U("span",null,gt(((I=a==null?void 0:a.navigation)==null?void 0:I.title)||a.title||a._path),1)])]}),_:2},1032,["to","exact","class"])),(j=a.children)!=null&&j.length&&(t.max===null||t.level+1(b("data-v-c70c0152"),o=o(),v(),o),E={key:0,class:"docs-page-bottom"},V={key:0,class:"edit-link"},w=B(()=>r("span",null," Edit this page on GitHub ",-1)),G={key:1},L=C({__name:"DocsPageBottom",setup(o){const{page:e}=D(),{config:d}=I();return(P,T)=>{var _,p,m;const u=g,f=x,l=k;return t(e)?(s(),n("div",E,[(p=(_=t(d))==null?void 0:_.github)!=null&&p.edit?(s(),n("div",V,[a(u,{name:"uil:edit"}),a(l,{page:t(e)},{default:i(({url:h})=>[a(f,{to:h},{default:i(()=>[w]),_:2},1032,["to"])]),_:1},8,["page"])])):c("",!0),(m=t(e))!=null&&m.mtime?(s(),n("span",G,[N("Updated on "),r("b",null,S(new Intl.DateTimeFormat("en-US").format(Date.parse(t(e).mtime))),1)])):c("",!0)])):c("",!0)}}}),K=y(L,[["__scopeId","data-v-c70c0152"]]);export{K as default}; +import{_ as g}from"./DocsAsideTree.4387e6ea.js";import x from"./ProseA.a0c295ec.js";import{_ as k}from"./EditOnLink.vue.23cee876.js";import{d as D,c as I}from"./useDocus.b9e6b105.js";import{f as C,u as t,q as s,x as n,G as a,C as i,D as c,L as N,E as r,J as S,M as b,N as v}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as y}from"./Container.f1017aa2.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";/* empty css */const B=o=>(b("data-v-c70c0152"),o=o(),v(),o),E={key:0,class:"docs-page-bottom"},V={key:0,class:"edit-link"},w=B(()=>r("span",null," Edit this page on GitHub ",-1)),G={key:1},L=C({__name:"DocsPageBottom",setup(o){const{page:e}=D(),{config:d}=I();return(P,T)=>{var _,p,m;const u=g,f=x,l=k;return t(e)?(s(),n("div",E,[(p=(_=t(d))==null?void 0:_.github)!=null&&p.edit?(s(),n("div",V,[a(u,{name:"uil:edit"}),a(l,{page:t(e)},{default:i(({url:h})=>[a(f,{to:h},{default:i(()=>[w]),_:2},1032,["to"])]),_:1},8,["page"])])):c("",!0),(m=t(e))!=null&&m.mtime?(s(),n("span",G,[N("Updated on "),r("b",null,S(new Intl.DateTimeFormat("en-US").format(Date.parse(t(e).mtime))),1)])):c("",!0)])):c("",!0)}}}),K=y(L,[["__scopeId","data-v-c70c0152"]]);export{K as default}; diff --git a/docs/.output/public/_nuxt/DocsPageLayout.d352cf62.js b/docs/.output/public/_nuxt/DocsPageLayout.4b0475f7.js similarity index 79% rename from docs/.output/public/_nuxt/DocsPageLayout.d352cf62.js rename to docs/.output/public/_nuxt/DocsPageLayout.4b0475f7.js index 9f58f538..a55309e7 100644 --- a/docs/.output/public/_nuxt/DocsPageLayout.d352cf62.js +++ b/docs/.output/public/_nuxt/DocsPageLayout.4b0475f7.js @@ -1 +1 @@ -import G from"./DocsAside.08a0955d.js";import J from"./ProseCodeInline.dca1a534.js";import R from"./Alert.41cb256b.js";import U from"./DocsPageBottom.b38ecc43.js";import K from"./DocsPrevNext.2b9ea48f.js";import{_ as Q}from"./DocsAsideTree.b95e55e0.js";import W from"./DocsToc.55846f28.js";import{b as X,a as Y}from"./Container.f1017aa2.js";import{d as Z,c as oo,u as to}from"./useDocus.41ab1ca5.js";import{l as eo}from"./app.config.f41ab05d.js";import{f as no,h as d,r as I,O as so,o as ao,q as i,B as $,C as g,u as e,x,G as r,D as y,E as p,P as ro,L as k,J as co,F as lo,y as f,M as io,N as po}from"./runtime-core.esm-bundler.6894272a.js";/* empty css *//* empty css */import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";import"./ContentSlot.c5067a4f.js";/* empty css */import"./ProseA.a4d07cc8.js";/* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css *//* empty css */import"./DocsTocLinks.644c91ee.js";/* empty css *//* empty css */const uo=u=>(io("data-v-64504251"),u=u(),po(),u),_o={key:1,class:"toc"},mo={class:"toc-wrapper"},fo=uo(()=>p("span",{class:"title"},"Table of Contents",-1)),vo=no({__name:"DocsPageLayout",setup(u){const{page:s,navigation:V}=Z(),{config:v}=oo(),A=eo(),M=(o,t=!0)=>{var n;return typeof((n=s.value)==null?void 0:n[o])<"u"?s.value[o]:t},T=d(()=>{var o,t,n;return!s.value||((n=(t=(o=s.value)==null?void 0:o.body)==null?void 0:t.children)==null?void 0:n.length)>0}),C=d(()=>{var o,t,n,_,m;return((o=s.value)==null?void 0:o.toc)!==!1&&((m=(_=(n=(t=s.value)==null?void 0:t.body)==null?void 0:n.toc)==null?void 0:_.links)==null?void 0:m.length)>=2}),E=d(()=>{var o,t;return((o=s.value)==null?void 0:o.aside)!==!1&&((t=V.value)==null?void 0:t.length)>0}),F=d(()=>M("bottom",!0)),c=I(!1),a=I(null),h=()=>A.path.split("/").slice(0,2).join("/"),l=to("asideScroll",()=>{var o;return{parentPath:h(),scrollTop:((o=a.value)==null?void 0:o.scrollTop)||0}});function P(){a.value&&(a.value.scrollHeight===0&&setTimeout(P,0),a.value.scrollTop=l.value.scrollTop)}return so(()=>{l.value.parentPath!==h()?(l.value.parentPath=h(),l.value.scrollTop=0):P()}),ao(()=>{a.value&&(l.value.scrollTop=a.value.scrollTop)}),(o,t)=>{var S,b,B,D,N,w;const n=G,_=J,m=R,H=U,L=K,O=Q,j=W,q=X;return i(),$(q,{fluid:(b=(S=e(v))==null?void 0:S.main)==null?void 0:b.fluid,padded:(D=(B=e(v))==null?void 0:B.main)==null?void 0:D.padded,class:f(["docs-page-content",{fluid:(w=(N=e(v))==null?void 0:N.main)==null?void 0:w.fluid}])},{default:g(()=>[e(E)?(i(),x("aside",{key:0,ref_key:"asideNav",ref:a,class:"aside-nav"},[r(n,{class:"app-aside"})],512)):y("",!0),p("article",{class:f(["page-body",{"with-toc":e(C)}])},[e(T)?ro(o.$slots,"default",{key:0},void 0,!0):(i(),$(m,{key:1,type:"info"},{default:g(()=>[k(" Start writing in "),r(_,null,{default:g(()=>[k("content/"+co(e(s)._file),1)]),_:1}),k(" to see this page taking shape. ")]),_:1})),e(T)&&e(s)&&e(F)?(i(),x(lo,{key:2},[r(H),r(L)],64)):y("",!0)],2),e(C)?(i(),x("div",_o,[p("div",mo,[p("button",{onClick:t[0]||(t[0]=z=>c.value=!e(c))},[fo,r(O,{name:"heroicons-outline:chevron-right",class:f(["icon",[e(c)&&"rotate"]])},null,8,["class"])]),p("div",{class:f(["docs-toc-wrapper",[e(c)&&"opened"]])},[r(j,{onMove:t[1]||(t[1]=z=>c.value=!1)})],2)])])):y("",!0)]),_:3},8,["fluid","padded","class"])}}}),qo=Y(vo,[["__scopeId","data-v-64504251"]]);export{qo as default}; +import G from"./DocsAside.1abe9757.js";import J from"./ProseCodeInline.dca1a534.js";import R from"./Alert.95097db0.js";import U from"./DocsPageBottom.dd73c7ef.js";import K from"./DocsPrevNext.2107234e.js";import{_ as Q}from"./DocsAsideTree.4387e6ea.js";import W from"./DocsToc.3ed2837f.js";import{b as X,a as Y}from"./Container.f1017aa2.js";import{d as Z,c as oo,u as to}from"./useDocus.b9e6b105.js";import{l as eo}from"./app.config.88c4fc0b.js";import{f as no,h as d,r as I,O as so,o as ao,q as i,B as $,C as g,u as e,x,G as r,D as y,E as p,P as ro,L as k,J as co,F as lo,y as f,M as io,N as po}from"./runtime-core.esm-bundler.6894272a.js";/* empty css *//* empty css */import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";import"./ContentSlot.811112da.js";/* empty css */import"./ProseA.a0c295ec.js";/* empty css */import"./EditOnLink.vue.23cee876.js";/* empty css *//* empty css */import"./DocsTocLinks.ff067be8.js";/* empty css *//* empty css */const uo=u=>(io("data-v-64504251"),u=u(),po(),u),_o={key:1,class:"toc"},mo={class:"toc-wrapper"},fo=uo(()=>p("span",{class:"title"},"Table of Contents",-1)),vo=no({__name:"DocsPageLayout",setup(u){const{page:s,navigation:V}=Z(),{config:v}=oo(),A=eo(),M=(o,t=!0)=>{var n;return typeof((n=s.value)==null?void 0:n[o])<"u"?s.value[o]:t},T=d(()=>{var o,t,n;return!s.value||((n=(t=(o=s.value)==null?void 0:o.body)==null?void 0:t.children)==null?void 0:n.length)>0}),C=d(()=>{var o,t,n,_,m;return((o=s.value)==null?void 0:o.toc)!==!1&&((m=(_=(n=(t=s.value)==null?void 0:t.body)==null?void 0:n.toc)==null?void 0:_.links)==null?void 0:m.length)>=2}),E=d(()=>{var o,t;return((o=s.value)==null?void 0:o.aside)!==!1&&((t=V.value)==null?void 0:t.length)>0}),F=d(()=>M("bottom",!0)),c=I(!1),a=I(null),h=()=>A.path.split("/").slice(0,2).join("/"),l=to("asideScroll",()=>{var o;return{parentPath:h(),scrollTop:((o=a.value)==null?void 0:o.scrollTop)||0}});function P(){a.value&&(a.value.scrollHeight===0&&setTimeout(P,0),a.value.scrollTop=l.value.scrollTop)}return so(()=>{l.value.parentPath!==h()?(l.value.parentPath=h(),l.value.scrollTop=0):P()}),ao(()=>{a.value&&(l.value.scrollTop=a.value.scrollTop)}),(o,t)=>{var S,b,B,D,N,w;const n=G,_=J,m=R,H=U,L=K,O=Q,j=W,q=X;return i(),$(q,{fluid:(b=(S=e(v))==null?void 0:S.main)==null?void 0:b.fluid,padded:(D=(B=e(v))==null?void 0:B.main)==null?void 0:D.padded,class:f(["docs-page-content",{fluid:(w=(N=e(v))==null?void 0:N.main)==null?void 0:w.fluid}])},{default:g(()=>[e(E)?(i(),x("aside",{key:0,ref_key:"asideNav",ref:a,class:"aside-nav"},[r(n,{class:"app-aside"})],512)):y("",!0),p("article",{class:f(["page-body",{"with-toc":e(C)}])},[e(T)?ro(o.$slots,"default",{key:0},void 0,!0):(i(),$(m,{key:1,type:"info"},{default:g(()=>[k(" Start writing in "),r(_,null,{default:g(()=>[k("content/"+co(e(s)._file),1)]),_:1}),k(" to see this page taking shape. ")]),_:1})),e(T)&&e(s)&&e(F)?(i(),x(lo,{key:2},[r(H),r(L)],64)):y("",!0)],2),e(C)?(i(),x("div",_o,[p("div",mo,[p("button",{onClick:t[0]||(t[0]=z=>c.value=!e(c))},[fo,r(O,{name:"heroicons-outline:chevron-right",class:f(["icon",[e(c)&&"rotate"]])},null,8,["class"])]),p("div",{class:f(["docs-toc-wrapper",[e(c)&&"opened"]])},[r(j,{onMove:t[1]||(t[1]=z=>c.value=!1)})],2)])])):y("",!0)]),_:3},8,["fluid","padded","class"])}}}),qo=Y(vo,[["__scopeId","data-v-64504251"]]);export{qo as default}; diff --git a/docs/.output/public/_nuxt/DocsPrevNext.2b9ea48f.js b/docs/.output/public/_nuxt/DocsPrevNext.2107234e.js similarity index 82% rename from docs/.output/public/_nuxt/DocsPrevNext.2b9ea48f.js rename to docs/.output/public/_nuxt/DocsPrevNext.2107234e.js index 3481e082..d8ef5774 100644 --- a/docs/.output/public/_nuxt/DocsPrevNext.2b9ea48f.js +++ b/docs/.output/public/_nuxt/DocsPrevNext.2107234e.js @@ -1 +1 @@ -import{_ as v}from"./DocsAsideTree.b95e55e0.js";import{_ as y}from"./app.config.f41ab05d.js";import{d as k,b as C}from"./useDocus.41ab1ca5.js";import{u as g}from"./index.d2b0cb5e.js";import{f as w,u as t,q as r,x as l,B as m,C as d,G as u,E as o,J as c,D as h}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";const N={key:0,class:"docs-prev-next"},D={class:"wrapper"},V={class:"directory"},E={class:"title"},F={key:1},I={class:"wrapper"},P={class:"directory"},b={class:"title"},j=w({__name:"DocsPrevNext",setup(q){const{prev:s,next:n,navigation:f}=k(),{navDirFromPath:x}=C(),p=_=>{const a=x(_._path,f.value||[]);if(a&&a[0])return a[0]._path;{const e=_.split("/");return(e.length>1?e[e.length-2]:"").split("-").map(g).join(" ")}};return(_,a)=>{const e=v,i=y;return t(s)||t(n)?(r(),l("div",N,[t(s)?(r(),m(i,{key:0,to:t(s)._path,class:"prev"},{default:d(()=>[u(e,{name:"heroicons-outline:arrow-sm-left",class:"icon"}),o("div",D,[o("span",V,c(p(t(s)._path)),1),o("span",E,c(t(s).title),1)])]),_:1},8,["to"])):(r(),l("span",F)),t(n)?(r(),m(i,{key:2,to:t(n)._path,class:"next"},{default:d(()=>[o("div",I,[o("span",P,c(p(t(n)._path)),1),o("span",b,c(t(n).title),1)]),u(e,{name:"heroicons-outline:arrow-sm-right",class:"icon"})]),_:1},8,["to"])):h("",!0)])):h("",!0)}}}),K=B(j,[["__scopeId","data-v-c087c434"]]);export{K as default}; +import{_ as v}from"./DocsAsideTree.4387e6ea.js";import{_ as y}from"./app.config.88c4fc0b.js";import{d as k,b as C}from"./useDocus.b9e6b105.js";import{u as g}from"./index.d2b0cb5e.js";import{f as w,u as t,q as r,x as l,B as m,C as d,G as u,E as o,J as c,D as h}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as B}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";const N={key:0,class:"docs-prev-next"},D={class:"wrapper"},V={class:"directory"},E={class:"title"},F={key:1},I={class:"wrapper"},P={class:"directory"},b={class:"title"},j=w({__name:"DocsPrevNext",setup(q){const{prev:s,next:n,navigation:f}=k(),{navDirFromPath:x}=C(),p=_=>{const a=x(_._path,f.value||[]);if(a&&a[0])return a[0]._path;{const e=_.split("/");return(e.length>1?e[e.length-2]:"").split("-").map(g).join(" ")}};return(_,a)=>{const e=v,i=y;return t(s)||t(n)?(r(),l("div",N,[t(s)?(r(),m(i,{key:0,to:t(s)._path,class:"prev"},{default:d(()=>[u(e,{name:"heroicons-outline:arrow-sm-left",class:"icon"}),o("div",D,[o("span",V,c(p(t(s)._path)),1),o("span",E,c(t(s).title),1)])]),_:1},8,["to"])):(r(),l("span",F)),t(n)?(r(),m(i,{key:2,to:t(n)._path,class:"next"},{default:d(()=>[o("div",I,[o("span",P,c(p(t(n)._path)),1),o("span",b,c(t(n).title),1)]),u(e,{name:"heroicons-outline:arrow-sm-right",class:"icon"})]),_:1},8,["to"])):h("",!0)])):h("",!0)}}}),K=B(j,[["__scopeId","data-v-c087c434"]]);export{K as default}; diff --git a/docs/.output/public/_nuxt/DocsToc.55846f28.js b/docs/.output/public/_nuxt/DocsToc.3ed2837f.js similarity index 73% rename from docs/.output/public/_nuxt/DocsToc.55846f28.js rename to docs/.output/public/_nuxt/DocsToc.3ed2837f.js index a12be8a2..7527a3d7 100644 --- a/docs/.output/public/_nuxt/DocsToc.55846f28.js +++ b/docs/.output/public/_nuxt/DocsToc.3ed2837f.js @@ -1 +1 @@ -import i from"./DocsTocLinks.644c91ee.js";import{d}from"./useDocus.41ab1ca5.js";import{f as l,q as c,x as a,u as p,F as u,G as f,D as k,M as v,N as x,E as r}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as h}from"./Container.f1017aa2.js";/* empty css */import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";const C=o=>(v("data-v-d4e4405c"),o=o(),x(),o),I={class:"docs-toc"},N=C(()=>r("div",{class:"docs-toc-title"},[r("span",null,"Table of Contents")],-1)),B=l({__name:"DocsToc",emits:["move"],setup(o,{emit:m}){const{toc:t}=d();return(D,e)=>{var s,n;const _=i;return c(),a("div",I,[(n=(s=p(t))==null?void 0:s.links)!=null&&n.length?(c(),a(u,{key:0},[N,f(_,{links:p(t).links,onMove:e[0]||(e[0]=S=>m("move"))},null,8,["links"])],64)):k("",!0)])}}}),G=h(B,[["__scopeId","data-v-d4e4405c"]]);export{G as default}; +import i from"./DocsTocLinks.ff067be8.js";import{d}from"./useDocus.b9e6b105.js";import{f as l,q as c,x as a,u as p,F as u,G as f,D as k,M as v,N as x,E as r}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as h}from"./Container.f1017aa2.js";/* empty css */import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";const C=o=>(v("data-v-d4e4405c"),o=o(),x(),o),I={class:"docs-toc"},N=C(()=>r("div",{class:"docs-toc-title"},[r("span",null,"Table of Contents")],-1)),B=l({__name:"DocsToc",emits:["move"],setup(o,{emit:m}){const{toc:t}=d();return(D,e)=>{var s,n;const _=i;return c(),a("div",I,[(n=(s=p(t))==null?void 0:s.links)!=null&&n.length?(c(),a(u,{key:0},[N,f(_,{links:p(t).links,onMove:e[0]||(e[0]=S=>m("move"))},null,8,["links"])],64)):k("",!0)])}}}),G=h(B,[["__scopeId","data-v-d4e4405c"]]);export{G as default}; diff --git a/docs/.output/public/_nuxt/DocsTocLinks.644c91ee.js b/docs/.output/public/_nuxt/DocsTocLinks.ff067be8.js similarity index 85% rename from docs/.output/public/_nuxt/DocsTocLinks.644c91ee.js rename to docs/.output/public/_nuxt/DocsTocLinks.ff067be8.js index 783e6a3a..0ffd74b6 100644 --- a/docs/.output/public/_nuxt/DocsTocLinks.644c91ee.js +++ b/docs/.output/public/_nuxt/DocsTocLinks.ff067be8.js @@ -1 +1 @@ -/* empty css */import{a as f}from"./Container.f1017aa2.js";import{i as h}from"./app.config.f41ab05d.js";import{a as v}from"./DocsAsideTree.b95e55e0.js";import{r as d,a as _,af as g,o as y,f as k,q as r,x as m,F as x,A as B,y as p,E as b,J as A,u as C,B as H,D as S}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const q=()=>{const n=d(),s=d([]),c=d([]),a=e=>e.forEach(t=>{const u=t.target.id;t.isIntersecting?s.value.push(u):s.value=s.value.filter(l=>l!==u)}),i=e=>e.forEach(t=>{n.value.observe(t)});return _(s,(e,t)=>{e.length===0?c.value=t:c.value=e},{deep:!0}),g(()=>n.value=new IntersectionObserver(a)),y(()=>{var e;return(e=n.value)==null?void 0:e.disconnect()}),{visibleHeadings:s,activeHeadings:c,updateHeadings:i}},D={class:"docs-toc-links"},E=["href","onClick"],T=k({__name:"DocsTocLinks",props:{links:{type:Array,default:()=>[]}},emits:["move"],setup(n,{emit:s}){const c=h(),{activeHeadings:a,updateHeadings:i}=q();setTimeout(()=>{i([...document.querySelectorAll(".document-driven-page h1, .docus-content h1"),...document.querySelectorAll(".document-driven-page h2, .docus-content h2"),...document.querySelectorAll(".document-driven-page h3, .docus-content h3"),...document.querySelectorAll(".document-driven-page h4, .docus-content h4")])},300);function e(t){c.push(`#${t}`),s("move",t)}return(t,u)=>{const l=$;return r(),m("ul",D,[(r(!0),m(x,null,B(n.links,o=>(r(),m("li",{key:o.text,class:p([`depth-${o.depth}`])},[b("a",{href:`#${o.id}`,class:p([C(a).includes(o.id)&&"active"]),onClick:v(w=>e(o.id),["prevent"])},A(o.text),11,E),o.children?(r(),H(l,{key:0,links:o.children},null,8,["links"])):S("",!0)],2))),128))])}}}),$=f(T,[["__scopeId","data-v-8d68a659"]]);export{$ as default}; +/* empty css */import{a as f}from"./Container.f1017aa2.js";import{i as h}from"./app.config.88c4fc0b.js";import{a as v}from"./DocsAsideTree.4387e6ea.js";import{r as d,a as _,af as g,o as y,f as k,q as r,x as m,F as x,A as B,y as p,E as b,J as A,u as C,B as H,D as S}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const q=()=>{const n=d(),s=d([]),c=d([]),a=e=>e.forEach(t=>{const u=t.target.id;t.isIntersecting?s.value.push(u):s.value=s.value.filter(l=>l!==u)}),i=e=>e.forEach(t=>{n.value.observe(t)});return _(s,(e,t)=>{e.length===0?c.value=t:c.value=e},{deep:!0}),g(()=>n.value=new IntersectionObserver(a)),y(()=>{var e;return(e=n.value)==null?void 0:e.disconnect()}),{visibleHeadings:s,activeHeadings:c,updateHeadings:i}},D={class:"docs-toc-links"},E=["href","onClick"],T=k({__name:"DocsTocLinks",props:{links:{type:Array,default:()=>[]}},emits:["move"],setup(n,{emit:s}){const c=h(),{activeHeadings:a,updateHeadings:i}=q();setTimeout(()=>{i([...document.querySelectorAll(".document-driven-page h1, .docus-content h1"),...document.querySelectorAll(".document-driven-page h2, .docus-content h2"),...document.querySelectorAll(".document-driven-page h3, .docus-content h3"),...document.querySelectorAll(".document-driven-page h4, .docus-content h4")])},300);function e(t){c.push(`#${t}`),s("move",t)}return(t,u)=>{const l=$;return r(),m("ul",D,[(r(!0),m(x,null,B(n.links,o=>(r(),m("li",{key:o.text,class:p([`depth-${o.depth}`])},[b("a",{href:`#${o.id}`,class:p([C(a).includes(o.id)&&"active"]),onClick:v(w=>e(o.id),["prevent"])},A(o.text),11,E),o.children?(r(),H(l,{key:0,links:o.children},null,8,["links"])):S("",!0)],2))),128))])}}}),$=f(T,[["__scopeId","data-v-8d68a659"]]);export{$ as default}; diff --git a/docs/.output/public/_nuxt/DocumentDrivenNotFound.66d77c6e.js b/docs/.output/public/_nuxt/DocumentDrivenNotFound.d294ae47.js similarity index 75% rename from docs/.output/public/_nuxt/DocumentDrivenNotFound.66d77c6e.js rename to docs/.output/public/_nuxt/DocumentDrivenNotFound.d294ae47.js index b64185ba..4b1387de 100644 --- a/docs/.output/public/_nuxt/DocumentDrivenNotFound.66d77c6e.js +++ b/docs/.output/public/_nuxt/DocumentDrivenNotFound.d294ae47.js @@ -1 +1 @@ -import s from"./ButtonLink.91883881.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import{q as a,x as i,E as o,G as r,C as _,L as p,M as d,N as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ContentSlot.c5067a4f.js";/* empty css */const l={},e=t=>(d("data-v-ab67d04f"),t=t(),m(),t),u={class:"document-driven-not-found not-prose"},f=e(()=>o("p",null," 404 ",-1)),h={class:"content"},x=e(()=>o("div",{class:"text-section"},[o("h1",null," Not Found "),o("p",null," This is not the page you're looking for. ")],-1)),v={class:"button-section"};function k(t,N){const n=s;return a(),i("div",u,[o("main",null,[f,o("div",h,[x,o("div",v,[r(n,{href:"/",size:"large",variant:"primary"},{default:_(()=>[p(" Go back home ")]),_:1})])])])])}const L=c(l,[["render",k],["__scopeId","data-v-ab67d04f"]]);export{L as default}; +import s from"./ButtonLink.e542a711.js";/* empty css */import{a as c}from"./Container.f1017aa2.js";import{q as a,x as i,E as o,G as r,C as _,L as p,M as d,N as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./ContentSlot.811112da.js";/* empty css */const l={},e=t=>(d("data-v-ab67d04f"),t=t(),m(),t),u={class:"document-driven-not-found not-prose"},f=e(()=>o("p",null," 404 ",-1)),h={class:"content"},x=e(()=>o("div",{class:"text-section"},[o("h1",null," Not Found "),o("p",null," This is not the page you're looking for. ")],-1)),v={class:"button-section"};function k(t,N){const n=s;return a(),i("div",u,[o("main",null,[f,o("div",h,[x,o("div",v,[r(n,{href:"/",size:"large",variant:"primary"},{default:_(()=>[p(" Go back home ")]),_:1})])])])])}const L=c(l,[["render",k],["__scopeId","data-v-ab67d04f"]]);export{L as default}; diff --git a/docs/.output/public/_nuxt/EditOnLink.77af6984.js b/docs/.output/public/_nuxt/EditOnLink.77af6984.js deleted file mode 100644 index 227ab3bb..00000000 --- a/docs/.output/public/_nuxt/EditOnLink.77af6984.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./EditOnLink.vue.1d2292f2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./useDocus.41ab1ca5.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/EditOnLink.ca577bd0.js b/docs/.output/public/_nuxt/EditOnLink.ca577bd0.js new file mode 100644 index 00000000..20367e9c --- /dev/null +++ b/docs/.output/public/_nuxt/EditOnLink.ca577bd0.js @@ -0,0 +1 @@ +import{_ as o}from"./EditOnLink.vue.23cee876.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./useDocus.b9e6b105.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/EditOnLink.vue.1d2292f2.js b/docs/.output/public/_nuxt/EditOnLink.vue.23cee876.js similarity index 94% rename from docs/.output/public/_nuxt/EditOnLink.vue.1d2292f2.js rename to docs/.output/public/_nuxt/EditOnLink.vue.23cee876.js index e2aa6e66..f5504bcd 100644 --- a/docs/.output/public/_nuxt/EditOnLink.vue.1d2292f2.js +++ b/docs/.output/public/_nuxt/EditOnLink.vue.23cee876.js @@ -1 +1 @@ -import{j as m}from"./app.config.f41ab05d.js";import{e as a}from"./useDocus.41ab1ca5.js";import{f as y,h as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";const _=y({props:{owner:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.owner},required:!1},repo:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.repo},required:!1},branch:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.branch},required:!1},dir:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:()=>{var e,t,r;return((r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir)||"content"}},edit:{type:Boolean,required:!1,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.edit}}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=c(()=>{var s,h;let{repo:n,owner:u,branch:d,contentDir:f}=e,l="";if((h=(s=a())==null?void 0:s.public)!=null&&h.content){let i;const{sources:b}=a().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){i=b[g];break}(i==null?void 0:i.driver)==="github"&&(n=i.repo||e.repo||"",u=i.owner||e.owner||"",d=i.branch||e.branch||"main",f=i.dir||e.contentDir||"",l=i.prefix||"")}return{repo:n,owner:u,branch:d,contentDir:f,prefix:l}}),r=c(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=c(()=>{var u;const n=[];return(u=e==null?void 0:e.page)!=null&&u._path?(t.value.contentDir&&n.push(t.value.contentDir),n.push(e.page._file.substring(t.value.prefix.length)),n):(e.dir&&n.push(e.dir),e.source&&n.push(e.source),n)});return{url:c(()=>{var u;const n=[r.value];return e.edit?n.push("edit"):n.push("tree"),n.push(((u=t==null?void 0:t.value)==null?void 0:u.branch)||"",...o.value),n.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,r=p();return(o=r==null?void 0:r.default)==null?void 0:o.call(r,{url:t})}});export{_}; +import{j as m}from"./app.config.88c4fc0b.js";import{e as a}from"./useDocus.b9e6b105.js";import{f as y,h as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";const _=y({props:{owner:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.owner},required:!1},repo:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.repo},required:!1},branch:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.branch},required:!1},dir:{type:String,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:()=>{var e,t,r;return((r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.dir)||"content"}},edit:{type:Boolean,required:!1,default:()=>{var e,t,r;return(r=(t=(e=a())==null?void 0:e.docus)==null?void 0:t.github)==null?void 0:r.edit}}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=c(()=>{var s,h;let{repo:n,owner:u,branch:d,contentDir:f}=e,l="";if((h=(s=a())==null?void 0:s.public)!=null&&h.content){let i;const{sources:b}=a().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){i=b[g];break}(i==null?void 0:i.driver)==="github"&&(n=i.repo||e.repo||"",u=i.owner||e.owner||"",d=i.branch||e.branch||"main",f=i.dir||e.contentDir||"",l=i.prefix||"")}return{repo:n,owner:u,branch:d,contentDir:f,prefix:l}}),r=c(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=c(()=>{var u;const n=[];return(u=e==null?void 0:e.page)!=null&&u._path?(t.value.contentDir&&n.push(t.value.contentDir),n.push(e.page._file.substring(t.value.prefix.length)),n):(e.dir&&n.push(e.dir),e.source&&n.push(e.source),n)});return{url:c(()=>{var u;const n=[r.value];return e.edit?n.push("edit"):n.push("tree"),n.push(((u=t==null?void 0:t.value)==null?void 0:u.branch)||"",...o.value),n.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,r=p();return(o=r==null?void 0:r.default)==null?void 0:o.call(r,{url:t})}});export{_}; diff --git a/docs/.output/public/_nuxt/ExampleTheTitle.aab4e6ec.js b/docs/.output/public/_nuxt/ExampleTheTitle.aab4e6ec.js new file mode 100644 index 00000000..423cc23c --- /dev/null +++ b/docs/.output/public/_nuxt/ExampleTheTitle.aab4e6ec.js @@ -0,0 +1 @@ +import e from"./ContentSlot.811112da.js";import{a as r}from"./Container.f1017aa2.js";import{q as s,x as n,G as c}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const a={},m={class:"text-4xl"};function p(t,i){const o=e;return s(),n("h1",m,[c(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])])}const B=r(a,[["render",p]]);export{B as default}; diff --git a/docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js b/docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js deleted file mode 100644 index c1d94241..00000000 --- a/docs/.output/public/_nuxt/ExampleTheTitle.f00d8fad.js +++ /dev/null @@ -1 +0,0 @@ -import e from"./ContentSlot.c5067a4f.js";import{a as r}from"./Container.f1017aa2.js";import{q as s,x as n,G as c}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const a={},m={class:"text-4xl"};function p(t,i){const o=e;return s(),n("h1",m,[c(o,{use:t.$slots.default,unwrap:"p"},null,8,["use"])])}const B=r(a,[["render",p]]);export{B as default}; diff --git a/docs/.output/public/_nuxt/GithubCommits.35c65eac.js b/docs/.output/public/_nuxt/GithubCommits.a31447d4.js similarity index 60% rename from docs/.output/public/_nuxt/GithubCommits.35c65eac.js rename to docs/.output/public/_nuxt/GithubCommits.a31447d4.js index 4ce1effa..26865efd 100644 --- a/docs/.output/public/_nuxt/GithubCommits.35c65eac.js +++ b/docs/.output/public/_nuxt/GithubCommits.a31447d4.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as i}from"./asyncData.7c06b2d5.js";import{h as a}from"./entry.f3791b9c.js";import{u as s}from"./useGithub.1972ce55.js";import{f as u,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchCommits:m}=s(),{data:o,pending:t,refresh:e}=await i(`github-commits-${a(r.query)}`,()=>m(r.query));return{commits:o,pending:t,refresh:e}},render({commits:r,pending:m,refresh:o}){var e;const t=p();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{commits:r,pending:m,refresh:o})}});export{G as default}; +import"./app.config.88c4fc0b.js";import{u as i}from"./asyncData.45fd3bd9.js";import{h as a}from"./entry.c31835cb.js";import{u as s}from"./useGithub.0ae0bb61.js";import{f as u,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchCommits:m}=s(),{data:o,pending:t,refresh:e}=await i(`github-commits-${a(r.query)}`,()=>m(r.query));return{commits:o,pending:t,refresh:e}},render({commits:r,pending:m,refresh:o}){var e;const t=p();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{commits:r,pending:m,refresh:o})}});export{G as default}; diff --git a/docs/.output/public/_nuxt/GithubContributors.9ddddad6.js b/docs/.output/public/_nuxt/GithubContributors.2435a600.js similarity index 61% rename from docs/.output/public/_nuxt/GithubContributors.9ddddad6.js rename to docs/.output/public/_nuxt/GithubContributors.2435a600.js index 072a7a0b..789c7456 100644 --- a/docs/.output/public/_nuxt/GithubContributors.9ddddad6.js +++ b/docs/.output/public/_nuxt/GithubContributors.2435a600.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u}from"./asyncData.7c06b2d5.js";import{h as a}from"./entry.f3791b9c.js";import{u as n}from"./useGithub.1972ce55.js";import{f as s,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=s({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchContributors:o}=n(),{data:i,refresh:t,pending:e}=await u(`github-contributors-${a(r.query)}`,()=>o(r.query));return{contributors:i,refresh:t,pending:e}},render({contributors:r,refresh:o,pending:i}){var e;const t=m();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{contributors:r,refresh:o,pending:i})}});export{G as default}; +import"./app.config.88c4fc0b.js";import{u}from"./asyncData.45fd3bd9.js";import{h as a}from"./entry.c31835cb.js";import{u as n}from"./useGithub.0ae0bb61.js";import{f as s,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const G=s({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchContributors:o}=n(),{data:i,refresh:t,pending:e}=await u(`github-contributors-${a(r.query)}`,()=>o(r.query));return{contributors:i,refresh:t,pending:e}},render({contributors:r,refresh:o,pending:i}){var e;const t=m();return(e=t==null?void 0:t.default)==null?void 0:e.call(t,{contributors:r,refresh:o,pending:i})}});export{G as default}; diff --git a/docs/.output/public/_nuxt/GithubFileContributors.1ad6f7bf.js b/docs/.output/public/_nuxt/GithubFileContributors.41f6cd9d.js similarity index 64% rename from docs/.output/public/_nuxt/GithubFileContributors.1ad6f7bf.js rename to docs/.output/public/_nuxt/GithubFileContributors.41f6cd9d.js index e76cb42f..7211c1fa 100644 --- a/docs/.output/public/_nuxt/GithubFileContributors.1ad6f7bf.js +++ b/docs/.output/public/_nuxt/GithubFileContributors.41f6cd9d.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as a}from"./asyncData.7c06b2d5.js";import{h as s}from"./entry.f3791b9c.js";import{u as n}from"./useGithub.1972ce55.js";import{f as m,t as f,a as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const j=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(e){const o=f(e.query,"source"),{fetchFileContributors:i}=n();c(o,()=>{r&&r()});const{data:t,refresh:r,pending:u}=await a(`github-file-contributors-${s(e.query)}`,()=>i(e.query));return{contributors:t,refresh:r,pending:u}},render({contributors:e,refresh:o,pending:i}){var r;const t=p();return(r=t==null?void 0:t.default)==null?void 0:r.call(t,{contributors:e,refresh:o,pending:i})}});export{j as default}; +import"./app.config.88c4fc0b.js";import{u as a}from"./asyncData.45fd3bd9.js";import{h as s}from"./entry.c31835cb.js";import{u as n}from"./useGithub.0ae0bb61.js";import{f as m,t as f,a as c,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const j=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(e){const o=f(e.query,"source"),{fetchFileContributors:i}=n();c(o,()=>{r&&r()});const{data:t,refresh:r,pending:u}=await a(`github-file-contributors-${s(e.query)}`,()=>i(e.query));return{contributors:t,refresh:r,pending:u}},render({contributors:e,refresh:o,pending:i}){var r;const t=p();return(r=t==null?void 0:t.default)==null?void 0:r.call(t,{contributors:e,refresh:o,pending:i})}});export{j as default}; diff --git a/docs/.output/public/_nuxt/GithubLastRelease.a4aeb30e.js b/docs/.output/public/_nuxt/GithubLastRelease.79db9f48.js similarity index 61% rename from docs/.output/public/_nuxt/GithubLastRelease.a4aeb30e.js rename to docs/.output/public/_nuxt/GithubLastRelease.79db9f48.js index 4a7c091d..1a67735c 100644 --- a/docs/.output/public/_nuxt/GithubLastRelease.a4aeb30e.js +++ b/docs/.output/public/_nuxt/GithubLastRelease.79db9f48.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as o}from"./asyncData.7c06b2d5.js";import{h as i}from"./entry.f3791b9c.js";import{u}from"./useGithub.1972ce55.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const L=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchLastRelease:a}=u(),{data:s,refresh:e,pending:r}=await o(`github-last-release-${i(t.query)}`,()=>a(t.query));return{release:s,refresh:e,pending:r}},render({release:t,refresh:a,pending:s}){var r;const e=p();return(r=e==null?void 0:e.default)==null?void 0:r.call(e,{release:t,refresh:a,pending:s})}});export{L as default}; +import"./app.config.88c4fc0b.js";import{u as o}from"./asyncData.45fd3bd9.js";import{h as i}from"./entry.c31835cb.js";import{u}from"./useGithub.0ae0bb61.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const L=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchLastRelease:a}=u(),{data:s,refresh:e,pending:r}=await o(`github-last-release-${i(t.query)}`,()=>a(t.query));return{release:s,refresh:e,pending:r}},render({release:t,refresh:a,pending:s}){var r;const e=p();return(r=e==null?void 0:e.default)==null?void 0:r.call(e,{release:t,refresh:a,pending:s})}});export{L as default}; diff --git a/docs/.output/public/_nuxt/GithubLink.6cd695ea.js b/docs/.output/public/_nuxt/GithubLink.2353077b.js similarity index 96% rename from docs/.output/public/_nuxt/GithubLink.6cd695ea.js rename to docs/.output/public/_nuxt/GithubLink.2353077b.js index b4e819d8..4274c3b0 100644 --- a/docs/.output/public/_nuxt/GithubLink.6cd695ea.js +++ b/docs/.output/public/_nuxt/GithubLink.2353077b.js @@ -1 +1 @@ -import{f as u,j as m}from"./app.config.f41ab05d.js";import{f as y,h as f,ae as v}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";const D=y({props:{owner:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.owner},required:!1},repo:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.repo},required:!1},branch:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.branch},required:!1},dir:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:"content"},edit:{type:Boolean,required:!1,default:!0}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=f(()=>{var h,s;let{repo:r,owner:a,branch:c,contentDir:l}=e,d="";if((s=(h=u())==null?void 0:h.public)!=null&&s.content){let n;const{sources:b}=u().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){n=b[g];break}(n==null?void 0:n.driver)==="github"&&(r=n.repo||e.repo||"",a=n.owner||e.owner||"",c=n.branch||e.branch||"main",l=n.dir||e.contentDir||"",d=n.prefix||"")}return{repo:r,owner:a,branch:c,contentDir:l,prefix:d}}),i=f(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=f(()=>{var a;const r=[];return(a=e==null?void 0:e.page)!=null&&a._path?(t.value.contentDir&&r.push(t.value.contentDir),r.push(e.page._file.substring(t.value.prefix.length)),r):(e.dir&&r.push(e.dir),e.source&&r.push(e.source),r)});return{url:f(()=>{const r=[i.value];return e.edit?r.push("edit"):r.push("tree"),r.push(t.value.branch,...o.value),r.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,i=v();return(o=i==null?void 0:i.default)==null?void 0:o.call(i,{url:t})}});export{D as default}; +import{b as u,j as m}from"./app.config.88c4fc0b.js";import{f as y,h as f,ae as v}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";const D=y({props:{owner:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.owner},required:!1},repo:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.repo},required:!1},branch:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.branch},required:!1},dir:{type:String,default:()=>{var e,t;return(t=(e=u())==null?void 0:e.github)==null?void 0:t.dir},required:!1},source:{type:String,required:!1,default:void 0},page:{type:Object,required:!1,default:void 0},contentDir:{type:String,required:!1,default:"content"},edit:{type:Boolean,required:!1,default:!0}},setup(e){if(!e.owner||!e.repo||!e.branch)throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`.");const t=f(()=>{var h,s;let{repo:r,owner:a,branch:c,contentDir:l}=e,d="";if((s=(h=u())==null?void 0:h.public)!=null&&s.content){let n;const{sources:b}=u().public.content;for(const g in b||[])if(e.page._id.startsWith(g)){n=b[g];break}(n==null?void 0:n.driver)==="github"&&(r=n.repo||e.repo||"",a=n.owner||e.owner||"",c=n.branch||e.branch||"main",l=n.dir||e.contentDir||"",d=n.prefix||"")}return{repo:r,owner:a,branch:c,contentDir:l,prefix:d}}),i=f(()=>m("https://github.com",`${t.value.owner}/${t.value.repo}`)),o=f(()=>{var a;const r=[];return(a=e==null?void 0:e.page)!=null&&a._path?(t.value.contentDir&&r.push(t.value.contentDir),r.push(e.page._file.substring(t.value.prefix.length)),r):(e.dir&&r.push(e.dir),e.source&&r.push(e.source),r)});return{url:f(()=>{const r=[i.value];return e.edit?r.push("edit"):r.push("tree"),r.push(t.value.branch,...o.value),r.filter(Boolean).join("/")})}},render(e){var o;const{url:t}=e,i=v();return(o=i==null?void 0:i.default)==null?void 0:o.call(i,{url:t})}});export{D as default}; diff --git a/docs/.output/public/_nuxt/GithubReadme.5eafd6e1.js b/docs/.output/public/_nuxt/GithubReadme.cec09318.js similarity index 60% rename from docs/.output/public/_nuxt/GithubReadme.5eafd6e1.js rename to docs/.output/public/_nuxt/GithubReadme.cec09318.js index 048bdc62..dc7fcd0d 100644 --- a/docs/.output/public/_nuxt/GithubReadme.5eafd6e1.js +++ b/docs/.output/public/_nuxt/GithubReadme.cec09318.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as o}from"./asyncData.7c06b2d5.js";import{h as i}from"./entry.f3791b9c.js";import{u}from"./useGithub.1972ce55.js";import{f as p,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=p({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReadme:a}=u(),{data:m,refresh:e,pending:t}=await o(`github-readme-${i(r.query)}`,()=>a(r.query));return{readme:m,refresh:e,pending:t}},render({readme:r,refresh:a,pending:m}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{readme:r,refresh:a,pending:m})}});export{R as default}; +import"./app.config.88c4fc0b.js";import{u as o}from"./asyncData.45fd3bd9.js";import{h as i}from"./entry.c31835cb.js";import{u}from"./useGithub.0ae0bb61.js";import{f as p,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=p({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReadme:a}=u(),{data:m,refresh:e,pending:t}=await o(`github-readme-${i(r.query)}`,()=>a(r.query));return{readme:m,refresh:e,pending:t}},render({readme:r,refresh:a,pending:m}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{readme:r,refresh:a,pending:m})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/GithubRelease.d892113d.js b/docs/.output/public/_nuxt/GithubRelease.5c4f9c85.js similarity index 62% rename from docs/.output/public/_nuxt/GithubRelease.d892113d.js rename to docs/.output/public/_nuxt/GithubRelease.5c4f9c85.js index c96cd72e..2fac4343 100644 --- a/docs/.output/public/_nuxt/GithubRelease.d892113d.js +++ b/docs/.output/public/_nuxt/GithubRelease.5c4f9c85.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as i}from"./asyncData.7c06b2d5.js";import{h as o}from"./entry.f3791b9c.js";import{u as s}from"./useGithub.1972ce55.js";import{f as m,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchRelease:a}=s();if(!r.query.tag)return;const{data:u,refresh:e,pending:t}=await i(`github-release-${o(r.query)}`,()=>a(r.query));return{release:u,refresh:e,pending:t}},render({release:r,refresh:a,pending:u}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{release:r,refresh:a,pending:u})}});export{R as default}; +import"./app.config.88c4fc0b.js";import{u as i}from"./asyncData.45fd3bd9.js";import{h as o}from"./entry.c31835cb.js";import{u as s}from"./useGithub.0ae0bb61.js";import{f as m,ae as n}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchRelease:a}=s();if(!r.query.tag)return;const{data:u,refresh:e,pending:t}=await i(`github-release-${o(r.query)}`,()=>a(r.query));return{release:u,refresh:e,pending:t}},render({release:r,refresh:a,pending:u}){var t;const e=n();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{release:r,refresh:a,pending:u})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/GithubReleases.05c52708.js b/docs/.output/public/_nuxt/GithubReleases.adf0483e.js similarity index 60% rename from docs/.output/public/_nuxt/GithubReleases.05c52708.js rename to docs/.output/public/_nuxt/GithubReleases.adf0483e.js index bd6fab9c..d64bc559 100644 --- a/docs/.output/public/_nuxt/GithubReleases.05c52708.js +++ b/docs/.output/public/_nuxt/GithubReleases.adf0483e.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as o}from"./asyncData.7c06b2d5.js";import{h as i}from"./entry.f3791b9c.js";import{u}from"./useGithub.1972ce55.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReleases:a}=u(),{data:s,refresh:e,pending:t}=await o(`github-releases-${i(r.query)}`,()=>a(r.query));return{releases:s,refresh:e,pending:t}},render({releases:r,refresh:a,pending:s}){var t;const e=p();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{releases:r,refresh:a,pending:s})}});export{R as default}; +import"./app.config.88c4fc0b.js";import{u as o}from"./asyncData.45fd3bd9.js";import{h as i}from"./entry.c31835cb.js";import{u}from"./useGithub.0ae0bb61.js";import{f as m,ae as p}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=m({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(r){const{fetchReleases:a}=u(),{data:s,refresh:e,pending:t}=await o(`github-releases-${i(r.query)}`,()=>a(r.query));return{releases:s,refresh:e,pending:t}},render({releases:r,refresh:a,pending:s}){var t;const e=p();return(t=e==null?void 0:e.default)==null?void 0:t.call(e,{releases:r,refresh:a,pending:s})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/GithubRepository.345038c7.js b/docs/.output/public/_nuxt/GithubRepository.a7e8d415.js similarity index 61% rename from docs/.output/public/_nuxt/GithubRepository.345038c7.js rename to docs/.output/public/_nuxt/GithubRepository.a7e8d415.js index 748bbc7a..901a6487 100644 --- a/docs/.output/public/_nuxt/GithubRepository.345038c7.js +++ b/docs/.output/public/_nuxt/GithubRepository.a7e8d415.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{u as p}from"./asyncData.7c06b2d5.js";import{h as a}from"./entry.f3791b9c.js";import{u as s}from"./useGithub.1972ce55.js";import{f as u,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchRepository:o}=s(),{data:i,refresh:r,pending:e}=await p(`github-repository-${a(t.query)}`,()=>o(t.query));return{repository:i,refresh:r,pending:e}},render({repository:t,refresh:o,pending:i}){var e;const r=m();return(e=r==null?void 0:r.default)==null?void 0:e.call(r,{repository:t,refresh:o,pending:i})}});export{R as default}; +import"./app.config.88c4fc0b.js";import{u as p}from"./asyncData.45fd3bd9.js";import{h as a}from"./entry.c31835cb.js";import{u as s}from"./useGithub.0ae0bb61.js";import{f as u,ae as m}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./query.c3f7607a.js";const R=u({props:{query:{type:Object,required:!1,default:()=>({})}},async setup(t){const{fetchRepository:o}=s(),{data:i,refresh:r,pending:e}=await p(`github-repository-${a(t.query)}`,()=>o(t.query));return{repository:i,refresh:r,pending:e}},render({repository:t,refresh:o,pending:i}){var e;const r=m();return(e=r==null?void 0:r.default)==null?void 0:e.call(r,{repository:t,refresh:o,pending:i})}});export{R as default}; diff --git a/docs/.output/public/_nuxt/HeroAnnouncement.15bcf84c.js b/docs/.output/public/_nuxt/HeroAnnouncement.92c907fa.js similarity index 64% rename from docs/.output/public/_nuxt/HeroAnnouncement.15bcf84c.js rename to docs/.output/public/_nuxt/HeroAnnouncement.92c907fa.js index 8e9dc225..312fff15 100644 --- a/docs/.output/public/_nuxt/HeroAnnouncement.15bcf84c.js +++ b/docs/.output/public/_nuxt/HeroAnnouncement.92c907fa.js @@ -1 +1 @@ -import{_ as n}from"./DocsAsideTree.b95e55e0.js";import{_ as a}from"./app.config.f41ab05d.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as r,B as c,C as _,G as p,E as m,J as i}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./index.d2b0cb5e.js";const l={__name:"HeroAnnouncement",props:{to:{type:String,default:""},label:{type:String,default:""}},setup(t){return(u,d)=>{const o=n,e=a;return r(),c(e,{to:t.to,class:"link"},{default:_(()=>[p(o,{name:"heroicons-solid:sparkles",class:"icon"}),m("span",null,i(t.label),1)]),_:1},8,["to"])}}},N=s(l,[["__scopeId","data-v-d15db3c4"]]);export{N as default}; +import{_ as n}from"./DocsAsideTree.4387e6ea.js";import{_ as a}from"./app.config.88c4fc0b.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as r,B as c,C as _,G as p,E as m,J as i}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./index.d2b0cb5e.js";const l={__name:"HeroAnnouncement",props:{to:{type:String,default:""},label:{type:String,default:""}},setup(t){return(u,d)=>{const o=n,e=a;return r(),c(e,{to:t.to,class:"link"},{default:_(()=>[p(o,{name:"heroicons-solid:sparkles",class:"icon"}),m("span",null,i(t.label),1)]),_:1},8,["to"])}}},N=s(l,[["__scopeId","data-v-d15db3c4"]]);export{N as default}; diff --git a/docs/.output/public/_nuxt/List.63030545.js b/docs/.output/public/_nuxt/List.63030545.js deleted file mode 100644 index 53ab44ea..00000000 --- a/docs/.output/public/_nuxt/List.63030545.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./List.vue.98cb48bf.js";import{a as t}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./ContentSlot.c5067a4f.js";const e=t(o,[["__scopeId","data-v-f4e70c29"]]);export{e as default}; diff --git a/docs/.output/public/_nuxt/List.bf56eba2.js b/docs/.output/public/_nuxt/List.bf56eba2.js new file mode 100644 index 00000000..44bca4a2 --- /dev/null +++ b/docs/.output/public/_nuxt/List.bf56eba2.js @@ -0,0 +1 @@ +import{_ as o}from"./List.vue.9ef0bef2.js";import{a as t}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./ContentSlot.811112da.js";const e=t(o,[["__scopeId","data-v-f4e70c29"]]);export{e as default}; diff --git a/docs/.output/public/_nuxt/List.vue.98cb48bf.js b/docs/.output/public/_nuxt/List.vue.9ef0bef2.js similarity index 85% rename from docs/.output/public/_nuxt/List.vue.98cb48bf.js rename to docs/.output/public/_nuxt/List.vue.9ef0bef2.js index 15e94b26..d2e467a3 100644 --- a/docs/.output/public/_nuxt/List.vue.98cb48bf.js +++ b/docs/.output/public/_nuxt/List.vue.9ef0bef2.js @@ -1 +1 @@ -import{_ as r,u as l}from"./DocsAsideTree.b95e55e0.js";import u from"./ContentSlot.c5067a4f.js";import{f as p,ae as m,h as _,j as e}from"./runtime-core.esm-bundler.6894272a.js";const f={primary:"heroicons-outline:check",info:"heroicons-outline:information-circle",success:"heroicons-outline:check-circle",warning:"heroicons-outline:exclamation",danger:"heroicons-outline:exclamation-circle"},g=p({props:{icon:{type:String,default:null},type:{type:String,default:"primary",validator:n=>["primary","info","success","warning","danger"].includes(n)}},setup(n){const t=m(),{flatUnwrap:i,unwrap:s}=l(),a=_(()=>n.icon||f[n.type]);return()=>{const c=i((t.default&&t.default())??[],["ul"]).map(o=>s(o,["li"]));return e("ul",c.map(o=>e("li",[e("span",{class:`list-icon ${n.type}`},e(r,{name:a.value,class:"icon"})),e("span",e(u,{use:()=>o}))])))}}});export{g as _}; +import{_ as r,u as l}from"./DocsAsideTree.4387e6ea.js";import u from"./ContentSlot.811112da.js";import{f as p,ae as m,h as _,j as e}from"./runtime-core.esm-bundler.6894272a.js";const f={primary:"heroicons-outline:check",info:"heroicons-outline:information-circle",success:"heroicons-outline:check-circle",warning:"heroicons-outline:exclamation",danger:"heroicons-outline:exclamation-circle"},g=p({props:{icon:{type:String,default:null},type:{type:String,default:"primary",validator:n=>["primary","info","success","warning","danger"].includes(n)}},setup(n){const t=m(),{flatUnwrap:i,unwrap:s}=l(),a=_(()=>n.icon||f[n.type]);return()=>{const c=i((t.default&&t.default())??[],["ul"]).map(o=>s(o,["li"]));return e("ul",c.map(o=>e("li",[e("span",{class:`list-icon ${n.type}`},e(r,{name:a.value,class:"icon"})),e("span",e(u,{use:()=>o}))])))}}});export{g as _}; diff --git a/docs/.output/public/_nuxt/Markdown.7f24e431.js b/docs/.output/public/_nuxt/Markdown.834a7772.js similarity index 52% rename from docs/.output/public/_nuxt/Markdown.7f24e431.js rename to docs/.output/public/_nuxt/Markdown.834a7772.js index 3180cf7c..3fdac7df 100644 --- a/docs/.output/public/_nuxt/Markdown.7f24e431.js +++ b/docs/.output/public/_nuxt/Markdown.834a7772.js @@ -1 +1 @@ -import a from"./ContentSlot.c5067a4f.js";import{f as s,ae as m,h as p,g as i}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";const b=s({name:"Markdown",extends:a,setup(t){const{parent:e}=i(),{between:n,default:r}=m(),o=p(()=>typeof t.unwrap=="string"?t.unwrap.split(" "):["*"]);return{fallbackSlot:r,tags:o,between:n,parent:e}}});export{b as default}; +import a from"./ContentSlot.811112da.js";import{f as s,ae as m,h as p,g as i}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";const b=s({name:"Markdown",extends:a,setup(t){const{parent:e}=i(),{between:n,default:r}=m(),o=p(()=>typeof t.unwrap=="string"?t.unwrap.split(" "):["*"]);return{fallbackSlot:r,tags:o,between:n,parent:e}}});export{b as default}; diff --git a/docs/.output/public/_nuxt/MyButton.67bdaa98.js b/docs/.output/public/_nuxt/MyButton.4292c104.js similarity index 58% rename from docs/.output/public/_nuxt/MyButton.67bdaa98.js rename to docs/.output/public/_nuxt/MyButton.4292c104.js index dce94e27..035596d3 100644 --- a/docs/.output/public/_nuxt/MyButton.67bdaa98.js +++ b/docs/.output/public/_nuxt/MyButton.4292c104.js @@ -1 +1 @@ -import r from"./ContentSlot.c5067a4f.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as a,x as n,G as p,y as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";const c={__name:"MyButton",props:{type:{type:String,default:"info"}},setup(t){return(o,i)=>{const e=r;return a(),n("button",{class:m(t.type)},[p(e,{use:o.$slots.default,unwrap:"p"},null,8,["use"])],2)}}},C=s(c,[["__scopeId","data-v-14e24467"]]);export{C as default}; +import r from"./ContentSlot.811112da.js";/* empty css */import{a as s}from"./Container.f1017aa2.js";import{q as a,x as n,G as p,y as m}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";const c={__name:"MyButton",props:{type:{type:String,default:"info"}},setup(t){return(o,i)=>{const e=r;return a(),n("button",{class:m(t.type)},[p(e,{use:o.$slots.default,unwrap:"p"},null,8,["use"])],2)}}},C=s(c,[["__scopeId","data-v-14e24467"]]);export{C as default}; diff --git a/docs/.output/public/_nuxt/NuxtImg.0b2f5a98.js b/docs/.output/public/_nuxt/NuxtImg.0b2f5a98.js new file mode 100644 index 00000000..82ee94d1 --- /dev/null +++ b/docs/.output/public/_nuxt/NuxtImg.0b2f5a98.js @@ -0,0 +1 @@ +import{_ as o}from"./NuxtImg.vue.0972faf4.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/NuxtImg.66944f8e.js b/docs/.output/public/_nuxt/NuxtImg.66944f8e.js deleted file mode 100644 index ff9e9b14..00000000 --- a/docs/.output/public/_nuxt/NuxtImg.66944f8e.js +++ /dev/null @@ -1 +0,0 @@ -import{_ as o}from"./NuxtImg.vue.a13022c3.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";export{o as default}; diff --git a/docs/.output/public/_nuxt/NuxtImg.vue.a13022c3.js b/docs/.output/public/_nuxt/NuxtImg.vue.0972faf4.js similarity index 90% rename from docs/.output/public/_nuxt/NuxtImg.vue.a13022c3.js rename to docs/.output/public/_nuxt/NuxtImg.vue.0972faf4.js index 2d04fe38..dc22a8e2 100644 --- a/docs/.output/public/_nuxt/NuxtImg.vue.a13022c3.js +++ b/docs/.output/public/_nuxt/NuxtImg.vue.0972faf4.js @@ -1 +1 @@ -import{w as i,f as a}from"./app.config.f41ab05d.js";import{f as n,h,j as e}from"./runtime-core.esm-bundler.6894272a.js";const p=n({props:{src:{type:[String,Object],default:null}},setup(s){const r=t=>t&&t.startsWith("/")&&!t.startsWith("//")?i(t,a().app.baseURL):t;return{imgSrc:h(()=>{let t=s.src;try{t=JSON.parse(t)}catch{t=s.src}return typeof t=="string"?r(s.src):{light:r(t.light),dark:r(t.dark)}})}},render({imgSrc:s}){if(typeof s=="string")return e("img",{src:s,...this.$attrs});const r=[];return s.light&&r.push(e("img",{src:s.light,class:["dark-img"],...this.$attrs})),s.dark&&r.push(e("img",{src:s.dark,class:["light-img"],...this.$attrs})),r}});export{p as _}; +import{w as i,b as a}from"./app.config.88c4fc0b.js";import{f as n,h,j as e}from"./runtime-core.esm-bundler.6894272a.js";const p=n({props:{src:{type:[String,Object],default:null}},setup(s){const r=t=>t&&t.startsWith("/")&&!t.startsWith("//")?i(t,a().app.baseURL):t;return{imgSrc:h(()=>{let t=s.src;try{t=JSON.parse(t)}catch{t=s.src}return typeof t=="string"?r(s.src):{light:r(t.light),dark:r(t.dark)}})}},render({imgSrc:s}){if(typeof s=="string")return e("img",{src:s,...this.$attrs});const r=[];return s.light&&r.push(e("img",{src:s.light,class:["dark-img"],...this.$attrs})),s.dark&&r.push(e("img",{src:s.dark,class:["light-img"],...this.$attrs})),r}});export{p as _}; diff --git a/docs/.output/public/_nuxt/Props.876d937c.js b/docs/.output/public/_nuxt/Props.7f60a4b4.js similarity index 92% rename from docs/.output/public/_nuxt/Props.876d937c.js rename to docs/.output/public/_nuxt/Props.7f60a4b4.js index a510a022..df73a07b 100644 --- a/docs/.output/public/_nuxt/Props.876d937c.js +++ b/docs/.output/public/_nuxt/Props.7f60a4b4.js @@ -1 +1 @@ -import T from"./ProseTh.d24c1b52.js";import $ from"./ProseTr.d0d94723.js";import V from"./ProseThead.40eb8658.js";import g from"./ProseCodeInline.dca1a534.js";import b from"./ProseTd.921f02a8.js";import p from"./ProseTbody.37a7db42.js";import N from"./ProseTable.a85f8bca.js";import"./app.config.f41ab05d.js";import{u as R}from"./asyncData.7c06b2d5.js";import{k as F}from"./index.d2b0cb5e.js";import{a as S}from"./Container.f1017aa2.js";import{f as A,h as c,q as a,B as l,C as e,G as r,L as d,D as s,x as J,A as L,F as x,J as m}from"./runtime-core.esm-bundler.6894272a.js";import"./entry.f3791b9c.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const E=A({props:{of:{type:String,default:void 0},required:{type:Boolean,default:void 0},values:{type:Boolean,default:void 0},description:{type:Boolean,default:void 0},default:{type:Boolean,default:void 0}},async setup(t){const k=`/api/component-meta/${F(t.of)}`,{data:h}=await R(t.of,()=>$fetch(k),"$oSoCJtWFoC"),i=c(()=>h.value.props.filter(o=>{var n;return!((n=o.tags)!=null&&n.ignore.includes(o))})),w=c(()=>{var o;return t.required!==void 0?t.required:(o=i.value)==null?void 0:o.find(n=>n.required!==void 0)}),q=c(()=>{var o;return t.values!==void 0?t.values:(o=i.value)==null?void 0:o.find(n=>n.values)}),f=c(()=>{var o;return t.description!==void 0?t.description:(o=i.value)==null?void 0:o.find(n=>n.description)}),y=c(()=>{var o;return t.default!==void 0?t.default:(o=i.value)==null?void 0:o.find(n=>n.default)});return{meta:h,properties:i,showRequired:w,showValues:q,showDescription:f,showDefault:y}}});function G(t,k,h,i,w,q){var v,D,P;const f=T,y=$,o=V,n=g,_=b,B=p,C=N;return t.meta&&((v=t.meta)!=null&&v.props)&&((P=(D=t.meta)==null?void 0:D.props)!=null&&P.length)?(a(),l(C,{key:0},{default:e(()=>[r(o,null,{default:e(()=>[r(y,null,{default:e(()=>[r(f,null,{default:e(()=>[d("Prop")]),_:1}),r(f,null,{default:e(()=>[d("Type")]),_:1}),t.showRequired?(a(),l(f,{key:0},{default:e(()=>[d(" Required ")]),_:1})):s("",!0),t.showDefault?(a(),l(f,{key:1},{default:e(()=>[d(" Default ")]),_:1})):s("",!0),t.showValues?(a(),l(f,{key:2},{default:e(()=>[d(" Values ")]),_:1})):s("",!0),t.showDescription?(a(),l(f,{key:3},{default:e(()=>[d(" Description ")]),_:1})):s("",!0)]),_:1})]),_:1}),r(B,null,{default:e(()=>[(a(!0),J(x,null,L(t.properties,u=>(a(),l(y,{key:u.name},{default:e(()=>[r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.name)||"?"),1)]),_:2},1024)]),_:2},1024),r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.type)||"?"),1)]),_:2},1024)]),_:2},1024),t.showRequired?(a(),l(_,{key:0},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.required==="?"?"?":u.required?"Yes":"No"),1)]),_:2},1024)]),_:2},1024)):s("",!0),t.showDefault?(a(),l(_,{key:1},{default:e(()=>[u.default?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.default)||"?"),1)]),_:2},1024)):s("",!0)]),_:2},1024)):s("",!0),t.showValues?(a(),l(_,{key:2},{default:e(()=>[u.values?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.values)||"?"),1)]),_:2},1024)):(a(),l(n,{key:1},{default:e(()=>[d(" - ")]),_:1}))]),_:2},1024)):s("",!0),t.showDescription?(a(),l(_,{key:3},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.description),1)]),_:2},1024)]),_:2},1024)):s("",!0)]),_:2},1024))),128))]),_:1})]),_:1})):s("",!0)}const oe=S(E,[["render",G]]);export{oe as default}; +import T from"./ProseTh.d24c1b52.js";import $ from"./ProseTr.d0d94723.js";import V from"./ProseThead.40eb8658.js";import g from"./ProseCodeInline.dca1a534.js";import b from"./ProseTd.921f02a8.js";import p from"./ProseTbody.37a7db42.js";import N from"./ProseTable.a85f8bca.js";import"./app.config.88c4fc0b.js";import{u as R}from"./asyncData.45fd3bd9.js";import{k as F}from"./index.d2b0cb5e.js";import{a as S}from"./Container.f1017aa2.js";import{f as A,h as c,q as a,B as l,C as e,G as r,L as d,D as s,x as J,A as L,F as x,J as m}from"./runtime-core.esm-bundler.6894272a.js";import"./entry.c31835cb.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./query.c3f7607a.js";const E=A({props:{of:{type:String,default:void 0},required:{type:Boolean,default:void 0},values:{type:Boolean,default:void 0},description:{type:Boolean,default:void 0},default:{type:Boolean,default:void 0}},async setup(t){const k=`/api/component-meta/${F(t.of)}`,{data:h}=await R(t.of,()=>$fetch(k),"$oSoCJtWFoC"),i=c(()=>h.value.props.filter(o=>{var n;return!((n=o.tags)!=null&&n.ignore.includes(o))})),w=c(()=>{var o;return t.required!==void 0?t.required:(o=i.value)==null?void 0:o.find(n=>n.required!==void 0)}),q=c(()=>{var o;return t.values!==void 0?t.values:(o=i.value)==null?void 0:o.find(n=>n.values)}),f=c(()=>{var o;return t.description!==void 0?t.description:(o=i.value)==null?void 0:o.find(n=>n.description)}),y=c(()=>{var o;return t.default!==void 0?t.default:(o=i.value)==null?void 0:o.find(n=>n.default)});return{meta:h,properties:i,showRequired:w,showValues:q,showDescription:f,showDefault:y}}});function G(t,k,h,i,w,q){var v,D,P;const f=T,y=$,o=V,n=g,_=b,B=p,C=N;return t.meta&&((v=t.meta)!=null&&v.props)&&((P=(D=t.meta)==null?void 0:D.props)!=null&&P.length)?(a(),l(C,{key:0},{default:e(()=>[r(o,null,{default:e(()=>[r(y,null,{default:e(()=>[r(f,null,{default:e(()=>[d("Prop")]),_:1}),r(f,null,{default:e(()=>[d("Type")]),_:1}),t.showRequired?(a(),l(f,{key:0},{default:e(()=>[d(" Required ")]),_:1})):s("",!0),t.showDefault?(a(),l(f,{key:1},{default:e(()=>[d(" Default ")]),_:1})):s("",!0),t.showValues?(a(),l(f,{key:2},{default:e(()=>[d(" Values ")]),_:1})):s("",!0),t.showDescription?(a(),l(f,{key:3},{default:e(()=>[d(" Description ")]),_:1})):s("",!0)]),_:1})]),_:1}),r(B,null,{default:e(()=>[(a(!0),J(x,null,L(t.properties,u=>(a(),l(y,{key:u.name},{default:e(()=>[r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.name)||"?"),1)]),_:2},1024)]),_:2},1024),r(_,null,{default:e(()=>[r(n,null,{default:e(()=>[d(m((u==null?void 0:u.type)||"?"),1)]),_:2},1024)]),_:2},1024),t.showRequired?(a(),l(_,{key:0},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.required==="?"?"?":u.required?"Yes":"No"),1)]),_:2},1024)]),_:2},1024)):s("",!0),t.showDefault?(a(),l(_,{key:1},{default:e(()=>[u.default?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.default)||"?"),1)]),_:2},1024)):s("",!0)]),_:2},1024)):s("",!0),t.showValues?(a(),l(_,{key:2},{default:e(()=>[u.values?(a(),l(n,{key:0},{default:e(()=>[d(m((u==null?void 0:u.values)||"?"),1)]),_:2},1024)):(a(),l(n,{key:1},{default:e(()=>[d(" - ")]),_:1}))]),_:2},1024)):s("",!0),t.showDescription?(a(),l(_,{key:3},{default:e(()=>[r(n,null,{default:e(()=>[d(m(u.description),1)]),_:2},1024)]),_:2},1024)):s("",!0)]),_:2},1024))),128))]),_:1})]),_:1})):s("",!0)}const oe=S(E,[["render",G]]);export{oe as default}; diff --git a/docs/.output/public/_nuxt/ProseA.a4d07cc8.js b/docs/.output/public/_nuxt/ProseA.a0c295ec.js similarity index 89% rename from docs/.output/public/_nuxt/ProseA.a4d07cc8.js rename to docs/.output/public/_nuxt/ProseA.a0c295ec.js index d8df18bd..a4e5d036 100644 --- a/docs/.output/public/_nuxt/ProseA.a4d07cc8.js +++ b/docs/.output/public/_nuxt/ProseA.a0c295ec.js @@ -1 +1 @@ -import{_ as a}from"./app.config.f41ab05d.js";import{f as n,q as s,B as r,C as c,P as l}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as f}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const _=n({__name:"ProseA",props:{href:{type:String,default:""},blank:{type:Boolean,default:!1},static:{type:Boolean,default:!1}},setup(t){return(e,i)=>{const o=a;return s(),r(o,{to:t.href,blank:t.blank,static:t.static},{default:c(()=>[l(e.$slots,"default",{},void 0,!0)]),_:3},8,["to","blank","static"])}}}),x=f(_,[["__scopeId","data-v-9cebe7e3"]]);export{x as default}; +import{_ as a}from"./app.config.88c4fc0b.js";import{f as n,q as s,B as r,C as c,P as l}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as f}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const _=n({__name:"ProseA",props:{href:{type:String,default:""},blank:{type:Boolean,default:!1},static:{type:Boolean,default:!1}},setup(t){return(e,i)=>{const o=a;return s(),r(o,{to:t.href,blank:t.blank,static:t.static},{default:c(()=>[l(e.$slots,"default",{},void 0,!0)]),_:3},8,["to","blank","static"])}}}),x=f(_,[["__scopeId","data-v-9cebe7e3"]]);export{x as default}; diff --git a/docs/.output/public/_nuxt/ProseCode.0e5c7be6.js b/docs/.output/public/_nuxt/ProseCode.5f90dd93.js similarity index 76% rename from docs/.output/public/_nuxt/ProseCode.0e5c7be6.js rename to docs/.output/public/_nuxt/ProseCode.5f90dd93.js index 281c1d21..0a421bc2 100644 --- a/docs/.output/public/_nuxt/ProseCode.0e5c7be6.js +++ b/docs/.output/public/_nuxt/ProseCode.5f90dd93.js @@ -1 +1 @@ -import i from"./ProseCodeCopyButton.29965c5a.js";import{f as m,r as u,q as n,x as a,J as p,D as d,P as f,G as c,y as g}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as v}from"./Container.f1017aa2.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./index.889aa611.js";const y={key:0,class:"filename"},h=m({__name:"ProseCode",props:{code:{type:String,default:""},language:{type:String,default:null},filename:{type:String,default:null},highlights:{type:Array,default:()=>[]}},setup(e){const o=u(!1);return(s,t)=>{const r=i;return n(),a("div",{class:g([[`highlight-${e.language}`],"prose-code"]),onMouseenter:t[0]||(t[0]=l=>o.value=!0),onMouseleave:t[1]||(t[1]=l=>o.value=!1)},[e.filename?(n(),a("span",y,p(e.filename),1)):d("",!0),f(s.$slots,"default",{},void 0,!0),c(r,{show:o.value,content:e.code,class:"copy-button"},null,8,["show","content"])],34)}}}),M=v(h,[["__scopeId","data-v-0f086f28"]]);export{M as default}; +import i from"./ProseCodeCopyButton.885123e2.js";import{f as m,r as u,q as n,x as a,J as p,D as d,P as f,G as c,y as g}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as v}from"./Container.f1017aa2.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./index.889aa611.js";const y={key:0,class:"filename"},h=m({__name:"ProseCode",props:{code:{type:String,default:""},language:{type:String,default:null},filename:{type:String,default:null},highlights:{type:Array,default:()=>[]}},setup(e){const o=u(!1);return(s,t)=>{const r=i;return n(),a("div",{class:g([[`highlight-${e.language}`],"prose-code"]),onMouseenter:t[0]||(t[0]=l=>o.value=!0),onMouseleave:t[1]||(t[1]=l=>o.value=!1)},[e.filename?(n(),a("span",y,p(e.filename),1)):d("",!0),f(s.$slots,"default",{},void 0,!0),c(r,{show:o.value,content:e.code,class:"copy-button"},null,8,["show","content"])],34)}}}),M=v(h,[["__scopeId","data-v-0f086f28"]]);export{M as default}; diff --git a/docs/.output/public/_nuxt/ProseCodeCopyButton.29965c5a.js b/docs/.output/public/_nuxt/ProseCodeCopyButton.885123e2.js similarity index 85% rename from docs/.output/public/_nuxt/ProseCodeCopyButton.29965c5a.js rename to docs/.output/public/_nuxt/ProseCodeCopyButton.885123e2.js index d01ade07..939e76e6 100644 --- a/docs/.output/public/_nuxt/ProseCodeCopyButton.29965c5a.js +++ b/docs/.output/public/_nuxt/ProseCodeCopyButton.885123e2.js @@ -1 +1 @@ -import{T as f,_ as y}from"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import{e as C}from"./useDocus.41ab1ca5.js";import{u as h}from"./index.889aa611.js";import{f as B,r as w,q as t,x,E as l,G as k,C as v,B as r,u as i,y as b,M as I,N as S}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as T}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const z=o=>(I("data-v-5fa3121e"),o=o(),S(),o),N=z(()=>l("span",{class:"sr-only"},"Copy to clipboard",-1)),g={class:"icon-wrapper"},E=B({__name:"ProseCodeCopyButton",props:{content:{type:String,default:""},show:{type:Boolean,default:!1}},setup(o){const m=o,{copy:d}=h(),{prose:a}=C(),e=w("init"),u=_=>{d(m.content).then(()=>{e.value="copied",setTimeout(()=>{e.value="init"},1e3)}).catch(s=>{console.warn("Couldn't copy to clipboard!",s)})};return(_,s)=>{const n=y;return t(),x("button",{class:b([(o.show||e.value==="copied")&&"show"]),onClick:u},[N,l("span",g,[k(f,{name:"fade"},{default:v(()=>{var c,p;return[e.value==="copied"?(t(),r(n,{key:0,name:(c=i(a).copyButton)==null?void 0:c.iconCopied,size:"18",class:"copied"},null,8,["name"])):(t(),r(n,{key:1,name:(p=i(a).copyButton)==null?void 0:p.iconCopy,size:"18"},null,8,["name"]))]}),_:1})])],2)}}}),F=T(E,[["__scopeId","data-v-5fa3121e"]]);export{F as default}; +import{T as f,_ as y}from"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import{e as C}from"./useDocus.b9e6b105.js";import{u as h}from"./index.889aa611.js";import{f as B,r as w,q as t,x,E as l,G as k,C as v,B as r,u as i,y as b,M as I,N as S}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as T}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const z=o=>(I("data-v-5fa3121e"),o=o(),S(),o),N=z(()=>l("span",{class:"sr-only"},"Copy to clipboard",-1)),g={class:"icon-wrapper"},E=B({__name:"ProseCodeCopyButton",props:{content:{type:String,default:""},show:{type:Boolean,default:!1}},setup(o){const m=o,{copy:d}=h(),{prose:a}=C(),e=w("init"),u=_=>{d(m.content).then(()=>{e.value="copied",setTimeout(()=>{e.value="init"},1e3)}).catch(s=>{console.warn("Couldn't copy to clipboard!",s)})};return(_,s)=>{const n=y;return t(),x("button",{class:b([(o.show||e.value==="copied")&&"show"]),onClick:u},[N,l("span",g,[k(f,{name:"fade"},{default:v(()=>{var c,p;return[e.value==="copied"?(t(),r(n,{key:0,name:(c=i(a).copyButton)==null?void 0:c.iconCopied,size:"18",class:"copied"},null,8,["name"])):(t(),r(n,{key:1,name:(p=i(a).copyButton)==null?void 0:p.iconCopy,size:"18"},null,8,["name"]))]}),_:1})])],2)}}}),F=T(E,[["__scopeId","data-v-5fa3121e"]]);export{F as default}; diff --git a/docs/.output/public/_nuxt/ProseH1.c24b90eb.js b/docs/.output/public/_nuxt/ProseH1.f0f94d61.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH1.c24b90eb.js rename to docs/.output/public/_nuxt/ProseH1.f0f94d61.js index 53f530b9..5cd22e57 100644 --- a/docs/.output/public/_nuxt/ProseH1.c24b90eb.js +++ b/docs/.output/public/_nuxt/ProseH1.f0f94d61.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import{e as f}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH1",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h1",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-d187dd3d"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.4387e6ea.js";import{_ as u}from"./app.config.88c4fc0b.js";import{e as f}from"./useDocus.b9e6b105.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH1",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h1)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h1",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-d187dd3d"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH2.957cbe8e.js b/docs/.output/public/_nuxt/ProseH2.440e9004.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH2.957cbe8e.js rename to docs/.output/public/_nuxt/ProseH2.440e9004.js index 8c42786a..45d6ba9e 100644 --- a/docs/.output/public/_nuxt/ProseH2.957cbe8e.js +++ b/docs/.output/public/_nuxt/ProseH2.440e9004.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as f}from"./app.config.f41ab05d.js";import{e as u}from"./useDocus.41ab1ca5.js";import{f as p,h as c,q as a,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH2",props:{id:null},setup(e){const{prose:o}=u(),i=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return a(),l("h2",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(a(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-273f00cc"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.4387e6ea.js";import{_ as f}from"./app.config.88c4fc0b.js";import{e as u}from"./useDocus.b9e6b105.js";import{f as p,h as c,q as a,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH2",props:{id:null},setup(e){const{prose:o}=u(),i=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=c(()=>{var t,n;return((t=o==null?void 0:o.h2)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return a(),l("h2",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(a(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-273f00cc"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH3.cb2444de.js b/docs/.output/public/_nuxt/ProseH3.25d5cd3a.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH3.cb2444de.js rename to docs/.output/public/_nuxt/ProseH3.25d5cd3a.js index 8072eafc..601a87ab 100644 --- a/docs/.output/public/_nuxt/ProseH3.cb2444de.js +++ b/docs/.output/public/_nuxt/ProseH3.25d5cd3a.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import{e as f}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH3",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h3",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-c013d38e"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.4387e6ea.js";import{_ as u}from"./app.config.88c4fc0b.js";import{e as f}from"./useDocus.b9e6b105.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH3",props:{id:null},setup(e){const{prose:o}=f(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h3)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=u;return c(),l("h3",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-c013d38e"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH4.77a5278f.js b/docs/.output/public/_nuxt/ProseH4.282cba87.js similarity index 67% rename from docs/.output/public/_nuxt/ProseH4.77a5278f.js rename to docs/.output/public/_nuxt/ProseH4.282cba87.js index 2089d7ea..957b7c8c 100644 --- a/docs/.output/public/_nuxt/ProseH4.77a5278f.js +++ b/docs/.output/public/_nuxt/ProseH4.282cba87.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import{e as f}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as _,x as l,G as h,C as x,P as k,u as c,B as C,D as g}from"./runtime-core.esm-bundler.6894272a.js";import{a as v}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const B=["id"],$=p({__name:"ProseH4",props:{id:null},setup(n){const{prose:e}=f(),s=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)&&((t=e==null?void 0:e.headings)==null?void 0:t.icon)}),i=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)||((t=e==null?void 0:e.headings)==null?void 0:t.icon)});return(o,t)=>{const m=d,r=u;return _(),l("h4",{id:n.id},[h(r,{href:`#${n.id}`},{default:x(()=>[k(o.$slots,"default",{},void 0,!0),c(s)?(_(),C(m,{key:0,name:c(i)},null,8,["name"])):g("",!0)]),_:3},8,["href"])],8,B)}}});const w=v($,[["__scopeId","data-v-1e5a0afd"]]);export{w as default}; +import{_ as d}from"./DocsAsideTree.4387e6ea.js";import{_ as u}from"./app.config.88c4fc0b.js";import{e as f}from"./useDocus.b9e6b105.js";import{f as p,h as a,q as _,x as l,G as h,C as x,P as k,u as c,B as C,D as g}from"./runtime-core.esm-bundler.6894272a.js";import{a as v}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const B=["id"],$=p({__name:"ProseH4",props:{id:null},setup(n){const{prose:e}=f(),s=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)&&((t=e==null?void 0:e.headings)==null?void 0:t.icon)}),i=a(()=>{var o,t;return((o=e==null?void 0:e.h4)==null?void 0:o.icon)||((t=e==null?void 0:e.headings)==null?void 0:t.icon)});return(o,t)=>{const m=d,r=u;return _(),l("h4",{id:n.id},[h(r,{href:`#${n.id}`},{default:x(()=>[k(o.$slots,"default",{},void 0,!0),c(s)?(_(),C(m,{key:0,name:c(i)},null,8,["name"])):g("",!0)]),_:3},8,["href"])],8,B)}}});const w=v($,[["__scopeId","data-v-1e5a0afd"]]);export{w as default}; diff --git a/docs/.output/public/_nuxt/ProseH5.8dc93198.js b/docs/.output/public/_nuxt/ProseH5.0ae4a534.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH5.8dc93198.js rename to docs/.output/public/_nuxt/ProseH5.0ae4a534.js index 8325a8ea..efbdfb3f 100644 --- a/docs/.output/public/_nuxt/ProseH5.8dc93198.js +++ b/docs/.output/public/_nuxt/ProseH5.0ae4a534.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as f}from"./app.config.f41ab05d.js";import{e as u}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH5",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h5",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-35e434df"]]);export{A as default}; +import{_ as d}from"./DocsAsideTree.4387e6ea.js";import{_ as f}from"./app.config.88c4fc0b.js";import{e as u}from"./useDocus.b9e6b105.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH5",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h5)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h5",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),A=g(N,[["__scopeId","data-v-35e434df"]]);export{A as default}; diff --git a/docs/.output/public/_nuxt/ProseH6.bdc78e01.js b/docs/.output/public/_nuxt/ProseH6.9fccd00c.js similarity index 74% rename from docs/.output/public/_nuxt/ProseH6.bdc78e01.js rename to docs/.output/public/_nuxt/ProseH6.9fccd00c.js index 9d42e5bd..ef8f348c 100644 --- a/docs/.output/public/_nuxt/ProseH6.bdc78e01.js +++ b/docs/.output/public/_nuxt/ProseH6.9fccd00c.js @@ -1 +1 @@ -import{_ as d}from"./DocsAsideTree.b95e55e0.js";import{_ as f}from"./app.config.f41ab05d.js";import{e as u}from"./useDocus.41ab1ca5.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH6",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h6",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),y=g(N,[["__scopeId","data-v-dfc5fb9b"]]);export{y as default}; +import{_ as d}from"./DocsAsideTree.4387e6ea.js";import{_ as f}from"./app.config.88c4fc0b.js";import{e as u}from"./useDocus.b9e6b105.js";import{f as p,h as a,q as c,x as l,G as h,C as x,P as k,u as s,B as C,D as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as g}from"./Container.f1017aa2.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";const I=["id"],N=p({__name:"ProseH6",props:{id:null},setup(e){const{prose:o}=u(),i=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)&&((n=o==null?void 0:o.headings)==null?void 0:n.icon)}),m=a(()=>{var t,n;return((t=o==null?void 0:o.h6)==null?void 0:t.icon)||((n=o==null?void 0:o.headings)==null?void 0:n.icon)});return(t,n)=>{const r=d,_=f;return c(),l("h6",{id:e.id},[h(_,{href:`#${e.id}`},{default:x(()=>[k(t.$slots,"default",{},void 0,!0),s(i)?(c(),C(r,{key:0,name:s(m)},null,8,["name"])):B("",!0)]),_:3},8,["href"])],8,I)}}}),y=g(N,[["__scopeId","data-v-dfc5fb9b"]]);export{y as default}; diff --git a/docs/.output/public/_nuxt/ProseImg.16c4c81d.js b/docs/.output/public/_nuxt/ProseImg.16c4c81d.js deleted file mode 100644 index f404a842..00000000 --- a/docs/.output/public/_nuxt/ProseImg.16c4c81d.js +++ /dev/null @@ -1 +0,0 @@ -import{w as a,f as i}from"./app.config.f41ab05d.js";import{f as o,h as n,q as c,x as m,ai as f,u as h}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as u}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const d=["src","alt","width","height"],p=o({__name:"ProseImg",props:{src:{type:String,default:""},alt:{type:String,default:""},width:{type:[String,Number],default:void 0},height:{type:[String,Number],default:void 0}},setup(t){const e=t,s=n(()=>{var r;return(r=e.src)!=null&&r.startsWith("/")&&!e.src.startsWith("//")?a(e.src,i().app.baseURL):e.src});return(r,l)=>(c(),m("img",f(r.$attrs,{src:h(s),alt:t.alt,width:t.width,height:t.height}),null,16,d))}}),b=u(p,[["__scopeId","data-v-2ef15301"]]);export{b as default}; diff --git a/docs/.output/public/_nuxt/ProseImg.4eef4e65.js b/docs/.output/public/_nuxt/ProseImg.4eef4e65.js new file mode 100644 index 00000000..a2705035 --- /dev/null +++ b/docs/.output/public/_nuxt/ProseImg.4eef4e65.js @@ -0,0 +1 @@ +import{w as a,b as i}from"./app.config.88c4fc0b.js";import{f as o,h as n,q as c,x as m,ai as h,u}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as d}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";const f=["src","alt","width","height"],p=o({__name:"ProseImg",props:{src:{type:String,default:""},alt:{type:String,default:""},width:{type:[String,Number],default:void 0},height:{type:[String,Number],default:void 0}},setup(t){const e=t,s=n(()=>{var r;return(r=e.src)!=null&&r.startsWith("/")&&!e.src.startsWith("//")?a(e.src,i().app.baseURL):e.src});return(r,l)=>(c(),m("img",h(r.$attrs,{src:u(s),alt:t.alt,width:t.width,height:t.height}),null,16,f))}}),y=d(p,[["__scopeId","data-v-2ef15301"]]);export{y as default}; diff --git a/docs/.output/public/_nuxt/ReadMore.4d40ce3f.js b/docs/.output/public/_nuxt/ReadMore.fec51d0b.js similarity index 66% rename from docs/.output/public/_nuxt/ReadMore.4d40ce3f.js rename to docs/.output/public/_nuxt/ReadMore.fec51d0b.js index a5ebeda1..c15b6a2c 100644 --- a/docs/.output/public/_nuxt/ReadMore.4d40ce3f.js +++ b/docs/.output/public/_nuxt/ReadMore.fec51d0b.js @@ -1 +1 @@ -import{_ as l}from"./DocsAsideTree.b95e55e0.js";import{_ as u}from"./app.config.f41ab05d.js";import d from"./Alert.41cb256b.js";import{s as f,u as x}from"./index.d2b0cb5e.js";import{f as k,h as B,q as h,B as y,C as p,G as s,L as o,J as C,u as g}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./ContentSlot.c5067a4f.js";/* empty css */const V=k({__name:"ReadMore",props:{link:{type:String,required:!0},title:{type:String,required:!1,default:void 0}},setup(n){const r=n,m=(i,a)=>i||a.split("/").filter(Boolean).map(t=>f(t).map(e=>x(e)).join(" ")).join(" > ").replace("Api","API"),c=B(()=>m(r.title,r.link));return(i,a)=>{const t=l,e=u,_=d;return h(),y(_,null,{default:p(()=>[s(t,{name:"heroicons-outline:window"}),o(" Read more in "),s(e,{to:n.link},{default:p(()=>[o(C(g(c)),1)]),_:1},8,["to"]),o(". ")]),_:1})}}});export{V as default}; +import{_ as l}from"./DocsAsideTree.4387e6ea.js";import{_ as u}from"./app.config.88c4fc0b.js";import d from"./Alert.95097db0.js";import{s as f,u as x}from"./index.d2b0cb5e.js";import{f as k,h as B,q as h,B as y,C as p,G as s,L as o,J as C,u as g}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./ContentSlot.811112da.js";/* empty css */const V=k({__name:"ReadMore",props:{link:{type:String,required:!0},title:{type:String,required:!1,default:void 0}},setup(n){const r=n,m=(i,a)=>i||a.split("/").filter(Boolean).map(t=>f(t).map(e=>x(e)).join(" ")).join(" > ").replace("Api","API"),c=B(()=>m(r.title,r.link));return(i,a)=>{const t=l,e=u,_=d;return h(),y(_,null,{default:p(()=>[s(t,{name:"heroicons-outline:window"}),o(" Read more in "),s(e,{to:n.link},{default:p(()=>[o(C(g(c)),1)]),_:1},8,["to"]),o(". ")]),_:1})}}});export{V as default}; diff --git a/docs/.output/public/_nuxt/Sandbox.b8bdb0c7.js b/docs/.output/public/_nuxt/Sandbox.1394c91b.js similarity index 89% rename from docs/.output/public/_nuxt/Sandbox.b8bdb0c7.js rename to docs/.output/public/_nuxt/Sandbox.1394c91b.js index 792986c9..ac6d7c69 100644 --- a/docs/.output/public/_nuxt/Sandbox.b8bdb0c7.js +++ b/docs/.output/public/_nuxt/Sandbox.1394c91b.js @@ -1 +1 @@ -import _ from"./TabsHeader.f80c17f8.js";import{u as x}from"./entry.f3791b9c.js";import{f as h,r as s,h as g,O as S,q as n,x as l,B as k,u as c,D as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as $}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const w={class:"sandbox"},B=["src"],C={key:2},I=h({__name:"Sandbox",props:{src:{type:String,default:""},repo:{type:String,default:""},branch:{type:String,default:""},dir:{type:String,default:""},file:{type:String,default:"app.vue"}},setup(i){const t=i,p=x(),r={CodeSandBox:()=>`https://codesandbox.io/embed/github/${t.repo}/tree/${t.branch}/${t.dir}?hidenavigation=1&theme=${p.value}`,StackBlitz:()=>`https://stackblitz.com/github/${t.repo}/tree/${t.branch}/${t.dir}?embed=1&file=${t.file}&theme=${p.value}`},m=Object.keys(r).map(e=>({label:e})),d=s(-1),u=s(),o=s(""),a=s(""),b=e=>{a.value=e,o.value=t.src||r[a.value](),localStorage.setItem("docus_sandbox",e)};g(()=>{var e;return(e=o.value)==null?void 0:e.replace("?embed=1&","?").replace("/embed/","/s/")});const f=e=>{d.value=e,b(m[e].label)};return S(()=>{a.value=window.localStorage.getItem("docus_sandbox")||"CodeSandBox",o.value=t.src||r[a.value](),d.value=Object.keys(r).indexOf(a.value)}),(e,T)=>{const v=_;return n(),l("div",w,[i.src?y("",!0):(n(),k(v,{key:0,ref_key:"tabs",ref:u,"active-tab-index":c(d),tabs:c(m),"onUpdate:activeTabIndex":f},null,8,["active-tab-index","tabs"])),c(o)?(n(),l("iframe",{key:1,src:c(o),title:"Sandbox editor",sandbox:"allow-modals allow-forms allow-popups allow-scripts allow-same-origin"},null,8,B)):(n(),l("span",C,"Loading Sandbox..."))])}}}),U=$(I,[["__scopeId","data-v-90b7615f"]]);export{U as default}; +import _ from"./TabsHeader.f80c17f8.js";import{u as x}from"./entry.c31835cb.js";import{f as h,r as s,h as g,O as S,q as n,x as l,B as k,u as c,D as y}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as $}from"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./query.c3f7607a.js";const w={class:"sandbox"},B=["src"],C={key:2},I=h({__name:"Sandbox",props:{src:{type:String,default:""},repo:{type:String,default:""},branch:{type:String,default:""},dir:{type:String,default:""},file:{type:String,default:"app.vue"}},setup(i){const t=i,p=x(),r={CodeSandBox:()=>`https://codesandbox.io/embed/github/${t.repo}/tree/${t.branch}/${t.dir}?hidenavigation=1&theme=${p.value}`,StackBlitz:()=>`https://stackblitz.com/github/${t.repo}/tree/${t.branch}/${t.dir}?embed=1&file=${t.file}&theme=${p.value}`},m=Object.keys(r).map(e=>({label:e})),d=s(-1),u=s(),o=s(""),a=s(""),b=e=>{a.value=e,o.value=t.src||r[a.value](),localStorage.setItem("docus_sandbox",e)};g(()=>{var e;return(e=o.value)==null?void 0:e.replace("?embed=1&","?").replace("/embed/","/s/")});const f=e=>{d.value=e,b(m[e].label)};return S(()=>{a.value=window.localStorage.getItem("docus_sandbox")||"CodeSandBox",o.value=t.src||r[a.value](),d.value=Object.keys(r).indexOf(a.value)}),(e,T)=>{const v=_;return n(),l("div",w,[i.src?y("",!0):(n(),k(v,{key:0,ref_key:"tabs",ref:u,"active-tab-index":c(d),tabs:c(m),"onUpdate:activeTabIndex":f},null,8,["active-tab-index","tabs"])),c(o)?(n(),l("iframe",{key:1,src:c(o),title:"Sandbox editor",sandbox:"allow-modals allow-forms allow-popups allow-scripts allow-same-origin"},null,8,B)):(n(),l("span",C,"Loading Sandbox..."))])}}}),U=$(I,[["__scopeId","data-v-90b7615f"]]);export{U as default}; diff --git a/docs/.output/public/_nuxt/VideoPlayer.065c6aeb.js b/docs/.output/public/_nuxt/VideoPlayer.57f76f66.js similarity index 93% rename from docs/.output/public/_nuxt/VideoPlayer.065c6aeb.js rename to docs/.output/public/_nuxt/VideoPlayer.57f76f66.js index 20489988..087a3ba1 100644 --- a/docs/.output/public/_nuxt/VideoPlayer.065c6aeb.js +++ b/docs/.output/public/_nuxt/VideoPlayer.57f76f66.js @@ -1 +1 @@ -import{_ as m}from"./NuxtImg.vue.a13022c3.js";import{f,h as i,r as _,q as s,x as a,u as e,B as h,D as u,F as v,A as k,y as w,M as g,N as b,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as x}from"./Container.f1017aa2.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";const I=t=>(g("data-v-3c798ec4"),t=t(),b(),t),S={key:1,class:"loaded"},V=["poster"],C=["src"],N=["src","type"],$=["autoplay","src"],E=I(()=>B("button",null,null,-1)),P=[E],q=f({__name:"VideoPlayer",props:{poster:{type:String,default:""},src:{type:String,default:""},sources:{type:Array,default:()=>[]},autoplay:{type:Boolean,default:!1}},setup(t){const r=t,c=i(()=>{if(r.src&&r.src.includes("youtube.com/watch")){const o=r.src.match(/\?v=([^&]*)/);return{name:"youtube",src:`https://www.youtube-nocookie.com/embed/${(o==null?void 0:o[1])||""}?autoplay=1`,poster:r.poster||`https://i3.ytimg.com/vi/${(o==null?void 0:o[1])||""}/hqdefault.jpg`}}}),p=_(!1);if(!r.src&&!r.sources.length)throw new Error("VideoPlayer: you need to provide either `src` or `sources` props");const d=i(()=>{var o,n;return r.src||((n=(o=r.sources)==null?void 0:o[0])==null?void 0:n.src)||!1});return(o,n)=>{const y=m;return s(),a("div",{class:w(["video-player",{loaded:e(p)}])},[(e(c)?e(c).poster:t.poster)?(s(),h(y,{key:0,src:e(c)?e(c).poster:t.poster},null,8,["src"])):u("",!0),e(p)?(s(),a("div",S,[e(c)?e(c).name==="youtube"?(s(),a("iframe",{key:1,allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:"true",autoplay:t.autoplay,src:e(c).src},null,8,$)):u("",!0):(s(),a("video",{key:0,poster:t.poster,controls:"",autoplay:""},[e(d)?(s(),a("source",{key:0,src:e(d)},null,8,C)):u("",!0),(s(!0),a(v,null,k(t.sources,l=>(s(),a("source",{key:l.src||l,src:l.src||l,type:l.type},null,8,N))),128))],8,V))])):u("",!0),e(p)?u("",!0):(s(),a("div",{key:2,class:"play-button",onClick:n[0]||(n[0]=l=>p.value=!0)},P))],2)}}}),M=x(q,[["__scopeId","data-v-3c798ec4"]]);export{M as default}; +import{_ as m}from"./NuxtImg.vue.0972faf4.js";import{f,h as i,r as _,q as s,x as a,u as e,B as h,D as u,F as v,A as k,y as w,M as g,N as b,E as B}from"./runtime-core.esm-bundler.6894272a.js";/* empty css */import{a as x}from"./Container.f1017aa2.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";const I=t=>(g("data-v-3c798ec4"),t=t(),b(),t),S={key:1,class:"loaded"},V=["poster"],C=["src"],N=["src","type"],$=["autoplay","src"],E=I(()=>B("button",null,null,-1)),P=[E],q=f({__name:"VideoPlayer",props:{poster:{type:String,default:""},src:{type:String,default:""},sources:{type:Array,default:()=>[]},autoplay:{type:Boolean,default:!1}},setup(t){const r=t,c=i(()=>{if(r.src&&r.src.includes("youtube.com/watch")){const o=r.src.match(/\?v=([^&]*)/);return{name:"youtube",src:`https://www.youtube-nocookie.com/embed/${(o==null?void 0:o[1])||""}?autoplay=1`,poster:r.poster||`https://i3.ytimg.com/vi/${(o==null?void 0:o[1])||""}/hqdefault.jpg`}}}),p=_(!1);if(!r.src&&!r.sources.length)throw new Error("VideoPlayer: you need to provide either `src` or `sources` props");const d=i(()=>{var o,n;return r.src||((n=(o=r.sources)==null?void 0:o[0])==null?void 0:n.src)||!1});return(o,n)=>{const y=m;return s(),a("div",{class:w(["video-player",{loaded:e(p)}])},[(e(c)?e(c).poster:t.poster)?(s(),h(y,{key:0,src:e(c)?e(c).poster:t.poster},null,8,["src"])):u("",!0),e(p)?(s(),a("div",S,[e(c)?e(c).name==="youtube"?(s(),a("iframe",{key:1,allow:"accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture",allowfullscreen:"true",autoplay:t.autoplay,src:e(c).src},null,8,$)):u("",!0):(s(),a("video",{key:0,poster:t.poster,controls:"",autoplay:""},[e(d)?(s(),a("source",{key:0,src:e(d)},null,8,C)):u("",!0),(s(!0),a(v,null,k(t.sources,l=>(s(),a("source",{key:l.src||l,src:l.src||l,type:l.type},null,8,N))),128))],8,V))])):u("",!0),e(p)?u("",!0):(s(),a("div",{key:2,class:"play-button",onClick:n[0]||(n[0]=l=>p.value=!0)},P))],2)}}}),M=x(q,[["__scopeId","data-v-3c798ec4"]]);export{M as default}; diff --git a/docs/.output/public/_nuxt/app.config.88c4fc0b.js b/docs/.output/public/_nuxt/app.config.88c4fc0b.js new file mode 100644 index 00000000..c5c3184f --- /dev/null +++ b/docs/.output/public/_nuxt/app.config.88c4fc0b.js @@ -0,0 +1 @@ +import{a as V}from"./index.d2b0cb5e.js";import{k as H,g as I,i as K,f as z,h as L,r as N,O as F,o as G,j as T,aa as X}from"./runtime-core.esm-bundler.6894272a.js";const Y=/#/g,Z=/&/g,J=/=/g,U=/\+/g,ee=/%5b/gi,te=/%5d/gi,oe=/%5e/gi,re=/%60/gi,ne=/%7b/gi,se=/%7c/gi,ie=/%7d/gi,ae=/%20/gi;function ce(e){return encodeURI(""+e).replace(se,"|").replace(ee,"[").replace(te,"]")}function x(e){return ce(e).replace(U,"%2B").replace(ae,"+").replace(Y,"%23").replace(Z,"%26").replace(re,"`").replace(ne,"{").replace(ie,"}").replace(oe,"^")}function k(e){return x(e).replace(J,"%3D")}function $(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function le(e){return $(e.replace(U," "))}function ue(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const o of e.split("&")){const r=o.match(/([^=]+)=?(.*)/)||[];if(r.length<2)continue;const n=$(r[1]);if(n==="__proto__"||n==="constructor")continue;const s=le(r[2]||"");typeof t[n]<"u"?Array.isArray(t[n])?t[n].push(s):t[n]=[t[n],s]:t[n]=s}return t}function fe(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(o=>`${k(e)}=${x(o)}`).join("&"):`${k(e)}=${x(t)}`:k(e)}function de(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>fe(t,e[t])).join("&")}const he=/^\w{2,}:(\/\/)?/,pe=/^\/\/[^/]+/;function v(e,t=!1){return he.test(e)||t&&pe.test(e)}const ge=/\/$|\/\?/;function C(e="",t=!1){return t?ge.test(e):e.endsWith("/")}function B(e="",t=!1){if(!t)return(C(e)?e.slice(0,-1):e)||"/";if(!C(e,!0))return e||"/";const[o,...r]=e.split("?");return(o.slice(0,-1)||"/")+(r.length>0?`?${r.join("?")}`:"")}function _e(e="",t=!1){if(!t)return e.endsWith("/")?e:e+"/";if(C(e,!0))return e||"/";const[o,...r]=e.split("?");return o+"/"+(r.length>0?`?${r.join("?")}`:"")}function q(e=""){return e.startsWith("/")}function ye(e=""){return(q(e)?e.slice(1):e)||"/"}function Fe(e=""){return q(e)?e:"/"+e}function Ge(e,t){if(M(t)||v(e))return e;const o=B(t);return e.startsWith(o)?e:be(o,e)}function Xe(e,t){if(M(t))return e;const o=B(t);if(!e.startsWith(o))return e;const r=e.slice(o.length);return r[0]==="/"?r:"/"+r}function Ye(e,t){const o=P(e),r={...ue(o.search),...t};return o.search=de(r),ke(o)}function M(e){return!e||e==="/"}function ve(e){return e&&e!=="/"}function be(e,...t){let o=e||"";for(const r of t.filter(n=>ve(n)))o=o?_e(o)+ye(r):r;return o}function P(e="",t){if(!v(e,!0))return t?P(t+e):O(e);const[o="",r,n=""]=(e.replace(/\\/g,"/").match(/([^/:]+:)?\/\/([^/@]+@)?(.*)/)||[]).splice(1),[s="",i=""]=(n.match(/([^#/?]*)(.*)?/)||[]).splice(1),{pathname:a,search:c,hash:l}=O(i.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:o,auth:r?r.slice(0,Math.max(0,r.length-1)):"",host:s,pathname:a,search:c,hash:l}}function O(e=""){const[t="",o="",r=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:o,hash:r}}function ke(e){const t=e.pathname+(e.search?(e.search.startsWith("?")?"":"?")+e.search:"")+e.hash;return e.protocol?e.protocol+"//"+(e.auth?e.auth+"@":"")+e.host+t:t}function w(e,t={},o){for(const r in e){const n=e[r],s=o?`${o}:${r}`:r;typeof n=="object"&&n!==null?w(n,t,s):typeof n=="function"&&(t[s]=n)}return t}function me(e,t){return e.reduce((o,r)=>o.then(()=>r.apply(void 0,t)),Promise.resolve())}function xe(e,t){return Promise.all(e.map(o=>o.apply(void 0,t)))}function m(e,t){for(const o of e)o(t)}class Ce{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,o,r={}){if(!t||typeof o!="function")return()=>{};const n=t;let s;for(;this._deprecatedHooks[t];)s=this._deprecatedHooks[t],t=s.to;if(s&&!r.allowDeprecated){let i=s.message;i||(i=`${n} hook has been deprecated`+(s.to?`, please use ${s.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(o),()=>{o&&(this.removeHook(t,o),o=void 0)}}hookOnce(t,o){let r,n=(...s)=>(typeof r=="function"&&r(),r=void 0,n=void 0,o(...s));return r=this.hook(t,n),r}removeHook(t,o){if(this._hooks[t]){const r=this._hooks[t].indexOf(o);r!==-1&&this._hooks[t].splice(r,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,o){this._deprecatedHooks[t]=typeof o=="string"?{to:o}:o;const r=this._hooks[t]||[];this._hooks[t]=void 0;for(const n of r)this.hook(t,n)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const o in t)this.deprecateHook(o,t[o])}addHooks(t){const o=w(t),r=Object.keys(o).map(n=>this.hook(n,o[n]));return()=>{for(const n of r.splice(0,r.length))n()}}removeHooks(t){const o=w(t);for(const r in o)this.removeHook(r,o[r])}callHook(t,...o){return this.callHookWith(me,t,...o)}callHookParallel(t,...o){return this.callHookWith(xe,t,...o)}callHookWith(t,o,...r){const n=this._before||this._after?{name:o,args:r,context:{}}:void 0;this._before&&m(this._before,n);const s=t(this._hooks[o]||[],r);return s instanceof Promise?s.finally(()=>{this._after&&n&&m(this._after,n)}):(this._after&&n&&m(this._after,n),s)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{const o=this._before.indexOf(t);o!==-1&&this._before.splice(o,1)}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{const o=this._after.indexOf(t);o!==-1&&this._after.splice(o,1)}}}function we(){return new Ce}function Ee(){let e,t=!1;const o=r=>{if(e&&e!==r)throw new Error("Context conflict")};return{use:()=>{if(e===void 0)throw new Error("Context is not available");return e},tryUse:()=>e,set:(r,n)=>{n||o(r),e=r,t=!0},unset:()=>{e=void 0,t=!1},call:(r,n)=>{o(r),e=r;try{return n()}finally{t||(e=void 0)}},async callAsync(r,n){e=r;const s=()=>{e=r},i=()=>e===r?s:void 0;E.add(i);try{const a=n();return t||(e=void 0),await a}finally{E.delete(i)}}}}function Re(){const e={};return{get(t){return e[t]||(e[t]=Ee()),e[t],e[t]}}}const y=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},S="__unctx__",Pe=y[S]||(y[S]=Re()),Ae=e=>Pe.get(e),j="__unctx_async_handlers__",E=y[j]||(y[j]=new Set);function Ze(e){const t=[];for(const n of E){const s=n();s&&t.push(s)}const o=()=>{for(const n of t)n()};let r=e();return r&&typeof r=="object"&&"catch"in r&&(r=r.catch(n=>{throw o(),n})),[r,o]}const D=Ae("nuxt-app"),He="__nuxt_plugin";function Je(e){let t=0;const o={provide:void 0,globalName:"nuxt",payload:H({data:{},state:{},_errors:{},...window.__NUXT__}),static:{data:{}},isHydrating:!0,deferHydration(){if(!o.isHydrating)return()=>{};t++;let s=!1;return()=>{if(!s&&(s=!0,t--,t===0))return o.isHydrating=!1,o.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},...e};o.hooks=we(),o.hook=o.hooks.hook,o.callHook=o.hooks.callHook,o.provide=(s,i)=>{const a="$"+s;_(o,a,i),_(o.vueApp.config.globalProperties,a,i)},_(o.vueApp,"$nuxt",o),_(o.vueApp.config.globalProperties,"$nuxt",o);const r=H(o.payload.config),n=new Proxy(r,{get(s,i){return i==="public"?s.public:s[i]??s.public[i]},set(s,i,a){return i==="public"||i==="app"?!1:(s[i]=a,s.public[i]=a,!0)}});return o.provide("config",n),o}async function Le(e,t){if(typeof t!="function")return;const{provide:o}=await Ne(e,t,[e])||{};if(o&&typeof o=="object")for(const r in o)e.provide(r,o[r])}async function et(e,t){for(const o of t)await Le(e,o)}function tt(e){return e.map(o=>typeof o!="function"?null:o.length>1?r=>o(r,r.provide):o).filter(Boolean)}function ot(e){return e[He]=!0,e}function Ne(e,t,o){const r=()=>o?t(...o):t();return D.set(e),r()}function f(){const e=D.tryUse();if(!e){const t=I();if(!t)throw new Error("nuxt instance unavailable");return t.appContext.app.$nuxt}return e}function rt(){return f().$config}function _(e,t,o){Object.defineProperty(e,t,{get:()=>o})}const A=()=>{var e;return(e=f())==null?void 0:e.$router},nt=()=>I()?K("_route",f()._route):f()._route,st=e=>e,it=(e,t,o={})=>{const r=f();o.global||typeof e=="function"?r._middleware.global.push(typeof e=="function"?e:t):r._middleware.named[e]=t},Te=()=>{try{if(f()._processingMiddleware)return!0}catch{return!0}return!1},Oe=(e,t)=>{e||(e="/");const o=typeof e=="string"?e:e.path||"/",r=v(o,!0);if(r&&!(t!=null&&t.external))throw new Error("Navigating to external URL is not allowed by default. Use `nagivateTo (url, { external: true })`.");if(r&&P(o).protocol==="script:")throw new Error("Cannot navigate to an URL with script protocol.");if(!r&&Te())return e;const n=A();return r?(t!=null&&t.replace?location.replace(o):location.href=o,Promise.resolve()):t!=null&&t.replace?n.replace(e):n.push(e)},R=globalThis.requestIdleCallback||(e=>{const t=Date.now(),o={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(o)},1)}),Se=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),je=e=>{const t=f();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{R(e)}):R(e)};async function W(e,t=A()){if(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(e))return;t._routePreloaded.add(e);const o=t._preloadPromises=t._preloadPromises||[];if(o.length>4)return Promise.all(o).then(()=>W(e,t));const r=t.resolve(e).matched.map(n=>{var s;return(s=n.components)==null?void 0:s.default}).filter(n=>typeof n=="function");for(const n of r){const s=Promise.resolve(n()).catch(()=>{}).finally(()=>o.splice(o.indexOf(s)));o.push(s)}await Promise.all(o)}const Ie=(...e)=>e.find(t=>t!==void 0),Ue="noopener noreferrer";function Q(e){const t=e.componentName||"NuxtLink";return z({name:t,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(o,{slots:r}){const n=A(),s=L(()=>o.to||o.href||""),i=L(()=>o.external||o.target&&o.target!=="_self"?!0:typeof s.value=="object"?!1:s.value===""||v(s.value,!0)),a=N(!1),c=N(null);if(o.prefetch!==!1&&o.noPrefetch!==!0&&typeof s.value=="string"&&o.target!=="_blank"&&!qe()){const h=f();let d,u=null;F(()=>{const g=Be();je(()=>{d=R(()=>{var p;(p=c==null?void 0:c.value)!=null&&p.tagName&&(u=g.observe(c.value,async()=>{u==null||u(),u=null,await Promise.all([h.hooks.callHook("link:prefetch",s.value).catch(()=>{}),!i.value&&W(s.value,n).catch(()=>{})]),a.value=!0}))})})}),G(()=>{d&&Se(d),u==null||u(),u=null})}return()=>{var g,p;if(!i.value)return T(X("RouterLink"),{ref:b=>{c.value=b==null?void 0:b.$el},to:s.value,...a.value&&!o.custom?{class:o.prefetchedClass||e.prefetchedClass}:{},activeClass:o.activeClass||e.activeClass,exactActiveClass:o.exactActiveClass||e.exactActiveClass,replace:o.replace,ariaCurrentValue:o.ariaCurrentValue,custom:o.custom},r.default);const l=typeof s.value=="object"?((g=n.resolve(s.value))==null?void 0:g.href)??null:s.value||null,h=o.target||null,d=o.noRel?null:Ie(o.rel,e.externalRelAttribute,l?Ue:"")||null,u=()=>Oe(l,{replace:o.replace});return o.custom?r.default?r.default({href:l,navigate:u,route:n.resolve(l),rel:d,target:h,isExternal:i.value,isActive:!1,isExactActive:!1}):null:T("a",{ref:c,href:l,rel:d,target:h},(p=r.default)==null?void 0:p.call(r))}}})}const $e=Q({componentName:"NuxtLink"});function Be(){const e=f();if(e._observer)return e._observer;let t=null;const o=new Map,r=(s,i)=>(t||(t=new IntersectionObserver(a=>{for(const c of a){const l=o.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&l&&l()}})),o.set(s,i),t.observe(s),()=>{o.delete(s),t.unobserve(s),o.size===0&&(t.disconnect(),t=null)});return e._observer={observe:r}}function qe(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const at=Object.freeze(Object.defineProperty({__proto__:null,default:$e,defineNuxtLink:Q},Symbol.toStringTag,{value:"Module"})),Me={github:{owner:"realdecoy",repo:"frontier",branch:"main"},docus:{title:"Frontier",description:"",image:"",url:"https://realdecoy.com",socials:{github:"realdecoy/frontier"},github:{dir:"",root:"",edit:!0,releases:!0,owner:"realdecoy",repo:"frontier",branch:"main"},cover:{src:"/cover.jpg",alt:"Tooling maded easy for developers"},aside:{level:1},layout:{fluid:!0},header:{logo:"Logo"},footer:{iconLinks:[{label:"Realdecoy",href:"https://realdecoy.com",icon:"IconNuxt"}]}}},De={docus:{title:"Docus",description:"The best place to start your documentation.",image:"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png",socials:{twitter:"",github:"",facebook:"",instagram:"",youtube:"",medium:""},layout:"default",header:{title:"",logo:!1,showLinkIcon:!1,fluid:!1,exclude:[]},aside:{level:0,collapsed:!1,exclude:[]},footer:{credits:{icon:"IconDocus",text:"Powered by Docus",href:"https://docus.dev"},textLinks:[],iconLinks:[],fluid:!1},github:{dir:void 0,branch:void 0,repo:void 0,owner:void 0,edit:!1}}},We={prose:{copyButton:{iconCopy:"ph:copy",iconCopied:"ph:check"},headings:{icon:"ph:link"}}},Qe={},Ve={},ct=V(Me,De,We,Qe,Ve);export{$e as _,Ye as a,rt as b,we as c,ot as d,st as e,Ze as f,Ne as g,Xe as h,A as i,be as j,v as k,nt as l,B as m,Fe as n,it as o,Oe as p,P as q,tt as r,Je as s,et as t,f as u,ct as v,Ge as w,_e as x,at as y}; diff --git a/docs/.output/public/_nuxt/app.config.f41ab05d.js b/docs/.output/public/_nuxt/app.config.f41ab05d.js deleted file mode 100644 index cbbd6142..00000000 --- a/docs/.output/public/_nuxt/app.config.f41ab05d.js +++ /dev/null @@ -1 +0,0 @@ -import{a as V}from"./index.d2b0cb5e.js";import{k as H,g as I,i as K,f as z,h as N,r as L,O as F,o as G,j as T,aa as X}from"./runtime-core.esm-bundler.6894272a.js";const Y=/#/g,Z=/&/g,J=/=/g,U=/\+/g,ee=/%5b/gi,te=/%5d/gi,oe=/%5e/gi,ne=/%60/gi,re=/%7b/gi,se=/%7c/gi,ie=/%7d/gi,ae=/%20/gi;function ce(e){return encodeURI(""+e).replace(se,"|").replace(ee,"[").replace(te,"]")}function x(e){return ce(e).replace(U,"%2B").replace(ae,"+").replace(Y,"%23").replace(Z,"%26").replace(ne,"`").replace(re,"{").replace(ie,"}").replace(oe,"^")}function k(e){return x(e).replace(J,"%3D")}function $(e=""){try{return decodeURIComponent(""+e)}catch{return""+e}}function le(e){return $(e.replace(U," "))}function ue(e=""){const t={};e[0]==="?"&&(e=e.slice(1));for(const o of e.split("&")){const n=o.match(/([^=]+)=?(.*)/)||[];if(n.length<2)continue;const r=$(n[1]);if(r==="__proto__"||r==="constructor")continue;const s=le(n[2]||"");typeof t[r]<"u"?Array.isArray(t[r])?t[r].push(s):t[r]=[t[r],s]:t[r]=s}return t}function fe(e,t){return(typeof t=="number"||typeof t=="boolean")&&(t=String(t)),t?Array.isArray(t)?t.map(o=>`${k(e)}=${x(o)}`).join("&"):`${k(e)}=${x(t)}`:k(e)}function de(e){return Object.keys(e).filter(t=>e[t]!==void 0).map(t=>fe(t,e[t])).join("&")}const he=/^\w{2,}:(\/\/)?/,pe=/^\/\/[^/]+/;function y(e,t=!1){return he.test(e)||t&&pe.test(e)}const ge=/\/$|\/\?/;function C(e="",t=!1){return t?ge.test(e):e.endsWith("/")}function B(e="",t=!1){if(!t)return(C(e)?e.slice(0,-1):e)||"/";if(!C(e,!0))return e||"/";const[o,...n]=e.split("?");return(o.slice(0,-1)||"/")+(n.length>0?`?${n.join("?")}`:"")}function _e(e="",t=!1){if(!t)return e.endsWith("/")?e:e+"/";if(C(e,!0))return e||"/";const[o,...n]=e.split("?");return o+"/"+(n.length>0?`?${n.join("?")}`:"")}function q(e=""){return e.startsWith("/")}function ve(e=""){return(q(e)?e.slice(1):e)||"/"}function Fe(e=""){return q(e)?e:"/"+e}function Ge(e,t){if(M(t)||y(e))return e;const o=B(t);return e.startsWith(o)?e:be(o,e)}function Xe(e,t){if(M(t))return e;const o=B(t);if(!e.startsWith(o))return e;const n=e.slice(o.length);return n[0]==="/"?n:"/"+n}function Ye(e,t){const o=P(e),n={...ue(o.search),...t};return o.search=de(n),ke(o)}function M(e){return!e||e==="/"}function ye(e){return e&&e!=="/"}function be(e,...t){let o=e||"";for(const n of t.filter(r=>ye(r)))o=o?_e(o)+ve(n):n;return o}function P(e="",t){if(!y(e,!0))return t?P(t+e):O(e);const[o="",n,r=""]=(e.replace(/\\/g,"/").match(/([^/:]+:)?\/\/([^/@]+@)?(.*)/)||[]).splice(1),[s="",i=""]=(r.match(/([^#/?]*)(.*)?/)||[]).splice(1),{pathname:a,search:c,hash:l}=O(i.replace(/\/(?=[A-Za-z]:)/,""));return{protocol:o,auth:n?n.slice(0,Math.max(0,n.length-1)):"",host:s,pathname:a,search:c,hash:l}}function O(e=""){const[t="",o="",n=""]=(e.match(/([^#?]*)(\?[^#]*)?(#.*)?/)||[]).splice(1);return{pathname:t,search:o,hash:n}}function ke(e){const t=e.pathname+(e.search?(e.search.startsWith("?")?"":"?")+e.search:"")+e.hash;return e.protocol?e.protocol+"//"+(e.auth?e.auth+"@":"")+e.host+t:t}function w(e,t={},o){for(const n in e){const r=e[n],s=o?`${o}:${n}`:n;typeof r=="object"&&r!==null?w(r,t,s):typeof r=="function"&&(t[s]=r)}return t}function me(e,t){return e.reduce((o,n)=>o.then(()=>n.apply(void 0,t)),Promise.resolve())}function xe(e,t){return Promise.all(e.map(o=>o.apply(void 0,t)))}function m(e,t){for(const o of e)o(t)}class Ce{constructor(){this._hooks={},this._before=void 0,this._after=void 0,this._deprecatedMessages=void 0,this._deprecatedHooks={},this.hook=this.hook.bind(this),this.callHook=this.callHook.bind(this),this.callHookWith=this.callHookWith.bind(this)}hook(t,o,n={}){if(!t||typeof o!="function")return()=>{};const r=t;let s;for(;this._deprecatedHooks[t];)s=this._deprecatedHooks[t],t=s.to;if(s&&!n.allowDeprecated){let i=s.message;i||(i=`${r} hook has been deprecated`+(s.to?`, please use ${s.to}`:"")),this._deprecatedMessages||(this._deprecatedMessages=new Set),this._deprecatedMessages.has(i)||(console.warn(i),this._deprecatedMessages.add(i))}return this._hooks[t]=this._hooks[t]||[],this._hooks[t].push(o),()=>{o&&(this.removeHook(t,o),o=void 0)}}hookOnce(t,o){let n,r=(...s)=>(typeof n=="function"&&n(),n=void 0,r=void 0,o(...s));return n=this.hook(t,r),n}removeHook(t,o){if(this._hooks[t]){const n=this._hooks[t].indexOf(o);n!==-1&&this._hooks[t].splice(n,1),this._hooks[t].length===0&&delete this._hooks[t]}}deprecateHook(t,o){this._deprecatedHooks[t]=typeof o=="string"?{to:o}:o;const n=this._hooks[t]||[];this._hooks[t]=void 0;for(const r of n)this.hook(t,r)}deprecateHooks(t){Object.assign(this._deprecatedHooks,t);for(const o in t)this.deprecateHook(o,t[o])}addHooks(t){const o=w(t),n=Object.keys(o).map(r=>this.hook(r,o[r]));return()=>{for(const r of n.splice(0,n.length))r()}}removeHooks(t){const o=w(t);for(const n in o)this.removeHook(n,o[n])}callHook(t,...o){return this.callHookWith(me,t,...o)}callHookParallel(t,...o){return this.callHookWith(xe,t,...o)}callHookWith(t,o,...n){const r=this._before||this._after?{name:o,args:n,context:{}}:void 0;this._before&&m(this._before,r);const s=t(this._hooks[o]||[],n);return s instanceof Promise?s.finally(()=>{this._after&&r&&m(this._after,r)}):(this._after&&r&&m(this._after,r),s)}beforeEach(t){return this._before=this._before||[],this._before.push(t),()=>{const o=this._before.indexOf(t);o!==-1&&this._before.splice(o,1)}}afterEach(t){return this._after=this._after||[],this._after.push(t),()=>{const o=this._after.indexOf(t);o!==-1&&this._after.splice(o,1)}}}function we(){return new Ce}function Ee(){let e,t=!1;const o=n=>{if(e&&e!==n)throw new Error("Context conflict")};return{use:()=>{if(e===void 0)throw new Error("Context is not available");return e},tryUse:()=>e,set:(n,r)=>{r||o(n),e=n,t=!0},unset:()=>{e=void 0,t=!1},call:(n,r)=>{o(n),e=n;try{return r()}finally{t||(e=void 0)}},async callAsync(n,r){e=n;const s=()=>{e=n},i=()=>e===n?s:void 0;E.add(i);try{const a=r();return t||(e=void 0),await a}finally{E.delete(i)}}}}function Re(){const e={};return{get(t){return e[t]||(e[t]=Ee()),e[t],e[t]}}}const v=typeof globalThis<"u"?globalThis:typeof self<"u"?self:typeof global<"u"?global:typeof window<"u"?window:{},S="__unctx__",Pe=v[S]||(v[S]=Re()),Ae=e=>Pe.get(e),j="__unctx_async_handlers__",E=v[j]||(v[j]=new Set);function Ze(e){const t=[];for(const r of E){const s=r();s&&t.push(s)}const o=()=>{for(const r of t)r()};let n=e();return n&&typeof n=="object"&&"catch"in n&&(n=n.catch(r=>{throw o(),r})),[n,o]}const W=Ae("nuxt-app"),He="__nuxt_plugin";function Je(e){let t=0;const o={provide:void 0,globalName:"nuxt",payload:H({data:{},state:{},_errors:{},...window.__NUXT__}),static:{data:{}},isHydrating:!0,deferHydration(){if(!o.isHydrating)return()=>{};t++;let s=!1;return()=>{if(!s&&(s=!0,t--,t===0))return o.isHydrating=!1,o.callHook("app:suspense:resolve")}},_asyncDataPromises:{},_asyncData:{},...e};o.hooks=we(),o.hook=o.hooks.hook,o.callHook=o.hooks.callHook,o.provide=(s,i)=>{const a="$"+s;_(o,a,i),_(o.vueApp.config.globalProperties,a,i)},_(o.vueApp,"$nuxt",o),_(o.vueApp.config.globalProperties,"$nuxt",o);const n=H(o.payload.config),r=new Proxy(n,{get(s,i){return i==="public"?s.public:s[i]??s.public[i]},set(s,i,a){return i==="public"||i==="app"?!1:(s[i]=a,s.public[i]=a,!0)}});return o.provide("config",r),o}async function Ne(e,t){if(typeof t!="function")return;const{provide:o}=await Le(e,t,[e])||{};if(o&&typeof o=="object")for(const n in o)e.provide(n,o[n])}async function et(e,t){for(const o of t)await Ne(e,o)}function tt(e){return e.map(o=>typeof o!="function"?null:o.length>1?n=>o(n,n.provide):o).filter(Boolean)}function ot(e){return e[He]=!0,e}function Le(e,t,o){const n=()=>o?t(...o):t();return W.set(e),n()}function f(){const e=W.tryUse();if(!e){const t=I();if(!t)throw new Error("nuxt instance unavailable");return t.appContext.app.$nuxt}return e}function nt(){return f().$config}function _(e,t,o){Object.defineProperty(e,t,{get:()=>o})}const A=()=>{var e;return(e=f())==null?void 0:e.$router},rt=()=>I()?K("_route",f()._route):f()._route,st=e=>e,it=(e,t,o={})=>{const n=f();o.global||typeof e=="function"?n._middleware.global.push(typeof e=="function"?e:t):n._middleware.named[e]=t},Te=()=>{try{if(f()._processingMiddleware)return!0}catch{return!0}return!1},Oe=(e,t)=>{e||(e="/");const o=typeof e=="string"?e:e.path||"/",n=y(o,!0);if(n&&!(t!=null&&t.external))throw new Error("Navigating to external URL is not allowed by default. Use `nagivateTo (url, { external: true })`.");if(n&&P(o).protocol==="script:")throw new Error("Cannot navigate to an URL with script protocol.");if(!n&&Te())return e;const r=A();return n?(t!=null&&t.replace?location.replace(o):location.href=o,Promise.resolve()):t!=null&&t.replace?r.replace(e):r.push(e)},R=globalThis.requestIdleCallback||(e=>{const t=Date.now(),o={didTimeout:!1,timeRemaining:()=>Math.max(0,50-(Date.now()-t))};return setTimeout(()=>{e(o)},1)}),Se=globalThis.cancelIdleCallback||(e=>{clearTimeout(e)}),je=e=>{const t=f();t.isHydrating?t.hooks.hookOnce("app:suspense:resolve",()=>{R(e)}):R(e)};async function D(e,t=A()){if(t._routePreloaded||(t._routePreloaded=new Set),t._routePreloaded.has(e))return;t._routePreloaded.add(e);const o=t._preloadPromises=t._preloadPromises||[];if(o.length>4)return Promise.all(o).then(()=>D(e,t));const n=t.resolve(e).matched.map(r=>{var s;return(s=r.components)==null?void 0:s.default}).filter(r=>typeof r=="function");for(const r of n){const s=Promise.resolve(r()).catch(()=>{}).finally(()=>o.splice(o.indexOf(s)));o.push(s)}await Promise.all(o)}const Ie=(...e)=>e.find(t=>t!==void 0),Ue="noopener noreferrer";function Q(e){const t=e.componentName||"NuxtLink";return z({name:t,props:{to:{type:[String,Object],default:void 0,required:!1},href:{type:[String,Object],default:void 0,required:!1},target:{type:String,default:void 0,required:!1},rel:{type:String,default:void 0,required:!1},noRel:{type:Boolean,default:void 0,required:!1},prefetch:{type:Boolean,default:void 0,required:!1},noPrefetch:{type:Boolean,default:void 0,required:!1},activeClass:{type:String,default:void 0,required:!1},exactActiveClass:{type:String,default:void 0,required:!1},prefetchedClass:{type:String,default:void 0,required:!1},replace:{type:Boolean,default:void 0,required:!1},ariaCurrentValue:{type:String,default:void 0,required:!1},external:{type:Boolean,default:void 0,required:!1},custom:{type:Boolean,default:void 0,required:!1}},setup(o,{slots:n}){const r=A(),s=N(()=>o.to||o.href||""),i=N(()=>o.external||o.target&&o.target!=="_self"?!0:typeof s.value=="object"?!1:s.value===""||y(s.value,!0)),a=L(!1),c=L(null);if(o.prefetch!==!1&&o.noPrefetch!==!0&&typeof s.value=="string"&&o.target!=="_blank"&&!qe()){const h=f();let d,u=null;F(()=>{const g=Be();je(()=>{d=R(()=>{var p;(p=c==null?void 0:c.value)!=null&&p.tagName&&(u=g.observe(c.value,async()=>{u==null||u(),u=null,await Promise.all([h.hooks.callHook("link:prefetch",s.value).catch(()=>{}),!i.value&&D(s.value,r).catch(()=>{})]),a.value=!0}))})})}),G(()=>{d&&Se(d),u==null||u(),u=null})}return()=>{var g,p;if(!i.value)return T(X("RouterLink"),{ref:b=>{c.value=b==null?void 0:b.$el},to:s.value,...a.value&&!o.custom?{class:o.prefetchedClass||e.prefetchedClass}:{},activeClass:o.activeClass||e.activeClass,exactActiveClass:o.exactActiveClass||e.exactActiveClass,replace:o.replace,ariaCurrentValue:o.ariaCurrentValue,custom:o.custom},n.default);const l=typeof s.value=="object"?((g=r.resolve(s.value))==null?void 0:g.href)??null:s.value||null,h=o.target||null,d=o.noRel?null:Ie(o.rel,e.externalRelAttribute,l?Ue:"")||null,u=()=>Oe(l,{replace:o.replace});return o.custom?n.default?n.default({href:l,navigate:u,route:r.resolve(l),rel:d,target:h,isExternal:i.value,isActive:!1,isExactActive:!1}):null:T("a",{ref:c,href:l,rel:d,target:h},(p=n.default)==null?void 0:p.call(n))}}})}const $e=Q({componentName:"NuxtLink"});function Be(){const e=f();if(e._observer)return e._observer;let t=null;const o=new Map,n=(s,i)=>(t||(t=new IntersectionObserver(a=>{for(const c of a){const l=o.get(c.target);(c.isIntersecting||c.intersectionRatio>0)&&l&&l()}})),o.set(s,i),t.observe(s),()=>{o.delete(s),t.unobserve(s),o.size===0&&(t.disconnect(),t=null)});return e._observer={observe:n}}function qe(){const e=navigator.connection;return!!(e&&(e.saveData||/2g/.test(e.effectiveType)))}const at=Object.freeze(Object.defineProperty({__proto__:null,default:$e,defineNuxtLink:Q},Symbol.toStringTag,{value:"Module"})),Me={github:{owner:"realdecoy",repo:"frontier",branch:"main"},docus:{title:"Frontier",description:"Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.",image:"https://content.nuxtjs.org/preview.png",url:"https://realdecoy.com",socials:{github:"realdecoy/frontier"},github:{dir:"",root:"",edit:!0,releases:!0,owner:"realdecoy",repo:"frontier",branch:"main"},cover:{src:"/cover.jpg",alt:"Tooling maded easy for developers"},aside:{level:1},layout:{fluid:!0},header:{logo:"Logo"},footer:{iconLinks:[{label:"Realdecoy",href:"https://realdecoy.com",icon:"IconNuxt"}]}}},We={docus:{title:"Docus",description:"The best place to start your documentation.",image:"https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png",socials:{twitter:"",github:"",facebook:"",instagram:"",youtube:"",medium:""},layout:"default",header:{title:"",logo:!1,showLinkIcon:!1,fluid:!1,exclude:[]},aside:{level:0,collapsed:!1,exclude:[]},footer:{credits:{icon:"IconDocus",text:"Powered by Docus",href:"https://docus.dev"},textLinks:[],iconLinks:[],fluid:!1},github:{dir:void 0,branch:void 0,repo:void 0,owner:void 0,edit:!1}}},De={prose:{copyButton:{iconCopy:"ph:copy",iconCopied:"ph:check"},headings:{icon:"ph:link"}}},Qe={},Ve={},ct=V(Me,We,De,Qe,Ve);export{$e as _,Ye as a,st as b,we as c,ot as d,Ze as e,nt as f,Le as g,Xe as h,A as i,be as j,y as k,rt as l,B as m,Fe as n,it as o,Oe as p,tt as q,Je as r,et as s,ct as t,f as u,_e as v,Ge as w,at as x}; diff --git a/docs/.output/public/_nuxt/asyncData.7c06b2d5.js b/docs/.output/public/_nuxt/asyncData.45fd3bd9.js similarity index 94% rename from docs/.output/public/_nuxt/asyncData.7c06b2d5.js rename to docs/.output/public/_nuxt/asyncData.45fd3bd9.js index d1ce3603..a34ed747 100644 --- a/docs/.output/public/_nuxt/asyncData.7c06b2d5.js +++ b/docs/.output/public/_nuxt/asyncData.45fd3bd9.js @@ -1 +1 @@ -import{u as v}from"./app.config.f41ab05d.js";import{c as _}from"./entry.f3791b9c.js";import{r as y,af as x,aj as D,a as w,u as b,g as C}from"./runtime-core.esm-bundler.6894272a.js";const O=()=>null;function E(...s){var h;const f=typeof s[s.length-1]=="string"?s.pop():void 0;typeof s[0]!="string"&&s.unshift(f);let[r,l,a={}]=s;if(typeof r!="string")throw new TypeError("[nuxt] [asyncData] key must be a string.");if(typeof l!="function")throw new TypeError("[nuxt] [asyncData] handler must be a function.");a.server=a.server??!0,a.default=a.default??O,a.lazy=a.lazy??!1,a.immediate=a.immediate??!0;const e=v(),u=()=>e.isHydrating?e.payload.data[r]:e.static.data[r],d=()=>u()!==void 0;e._asyncData[r]||(e._asyncData[r]={data:y(u()??((h=a.default)==null?void 0:h.call(a))??null),pending:y(!d()),error:y(e.payload._errors[r]?_(e.payload._errors[r]):null)});const n={...e._asyncData[r]};n.refresh=n.execute=(o={})=>{if(e._asyncDataPromises[r]){if(o.dedupe===!1)return e._asyncDataPromises[r];e._asyncDataPromises[r].cancelled=!0}if(o._initial&&d())return u();n.pending.value=!0;const i=new Promise((t,c)=>{try{t(l(e))}catch(P){c(P)}}).then(t=>{if(i.cancelled)return e._asyncDataPromises[r];a.transform&&(t=a.transform(t)),a.pick&&(t=k(t,a.pick)),n.data.value=t,n.error.value=null}).catch(t=>{var c;if(i.cancelled)return e._asyncDataPromises[r];n.error.value=t,n.data.value=b(((c=a.default)==null?void 0:c.call(a))??null)}).finally(()=>{i.cancelled||(n.pending.value=!1,e.payload.data[r]=n.data.value,n.error.value&&(e.payload._errors[r]=_(n.error.value)),delete e._asyncDataPromises[r])});return e._asyncDataPromises[r]=i,e._asyncDataPromises[r]};const p=()=>n.refresh({_initial:!0}),g=a.server!==!1&&e.payload.serverRendered;{const o=C();if(o&&!o._nuxtOnBeforeMountCbs){o._nuxtOnBeforeMountCbs=[];const t=o._nuxtOnBeforeMountCbs;o&&(x(()=>{t.forEach(c=>{c()}),t.splice(0,t.length)}),D(()=>t.splice(0,t.length)))}g&&e.isHydrating&&d()?n.pending.value=!1:o&&(e.payload.serverRendered&&e.isHydrating||a.lazy)&&a.immediate?o._nuxtOnBeforeMountCbs.push(p):a.immediate&&p(),a.watch&&w(a.watch,()=>n.refresh());const i=e.hook("app:data:refresh",t=>{if(!t||t.includes(r))return n.refresh()});o&&D(i)}const m=Promise.resolve(e._asyncDataPromises[r]).then(()=>n);return Object.assign(m,n),m}async function H(s){const f=s?Array.isArray(s)?s:[s]:void 0;await v().hooks.callHookParallel("app:data:refresh",f)}function k(s,f){const r={};for(const l of f)r[l]=s[l];return r}export{H as r,E as u}; +import{u as v}from"./app.config.88c4fc0b.js";import{c as _}from"./entry.c31835cb.js";import{r as y,af as x,aj as D,a as w,u as b,g as C}from"./runtime-core.esm-bundler.6894272a.js";const O=()=>null;function E(...s){var h;const f=typeof s[s.length-1]=="string"?s.pop():void 0;typeof s[0]!="string"&&s.unshift(f);let[r,l,a={}]=s;if(typeof r!="string")throw new TypeError("[nuxt] [asyncData] key must be a string.");if(typeof l!="function")throw new TypeError("[nuxt] [asyncData] handler must be a function.");a.server=a.server??!0,a.default=a.default??O,a.lazy=a.lazy??!1,a.immediate=a.immediate??!0;const e=v(),u=()=>e.isHydrating?e.payload.data[r]:e.static.data[r],d=()=>u()!==void 0;e._asyncData[r]||(e._asyncData[r]={data:y(u()??((h=a.default)==null?void 0:h.call(a))??null),pending:y(!d()),error:y(e.payload._errors[r]?_(e.payload._errors[r]):null)});const n={...e._asyncData[r]};n.refresh=n.execute=(o={})=>{if(e._asyncDataPromises[r]){if(o.dedupe===!1)return e._asyncDataPromises[r];e._asyncDataPromises[r].cancelled=!0}if(o._initial&&d())return u();n.pending.value=!0;const i=new Promise((t,c)=>{try{t(l(e))}catch(P){c(P)}}).then(t=>{if(i.cancelled)return e._asyncDataPromises[r];a.transform&&(t=a.transform(t)),a.pick&&(t=k(t,a.pick)),n.data.value=t,n.error.value=null}).catch(t=>{var c;if(i.cancelled)return e._asyncDataPromises[r];n.error.value=t,n.data.value=b(((c=a.default)==null?void 0:c.call(a))??null)}).finally(()=>{i.cancelled||(n.pending.value=!1,e.payload.data[r]=n.data.value,n.error.value&&(e.payload._errors[r]=_(n.error.value)),delete e._asyncDataPromises[r])});return e._asyncDataPromises[r]=i,e._asyncDataPromises[r]};const p=()=>n.refresh({_initial:!0}),g=a.server!==!1&&e.payload.serverRendered;{const o=C();if(o&&!o._nuxtOnBeforeMountCbs){o._nuxtOnBeforeMountCbs=[];const t=o._nuxtOnBeforeMountCbs;o&&(x(()=>{t.forEach(c=>{c()}),t.splice(0,t.length)}),D(()=>t.splice(0,t.length)))}g&&e.isHydrating&&d()?n.pending.value=!1:o&&(e.payload.serverRendered&&e.isHydrating||a.lazy)&&a.immediate?o._nuxtOnBeforeMountCbs.push(p):a.immediate&&p(),a.watch&&w(a.watch,()=>n.refresh());const i=e.hook("app:data:refresh",t=>{if(!t||t.includes(r))return n.refresh()});o&&D(i)}const m=Promise.resolve(e._asyncDataPromises[r]).then(()=>n);return Object.assign(m,n),m}async function H(s){const f=s?Array.isArray(s)?s:[s]:void 0;await v().hooks.callHookParallel("app:data:refresh",f)}function k(s,f){const r={};for(const l of f)r[l]=s[l];return r}export{H as r,E as u}; diff --git a/docs/.output/public/_nuxt/client-db.514bef37.js b/docs/.output/public/_nuxt/client-db.e451d8e0.js similarity index 98% rename from docs/.output/public/_nuxt/client-db.514bef37.js rename to docs/.output/public/_nuxt/client-db.e451d8e0.js index 6e5a448c..4716b096 100644 --- a/docs/.output/public/_nuxt/client-db.514bef37.js +++ b/docs/.output/public/_nuxt/client-db.e451d8e0.js @@ -1 +1 @@ -import{d as j,u as M}from"./cookie.b9cff64d.js";import{f as K,u as T,w as W}from"./app.config.f41ab05d.js";import{g as B,a as $,e as A,s as J,b as x,w as H,d as b,c as q}from"./query.c3f7607a.js";import{p as G}from"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";const Z=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}};function F(t){return!t||typeof t.then!="function"?Promise.resolve(t):t}function p(t,...e){try{return F(t(...e))}catch(n){return Promise.reject(n)}}function k(t){const e=typeof t;return t===null||e!=="object"&&e!=="function"}function Q(t){const e=Object.getPrototypeOf(t);return!e||e.isPrototypeOf(Object)}function z(t){if(k(t))return String(t);if(Q(t)||Array.isArray(t))return JSON.stringify(t);if(typeof t.toJSON=="function")return z(t.toJSON());throw new Error("[unstorage] Cannot stringify value!")}function D(){if(typeof Buffer===void 0)throw new TypeError("[unstorage] Buffer is not supported!")}const _="base64:";function V(t){if(typeof t=="string")return t;D();const e=Buffer.from(t).toString("base64");return _+e}function X(t){return typeof t!="string"||!t.startsWith(_)?t:(D(),Buffer.from(t.slice(_.length),"base64"))}const ee=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}},te=["hasItem","getItem","setItem","removeItem","getMeta","setMeta","removeMeta","getKeys","clear","mount","unmount"];function re(t,e){if(e=I(e),!e)return t;const n={...t};for(const i of te)n[i]=(a="",...s)=>t[i](e+a,...s);return n.getKeys=(i="",...a)=>t.getKeys(e+i,...a).then(s=>s.map(c=>c.slice(e.length))),n}function g(t){return t?t.split("?")[0].replace(/[/\\]/g,":").replace(/:+/g,":").replace(/^:|:$/g,""):""}function I(t){return t=g(t),t?t+":":""}function ne(t={}){const e={mounts:{"":t.driver||ee()},mountpoints:[""],watching:!1,watchListeners:[],unwatch:{}},n=r=>{for(const u of e.mountpoints)if(r.startsWith(u))return{relativeKey:r.slice(u.length),driver:e.mounts[u]};return{relativeKey:r,driver:e.mounts[""]}},i=(r,u)=>e.mountpoints.filter(o=>o.startsWith(r)||u&&r.startsWith(o)).map(o=>({relativeBase:r.length>o.length?r.slice(o.length):void 0,mountpoint:o,driver:e.mounts[o]})),a=(r,u)=>{if(e.watching){u=g(u);for(const o of e.watchListeners)o(r,u)}},s=async()=>{if(!e.watching){e.watching=!0;for(const r in e.mounts)e.unwatch[r]=await C(e.mounts[r],a,r)}},c=async()=>{if(e.watching){for(const r in e.unwatch)await e.unwatch[r]();e.unwatch={},e.watching=!1}},m={hasItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.hasItem,u)},getItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.getItem,u).then(l=>j(l))},getItemRaw(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return o.getItemRaw?p(o.getItemRaw,u):p(o.getItem,u).then(l=>X(l))},async setItem(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);l.setItem&&(await p(l.setItem,o,z(u)),l.watch||a("update",r))},async setItemRaw(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);if(l.setItemRaw)await p(l.setItemRaw,o,u);else if(l.setItem)await p(l.setItem,o,V(u));else return;l.watch||a("update",r)},async removeItem(r,u=!0){r=g(r);const{relativeKey:o,driver:l}=n(r);l.removeItem&&(await p(l.removeItem,o),u&&await p(l.removeItem,o+"$"),l.watch||a("remove",r))},async getMeta(r,u){r=g(r);const{relativeKey:o,driver:l}=n(r),h=Object.create(null);if(l.getMeta&&Object.assign(h,await p(l.getMeta,o)),!u){const f=await p(l.getItem,o+"$").then(d=>j(d));f&&typeof f=="object"&&(typeof f.atime=="string"&&(f.atime=new Date(f.atime)),typeof f.mtime=="string"&&(f.mtime=new Date(f.mtime)),Object.assign(h,f))}return h},setMeta(r,u){return this.setItem(r+"$",u)},removeMeta(r){return this.removeItem(r+"$")},async getKeys(r){r=I(r);const u=i(r,!0);let o=[];const l=[];for(const h of u){const d=(await p(h.driver.getKeys,h.relativeBase)).map(y=>h.mountpoint+g(y)).filter(y=>!o.some(w=>y.startsWith(w)));l.push(...d),o=[h.mountpoint,...o.filter(y=>!y.startsWith(h.mountpoint))]}return r?l.filter(h=>h.startsWith(r)&&!h.endsWith("$")):l.filter(h=>!h.endsWith("$"))},async clear(r){r=I(r),await Promise.all(i(r,!1).map(async u=>{if(u.driver.clear)return p(u.driver.clear);if(u.driver.removeItem){const o=await u.driver.getKeys();return Promise.all(o.map(l=>u.driver.removeItem(l)))}}))},async dispose(){await Promise.all(Object.values(e.mounts).map(r=>P(r)))},async watch(r){return await s(),e.watchListeners.push(r),async()=>{e.watchListeners=e.watchListeners.filter(u=>u!==r),e.watchListeners.length===0&&await c()}},async unwatch(){e.watchListeners=[],await c()},mount(r,u){if(r=I(r),r&&e.mounts[r])throw new Error(`already mounted at ${r}`);return r&&(e.mountpoints.push(r),e.mountpoints.sort((o,l)=>l.length-o.length)),e.mounts[r]=u,e.watching&&Promise.resolve(C(u,a,r)).then(o=>{e.unwatch[r]=o}).catch(console.error),m},async unmount(r,u=!0){r=I(r),!(!r||!e.mounts[r])&&(e.watching&&r in e.unwatch&&(e.unwatch[r](),delete e.unwatch[r]),u&&await P(e.mounts[r]),e.mountpoints=e.mountpoints.filter(o=>o!==r),delete e.mounts[r])}};return m}function C(t,e,n){return t.watch?t.watch((i,a)=>e(i,n+a)):()=>{}}async function P(t){typeof t.dispose=="function"&&await p(t.dispose)}function ie(t={}){const e=ae(n,t.operators);function n(i,a){return typeof a!="object"||a instanceof RegExp?e.$eq(i,a):Object.keys(a||{}).every(s=>{const c=a[s];if(s.startsWith("$")&&e[s]){const m=e[s];return typeof m=="function"?m(i,c):!1}return n(B(i,s),c)})}return n}function ae(t,e={}){return{$match:(n,i)=>t(n,i),$eq:(n,i)=>i instanceof RegExp?i.test(n):n===i,$ne:(n,i)=>i instanceof RegExp?!i.test(n):n!==i,$not:(n,i)=>!t(n,i),$and:(n,i)=>($(i,"$and requires an array as condition"),i.every(a=>t(n,a))),$or:(n,i)=>($(i,"$or requires an array as condition"),i.some(a=>t(n,a))),$in:(n,i)=>A(i).some(a=>Array.isArray(n)?t(n,{$contains:a}):t(n,a)),$contains:(n,i)=>(n=Array.isArray(n)?n:String(n),A(i).every(a=>n.includes(a))),$icontains:(n,i)=>{if(typeof i!="string")throw new TypeError("$icontains requires a string, use $contains instead");return n=String(n).toLocaleLowerCase(),A(i).every(a=>n.includes(a.toLocaleLowerCase()))},$containsAny:(n,i)=>($(i,"$containsAny requires an array as condition"),n=Array.isArray(n)?n:String(n),i.some(a=>n.includes(a))),$exists:(n,i)=>i?typeof n<"u":typeof n>"u",$type:(n,i)=>typeof n===String(i),$regex:(n,i)=>{if(!(i instanceof RegExp)){const a=String(i).match(/\/(.*)\/([dgimsuy]*)$/);i=a?new RegExp(a[1],a[2]||""):new RegExp(i)}return i.test(String(n||""))},$lt:(n,i)=>nn<=i,$gt:(n,i)=>n>i,$gte:(n,i)=>n>=i,...e||{}}}function R(t){const e=ie(),n=(a,{query:s,before:c,after:m})=>{const r=typeof s=="string"?{_path:s}:s,u=a.findIndex(l=>e(l,r));c=c||1,m=m||1;const o=new Array(c+m).fill(null,0);return u===-1?o:o.map((l,h)=>a[u-c+h+Number(h>=c)]||null)},i=[(a,s)=>a.filter(c=>A(s.where).every(m=>e(c,m))),(a,s)=>A(s.sort).forEach(c=>J(a,c)),(a,s)=>s.surround?n(a,s.surround):a,(a,s)=>s.skip?a.slice(s.skip):a,(a,s)=>s.limit?a.slice(0,s.limit):a,(a,s)=>x(H(s.without))(a),(a,s)=>x(b(s.only))(a)];return async a=>{const s=await t(),c=a.params(),m=i.reduce((r,u)=>u(r,c)||r,s);return c.first?m[0]:m}}var se=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},L={},oe={get exports(){return L},set exports(t){L=t}};(function(t,e){(function(n,i,a){t.exports=a(),t.exports.default=a()})("slugify",se,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),i=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function a(s,c){if(typeof s!="string")throw new Error("slugify: string argument expected");c=typeof c=="string"?{replacement:c}:c||{};var m=i[c.locale]||{},r=c.replacement===void 0?"-":c.replacement,u=c.trim===void 0?!0:c.trim,o=s.normalize().split("").reduce(function(l,h){var f=m[h]||n[h]||h;return f===r&&(f=" "),l+f.replace(c.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return c.strict&&(o=o.replace(/[^A-Za-z0-9\s]/g,"")),u&&(o=o.trim()),o=o.replace(/\s+/g,r),c.lower&&(o=o.toLowerCase()),o}return a.extend=function(s){Object.assign(n,s)},a})})(oe);const ce=t=>t.split(/[\s-]/g).map(G).join(" ");function ue(t,e){const{navigation:n}=K().content,i=s=>({...fe(["title",...n.fields])(s),...me(s==null?void 0:s.navigation)?s.navigation:{}}),a=t.sort((s,c)=>s._path.localeCompare(c._path)).reduce((s,c)=>{const m=c._path.substring(1).split("/"),r=c._id.split(":").slice(1),u=!!r[r.length-1].match(/([1-9][0-9]*\.)?index.md/g),o=f=>({title:f.title,_path:f._path,_file:f._file,children:[],...i(f),...f._draft?{_draft:!0}:{}}),l=o(c);if(u){const f=e[l._path];if(typeof(f==null?void 0:f.navigation)<"u"&&!(f!=null&&f.navigation))return s;if(c._path!=="/"){const d=o(c);l.children.push(d)}Object.assign(l,i(f))}return m.length===1?(s.push(l),s):(m.slice(0,-1).reduce((f,d,y)=>{const w="/"+m.slice(0,y+1).join("/"),v=e[w];if(typeof(v==null?void 0:v.navigation)<"u"&&!v.navigation)return[];let O=f.find(N=>N._path===w);return O||(O={title:ce(d),_path:w,_file:c._file,children:[],...i(v)},f.push(O)),O.children},s).push(l),s)},[]);return U(a)}const le=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"});function U(t){const e=t.sort((n,i)=>le.compare(n._file,i._file));for(const n of e)n.children.length?U(n.children):delete n.children,delete n._file;return t}function fe(t){return e=>(e=e||{},t&&t.length?t.filter(n=>typeof e[n]<"u").reduce((n,i)=>Object.assign(n,{[i]:e[i]}),{}):e)}function me(t){return Object.prototype.toString.call(t)==="[object Object]"}const he=t=>W(t,K().public.content.api.baseURL),pe=re(ne({driver:Z()}),"@content"),Y=()=>M("previewToken").value;function ge(t){async function e(){const n=new Set(await t.getKeys("cache:")),i=Y();if(i){(await t.getItem(`${i}$`).then(r=>r||{})).ignoreBuiltContents&&n.clear();const c=await t.getKeys(`${i}:`),m=await Promise.all(c.map(r=>t.getItem(r)));for(const r of m)n.delete(`cache:${r._id}`),r.__deleted||n.add(`${i}:${r._id}`)}return await Promise.all(Array.from(n).map(s=>t.getItem(s)))}return{storage:t,fetch:R(e),query:n=>q(R(e),n)}}let S=null,E=null;async function de(){return E?await E:S||(E=ye(),S=await E),S}async function ye(){const t=T(),{content:e}=K().public,n=ge(pe),i=await n.storage.getItem("integrity");if(e.integrity!==+(i||0)){const{contents:a,navigation:s}=await $fetch(he(e.integrity?`cache.${e.integrity}.json`:"cache.json"));await Promise.all(a.map(c=>n.storage.setItem(`cache:${c._id}`,c))),await n.storage.setItem("navigation",s),await n.storage.setItem("integrity",e.integrity)}return await t.callHook("content:storage",n.storage),n}async function Ee(t){const e=await de();if(!Y()&&Object.keys(t||{}).length===0)return e.storage.getItem("navigation");const n=await e.query(t).where({_partial:!1,navigation:{$ne:!1}}).find(),a=(await e.query().where({_path:/\/_dir$/i,_partial:!0}).find()).reduce((s,c)=>{var r;((r=c.title)==null?void 0:r.toLowerCase())==="dir"&&(c.title=void 0);const m=c._path.split("/").slice(0,-1).join("/")||"/";return s[m]={...c,...c.body},s},{});return ue(n,a)}export{pe as contentStorage,ge as createDB,Ee as generateNavigation,Y as getPreview,de as useContentDatabase}; +import{d as j,u as M}from"./cookie.71eae014.js";import{b as K,u as T,w as W}from"./app.config.88c4fc0b.js";import{g as B,a as $,e as A,s as J,b as x,w as b,d as H,c as q}from"./query.c3f7607a.js";import{p as G}from"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";const Z=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}};function F(t){return!t||typeof t.then!="function"?Promise.resolve(t):t}function p(t,...e){try{return F(t(...e))}catch(n){return Promise.reject(n)}}function k(t){const e=typeof t;return t===null||e!=="object"&&e!=="function"}function Q(t){const e=Object.getPrototypeOf(t);return!e||e.isPrototypeOf(Object)}function z(t){if(k(t))return String(t);if(Q(t)||Array.isArray(t))return JSON.stringify(t);if(typeof t.toJSON=="function")return z(t.toJSON());throw new Error("[unstorage] Cannot stringify value!")}function D(){if(typeof Buffer===void 0)throw new TypeError("[unstorage] Buffer is not supported!")}const _="base64:";function V(t){if(typeof t=="string")return t;D();const e=Buffer.from(t).toString("base64");return _+e}function X(t){return typeof t!="string"||!t.startsWith(_)?t:(D(),Buffer.from(t.slice(_.length),"base64"))}const ee=()=>{const t=new Map;return{hasItem(e){return t.has(e)},getItem(e){return t.get(e)||null},getItemRaw(e){return t.get(e)||null},setItem(e,n){t.set(e,n)},setItemRaw(e,n){t.set(e,n)},removeItem(e){t.delete(e)},getKeys(){return Array.from(t.keys())},clear(){t.clear()},dispose(){t.clear()}}},te=["hasItem","getItem","setItem","removeItem","getMeta","setMeta","removeMeta","getKeys","clear","mount","unmount"];function re(t,e){if(e=I(e),!e)return t;const n={...t};for(const i of te)n[i]=(a="",...s)=>t[i](e+a,...s);return n.getKeys=(i="",...a)=>t.getKeys(e+i,...a).then(s=>s.map(c=>c.slice(e.length))),n}function g(t){return t?t.split("?")[0].replace(/[/\\]/g,":").replace(/:+/g,":").replace(/^:|:$/g,""):""}function I(t){return t=g(t),t?t+":":""}function ne(t={}){const e={mounts:{"":t.driver||ee()},mountpoints:[""],watching:!1,watchListeners:[],unwatch:{}},n=r=>{for(const u of e.mountpoints)if(r.startsWith(u))return{relativeKey:r.slice(u.length),driver:e.mounts[u]};return{relativeKey:r,driver:e.mounts[""]}},i=(r,u)=>e.mountpoints.filter(o=>o.startsWith(r)||u&&r.startsWith(o)).map(o=>({relativeBase:r.length>o.length?r.slice(o.length):void 0,mountpoint:o,driver:e.mounts[o]})),a=(r,u)=>{if(e.watching){u=g(u);for(const o of e.watchListeners)o(r,u)}},s=async()=>{if(!e.watching){e.watching=!0;for(const r in e.mounts)e.unwatch[r]=await C(e.mounts[r],a,r)}},c=async()=>{if(e.watching){for(const r in e.unwatch)await e.unwatch[r]();e.unwatch={},e.watching=!1}},m={hasItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.hasItem,u)},getItem(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return p(o.getItem,u).then(l=>j(l))},getItemRaw(r){r=g(r);const{relativeKey:u,driver:o}=n(r);return o.getItemRaw?p(o.getItemRaw,u):p(o.getItem,u).then(l=>X(l))},async setItem(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);l.setItem&&(await p(l.setItem,o,z(u)),l.watch||a("update",r))},async setItemRaw(r,u){if(u===void 0)return m.removeItem(r);r=g(r);const{relativeKey:o,driver:l}=n(r);if(l.setItemRaw)await p(l.setItemRaw,o,u);else if(l.setItem)await p(l.setItem,o,V(u));else return;l.watch||a("update",r)},async removeItem(r,u=!0){r=g(r);const{relativeKey:o,driver:l}=n(r);l.removeItem&&(await p(l.removeItem,o),u&&await p(l.removeItem,o+"$"),l.watch||a("remove",r))},async getMeta(r,u){r=g(r);const{relativeKey:o,driver:l}=n(r),h=Object.create(null);if(l.getMeta&&Object.assign(h,await p(l.getMeta,o)),!u){const f=await p(l.getItem,o+"$").then(d=>j(d));f&&typeof f=="object"&&(typeof f.atime=="string"&&(f.atime=new Date(f.atime)),typeof f.mtime=="string"&&(f.mtime=new Date(f.mtime)),Object.assign(h,f))}return h},setMeta(r,u){return this.setItem(r+"$",u)},removeMeta(r){return this.removeItem(r+"$")},async getKeys(r){r=I(r);const u=i(r,!0);let o=[];const l=[];for(const h of u){const d=(await p(h.driver.getKeys,h.relativeBase)).map(y=>h.mountpoint+g(y)).filter(y=>!o.some(w=>y.startsWith(w)));l.push(...d),o=[h.mountpoint,...o.filter(y=>!y.startsWith(h.mountpoint))]}return r?l.filter(h=>h.startsWith(r)&&!h.endsWith("$")):l.filter(h=>!h.endsWith("$"))},async clear(r){r=I(r),await Promise.all(i(r,!1).map(async u=>{if(u.driver.clear)return p(u.driver.clear);if(u.driver.removeItem){const o=await u.driver.getKeys();return Promise.all(o.map(l=>u.driver.removeItem(l)))}}))},async dispose(){await Promise.all(Object.values(e.mounts).map(r=>P(r)))},async watch(r){return await s(),e.watchListeners.push(r),async()=>{e.watchListeners=e.watchListeners.filter(u=>u!==r),e.watchListeners.length===0&&await c()}},async unwatch(){e.watchListeners=[],await c()},mount(r,u){if(r=I(r),r&&e.mounts[r])throw new Error(`already mounted at ${r}`);return r&&(e.mountpoints.push(r),e.mountpoints.sort((o,l)=>l.length-o.length)),e.mounts[r]=u,e.watching&&Promise.resolve(C(u,a,r)).then(o=>{e.unwatch[r]=o}).catch(console.error),m},async unmount(r,u=!0){r=I(r),!(!r||!e.mounts[r])&&(e.watching&&r in e.unwatch&&(e.unwatch[r](),delete e.unwatch[r]),u&&await P(e.mounts[r]),e.mountpoints=e.mountpoints.filter(o=>o!==r),delete e.mounts[r])}};return m}function C(t,e,n){return t.watch?t.watch((i,a)=>e(i,n+a)):()=>{}}async function P(t){typeof t.dispose=="function"&&await p(t.dispose)}function ie(t={}){const e=ae(n,t.operators);function n(i,a){return typeof a!="object"||a instanceof RegExp?e.$eq(i,a):Object.keys(a||{}).every(s=>{const c=a[s];if(s.startsWith("$")&&e[s]){const m=e[s];return typeof m=="function"?m(i,c):!1}return n(B(i,s),c)})}return n}function ae(t,e={}){return{$match:(n,i)=>t(n,i),$eq:(n,i)=>i instanceof RegExp?i.test(n):n===i,$ne:(n,i)=>i instanceof RegExp?!i.test(n):n!==i,$not:(n,i)=>!t(n,i),$and:(n,i)=>($(i,"$and requires an array as condition"),i.every(a=>t(n,a))),$or:(n,i)=>($(i,"$or requires an array as condition"),i.some(a=>t(n,a))),$in:(n,i)=>A(i).some(a=>Array.isArray(n)?t(n,{$contains:a}):t(n,a)),$contains:(n,i)=>(n=Array.isArray(n)?n:String(n),A(i).every(a=>n.includes(a))),$icontains:(n,i)=>{if(typeof i!="string")throw new TypeError("$icontains requires a string, use $contains instead");return n=String(n).toLocaleLowerCase(),A(i).every(a=>n.includes(a.toLocaleLowerCase()))},$containsAny:(n,i)=>($(i,"$containsAny requires an array as condition"),n=Array.isArray(n)?n:String(n),i.some(a=>n.includes(a))),$exists:(n,i)=>i?typeof n<"u":typeof n>"u",$type:(n,i)=>typeof n===String(i),$regex:(n,i)=>{if(!(i instanceof RegExp)){const a=String(i).match(/\/(.*)\/([dgimsuy]*)$/);i=a?new RegExp(a[1],a[2]||""):new RegExp(i)}return i.test(String(n||""))},$lt:(n,i)=>nn<=i,$gt:(n,i)=>n>i,$gte:(n,i)=>n>=i,...e||{}}}function R(t){const e=ie(),n=(a,{query:s,before:c,after:m})=>{const r=typeof s=="string"?{_path:s}:s,u=a.findIndex(l=>e(l,r));c=c||1,m=m||1;const o=new Array(c+m).fill(null,0);return u===-1?o:o.map((l,h)=>a[u-c+h+Number(h>=c)]||null)},i=[(a,s)=>a.filter(c=>A(s.where).every(m=>e(c,m))),(a,s)=>A(s.sort).forEach(c=>J(a,c)),(a,s)=>s.surround?n(a,s.surround):a,(a,s)=>s.skip?a.slice(s.skip):a,(a,s)=>s.limit?a.slice(0,s.limit):a,(a,s)=>x(b(s.without))(a),(a,s)=>x(H(s.only))(a)];return async a=>{const s=await t(),c=a.params(),m=i.reduce((r,u)=>u(r,c)||r,s);return c.first?m[0]:m}}var se=typeof globalThis<"u"?globalThis:typeof window<"u"?window:typeof global<"u"?global:typeof self<"u"?self:{},L={},oe={get exports(){return L},set exports(t){L=t}};(function(t,e){(function(n,i,a){t.exports=a(),t.exports.default=a()})("slugify",se,function(){var n=JSON.parse(`{"$":"dollar","%":"percent","&":"and","<":"less",">":"greater","|":"or","¢":"cent","£":"pound","¤":"currency","¥":"yen","©":"(c)","ª":"a","®":"(r)","º":"o","À":"A","Á":"A","Â":"A","Ã":"A","Ä":"A","Å":"A","Æ":"AE","Ç":"C","È":"E","É":"E","Ê":"E","Ë":"E","Ì":"I","Í":"I","Î":"I","Ï":"I","Ð":"D","Ñ":"N","Ò":"O","Ó":"O","Ô":"O","Õ":"O","Ö":"O","Ø":"O","Ù":"U","Ú":"U","Û":"U","Ü":"U","Ý":"Y","Þ":"TH","ß":"ss","à":"a","á":"a","â":"a","ã":"a","ä":"a","å":"a","æ":"ae","ç":"c","è":"e","é":"e","ê":"e","ë":"e","ì":"i","í":"i","î":"i","ï":"i","ð":"d","ñ":"n","ò":"o","ó":"o","ô":"o","õ":"o","ö":"o","ø":"o","ù":"u","ú":"u","û":"u","ü":"u","ý":"y","þ":"th","ÿ":"y","Ā":"A","ā":"a","Ă":"A","ă":"a","Ą":"A","ą":"a","Ć":"C","ć":"c","Č":"C","č":"c","Ď":"D","ď":"d","Đ":"DJ","đ":"dj","Ē":"E","ē":"e","Ė":"E","ė":"e","Ę":"e","ę":"e","Ě":"E","ě":"e","Ğ":"G","ğ":"g","Ģ":"G","ģ":"g","Ĩ":"I","ĩ":"i","Ī":"i","ī":"i","Į":"I","į":"i","İ":"I","ı":"i","Ķ":"k","ķ":"k","Ļ":"L","ļ":"l","Ľ":"L","ľ":"l","Ł":"L","ł":"l","Ń":"N","ń":"n","Ņ":"N","ņ":"n","Ň":"N","ň":"n","Ō":"O","ō":"o","Ő":"O","ő":"o","Œ":"OE","œ":"oe","Ŕ":"R","ŕ":"r","Ř":"R","ř":"r","Ś":"S","ś":"s","Ş":"S","ş":"s","Š":"S","š":"s","Ţ":"T","ţ":"t","Ť":"T","ť":"t","Ũ":"U","ũ":"u","Ū":"u","ū":"u","Ů":"U","ů":"u","Ű":"U","ű":"u","Ų":"U","ų":"u","Ŵ":"W","ŵ":"w","Ŷ":"Y","ŷ":"y","Ÿ":"Y","Ź":"Z","ź":"z","Ż":"Z","ż":"z","Ž":"Z","ž":"z","Ə":"E","ƒ":"f","Ơ":"O","ơ":"o","Ư":"U","ư":"u","Lj":"LJ","lj":"lj","Nj":"NJ","nj":"nj","Ș":"S","ș":"s","Ț":"T","ț":"t","ə":"e","˚":"o","Ά":"A","Έ":"E","Ή":"H","Ί":"I","Ό":"O","Ύ":"Y","Ώ":"W","ΐ":"i","Α":"A","Β":"B","Γ":"G","Δ":"D","Ε":"E","Ζ":"Z","Η":"H","Θ":"8","Ι":"I","Κ":"K","Λ":"L","Μ":"M","Ν":"N","Ξ":"3","Ο":"O","Π":"P","Ρ":"R","Σ":"S","Τ":"T","Υ":"Y","Φ":"F","Χ":"X","Ψ":"PS","Ω":"W","Ϊ":"I","Ϋ":"Y","ά":"a","έ":"e","ή":"h","ί":"i","ΰ":"y","α":"a","β":"b","γ":"g","δ":"d","ε":"e","ζ":"z","η":"h","θ":"8","ι":"i","κ":"k","λ":"l","μ":"m","ν":"n","ξ":"3","ο":"o","π":"p","ρ":"r","ς":"s","σ":"s","τ":"t","υ":"y","φ":"f","χ":"x","ψ":"ps","ω":"w","ϊ":"i","ϋ":"y","ό":"o","ύ":"y","ώ":"w","Ё":"Yo","Ђ":"DJ","Є":"Ye","І":"I","Ї":"Yi","Ј":"J","Љ":"LJ","Њ":"NJ","Ћ":"C","Џ":"DZ","А":"A","Б":"B","В":"V","Г":"G","Д":"D","Е":"E","Ж":"Zh","З":"Z","И":"I","Й":"J","К":"K","Л":"L","М":"M","Н":"N","О":"O","П":"P","Р":"R","С":"S","Т":"T","У":"U","Ф":"F","Х":"H","Ц":"C","Ч":"Ch","Ш":"Sh","Щ":"Sh","Ъ":"U","Ы":"Y","Ь":"","Э":"E","Ю":"Yu","Я":"Ya","а":"a","б":"b","в":"v","г":"g","д":"d","е":"e","ж":"zh","з":"z","и":"i","й":"j","к":"k","л":"l","м":"m","н":"n","о":"o","п":"p","р":"r","с":"s","т":"t","у":"u","ф":"f","х":"h","ц":"c","ч":"ch","ш":"sh","щ":"sh","ъ":"u","ы":"y","ь":"","э":"e","ю":"yu","я":"ya","ё":"yo","ђ":"dj","є":"ye","і":"i","ї":"yi","ј":"j","љ":"lj","њ":"nj","ћ":"c","ѝ":"u","џ":"dz","Ґ":"G","ґ":"g","Ғ":"GH","ғ":"gh","Қ":"KH","қ":"kh","Ң":"NG","ң":"ng","Ү":"UE","ү":"ue","Ұ":"U","ұ":"u","Һ":"H","һ":"h","Ә":"AE","ә":"ae","Ө":"OE","ө":"oe","Ա":"A","Բ":"B","Գ":"G","Դ":"D","Ե":"E","Զ":"Z","Է":"E'","Ը":"Y'","Թ":"T'","Ժ":"JH","Ի":"I","Լ":"L","Խ":"X","Ծ":"C'","Կ":"K","Հ":"H","Ձ":"D'","Ղ":"GH","Ճ":"TW","Մ":"M","Յ":"Y","Ն":"N","Շ":"SH","Չ":"CH","Պ":"P","Ջ":"J","Ռ":"R'","Ս":"S","Վ":"V","Տ":"T","Ր":"R","Ց":"C","Փ":"P'","Ք":"Q'","Օ":"O''","Ֆ":"F","և":"EV","ء":"a","آ":"aa","أ":"a","ؤ":"u","إ":"i","ئ":"e","ا":"a","ب":"b","ة":"h","ت":"t","ث":"th","ج":"j","ح":"h","خ":"kh","د":"d","ذ":"th","ر":"r","ز":"z","س":"s","ش":"sh","ص":"s","ض":"dh","ط":"t","ظ":"z","ع":"a","غ":"gh","ف":"f","ق":"q","ك":"k","ل":"l","م":"m","ن":"n","ه":"h","و":"w","ى":"a","ي":"y","ً":"an","ٌ":"on","ٍ":"en","َ":"a","ُ":"u","ِ":"e","ْ":"","٠":"0","١":"1","٢":"2","٣":"3","٤":"4","٥":"5","٦":"6","٧":"7","٨":"8","٩":"9","پ":"p","چ":"ch","ژ":"zh","ک":"k","گ":"g","ی":"y","۰":"0","۱":"1","۲":"2","۳":"3","۴":"4","۵":"5","۶":"6","۷":"7","۸":"8","۹":"9","฿":"baht","ა":"a","ბ":"b","გ":"g","დ":"d","ე":"e","ვ":"v","ზ":"z","თ":"t","ი":"i","კ":"k","ლ":"l","მ":"m","ნ":"n","ო":"o","პ":"p","ჟ":"zh","რ":"r","ს":"s","ტ":"t","უ":"u","ფ":"f","ქ":"k","ღ":"gh","ყ":"q","შ":"sh","ჩ":"ch","ც":"ts","ძ":"dz","წ":"ts","ჭ":"ch","ხ":"kh","ჯ":"j","ჰ":"h","Ṣ":"S","ṣ":"s","Ẁ":"W","ẁ":"w","Ẃ":"W","ẃ":"w","Ẅ":"W","ẅ":"w","ẞ":"SS","Ạ":"A","ạ":"a","Ả":"A","ả":"a","Ấ":"A","ấ":"a","Ầ":"A","ầ":"a","Ẩ":"A","ẩ":"a","Ẫ":"A","ẫ":"a","Ậ":"A","ậ":"a","Ắ":"A","ắ":"a","Ằ":"A","ằ":"a","Ẳ":"A","ẳ":"a","Ẵ":"A","ẵ":"a","Ặ":"A","ặ":"a","Ẹ":"E","ẹ":"e","Ẻ":"E","ẻ":"e","Ẽ":"E","ẽ":"e","Ế":"E","ế":"e","Ề":"E","ề":"e","Ể":"E","ể":"e","Ễ":"E","ễ":"e","Ệ":"E","ệ":"e","Ỉ":"I","ỉ":"i","Ị":"I","ị":"i","Ọ":"O","ọ":"o","Ỏ":"O","ỏ":"o","Ố":"O","ố":"o","Ồ":"O","ồ":"o","Ổ":"O","ổ":"o","Ỗ":"O","ỗ":"o","Ộ":"O","ộ":"o","Ớ":"O","ớ":"o","Ờ":"O","ờ":"o","Ở":"O","ở":"o","Ỡ":"O","ỡ":"o","Ợ":"O","ợ":"o","Ụ":"U","ụ":"u","Ủ":"U","ủ":"u","Ứ":"U","ứ":"u","Ừ":"U","ừ":"u","Ử":"U","ử":"u","Ữ":"U","ữ":"u","Ự":"U","ự":"u","Ỳ":"Y","ỳ":"y","Ỵ":"Y","ỵ":"y","Ỷ":"Y","ỷ":"y","Ỹ":"Y","ỹ":"y","–":"-","‘":"'","’":"'","“":"\\"","”":"\\"","„":"\\"","†":"+","•":"*","…":"...","₠":"ecu","₢":"cruzeiro","₣":"french franc","₤":"lira","₥":"mill","₦":"naira","₧":"peseta","₨":"rupee","₩":"won","₪":"new shequel","₫":"dong","€":"euro","₭":"kip","₮":"tugrik","₯":"drachma","₰":"penny","₱":"peso","₲":"guarani","₳":"austral","₴":"hryvnia","₵":"cedi","₸":"kazakhstani tenge","₹":"indian rupee","₺":"turkish lira","₽":"russian ruble","₿":"bitcoin","℠":"sm","™":"tm","∂":"d","∆":"delta","∑":"sum","∞":"infinity","♥":"love","元":"yuan","円":"yen","﷼":"rial","ﻵ":"laa","ﻷ":"laa","ﻹ":"lai","ﻻ":"la"}`),i=JSON.parse('{"bg":{"Й":"Y","Ц":"Ts","Щ":"Sht","Ъ":"A","Ь":"Y","й":"y","ц":"ts","щ":"sht","ъ":"a","ь":"y"},"de":{"Ä":"AE","ä":"ae","Ö":"OE","ö":"oe","Ü":"UE","ü":"ue","ß":"ss","%":"prozent","&":"und","|":"oder","∑":"summe","∞":"unendlich","♥":"liebe"},"es":{"%":"por ciento","&":"y","<":"menor que",">":"mayor que","|":"o","¢":"centavos","£":"libras","¤":"moneda","₣":"francos","∑":"suma","∞":"infinito","♥":"amor"},"fr":{"%":"pourcent","&":"et","<":"plus petit",">":"plus grand","|":"ou","¢":"centime","£":"livre","¤":"devise","₣":"franc","∑":"somme","∞":"infini","♥":"amour"},"pt":{"%":"porcento","&":"e","<":"menor",">":"maior","|":"ou","¢":"centavo","∑":"soma","£":"libra","∞":"infinito","♥":"amor"},"uk":{"И":"Y","и":"y","Й":"Y","й":"y","Ц":"Ts","ц":"ts","Х":"Kh","х":"kh","Щ":"Shch","щ":"shch","Г":"H","г":"h"},"vi":{"Đ":"D","đ":"d"},"da":{"Ø":"OE","ø":"oe","Å":"AA","å":"aa","%":"procent","&":"og","|":"eller","$":"dollar","<":"mindre end",">":"større end"},"nb":{"&":"og","Å":"AA","Æ":"AE","Ø":"OE","å":"aa","æ":"ae","ø":"oe"},"it":{"&":"e"},"nl":{"&":"en"},"sv":{"&":"och","Å":"AA","Ä":"AE","Ö":"OE","å":"aa","ä":"ae","ö":"oe"}}');function a(s,c){if(typeof s!="string")throw new Error("slugify: string argument expected");c=typeof c=="string"?{replacement:c}:c||{};var m=i[c.locale]||{},r=c.replacement===void 0?"-":c.replacement,u=c.trim===void 0?!0:c.trim,o=s.normalize().split("").reduce(function(l,h){var f=m[h]||n[h]||h;return f===r&&(f=" "),l+f.replace(c.remove||/[^\w\s$*_+~.()'"!\-:@]+/g,"")},"");return c.strict&&(o=o.replace(/[^A-Za-z0-9\s]/g,"")),u&&(o=o.trim()),o=o.replace(/\s+/g,r),c.lower&&(o=o.toLowerCase()),o}return a.extend=function(s){Object.assign(n,s)},a})})(oe);const ce=t=>t.split(/[\s-]/g).map(G).join(" ");function ue(t,e){const{navigation:n}=K().content,i=s=>({...fe(["title",...n.fields])(s),...me(s==null?void 0:s.navigation)?s.navigation:{}}),a=t.sort((s,c)=>s._path.localeCompare(c._path)).reduce((s,c)=>{const m=c._path.substring(1).split("/"),r=c._id.split(":").slice(1),u=!!r[r.length-1].match(/([1-9][0-9]*\.)?index.md/g),o=f=>({title:f.title,_path:f._path,_file:f._file,children:[],...i(f),...f._draft?{_draft:!0}:{}}),l=o(c);if(u){const f=e[l._path];if(typeof(f==null?void 0:f.navigation)<"u"&&!(f!=null&&f.navigation))return s;if(c._path!=="/"){const d=o(c);l.children.push(d)}Object.assign(l,i(f))}return m.length===1?(s.push(l),s):(m.slice(0,-1).reduce((f,d,y)=>{const w="/"+m.slice(0,y+1).join("/"),v=e[w];if(typeof(v==null?void 0:v.navigation)<"u"&&!v.navigation)return[];let O=f.find(N=>N._path===w);return O||(O={title:ce(d),_path:w,_file:c._file,children:[],...i(v)},f.push(O)),O.children},s).push(l),s)},[]);return U(a)}const le=new Intl.Collator(void 0,{numeric:!0,sensitivity:"base"});function U(t){const e=t.sort((n,i)=>le.compare(n._file,i._file));for(const n of e)n.children.length?U(n.children):delete n.children,delete n._file;return t}function fe(t){return e=>(e=e||{},t&&t.length?t.filter(n=>typeof e[n]<"u").reduce((n,i)=>Object.assign(n,{[i]:e[i]}),{}):e)}function me(t){return Object.prototype.toString.call(t)==="[object Object]"}const he=t=>W(t,K().public.content.api.baseURL),pe=re(ne({driver:Z()}),"@content"),Y=()=>M("previewToken").value;function ge(t){async function e(){const n=new Set(await t.getKeys("cache:")),i=Y();if(i){(await t.getItem(`${i}$`).then(r=>r||{})).ignoreBuiltContents&&n.clear();const c=await t.getKeys(`${i}:`),m=await Promise.all(c.map(r=>t.getItem(r)));for(const r of m)n.delete(`cache:${r._id}`),r.__deleted||n.add(`${i}:${r._id}`)}return await Promise.all(Array.from(n).map(s=>t.getItem(s)))}return{storage:t,fetch:R(e),query:n=>q(R(e),n)}}let S=null,E=null;async function de(){return E?await E:S||(E=ye(),S=await E),S}async function ye(){const t=T(),{content:e}=K().public,n=ge(pe),i=await n.storage.getItem("integrity");if(e.integrity!==+(i||0)){const{contents:a,navigation:s}=await $fetch(he(e.integrity?`cache.${e.integrity}.json`:"cache.json"));await Promise.all(a.map(c=>n.storage.setItem(`cache:${c._id}`,c))),await n.storage.setItem("navigation",s),await n.storage.setItem("integrity",e.integrity)}return await t.callHook("content:storage",n.storage),n}async function Ee(t){const e=await de();if(!Y()&&Object.keys(t||{}).length===0)return e.storage.getItem("navigation");const n=await e.query(t).where({_partial:!1,navigation:{$ne:!1}}).find(),a=(await e.query().where({_path:/\/_dir$/i,_partial:!0}).find()).reduce((s,c)=>{var r;((r=c.title)==null?void 0:r.toLowerCase())==="dir"&&(c.title=void 0);const m=c._path.split("/").slice(0,-1).join("/")||"/";return s[m]={...c,...c.body},s},{});return ue(n,a)}export{pe as contentStorage,ge as createDB,Ee as generateNavigation,Y as getPreview,de as useContentDatabase}; diff --git a/docs/.output/public/_nuxt/cookie.b9cff64d.js b/docs/.output/public/_nuxt/cookie.71eae014.js similarity index 97% rename from docs/.output/public/_nuxt/cookie.b9cff64d.js rename to docs/.output/public/_nuxt/cookie.71eae014.js index 80de4cbc..0157f656 100644 --- a/docs/.output/public/_nuxt/cookie.b9cff64d.js +++ b/docs/.output/public/_nuxt/cookie.71eae014.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";import{r as l,a as m}from"./runtime-core.esm-bundler.6894272a.js";const w=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,h=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,S=/^\s*["[{]|^\s*-?\d[\d.]{0,14}\s*$/;function y(e,i){if(e!=="__proto__"&&!(e==="constructor"&&i&&typeof i=="object"&&"prototype"in i))return i}function g(e,i={}){if(typeof e!="string")return e;const t=e.toLowerCase().trim();if(t==="true")return!0;if(t==="false")return!1;if(t==="null")return null;if(t==="nan")return Number.NaN;if(t==="infinity")return Number.POSITIVE_INFINITY;if(t!=="undefined"){if(!S.test(e)){if(i.strict)throw new SyntaxError("Invalid JSON");return e}try{return w.test(e)||h.test(e)?JSON.parse(e,y):JSON.parse(e)}catch(r){if(i.strict)throw r;return e}}}const x=decodeURIComponent,C=encodeURIComponent,E=/; */,u=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function k(e,i){if(typeof e!="string")throw new TypeError("argument str must be a string");let t={},r=i||{},n=e.split(E),c=r.decode||x;for(let o=0;og(decodeURIComponent(e)),encode:e=>encodeURIComponent(typeof e=="string"?e:JSON.stringify(e))};function O(e,i){var c;const t={...N,...i},r=b(t)||{},n=l(r[e]??((c=t.default)==null?void 0:c.call(t)));{const o=()=>{R(e,n.value,t)};t.watch?m(n,o,{deep:t.watch!=="shallow"}):o()}return n}function b(e={}){return k(document.cookie,e)}function I(e,i,t={}){return i==null?d(e,i,{...t,maxAge:-1}):d(e,i,t)}function R(e,i,t={}){document.cookie=I(e,i,t)}export{g as d,O as u}; +import"./app.config.88c4fc0b.js";import{r as l,a as m}from"./runtime-core.esm-bundler.6894272a.js";const w=/"(?:_|\\u0{2}5[Ff]){2}(?:p|\\u0{2}70)(?:r|\\u0{2}72)(?:o|\\u0{2}6[Ff])(?:t|\\u0{2}74)(?:o|\\u0{2}6[Ff])(?:_|\\u0{2}5[Ff]){2}"\s*:/,h=/"(?:c|\\u0063)(?:o|\\u006[Ff])(?:n|\\u006[Ee])(?:s|\\u0073)(?:t|\\u0074)(?:r|\\u0072)(?:u|\\u0075)(?:c|\\u0063)(?:t|\\u0074)(?:o|\\u006[Ff])(?:r|\\u0072)"\s*:/,S=/^\s*["[{]|^\s*-?\d[\d.]{0,14}\s*$/;function y(e,i){if(e!=="__proto__"&&!(e==="constructor"&&i&&typeof i=="object"&&"prototype"in i))return i}function g(e,i={}){if(typeof e!="string")return e;const t=e.toLowerCase().trim();if(t==="true")return!0;if(t==="false")return!1;if(t==="null")return null;if(t==="nan")return Number.NaN;if(t==="infinity")return Number.POSITIVE_INFINITY;if(t!=="undefined"){if(!S.test(e)){if(i.strict)throw new SyntaxError("Invalid JSON");return e}try{return w.test(e)||h.test(e)?JSON.parse(e,y):JSON.parse(e)}catch(r){if(i.strict)throw r;return e}}}const x=decodeURIComponent,C=encodeURIComponent,E=/; */,u=/^[\u0009\u0020-\u007e\u0080-\u00ff]+$/;function k(e,i){if(typeof e!="string")throw new TypeError("argument str must be a string");let t={},r=i||{},n=e.split(E),c=r.decode||x;for(let o=0;og(decodeURIComponent(e)),encode:e=>encodeURIComponent(typeof e=="string"?e:JSON.stringify(e))};function O(e,i){var c;const t={...N,...i},r=b(t)||{},n=l(r[e]??((c=t.default)==null?void 0:c.call(t)));{const o=()=>{R(e,n.value,t)};t.watch?m(n,o,{deep:t.watch!=="shallow"}):o()}return n}function b(e={}){return k(document.cookie,e)}function I(e,i,t={}){return i==null?d(e,i,{...t,maxAge:-1}):d(e,i,t)}function R(e,i,t={}){document.cookie=I(e,i,t)}export{g as d,O as u}; diff --git a/docs/.output/public/_nuxt/default.aab8fc36.js b/docs/.output/public/_nuxt/default.aab8fc36.js deleted file mode 100644 index 63385ff4..00000000 --- a/docs/.output/public/_nuxt/default.aab8fc36.js +++ /dev/null @@ -1 +0,0 @@ -import r from"./DocsPageLayout.d352cf62.js";import{a as m}from"./Container.f1017aa2.js";import{q as p,B as i,C as e,P as n}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAside.08a0955d.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";/* empty css */import"./ProseCodeInline.dca1a534.js";import"./Alert.41cb256b.js";import"./ContentSlot.c5067a4f.js";/* empty css */import"./DocsPageBottom.b38ecc43.js";import"./ProseA.a4d07cc8.js";/* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css */import"./DocsPrevNext.2b9ea48f.js";/* empty css */import"./DocsToc.55846f28.js";import"./DocsTocLinks.644c91ee.js";/* empty css *//* empty css *//* empty css */const a={};function c(o,s){const t=r;return p(),i(t,null,{default:e(()=>[n(o.$slots,"default")]),_:3})}const G=m(a,[["render",c]]);export{G as default}; diff --git a/docs/.output/public/_nuxt/default.b47ebbea.js b/docs/.output/public/_nuxt/default.b47ebbea.js new file mode 100644 index 00000000..02eb454f --- /dev/null +++ b/docs/.output/public/_nuxt/default.b47ebbea.js @@ -0,0 +1 @@ +import r from"./DocsPageLayout.4b0475f7.js";import{a as m}from"./Container.f1017aa2.js";import{q as p,B as i,C as e,P as n}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAside.1abe9757.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";/* empty css */import"./ProseCodeInline.dca1a534.js";import"./Alert.95097db0.js";import"./ContentSlot.811112da.js";/* empty css */import"./DocsPageBottom.dd73c7ef.js";import"./ProseA.a0c295ec.js";/* empty css */import"./EditOnLink.vue.23cee876.js";/* empty css */import"./DocsPrevNext.2107234e.js";/* empty css */import"./DocsToc.3ed2837f.js";import"./DocsTocLinks.ff067be8.js";/* empty css *//* empty css *//* empty css */const a={};function c(o,s){const t=r;return p(),i(t,null,{default:e(()=>[n(o.$slots,"default")]),_:3})}const G=m(a,[["render",c]]);export{G as default}; diff --git a/docs/.output/public/_nuxt/document-driven.2bce7a6e.js b/docs/.output/public/_nuxt/document-driven.49104e9a.js similarity index 50% rename from docs/.output/public/_nuxt/document-driven.2bce7a6e.js rename to docs/.output/public/_nuxt/document-driven.49104e9a.js index 8060f911..e8b68349 100644 --- a/docs/.output/public/_nuxt/document-driven.2bce7a6e.js +++ b/docs/.output/public/_nuxt/document-driven.49104e9a.js @@ -1 +1 @@ -import f from"./DocumentDrivenEmpty.7ceddd7c.js";import d from"./ContentRenderer.b7732722.js";import l from"./DocumentDrivenNotFound.66d77c6e.js";import v from"./layout.0a22fa4a.js";import{d as x}from"./useDocus.41ab1ca5.js";import{a as C}from"./entry.f3791b9c.js";import{u as A}from"./app.config.f41ab05d.js";import{f as y,q as o,x as k,G as n,C as m,u as e,B as r}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentRendererMarkdown.e52b62de.js";import"./cookie.b9cff64d.js";import"./index.d2b0cb5e.js";import"./ButtonLink.91883881.js";import"./DocsAsideTree.b95e55e0.js";import"./Container.f1017aa2.js";import"./ContentSlot.c5067a4f.js";/* empty css *//* empty css */import"./query.c3f7607a.js";const B={class:"document-driven-page"},M=y({__name:"document-driven",setup(D){const{page:t,layout:s}=x();return t.value,C(t),(a,E)=>{const p=f,u=d,_=l,c=v;return o(),k("div",B,[n(c,{name:e(s)||"default"},{default:m(()=>[e(t)?(o(),r(u,{key:e(t)._id,value:e(t)},{empty:m(({value:i})=>[n(p,{value:i},null,8,["value"])]),_:1},8,["value"])):(o(),r(_,{key:1}))]),_:1},8,["name"])])}}});export{M as default}; +import f from"./DocumentDrivenEmpty.7ceddd7c.js";import d from"./ContentRenderer.8e4912b9.js";import l from"./DocumentDrivenNotFound.d294ae47.js";import v from"./layout.37427c44.js";import{d as x}from"./useDocus.b9e6b105.js";import{a as C}from"./entry.c31835cb.js";import{u as A}from"./app.config.88c4fc0b.js";import{f as y,q as o,x as k,G as n,C as m,u as e,B as r}from"./runtime-core.esm-bundler.6894272a.js";import"./ContentRendererMarkdown.433c31c8.js";import"./cookie.71eae014.js";import"./index.d2b0cb5e.js";import"./ButtonLink.e542a711.js";import"./DocsAsideTree.4387e6ea.js";import"./Container.f1017aa2.js";import"./ContentSlot.811112da.js";/* empty css *//* empty css */import"./query.c3f7607a.js";const B={class:"document-driven-page"},M=y({__name:"document-driven",setup(D){const{page:t,layout:s}=x();return t.value,C(t),(a,E)=>{const p=f,u=d,_=l,c=v;return o(),k("div",B,[n(c,{name:e(s)||"default"},{default:m(()=>[e(t)?(o(),r(u,{key:e(t)._id,value:e(t)},{empty:m(({value:i})=>[n(p,{value:i},null,8,["value"])]),_:1},8,["value"])):(o(),r(_,{key:1}))]),_:1},8,["name"])])}}});export{M as default}; diff --git a/docs/.output/public/_nuxt/entry.c31835cb.js b/docs/.output/public/_nuxt/entry.c31835cb.js new file mode 100644 index 00000000..a13f031a --- /dev/null +++ b/docs/.output/public/_nuxt/entry.c31835cb.js @@ -0,0 +1,10 @@ +import{w as ze,s as fr,T as un,_ as we,a as dn,b as fn,c as pn,d as hn}from"./DocsAsideTree.4387e6ea.js";import{d as _n,u as Tt}from"./cookie.71eae014.js";import{w as mn,a as gn,j as et,u as G,c as yn,b as te,d as Q,e as vn,f as qe,g as ue,h as jt,i as je,k as pr,l as ae,m as Ct,n as En,o as bn,p as wn,q as Pn,_ as tt,r as Rn,s as Tn,t as Cn}from"./app.config.88c4fc0b.js";import{_,p as An,a as X,b as hr}from"./Container.f1017aa2.js";import{t as kn,n as Pe,g as _r,i as he,r as J,w as Ln,a as fe,o as mr,b as Sn,c as On,u as R,d as In,v as gr,e as g,s as yt,f as K,h as D,p as Ie,j as W,k as _e,l as $n,m as dt,K as Dn,S as yr,q as L,x as j,y as At,z as Hn,A as We,F as Ve,B as x,C as re,D as ee,E as V,G as U,T as Mn,H as Vn,I as vr,J as Ge,L as Er,M as xn,N as jn,O as br,P as wr,Q as Bn}from"./runtime-core.esm-bundler.6894272a.js";import{u as kt,a as ke,b as Pr,c as me,d as Lt}from"./useDocus.b9e6b105.js";import{c as Nn}from"./query.c3f7607a.js";import{d as Un}from"./index.d2b0cb5e.js";class Kn extends Error{constructor(){super(...arguments),this.name="FetchError"}}function Fn(e,t,n){let r="";e&&n&&(r=`${n.status} ${n.statusText} (${e.toString()})`),t&&(r=`${t.message} (${r})`);const o=new Kn(r);return Object.defineProperty(o,"request",{get(){return e}}),Object.defineProperty(o,"response",{get(){return n}}),Object.defineProperty(o,"data",{get(){return n&&n._data}}),Object.defineProperty(o,"status",{get(){return n&&n.status}}),Object.defineProperty(o,"statusText",{get(){return n&&n.statusText}}),Object.defineProperty(o,"statusCode",{get(){return n&&n.status}}),Object.defineProperty(o,"statusMessage",{get(){return n&&n.statusText}}),o}const zn=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Bt(e="GET"){return zn.has(e.toUpperCase())}function qn(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const Wn=new Set(["image/svg","application/xml","application/xhtml","application/html"]),Gn=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Qn(e=""){if(!e)return"json";const t=e.split(";").shift();return Gn.test(t)?"json":Wn.has(t)||t.startsWith("text/")?"text":"blob"}const Zn=new Set([408,409,425,429,500,502,503,504]);function Rr(e){const{fetch:t,Headers:n}=e;function r(i){const c=i.error&&i.error.name==="AbortError"||!1;if(i.options.retry!==!1&&!c){const a=typeof i.options.retry=="number"?i.options.retry:Bt(i.options.method)?0:1,u=i.response&&i.response.status||500;if(a>0&&Zn.has(u))return o(i.request,{...i.options,retry:a-1})}const l=Fn(i.request,i.error,i.response);throw Error.captureStackTrace&&Error.captureStackTrace(l,o),l}const o=async function(c,l={}){const a={request:c,options:{...e.defaults,...l},response:void 0,error:void 0};a.options.onRequest&&await a.options.onRequest(a),typeof a.request=="string"&&(a.options.baseURL&&(a.request=mn(a.request,a.options.baseURL)),(a.options.query||a.options.params)&&(a.request=gn(a.request,{...a.options.params,...a.options.query})),a.options.body&&Bt(a.options.method)&&qn(a.options.body)&&(a.options.body=typeof a.options.body=="string"?a.options.body:JSON.stringify(a.options.body),a.options.headers=new n(a.options.headers),a.options.headers.has("content-type")||a.options.headers.set("content-type","application/json"),a.options.headers.has("accept")||a.options.headers.set("accept","application/json"))),a.response=await t(a.request,a.options).catch(async h=>(a.error=h,a.options.onRequestError&&await a.options.onRequestError(a),r(a)));const u=(a.options.parseResponse?"json":a.options.responseType)||Qn(a.response.headers.get("content-type")||"");if(u==="json"){const h=await a.response.text(),d=a.options.parseResponse||_n;a.response._data=d(h)}else u==="stream"?a.response._data=a.response.body:a.response._data=await a.response[u]();return a.options.onResponse&&await a.options.onResponse(a),a.response.status>=400&&a.response.status<600?(a.options.onResponseError&&await a.options.onResponseError(a),r(a)):a.response},s=function(c,l){return o(c,l).then(a=>a._data)};return s.raw=o,s.native=t,s.create=(i={})=>Rr({...e,defaults:{...e.defaults,...i}}),s}const Tr=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),Jn=Tr.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),Yn=Tr.Headers,Xn=Rr({fetch:Jn,Headers:Yn}),eo=Xn,to=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},Qe=to().app,ro=()=>Qe.baseURL,no=()=>Qe.buildAssetsDir,oo=(...e)=>et(Cr(),no(),...e),Cr=(...e)=>{const t=Qe.cdnURL||Qe.baseURL;return e.length?et(t,...e):t};globalThis.__buildAssetsURL=oo,globalThis.__publicAssetsURL=Cr;class vt extends Error{constructor(){super(...arguments),this.statusCode=500,this.fatal=!1,this.unhandled=!1,this.statusMessage=void 0}toJSON(){const t={message:this.message,statusCode:this.statusCode};return this.statusMessage&&(t.statusMessage=this.statusMessage),this.data!==void 0&&(t.data=this.data),t}}vt.__h3_error__=!0;function Et(e){if(typeof e=="string")return new vt(e);if(so(e))return e;const t=new vt(e.message??e.statusMessage,e.cause?{cause:e.cause}:void 0);if("stack"in e)try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}return e.data&&(t.data=e.data),e.statusCode?t.statusCode=e.statusCode:e.status&&(t.statusCode=e.status),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function so(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const rt=()=>kn(G().payload,"error"),Se=e=>{const t=lo(e);try{G().callHook("app:error",t);const r=rt();r.value=r.value||t}catch{throw t}return t},ao=async(e={})=>{const t=G(),n=rt();t.callHook("app:error:cleared",e),e.redirect&&await t.$router.replace(e.redirect),n.value=null},io=e=>!!(e&&typeof e=="object"&&"__nuxt_error"in e),lo=e=>{const t=Et(e);return t.__nuxt_error=!0,t},co=["script","style","noscript"],uo=["base","meta","link","style","script","noscript"],fo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function po(e,t){const{props:n,tag:r}=e;if(fo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ne=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),co.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function St(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function Ar(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||St(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Ne(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Ne(f),a(f);continue}f.$el=r.createElement(p.tag),Ne(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!uo.includes(v))continue;const E=po({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Ne(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let Fe=null;async function ho(e,t={}){function n(){return Fe=null,Ar(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return Fe=Fe||new Promise(o=>r(()=>o(n())))}const _o={__proto__:null,debouncedRenderDOMHead:ho,get domUpdatePromise(){return Fe},hashCode:St,renderDOMHead:Ar},mo=["title","titleTemplate","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],go=["tagPosition","tagPriority","tagDuplicateStrategy"];async function yo(e,t){const n={tag:e,props:{}};return e==="title"||e==="titleTemplate"?(n.children=t instanceof Promise?await t:t,n):(n.props=await vo({...t}),["children","innerHtml","innerHTML"].forEach(r=>{typeof n.props[r]<"u"&&(n.children=n.props[r],typeof n.children=="object"&&(n.children=JSON.stringify(n.children)),delete n.props[r])}),Object.keys(n.props).filter(r=>go.includes(r)).forEach(r=>{n[r]=n.props[r],delete n.props[r]}),typeof n.props.class=="object"&&!Array.isArray(n.props.class)&&(n.props.class=Object.keys(n.props.class).filter(r=>n.props.class[r])),Array.isArray(n.props.class)&&(n.props.class=n.props.class.join(" ")),n.props.content&&Array.isArray(n.props.content)?n.props.content.map((r,o)=>{const s={...n,props:{...n.props}};return s.props.content=r,s.key=`${n.props.name||n.props.property}:${o}`,s}):n)}async function vo(e){for(const t of Object.keys(e))e[t]instanceof Promise&&(e[t]=await e[t]),String(e[t])==="true"?e[t]="":String(e[t])==="false"&&delete e[t];return e}const Nt=e=>{if(typeof e.tagPriority=="number")return e.tagPriority;switch(e.tagPriority){case"critical":return 2;case"high":return 9;case"low":return 12}switch(e.tag){case"base":return-1;case"title":return 1;case"meta":return e.props.charset?-2:e.props["http-equiv"]==="content-security-policy"?0:10;default:return 10}},Eo=(e,t)=>Nt(e)-Nt(t),bo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function wo(e,t){const{props:n,tag:r}=e;if(bo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ut=(e,t)=>e==null?t||null:typeof e=="function"?e(t):e.replace("%s",t??"");function Po(e){let t=e.findIndex(r=>r.tag==="titleTemplate");const n=e.findIndex(r=>r.tag==="title");if(n!==-1&&t!==-1){const r=Ut(e[t].children,e[n].children);r!==null?e[n].children=r||e[n].children:delete e[n]}else if(t!==-1){const r=Ut(e[t].children);r!==null&&(e[t].children=r,e[t].tag="title",t=-1)}return t!==-1&&delete e[t],e.filter(Boolean)}const Ro=e=>{e=e||{};const t=e.dedupeKeys||["hid","vmid","key"];return{hooks:{"tag:normalise":function({tag:n}){t.forEach(o=>{n.props[o]&&(n.key=n.props[o],delete n.props[o])});const r=n.key?`${n.tag}:${n.key}`:wo(n);r&&(n._d=r)},"tags:resolve":function(n){const r={};n.tags.forEach(o=>{let s=o._d||o._p;const i=r[s];if(i){let c=o==null?void 0:o.tagDuplicateStrategy;if(!c&&(o.tag==="htmlAttrs"||o.tag==="bodyAttrs")&&(c="merge"),c==="merge"){const a=i.props;["class","style"].forEach(u=>{o.props[u]&&a[u]&&(u==="style"&&!a[u].endsWith(";")&&(a[u]+=";"),o.props[u]=`${a[u]} ${o.props[u]}`)}),r[s].props={...a,...o.props};return}else o._e===i._e&&(s=o._d=`${s}:${o._p}`);const l=Object.keys(o.props).length;if((l===0||l===1&&typeof o.props["data-h-key"]<"u")&&!o.children){delete r[s];return}}r[s]=o}),n.tags=Object.values(r)}}}},To=()=>({hooks:{"tags:resolve":e=>{const t=n=>{var r;return(r=e.tags.find(o=>o._d===n))==null?void 0:r._p};for(const n of e.tags){if(!n.tagPriority||typeof n.tagPriority=="number")continue;const r=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}];for(const{prefix:o,offset:s}of r)if(n.tagPriority.startsWith(o)){const i=n.tagPriority.replace(o,""),c=t(i);typeof c<"u"&&(n._p=c+s)}}e.tags.sort((n,r)=>n._p-r._p).sort(Eo)}}}),Co=()=>({hooks:{"tags:resolve":e=>{e.tags=Po(e.tags)}}}),Ao=()=>({hooks:{"tag:normalise":function({tag:e}){typeof e.props.body<"u"&&(e.tagPosition="bodyClose",delete e.props.body)}}}),ko=typeof window<"u",Lo=()=>({hooks:{"tag:normalise":e=>{var o,s;const{tag:t,entry:n}=e,r=typeof t.props._dynamic<"u";!kr.includes(t.tag)||!t.key||(t._hash=St(JSON.stringify({tag:t.tag,key:t.key})),!(ko||(s=(o=Sr())==null?void 0:o.resolvedOptions)!=null&&s.document)&&(n._m==="server"||r)&&(t.props[`data-h-${t._hash}`]=""))},"tags:resolve":e=>{e.tags=e.tags.map(t=>(delete t.props._dynamic,t))}}}),So=e=>({hooks:{"entries:updated":function(t){if(typeof(e==null?void 0:e.document)>"u"&&typeof window>"u")return;let n=e==null?void 0:e.delayFn;!n&&typeof requestAnimationFrame<"u"&&(n=requestAnimationFrame),Promise.resolve().then(function(){return _o}).then(({debouncedRenderDOMHead:r})=>{r(t,{document:(e==null?void 0:e.document)||window.document,delayFn:n})})}}}),Oo=()=>{const e=(t,n)=>{const r={},o={};Object.entries(n.props).forEach(([i,c])=>{i.startsWith("on")&&typeof c=="function"?o[i]=c:r[i]=c});let s;return t==="dom"&&n.tag==="script"&&typeof r.src=="string"&&typeof o.onload<"u"&&(s=r.src,delete r.src),{props:r,eventHandlers:o,delayedSrc:s}};return{hooks:{"ssr:render":function(t){t.tags=t.tags.map(n=>(n.props=e("ssr",n).props,n))},"dom:beforeRenderTag":function(t){const{props:n,eventHandlers:r,delayedSrc:o}=e("dom",t.tag);Object.keys(r).length&&(t.tag.props=n,t.tag._eventHandlers=r,t.tag._delayedSrc=o)},"dom:renderTag":function(t){const n=t.$el;if(!t.tag._eventHandlers||!n)return;const r=t.tag.tag==="bodyAttrs"&&typeof window<"u"?window:n;Object.entries(t.tag._eventHandlers).forEach(([o,s])=>{const i=`${t.tag._d||t.tag._p}:${o}`,c=o.slice(2).toLowerCase(),l=`data-h-${c}`;if(delete t.staleSideEffects[i],n.hasAttribute(l))return;const a=s;n.setAttribute(l,""),r.addEventListener(c,a),t.entry&&(t.entry._sde[i]=()=>{r.removeEventListener(c,a),n.removeAttribute(l)})}),t.tag._delayedSrc&&n.setAttribute("src",t.tag._delayedSrc)}}}};function Io(e){return Array.isArray(e)?e:[e]}const kr=["base","meta","link","style","script","noscript"];let Lr;const $o=e=>Lr=e,Sr=()=>Lr,Do=10;async function Ho(e){const t=[];return Object.entries(e.resolvedInput||e.input).filter(([n,r])=>typeof r<"u"&&mo.includes(n)).forEach(([n,r])=>{const o=Io(r);t.push(...o.map(s=>yo(n,s)).flat())}),(await Promise.all(t)).flat().map((n,r)=>(n._e=e._i,n._p=(e._i<[Ro(),To(),Co(),Lo(),Oo(),Ao()],Vo=(e={})=>[So({document:e==null?void 0:e.document,delayFn:e==null?void 0:e.domDelayFn})];function xo(e={}){const t=jo({...e,plugins:[...Vo(e),...(e==null?void 0:e.plugins)||[]]});return $o(t),t}function jo(e={}){let t=[],n={},r=0;const o=yn();e!=null&&e.hooks&&o.addHooks(e.hooks),e.plugins=[...Mo(),...(e==null?void 0:e.plugins)||[]],e.plugins.forEach(c=>c.hooks&&o.addHooks(c.hooks));const s=()=>o.callHook("entries:updated",i),i={resolvedOptions:e,headEntries(){return t},get hooks(){return o},use(c){c.hooks&&o.addHooks(c.hooks)},push(c,l){const a={_i:r++,input:c,_sde:{}};return l!=null&&l.mode&&(a._m=l==null?void 0:l.mode),t.push(a),s(),{dispose(){t=t.filter(u=>u._i!==a._i?!0:(n={...n,...u._sde||{}},u._sde={},s(),!1))},patch(u){t=t.map(h=>(h._i===a._i&&(a.input=h.input=u,s()),h))}}},async resolveTags(){const c={tags:[],entries:[...t]};await o.callHook("entries:resolve",c);for(const l of c.entries)for(const a of await Ho(l)){const u={tag:a,entry:l};await o.callHook("tag:normalise",u),c.tags.push(u.tag)}return await o.callHook("tags:resolve",c),c.tags},_elMap:{},_popSideEffectQueue(){const c={...n};return n={},c}};return i.hooks.callHook("init",i),i}function Bo(e){return typeof e=="function"?e():R(e)}function Ze(e,t=""){if(e instanceof Promise)return e;const n=Bo(e);if(!e||!n)return n;if(Array.isArray(n))return n.map(r=>Ze(r,t));if(typeof n=="object"){let r=!1;const o=Object.fromEntries(Object.entries(n).map(([s,i])=>s==="titleTemplate"||s.startsWith("on")?[s,R(i)]:((typeof i=="function"||In(i))&&(r=!0),[s,Ze(i,s)])));return r&&kr.includes(String(t))&&(o._dynamic=!0),o}return n}const No=gr.startsWith("3"),Uo=typeof window<"u",Or="usehead";function Ot(){return _r()&&he(Or)||Sr()}function Ko(e={}){const t=xo({...e,domDelayFn:r=>setTimeout(()=>Pe(()=>r()),10),plugins:[Fo(),...(e==null?void 0:e.plugins)||[]]}),n={install(r){No&&(r.config.globalProperties.$unhead=t,r.provide(Or,t))}};return t.install=n.install,t}const Fo=()=>({hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=Ze(t.input)}}});function zo(e,t={}){const n=Ot(),r=J(!1),o=J({});Ln(()=>{o.value=Ze(e)});const s=n.push(o.value,t);return fe([o,r],([c,l])=>{l||s.patch(c)}),_r()&&(mr(()=>{s.dispose()}),Sn(()=>{r.value=!0}),On(()=>{r.value=!1})),s}function qo(e,t={}){return Ot().push(e,t)}function Ir(e,t={}){var r;const n=Ot();if(n){const o=Uo||!!((r=n.resolvedOptions)!=null&&r.document);return t.mode==="server"&&o||t.mode==="client"&&!o?void 0:o?zo(e,t):qo(e,t)}}const Wo=["script","style","noscript"],Go=["base","meta","link","style","script","noscript"],Qo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function Zo(e,t){const{props:n,tag:r}=e;if(Qo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ue=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),Wo.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function Jo(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function $r(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||Jo(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Ue(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Ue(f),a(f);continue}f.$el=r.createElement(p.tag),Ue(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!Go.includes(v))continue;const E=Zo({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Ue(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let ft=null;async function Yo(e,t={}){function n(){return ft=null,$r(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return ft=ft||new Promise(o=>r(()=>o(n())))}function Xo(e){const t=Ko(),n={unhead:t,install(r){gr.startsWith("3")&&(r.config.globalProperties.$head=t,r.provide("usehead",t))},use(r){t.use(r)},resolveTags(){return t.resolveTags()},headEntries(){return t.headEntries()},headTags(){return t.resolveTags()},push(r,o){return t.push(r,o)},addEntry(r,o){return t.push(r,o)},addHeadObjs(r,o){return t.push(r,o)},addReactiveEntry(r,o){const s=Ir(r,o);return typeof s<"u"?s.dispose:()=>{}},removeHeadObjs(){},updateDOM(r,o){o?$r(t,{document:r}):Yo(t,{delayFn:s=>setTimeout(()=>s(),50),document:r})},internalHooks:t.hooks,hooks:{"before:dom":[],"resolved:tags":[],"resolved:entries":[]}};return t.addHeadObjs=n.addHeadObjs,t.updateDOM=n.updateDOM,t.hooks.hook("dom:beforeRender",r=>{for(const o of n.hooks["before:dom"])o()===!1&&(r.shouldRender=!1)}),e&&n.addHeadObjs(e),n}function Je(e,t){return G()._useHead(e,t)}const es={ignoreUnknown:!1,respectType:!1,respectFunctionNames:!1,respectFunctionProperties:!1,unorderedObjects:!0,unorderedArrays:!1,unorderedSets:!1};function ts(e,t={}){t={...es,...t};const n=Dr(t);return n.dispatch(e),n.toString()}function Dr(e){const t=[];let n=[];const r=o=>{t.push(o)};return{toString(){return t.join("")},getContext(){return n},dispatch(o){return e.replacer&&(o=e.replacer(o)),this["_"+(o===null?"null":typeof o)](o)},_object(o){const s=/\[object (.*)]/i,i=Object.prototype.toString.call(o),c=s.exec(i),l=c?c[1].toLowerCase():"unknown:["+i.toLowerCase()+"]";let a=null;if((a=n.indexOf(o))>=0)return this.dispatch("[CIRCULAR:"+a+"]");if(n.push(o),typeof Buffer<"u"&&Buffer.isBuffer&&Buffer.isBuffer(o))return r("buffer:"),r(o.toString("utf8"));if(l!=="object"&&l!=="function"&&l!=="asyncfunction")if(this["_"+l])this["_"+l](o);else{if(e.ignoreUnknown)return r("["+l+"]");throw new Error('Unknown object type "'+l+'"')}else{let u=Object.keys(o);e.unorderedObjects&&(u=u.sort()),e.respectType!==!1&&!Kt(o)&&u.splice(0,0,"prototype","__proto__","letructor"),e.excludeKeys&&(u=u.filter(function(h){return!e.excludeKeys(h)})),r("object:"+u.length+":");for(const h of u)this.dispatch(h),r(":"),e.excludeValues||this.dispatch(o[h]),r(",")}},_array(o,s){if(s=typeof s<"u"?s:e.unorderedArrays!==!1,r("array:"+o.length+":"),!s||o.length<=1){for(const l of o)this.dispatch(l);return}const i=[],c=o.map(l=>{const a=Dr(e);return a.dispatch(l),i.push(a.getContext()),a.toString()});return n=[...n,...i],c.sort(),this._array(c,!1)},_date(o){return r("date:"+o.toJSON())},_symbol(o){return r("symbol:"+o.toString())},_error(o){return r("error:"+o.toString())},_boolean(o){return r("bool:"+o.toString())},_string(o){r("string:"+o.length+":"),r(o.toString())},_function(o){r("fn:"),Kt(o)?this.dispatch("[native]"):this.dispatch(o.toString()),e.respectFunctionNames!==!1&&this.dispatch("function-name:"+String(o.name)),e.respectFunctionProperties&&this._object(o)},_number(o){return r("number:"+o.toString())},_xml(o){return r("xml:"+o.toString())},_null(){return r("Null")},_undefined(){return r("Undefined")},_regexp(o){return r("regex:"+o.toString())},_uint8array(o){return r("uint8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint8clampedarray(o){return r("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(o))},_int8array(o){return r("int8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint16array(o){return r("uint16array:"),this.dispatch(Array.prototype.slice.call(o))},_int16array(o){return r("int16array:"),this.dispatch(Array.prototype.slice.call(o))},_uint32array(o){return r("uint32array:"),this.dispatch(Array.prototype.slice.call(o))},_int32array(o){return r("int32array:"),this.dispatch(Array.prototype.slice.call(o))},_float32array(o){return r("float32array:"),this.dispatch(Array.prototype.slice.call(o))},_float64array(o){return r("float64array:"),this.dispatch(Array.prototype.slice.call(o))},_arraybuffer(o){return r("arraybuffer:"),this.dispatch(new Uint8Array(o))},_url(o){return r("url:"+o.toString())},_map(o){r("map:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_set(o){r("set:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_file(o){return r("file:"),this.dispatch([o.name,o.size,o.type,o.lastModfied])},_blob(){if(e.ignoreUnknown)return r("[blob]");throw new Error(`Hashing Blob objects is currently not supported +Use "options.replacer" or "options.ignoreUnknown" +`)},_domwindow(){return r("domwindow")},_bigint(o){return r("bigint:"+o.toString())},_process(){return r("process")},_timer(){return r("timer")},_pipe(){return r("pipe")},_tcp(){return r("tcp")},_udp(){return r("udp")},_tty(){return r("tty")},_statwatcher(){return r("statwatcher")},_securecontext(){return r("securecontext")},_connection(){return r("connection")},_zlib(){return r("zlib")},_context(){return r("context")},_nodescript(){return r("nodescript")},_httpparser(){return r("httpparser")},_dataview(){return r("dataview")},_signal(){return r("signal")},_fsevent(){return r("fsevent")},_tlswrap(){return r("tlswrap")}}}function Kt(e){return typeof e!="function"?!1:/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code]\s+}$/i.exec(Function.prototype.toString.call(e))!=null}class ve{constructor(t,n){t=this.words=t||[],this.sigBytes=n!==void 0?n:t.length*4}toString(t){return(t||rs).stringify(this)}concat(t){if(this.clamp(),this.sigBytes%4)for(let n=0;n>>2]>>>24-n%4*8&255;this.words[this.sigBytes+n>>>2]|=r<<24-(this.sigBytes+n)%4*8}else for(let n=0;n>>2]=t.words[n>>>2];return this.sigBytes+=t.sigBytes,this}clamp(){this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4)}clone(){return new ve([...this.words])}}const rs={stringify(e){const t=[];for(let n=0;n>>2]>>>24-n%4*8&255;t.push((r>>>4).toString(16),(r&15).toString(16))}return t.join("")}},ns={stringify(e){const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=[];for(let r=0;r>>2]>>>24-r%4*8&255,s=e.words[r+1>>>2]>>>24-(r+1)%4*8&255,i=e.words[r+2>>>2]>>>24-(r+2)%4*8&255,c=o<<16|s<<8|i;for(let l=0;l<4&&r*8+l*6>>6*(3-l)&63))}return n.join("")}},os={parse(e){const t=e.length,n=[];for(let r=0;r>>2]|=(e.charCodeAt(r)&255)<<24-r%4*8;return new ve(n,t)}},ss={parse(e){return os.parse(unescape(encodeURIComponent(e)))}};class as{constructor(){this._minBufferSize=0,this.blockSize=512/32,this.reset()}reset(){this._data=new ve,this._nDataBytes=0}_append(t){typeof t=="string"&&(t=ss.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes}_doProcessBlock(t,n){}_process(t){let n,r=this._data.sigBytes/(this.blockSize*4);t?r=Math.ceil(r):r=Math.max((r|0)-this._minBufferSize,0);const o=r*this.blockSize,s=Math.min(o*4,this._data.sigBytes);if(o){for(let i=0;i>>7)^(P<<14|P>>>18)^P>>>3,k=pe[d-2],I=(k<<15|k>>>17)^(k<<13|k>>>19)^k>>>10;pe[d]=C+pe[d-7]+I+pe[d-16]}const f=l&a^~l&u,p=o&s^o&i^s&i,b=(o<<30|o>>>2)^(o<<19|o>>>13)^(o<<10|o>>>22),m=(l<<26|l>>>6)^(l<<21|l>>>11)^(l<<7|l>>>25),v=h+m+f+cs[d]+pe[d],E=b+p;h=u,u=a,a=l,l=c+v|0,c=i,i=s,s=o,o=v+E|0}r[0]=r[0]+o|0,r[1]=r[1]+s|0,r[2]=r[2]+i|0,r[3]=r[3]+c|0,r[4]=r[4]+l|0,r[5]=r[5]+a|0,r[6]=r[6]+u|0,r[7]=r[7]+h|0}finalize(t){super.finalize(t);const n=this._nDataBytes*8,r=this._data.sigBytes*8;return this._data.words[r>>>5]|=128<<24-r%32,this._data.words[(r+64>>>9<<4)+14]=Math.floor(n/4294967296),this._data.words[(r+64>>>9<<4)+15]=n,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}}function ds(e){return new us().finalize(e).toString(ns)}function Ye(e,t={}){const n=typeof e=="string"?e:ts(e,t);return ds(n).slice(0,10)}function Ft(e,t={}){const n=fs(e,t),r=G(),o=r._payloadCache=r._payloadCache||{};return o[e]||(o[e]=ps(n).then(s=>s||(delete o[e],null))),o[e]}function fs(e,t={}){const n=new URL(e,"http://localhost");if(n.search)throw new Error("Payload URL cannot contain search params: "+e);if(n.host!=="localhost")throw new Error("Payload URL cannot contain host: "+e);const r=t.hash||(t.fresh?Date.now():"");return et(te().app.baseURL,n.pathname,r?`_payload.${r}.js`:"_payload.js")}async function ps(e){const t=await _(()=>import(e),[],import.meta.url).catch(n=>{console.warn("[nuxt] Cannot load payload ",e,n)});return(t==null?void 0:t.default)||null}function hs(){return!!G().payload.prerenderedAt}const pt={ExampleCard:g(()=>_(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleHero:g(()=>_(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleIconCard:g(()=>_(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ExampleMultiselect:g(()=>_(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleTheTitle:g(()=>_(()=>import("./ExampleTheTitle.aab4e6ec.js"),["./ExampleTheTitle.aab4e6ec.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),HeroAnnouncement:g(()=>_(()=>import("./HeroAnnouncement.92c907fa.js"),["./HeroAnnouncement.92c907fa.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(e=>e.default||e)),IconMarkdown:g(()=>_(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),Logo:g(()=>_(()=>Promise.resolve().then(()=>Ci),void 0,import.meta.url).then(e=>e.default||e)),MyButton:g(()=>_(()=>import("./MyButton.4292c104.js"),["./MyButton.4292c104.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(e=>e.default||e)),PropInspector:g(()=>_(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(e=>e.default||e)),ReadMore:g(()=>_(()=>import("./ReadMore.fec51d0b.js"),["./ReadMore.fec51d0b.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.95097db0.js","./ContentSlot.811112da.js","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),AppFooter:g(()=>_(()=>Promise.resolve().then(()=>ol),void 0,import.meta.url).then(e=>e.default||e)),AppHeader:g(()=>_(()=>Promise.resolve().then(()=>Zi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderDialog:g(()=>_(()=>Promise.resolve().then(()=>Ei),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderLogo:g(()=>_(()=>Promise.resolve().then(()=>Li),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderNavigation:g(()=>_(()=>Promise.resolve().then(()=>Ii),void 0,import.meta.url).then(e=>e.default||e)),AppLayout:g(()=>_(()=>import("./AppLayout.e1616a30.js"),["./AppLayout.e1616a30.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),AppLoadingBar:g(()=>_(()=>Promise.resolve().then(()=>pi),void 0,import.meta.url).then(e=>e.default||e)),AppSearch:g(()=>_(()=>Promise.resolve().then(()=>xi),void 0,import.meta.url).then(e=>e.default||e)),AppSocialIcons:g(()=>_(()=>Promise.resolve().then(()=>_i),void 0,import.meta.url).then(e=>e.default||e)),DocumentDrivenNotFound:g(()=>_(()=>import("./DocumentDrivenNotFound.d294ae47.js"),["./DocumentDrivenNotFound.d294ae47.js","./ButtonLink.e542a711.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(e=>e.default||e)),ThemeSelect:g(()=>_(()=>Promise.resolve().then(()=>Fi),void 0,import.meta.url).then(e=>e.default||e)),DocsAside:g(()=>_(()=>import("./DocsAside.1abe9757.js"),["./DocsAside.1abe9757.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(e=>e.default||e)),DocsAsideTree:g(()=>_(()=>import("./DocsAsideTree.4387e6ea.js").then(e=>e.D),["./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocsPageBottom:g(()=>_(()=>import("./DocsPageBottom.dd73c7ef.js"),["./DocsPageBottom.dd73c7ef.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.a0c295ec.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.23cee876.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(e=>e.default||e)),DocsPageLayout:g(()=>_(()=>import("./DocsPageLayout.4b0475f7.js"),["./DocsPageLayout.4b0475f7.js","./DocsAside.1abe9757.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.95097db0.js","./ContentSlot.811112da.js","./Alert.f24f4058.css","./DocsPageBottom.dd73c7ef.js","./ProseA.a0c295ec.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.23cee876.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2107234e.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.3ed2837f.js","./DocsTocLinks.ff067be8.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e)),DocsPrevNext:g(()=>_(()=>import("./DocsPrevNext.2107234e.js"),["./DocsPrevNext.2107234e.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(e=>e.default||e)),DocsToc:g(()=>_(()=>import("./DocsToc.3ed2837f.js"),["./DocsToc.3ed2837f.js","./DocsTocLinks.ff067be8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.88c4fc0b.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(e=>e.default||e)),DocsTocLinks:g(()=>_(()=>import("./DocsTocLinks.ff067be8.js"),["./DocsTocLinks.ff067be8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.88c4fc0b.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(e=>e.default||e)),EditOnLink:g(()=>_(()=>import("./EditOnLink.ca577bd0.js"),["./EditOnLink.ca577bd0.js","./EditOnLink.vue.23cee876.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.b9e6b105.js"],import.meta.url).then(e=>e.default||e)),ProseA:g(()=>_(()=>import("./ProseA.a0c295ec.js"),["./ProseA.a0c295ec.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(e=>e.default||e)),ProseBlockquote:g(()=>_(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(e=>e.default||e)),ProseCode:g(()=>_(()=>import("./ProseCode.5f90dd93.js"),["./ProseCode.5f90dd93.js","./ProseCodeCopyButton.885123e2.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(e=>e.default||e)),ProseCodeInline:g(()=>_(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(e=>e.default||e)),ProseEm:g(()=>_(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(e=>e.default||e)),ProseH1:g(()=>_(()=>import("./ProseH1.f0f94d61.js"),["./ProseH1.f0f94d61.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(e=>e.default||e)),ProseH2:g(()=>_(()=>import("./ProseH2.440e9004.js"),["./ProseH2.440e9004.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(e=>e.default||e)),ProseH3:g(()=>_(()=>import("./ProseH3.25d5cd3a.js"),["./ProseH3.25d5cd3a.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(e=>e.default||e)),ProseH4:g(()=>_(()=>import("./ProseH4.282cba87.js"),["./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(e=>e.default||e)),ProseH5:g(()=>_(()=>import("./ProseH5.0ae4a534.js"),["./ProseH5.0ae4a534.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(e=>e.default||e)),ProseH6:g(()=>_(()=>import("./ProseH6.9fccd00c.js"),["./ProseH6.9fccd00c.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(e=>e.default||e)),ProseHr:g(()=>_(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(e=>e.default||e)),ProseImg:g(()=>_(()=>import("./ProseImg.4eef4e65.js"),["./ProseImg.4eef4e65.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(e=>e.default||e)),ProseLi:g(()=>_(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(e=>e.default||e)),ProseOl:g(()=>_(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(e=>e.default||e)),ProseP:g(()=>_(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),ProseStrong:g(()=>_(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(e=>e.default||e)),ProseTable:g(()=>_(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(e=>e.default||e)),ProseTbody:g(()=>_(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ProseTd:g(()=>_(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(e=>e.default||e)),ProseTh:g(()=>_(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(e=>e.default||e)),ProseThead:g(()=>_(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(e=>e.default||e)),ProseTr:g(()=>_(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(e=>e.default||e)),ProseUl:g(()=>_(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(e=>e.default||e)),Alert:g(()=>_(()=>import("./Alert.95097db0.js"),["./Alert.95097db0.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),Badge:g(()=>_(()=>import("./Badge.09ee14a8.js"),["./Badge.09ee14a8.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(e=>e.default||e)),ButtonLink:g(()=>_(()=>import("./ButtonLink.e542a711.js"),["./ButtonLink.e542a711.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./ButtonLink.1b73392c.css"],import.meta.url).then(e=>e.default||e)),Callout:g(()=>_(()=>import("./Callout.e583d4ce.js"),["./Callout.e583d4ce.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(e=>e.default||e)),CodeBlock:g(()=>_(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(e=>e.default||e)),CodeGroup:g(()=>_(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(e=>e.default||e)),Container:g(()=>_(()=>import("./Container.f1017aa2.js").then(e=>e.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),CopyButton:g(()=>_(()=>import("./CopyButton.087ca90c.js"),["./CopyButton.087ca90c.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(e=>e.default||e)),Ellipsis:g(()=>_(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(e=>e.default||e)),List:g(()=>_(()=>import("./List.bf56eba2.js"),["./List.bf56eba2.js","./List.vue.9ef0bef2.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./List.a65f0e81.css"],import.meta.url).then(e=>e.default||e)),NuxtImg:g(()=>_(()=>import("./NuxtImg.0b2f5a98.js"),["./NuxtImg.0b2f5a98.js","./NuxtImg.vue.0972faf4.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Props:g(()=>_(()=>import("./Props.7f60a4b4.js"),["./Props.7f60a4b4.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.88c4fc0b.js","./asyncData.45fd3bd9.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Sandbox:g(()=>_(()=>import("./Sandbox.1394c91b.js"),["./Sandbox.1394c91b.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./Sandbox.68fd6c5d.css"],import.meta.url).then(e=>e.default||e)),SourceLink:g(()=>_(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),TabsHeader:g(()=>_(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(e=>e.default||e)),Terminal:g(()=>_(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(e=>e.default||e)),VideoPlayer:g(()=>_(()=>import("./VideoPlayer.57f76f66.js"),["./VideoPlayer.57f76f66.js","./NuxtImg.vue.0972faf4.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(e=>e.default||e)),IconCodeSandBox:g(()=>_(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconDocus:g(()=>_(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxt:g(()=>_(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtContent:g(()=>_(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtLabs:g(()=>_(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtStudio:g(()=>_(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(e=>e.default||e)),IconStackBlitz:g(()=>_(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconVueTelescope:g(()=>_(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),BlockHero:g(()=>_(()=>import("./BlockHero.04826bbd.js"),["./BlockHero.04826bbd.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.e542a711.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(e=>e.default||e)),Card:g(()=>_(()=>import("./Card.8db8e0b6.js"),["./Card.8db8e0b6.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./Card.5dfb7f30.css"],import.meta.url).then(e=>e.default||e)),CardGrid:g(()=>_(()=>import("./CardGrid.b29ba276.js"),["./CardGrid.b29ba276.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(e=>e.default||e)),VoltaBoard:g(()=>_(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(e=>e.default||e)),ComponentPlayground:g(()=>_(()=>import("./ComponentPlayground.42e12ad5.js"),["./ComponentPlayground.42e12ad5.js","./ComponentPlayground.vue.69892806.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.b0c91250.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.659d0c56.js","./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.09ee14a8.js","./ContentSlot.811112da.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundData:g(()=>_(()=>import("./ComponentPlaygroundData.b0c91250.js"),["./ComponentPlaygroundData.b0c91250.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.659d0c56.js","./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.09ee14a8.js","./ContentSlot.811112da.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundProps:g(()=>_(()=>import("./ComponentPlaygroundProps.659d0c56.js"),["./ComponentPlaygroundProps.659d0c56.js","./ProseH4.282cba87.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.09ee14a8.js","./ContentSlot.811112da.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundSlots:g(()=>_(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundTokens:g(()=>_(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),TokensPlayground:g(()=>_(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ContentDoc:g(()=>_(()=>import("./ContentDoc.0b92d62d.js"),["./ContentDoc.0b92d62d.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./cookie.71eae014.js","./ContentQuery.5ffc4b8c.js","./asyncData.45fd3bd9.js","./DocsAsideTree.4387e6ea.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentList:g(()=>_(()=>import("./ContentList.97fc1b04.js"),["./ContentList.97fc1b04.js","./ContentQuery.5ffc4b8c.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentNavigation:g(()=>_(()=>import("./ContentNavigation.2763794e.js"),["./ContentNavigation.2763794e.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./DocsAsideTree.b13c5d2f.css","./EditOnLink.vue.23cee876.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.282cba87.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.09ee14a8.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.9ef0bef2.js","./List.a65f0e81.css","./NuxtImg.vue.0972faf4.js","./Props.7f60a4b4.js","./ProseTbody.37a7db42.js","./query.c3f7607a.js","./ComponentPlayground.vue.69892806.js","./ComponentPlaygroundData.b0c91250.js","./ComponentPlaygroundProps.659d0c56.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.0b92d62d.js","./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./ContentQuery.5ffc4b8c.js","./ContentList.97fc1b04.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.834a7772.js","./layout.37427c44.js","./GithubRepository.a7e8d415.js","./useGithub.0ae0bb61.js","./GithubLink.2353077b.js","./GithubReadme.cec09318.js","./GithubReleases.adf0483e.js","./GithubLastRelease.79db9f48.js","./GithubRelease.5c4f9c85.js","./GithubContributors.2435a600.js","./GithubFileContributors.41f6cd9d.js","./GithubCommits.a31447d4.js","./ContentNavigation.df5077be.css","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(e=>e.default||e)),ContentQuery:g(()=>_(()=>import("./ContentQuery.5ffc4b8c.js"),["./ContentQuery.5ffc4b8c.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentRenderer:g(()=>_(()=>import("./ContentRenderer.8e4912b9.js"),["./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentRendererMarkdown:g(()=>_(()=>import("./ContentRendererMarkdown.433c31c8.js"),["./ContentRendererMarkdown.433c31c8.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentSlot:g(()=>_(()=>import("./ContentSlot.811112da.js"),["./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocumentDrivenEmpty:g(()=>_(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Markdown:g(()=>_(()=>import("./Markdown.834a7772.js"),["./Markdown.834a7772.js","./ContentSlot.811112da.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),GithubRepository:g(()=>_(()=>import("./GithubRepository.a7e8d415.js"),["./GithubRepository.a7e8d415.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLink:g(()=>_(()=>import("./GithubLink.2353077b.js"),["./GithubLink.2353077b.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),GithubReadme:g(()=>_(()=>import("./GithubReadme.cec09318.js"),["./GithubReadme.cec09318.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubReleases:g(()=>_(()=>import("./GithubReleases.adf0483e.js"),["./GithubReleases.adf0483e.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLastRelease:g(()=>_(()=>import("./GithubLastRelease.79db9f48.js"),["./GithubLastRelease.79db9f48.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubRelease:g(()=>_(()=>import("./GithubRelease.5c4f9c85.js"),["./GithubRelease.5c4f9c85.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubContributors:g(()=>_(()=>import("./GithubContributors.2435a600.js"),["./GithubContributors.2435a600.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubFileContributors:g(()=>_(()=>import("./GithubFileContributors.41f6cd9d.js"),["./GithubFileContributors.41f6cd9d.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubCommits:g(()=>_(()=>import("./GithubCommits.a31447d4.js"),["./GithubCommits.a31447d4.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.45fd3bd9.js","./useGithub.0ae0bb61.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Icon:g(()=>_(()=>import("./DocsAsideTree.4387e6ea.js").then(e=>e.I),["./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e))},_s=Q(e=>{for(const t in pt)e.vueApp.component(t,pt[t]),e.vueApp.component("Lazy"+t,pt[t])}),ms={meta:[{name:"viewport",content:"width=device-width, initial-scale=1"},{charset:"utf-8"}],link:[],style:[],script:[{defer:!0,"data-domain":"frontier.realdecoy.com",src:"https://plausible.io/js/script.js"}],noscript:[]},vl=!1,bt=!1,gs=!1,ys="__nuxt",vs=Q(e=>{const t=Xo();t.push(ms),e.vueApp.use(t);{let n=!0;const r=()=>{n=!1,t.internalHooks.callHook("entries:updated",t.unhead)};t.internalHooks.hook("dom:beforeRender",o=>{o.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",r),e.hooks.hook("app:mounted",r)}e._useHead=Ir});/*! + * vue-router v4.1.6 + * (c) 2022 Eduardo San Martin Morote + * @license MIT + */const ye=typeof window<"u";function Es(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const $=Object.assign;function ht(e,t){const n={};for(const r in t){const o=t[r];n[r]=Y(o)?o.map(e):e(o)}return n}const $e=()=>{},Y=Array.isArray,bs=/\/$/,ws=e=>e.replace(bs,"");function _t(e,t,n="/"){let r,o={},s="",i="";const c=t.indexOf("#");let l=t.indexOf("?");return c=0&&(l=-1),l>-1&&(r=t.slice(0,l),s=t.slice(l+1,c>-1?c:t.length),o=e(s)),c>-1&&(r=r||t.slice(0,c),i=t.slice(c,t.length)),r=Cs(r??t,n),{fullPath:r+(s&&"?")+s+i,path:r,query:o,hash:i}}function Ps(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function zt(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function Rs(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&Ee(t.matched[r],n.matched[o])&&Hr(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ee(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Hr(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Ts(e[n],t[n]))return!1;return!0}function Ts(e,t){return Y(e)?qt(e,t):Y(t)?qt(t,e):e===t}function qt(e,t){return Y(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function Cs(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let o=n.length-1,s,i;for(s=0;s1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(s-(s===r.length?1:0)).join("/")}var xe;(function(e){e.pop="pop",e.push="push"})(xe||(xe={}));var De;(function(e){e.back="back",e.forward="forward",e.unknown=""})(De||(De={}));function As(e){if(!e)if(ye){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),ws(e)}const ks=/^[^#]+#/;function Ls(e,t){return e.replace(ks,"#")+t}function Ss(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const nt=()=>({left:window.pageXOffset,top:window.pageYOffset});function Os(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Ss(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function Wt(e,t){return(history.state?history.state.position-t:-1)+e}const wt=new Map;function Is(e,t){wt.set(e,t)}function $s(e){const t=wt.get(e);return wt.delete(e),t}let Ds=()=>location.protocol+"//"+location.host;function Mr(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let c=o.includes(e.slice(s))?e.slice(s).length:1,l=o.slice(c);return l[0]!=="/"&&(l="/"+l),zt(l,"")}return zt(n,e)+r+o}function Hs(e,t,n,r){let o=[],s=[],i=null;const c=({state:d})=>{const f=Mr(e,location),p=n.value,b=t.value;let m=0;if(d){if(n.value=f,t.value=d,i&&i===p){i=null;return}m=b?d.position-b.position:0}else r(f);o.forEach(v=>{v(n.value,p,{delta:m,type:xe.pop,direction:m?m>0?De.forward:De.back:De.unknown})})};function l(){i=n.value}function a(d){o.push(d);const f=()=>{const p=o.indexOf(d);p>-1&&o.splice(p,1)};return s.push(f),f}function u(){const{history:d}=window;d.state&&d.replaceState($({},d.state,{scroll:nt()}),"")}function h(){for(const d of s)d();s=[],window.removeEventListener("popstate",c),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",c),window.addEventListener("beforeunload",u),{pauseListeners:l,listen:a,destroy:h}}function Gt(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?nt():null}}function Ms(e){const{history:t,location:n}=window,r={value:Mr(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(l,a,u){const h=e.indexOf("#"),d=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+l:Ds()+e+l;try{t[u?"replaceState":"pushState"](a,"",d),o.value=a}catch(f){console.error(f),n[u?"replace":"assign"](d)}}function i(l,a){const u=$({},t.state,Gt(o.value.back,l,o.value.forward,!0),a,{position:o.value.position});s(l,u,!0),r.value=l}function c(l,a){const u=$({},o.value,t.state,{forward:l,scroll:nt()});s(u.current,u,!0);const h=$({},Gt(r.value,l,null),{position:u.position+1},a);s(l,h,!1),r.value=l}return{location:r,state:o,push:c,replace:i}}function Vr(e){e=As(e);const t=Ms(e),n=Hs(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=$({location:"",base:e,go:r,createHref:Ls.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}function Vs(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Vr(e)}function xs(e){return typeof e=="string"||e&&typeof e=="object"}function xr(e){return typeof e=="string"||typeof e=="symbol"}const ce={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},jr=Symbol("");var Qt;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Qt||(Qt={}));function be(e,t){return $(new Error,{type:e,[jr]:!0},t)}function ne(e,t){return e instanceof Error&&jr in e&&(t==null||!!(e.type&t))}const Zt="[^/]+?",js={sensitive:!1,strict:!1,start:!0,end:!0},Bs=/[.+*?^${}()[\]/\\]/g;function Ns(e,t){const n=$({},js,t),r=[];let o=n.start?"^":"";const s=[];for(const a of e){const u=a.length?[]:[90];n.strict&&!a.length&&(o+="/");for(let h=0;ht.length?t.length===1&&t[0]===40+40?1:-1:0}function Ks(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const Fs={type:0,value:""},zs=/[a-zA-Z0-9_]/;function qs(e){if(!e)return[[]];if(e==="/")return[[Fs]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(f){throw new Error(`ERR (${n})/"${a}": ${f}`)}let n=0,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let c=0,l,a="",u="";function h(){a&&(n===0?s.push({type:0,value:a}):n===1||n===2||n===3?(s.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),s.push({type:1,value:a,regexp:u,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),a="")}function d(){a+=l}for(;c{i(E)}:$e}function i(u){if(xr(u)){const h=r.get(u);h&&(r.delete(u),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(u);h>-1&&(n.splice(h,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function c(){return n}function l(u){let h=0;for(;h=0&&(u.record.path!==n[h].record.path||!Br(u,n[h]));)h++;n.splice(h,0,u),u.record.name&&!Xt(u)&&r.set(u.record.name,u)}function a(u,h){let d,f={},p,b;if("name"in u&&u.name){if(d=r.get(u.name),!d)throw be(1,{location:u});b=d.record.name,f=$(Yt(h.params,d.keys.filter(E=>!E.optional).map(E=>E.name)),u.params&&Yt(u.params,d.keys.map(E=>E.name))),p=d.stringify(f)}else if("path"in u)p=u.path,d=n.find(E=>E.re.test(p)),d&&(f=d.parse(p),b=d.record.name);else{if(d=h.name?r.get(h.name):n.find(E=>E.re.test(h.path)),!d)throw be(1,{location:u,currentLocation:h});b=d.record.name,f=$({},h.params,u.params),p=d.stringify(f)}const m=[];let v=d;for(;v;)m.unshift(v.record),v=v.parent;return{name:b,path:p,params:f,matched:m,meta:Js(m)}}return e.forEach(u=>s(u)),{addRoute:s,resolve:a,removeRoute:i,getRoutes:c,getRecordMatcher:o}}function Yt(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Qs(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:Zs(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function Zs(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="boolean"?n:n[r];return t}function Xt(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function Js(e){return e.reduce((t,n)=>$(t,n.meta),{})}function er(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function Br(e,t){return t.children.some(n=>n===e||Br(e,n))}const Nr=/#/g,Ys=/&/g,Xs=/\//g,ea=/=/g,ta=/\?/g,Ur=/\+/g,ra=/%5B/g,na=/%5D/g,Kr=/%5E/g,oa=/%60/g,Fr=/%7B/g,sa=/%7C/g,zr=/%7D/g,aa=/%20/g;function It(e){return encodeURI(""+e).replace(sa,"|").replace(ra,"[").replace(na,"]")}function ia(e){return It(e).replace(Fr,"{").replace(zr,"}").replace(Kr,"^")}function Pt(e){return It(e).replace(Ur,"%2B").replace(aa,"+").replace(Nr,"%23").replace(Ys,"%26").replace(oa,"`").replace(Fr,"{").replace(zr,"}").replace(Kr,"^")}function la(e){return Pt(e).replace(ea,"%3D")}function ca(e){return It(e).replace(Nr,"%23").replace(ta,"%3F")}function ua(e){return e==null?"":ca(e).replace(Xs,"%2F")}function Xe(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function da(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let o=0;os&&Pt(s)):[r&&Pt(r)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function fa(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=Y(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const pa=Symbol(""),rr=Symbol(""),$t=Symbol(""),Dt=Symbol(""),Rt=Symbol("");function Le(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function de(e,t,n,r,o){const s=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((i,c)=>{const l=h=>{h===!1?c(be(4,{from:n,to:t})):h instanceof Error?c(h):xs(h)?c(be(2,{from:t,to:h})):(s&&r.enterCallbacks[o]===s&&typeof h=="function"&&s.push(h),i())},a=e.call(r&&r.instances[o],t,n,l);let u=Promise.resolve(a);e.length<3&&(u=u.then(l)),u.catch(h=>c(h))})}function mt(e,t,n,r){const o=[];for(const s of e)for(const i in s.components){let c=s.components[i];if(!(t!=="beforeRouteEnter"&&!s.instances[i]))if(ha(c)){const a=(c.__vccOpts||c)[t];a&&o.push(de(a,n,r,s,i))}else{let l=c();o.push(()=>l.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${s.path}"`));const u=Es(a)?a.default:a;s.components[i]=u;const d=(u.__vccOpts||u)[t];return d&&de(d,n,r,s,i)()}))}}return o}function ha(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function nr(e){const t=he($t),n=he(Dt),r=D(()=>t.resolve(R(e.to))),o=D(()=>{const{matched:l}=r.value,{length:a}=l,u=l[a-1],h=n.matched;if(!u||!h.length)return-1;const d=h.findIndex(Ee.bind(null,u));if(d>-1)return d;const f=or(l[a-2]);return a>1&&or(u)===f&&h[h.length-1].path!==f?h.findIndex(Ee.bind(null,l[a-2])):d}),s=D(()=>o.value>-1&&ya(n.params,r.value.params)),i=D(()=>o.value>-1&&o.value===n.matched.length-1&&Hr(n.params,r.value.params));function c(l={}){return ga(l)?t[R(e.replace)?"replace":"push"](R(e.to)).catch($e):Promise.resolve()}return{route:r,href:D(()=>r.value.href),isActive:s,isExactActive:i,navigate:c}}const _a=K({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:nr,setup(e,{slots:t}){const n=_e(nr(e)),{options:r}=he($t),o=D(()=>({[sr(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[sr(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&t.default(n);return e.custom?s:W("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),ma=_a;function ga(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function ya(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!Y(o)||o.length!==r.length||r.some((s,i)=>s!==o[i]))return!1}return!0}function or(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const sr=(e,t,n)=>e??t??n,va=K({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=he(Rt),o=D(()=>e.route||r.value),s=he(rr,0),i=D(()=>{let a=R(s);const{matched:u}=o.value;let h;for(;(h=u[a])&&!h.components;)a++;return a}),c=D(()=>o.value.matched[i.value]);Ie(rr,D(()=>i.value+1)),Ie(pa,c),Ie(Rt,o);const l=J();return fe(()=>[l.value,c.value,e.name],([a,u,h],[d,f,p])=>{u&&(u.instances[h]=a,f&&f!==u&&a&&a===d&&(u.leaveGuards.size||(u.leaveGuards=f.leaveGuards),u.updateGuards.size||(u.updateGuards=f.updateGuards))),a&&u&&(!f||!Ee(u,f)||!d)&&(u.enterCallbacks[h]||[]).forEach(b=>b(a))},{flush:"post"}),()=>{const a=o.value,u=e.name,h=c.value,d=h&&h.components[u];if(!d)return ar(n.default,{Component:d,route:a});const f=h.props[u],p=f?f===!0?a.params:typeof f=="function"?f(a):f:null,m=W(d,$({},p,t,{onVnodeUnmounted:v=>{v.component.isUnmounted&&(h.instances[u]=null)},ref:l}));return ar(n.default,{Component:m,route:a})||m}}});function ar(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const qr=va;function Ea(e){const t=Gs(e.routes,e),n=e.parseQuery||da,r=e.stringifyQuery||tr,o=e.history,s=Le(),i=Le(),c=Le(),l=yt(ce);let a=ce;ye&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=ht.bind(null,y=>""+y),h=ht.bind(null,ua),d=ht.bind(null,Xe);function f(y,T){let w,A;return xr(y)?(w=t.getRecordMatcher(y),A=T):A=y,t.addRoute(A,w)}function p(y){const T=t.getRecordMatcher(y);T&&t.removeRoute(T)}function b(){return t.getRoutes().map(y=>y.record)}function m(y){return!!t.getRecordMatcher(y)}function v(y,T){if(T=$({},T||l.value),typeof y=="string"){const S=_t(n,y,T.path),N=t.resolve({path:S.path},T),Ae=o.createHref(S.fullPath);return $(S,N,{params:d(N.params),hash:Xe(S.hash),redirectedFrom:void 0,href:Ae})}let w;if("path"in y)w=$({},y,{path:_t(n,y.path,T.path).path});else{const S=$({},y.params);for(const N in S)S[N]==null&&delete S[N];w=$({},y,{params:h(y.params)}),T.params=h(T.params)}const A=t.resolve(w,T),H=y.hash||"";A.params=u(d(A.params));const B=Ps(r,$({},y,{hash:ia(H),path:A.path})),O=o.createHref(B);return $({fullPath:B,hash:H,query:r===tr?fa(y.query):y.query||{}},A,{redirectedFrom:void 0,href:O})}function E(y){return typeof y=="string"?_t(n,y,l.value.path):$({},y)}function P(y,T){if(a!==y)return be(8,{from:T,to:y})}function C(y){return M(y)}function k(y){return C($(E(y),{replace:!0}))}function I(y){const T=y.matched[y.matched.length-1];if(T&&T.redirect){const{redirect:w}=T;let A=typeof w=="function"?w(y):w;return typeof A=="string"&&(A=A.includes("?")||A.includes("#")?A=E(A):{path:A},A.params={}),$({query:y.query,hash:y.hash,params:"path"in A?{}:y.params},A)}}function M(y,T){const w=a=v(y),A=l.value,H=y.state,B=y.force,O=y.replace===!0,S=I(w);if(S)return M($(E(S),{state:typeof S=="object"?$({},H,S.state):H,force:B,replace:O}),T||w);const N=w;N.redirectedFrom=T;let Ae;return!B&&Rs(r,A,w)&&(Ae=be(16,{to:N,from:A}),Vt(A,A,!0,!1)),(Ae?Promise.resolve(Ae):Re(N,A)).catch(F=>ne(F)?ne(F,2)?F:it(F):at(F,N,A)).then(F=>{if(F){if(ne(F,2))return M($({replace:O},E(F.to),{state:typeof F.to=="object"?$({},H,F.to.state):H,force:B}),T||N)}else F=Ce(N,A,!0,O,H);return Te(N,A,F),F})}function ie(y,T){const w=P(y,T);return w?Promise.reject(w):Promise.resolve()}function Re(y,T){let w;const[A,H,B]=ba(y,T);w=mt(A.reverse(),"beforeRouteLeave",y,T);for(const S of A)S.leaveGuards.forEach(N=>{w.push(de(N,y,T))});const O=ie.bind(null,y,T);return w.push(O),ge(w).then(()=>{w=[];for(const S of s.list())w.push(de(S,y,T));return w.push(O),ge(w)}).then(()=>{w=mt(H,"beforeRouteUpdate",y,T);for(const S of H)S.updateGuards.forEach(N=>{w.push(de(N,y,T))});return w.push(O),ge(w)}).then(()=>{w=[];for(const S of y.matched)if(S.beforeEnter&&!T.matched.includes(S))if(Y(S.beforeEnter))for(const N of S.beforeEnter)w.push(de(N,y,T));else w.push(de(S.beforeEnter,y,T));return w.push(O),ge(w)}).then(()=>(y.matched.forEach(S=>S.enterCallbacks={}),w=mt(B,"beforeRouteEnter",y,T),w.push(O),ge(w))).then(()=>{w=[];for(const S of i.list())w.push(de(S,y,T));return w.push(O),ge(w)}).catch(S=>ne(S,8)?S:Promise.reject(S))}function Te(y,T,w){for(const A of c.list())A(y,T,w)}function Ce(y,T,w,A,H){const B=P(y,T);if(B)return B;const O=T===ce,S=ye?history.state:{};w&&(A||O?o.replace(y.fullPath,$({scroll:O&&S&&S.scroll},H)):o.push(y.fullPath,H)),l.value=y,Vt(y,T,w,O),it()}let le;function Z(){le||(le=o.listen((y,T,w)=>{if(!xt.listening)return;const A=v(y),H=I(A);if(H){M($(H,{replace:!0}),A).catch($e);return}a=A;const B=l.value;ye&&Is(Wt(B.fullPath,w.delta),nt()),Re(A,B).catch(O=>ne(O,12)?O:ne(O,2)?(M(O.to,A).then(S=>{ne(S,20)&&!w.delta&&w.type===xe.pop&&o.go(-1,!1)}).catch($e),Promise.reject()):(w.delta&&o.go(-w.delta,!1),at(O,A,B))).then(O=>{O=O||Ce(A,B,!1),O&&(w.delta&&!ne(O,8)?o.go(-w.delta,!1):w.type===xe.pop&&ne(O,20)&&o.go(-1,!1)),Te(A,B,O)}).catch($e)}))}let st=Le(),Mt=Le(),Be;function at(y,T,w){it(y);const A=Mt.list();return A.length?A.forEach(H=>H(y,T,w)):console.error(y),Promise.reject(y)}function cn(){return Be&&l.value!==ce?Promise.resolve():new Promise((y,T)=>{st.add([y,T])})}function it(y){return Be||(Be=!y,Z(),st.list().forEach(([T,w])=>y?w(y):T()),st.reset()),y}function Vt(y,T,w,A){const{scrollBehavior:H}=e;if(!ye||!H)return Promise.resolve();const B=!w&&$s(Wt(y.fullPath,0))||(A||!w)&&history.state&&history.state.scroll||null;return Pe().then(()=>H(y,T,B)).then(O=>O&&Os(O)).catch(O=>at(O,y,T))}const lt=y=>o.go(y);let ct;const ut=new Set,xt={currentRoute:l,listening:!0,addRoute:f,removeRoute:p,hasRoute:m,getRoutes:b,resolve:v,options:e,push:C,replace:k,go:lt,back:()=>lt(-1),forward:()=>lt(1),beforeEach:s.add,beforeResolve:i.add,afterEach:c.add,onError:Mt.add,isReady:cn,install(y){const T=this;y.component("RouterLink",ma),y.component("RouterView",qr),y.config.globalProperties.$router=T,Object.defineProperty(y.config.globalProperties,"$route",{enumerable:!0,get:()=>R(l)}),ye&&!ct&&l.value===ce&&(ct=!0,C(o.location).catch(H=>{}));const w={};for(const H in ce)w[H]=D(()=>l.value[H]);y.provide($t,T),y.provide(Dt,_e(w)),y.provide(Rt,l);const A=y.unmount;ut.add(y),y.unmount=function(){ut.delete(y),ut.size<1&&(a=ce,le&&le(),le=null,l.value=ce,ct=!1,Be=!1),A()}}};return xt}function ge(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function ba(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;iEe(a,c))?r.push(c):n.push(c));const l=e.matched[i];l&&(t.matched.find(a=>Ee(a,l))||o.push(l))}return[n,r,o]}function El(){return he(Dt)}const z={},q={},ir=[{name:(z==null?void 0:z.name)??"slug",path:(z==null?void 0:z.path)??"/:slug(.*)*",children:[],meta:z,alias:(z==null?void 0:z.alias)||[],redirect:(z==null?void 0:z.redirect)||void 0,component:()=>_(()=>import("./document-driven.49104e9a.js"),["./document-driven.49104e9a.js","./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.8e4912b9.js","./ContentRendererMarkdown.433c31c8.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./DocumentDrivenNotFound.d294ae47.js","./ButtonLink.e542a711.js","./DocsAsideTree.4387e6ea.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.811112da.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./layout.37427c44.js","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)},{name:(q==null?void 0:q.name)??"__app_config.json",path:(q==null?void 0:q.path)??"/__app_config.json",children:[],meta:q,alias:(q==null?void 0:q.alias)||[],redirect:(q==null?void 0:q.redirect)||void 0,component:()=>_(()=>import("./empty.9bcab498.js"),["./empty.9bcab498.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)}],wa={scrollBehavior(e,t,n){if(!history.state.stop){if(history.state.smooth)return{el:history.state.smooth,behavior:"smooth"};if(e.hash){const r=document.querySelector(e.hash);if(!r)return;const{marginTop:o}=getComputedStyle(r),s=parseInt(o);return{top:document.querySelector(e.hash).offsetTop-s,behavior:"smooth"}}return n||{top:0}}}},Pa={scrollBehavior(e,t,n){const r=G();let o=n||void 0;if(!o&&t&&e&&e.meta.scrollToTop!==!1&&Ra(t,e)&&(o={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:lr(e.hash)}}const s=c=>!!(c.meta.pageTransition??bt),i=s(t)&&s(e)?"page:transition:finish":"page:finish";return new Promise(c=>{r.hooks.hookOnce(i,async()=>{await Pe(),e.hash&&(o={el:e.hash,top:lr(e.hash)}),c(o)})})}};function lr(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}function Ra(e,t){const n=e.matched[0]===t.matched[0];return!!(!n||n&&JSON.stringify(e.params)!==JSON.stringify(t.params))}const Ta={},oe={...Ta,...Pa,...wa},Ca=vn(async e=>{var o;let t,n;if(!((o=e.meta)!=null&&o.validate))return;const r=([t,n]=qe(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t);if(r!==!0)return r}),Aa=[Ca],He={};function ka(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){const c=o.includes(e.slice(s))?e.slice(s).length:1;let l=o.slice(c);return l[0]!=="/"&&(l="/"+l),jt(l,"")}return jt(n,e)+r+o}const La=Q(async e=>{var p,b;let t,n,r=te().app.baseURL;oe.hashMode&&!r.includes("#")&&(r+="#");const o=((p=oe.history)==null?void 0:p.call(oe,r))??(oe.hashMode?Vs(r):Vr(r)),s=((b=oe.routes)==null?void 0:b.call(oe,ir))??ir,i=ka(r,window.location),c=Ea({...oe,history:o,routes:s});e.vueApp.use(c);const l=yt(c.currentRoute.value);c.afterEach((m,v)=>{l.value=v}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>l.value});const a=yt(c.resolve(i)),u=()=>{a.value=c.currentRoute.value};e.hook("page:finish",u),c.afterEach((m,v)=>{var E,P,C,k;((P=(E=m.matched[0])==null?void 0:E.components)==null?void 0:P.default)===((k=(C=v.matched[0])==null?void 0:C.components)==null?void 0:k.default)&&u()});const h={};for(const m in a.value)h[m]=D(()=>a.value[m]);e._route=_e(h),e._middleware=e._middleware||{global:[],named:{}};const d=rt();try{[t,n]=qe(()=>c.isReady()),await t,n()}catch(m){[t,n]=qe(()=>ue(e,Se,[m])),await t,n()}const f=kt("_layout");return c.beforeEach(async(m,v)=>{var P;m.meta=_e(m.meta),e.isHydrating&&f.value&&!$n(m.meta.layout)&&(m.meta.layout=f.value),e._processingMiddleware=!0;const E=new Set([...Aa,...e._middleware.global]);for(const C of m.matched){const k=C.meta.middleware;if(k)if(Array.isArray(k))for(const I of k)E.add(I);else E.add(k)}for(const C of E){const k=typeof C=="string"?e._middleware.named[C]||await((P=He[C])==null?void 0:P.call(He).then(M=>M.default||M)):C;if(!k)throw new Error(`Unknown route middleware: '${C}'.`);const I=await ue(e,k,[m,v]);if(!e.payload.serverRendered&&e.isHydrating&&(I===!1||I instanceof Error)){const M=I||Et({statusCode:404,statusMessage:`Page Not Found: ${i}`});return await ue(e,Se,[M]),!1}if(I||I===!1)return I}}),c.afterEach(async m=>{delete e._processingMiddleware,!e.isHydrating&&d.value&&await ue(e,ao),m.matched.length===0&&await ue(e,Se,[Et({statusCode:404,fatal:!1,statusMessage:`Page not found: ${m.fullPath}`})])}),e.hooks.hookOnce("app:created",async()=>{try{await c.replace({...c.resolve(i),name:void 0,force:!0})}catch(m){await ue(e,Se,[m])}}),{provide:{router:c}}}),Oe={"docs-page":()=>_(()=>import("./docs-page.436b5c87.js"),["./docs-page.436b5c87.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./docs-page.5b0d6071.css"],import.meta.url).then(e=>e.default||e),default:()=>_(()=>import("./default.b47ebbea.js"),["./default.b47ebbea.js","./DocsPageLayout.4b0475f7.js","./DocsAside.1abe9757.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.95097db0.js","./ContentSlot.811112da.js","./Alert.f24f4058.css","./DocsPageBottom.dd73c7ef.js","./ProseA.a0c295ec.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.23cee876.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2107234e.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.3ed2837f.js","./DocsTocLinks.ff067be8.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e),page:()=>_(()=>import("./page.49790b66.js"),["./page.49790b66.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./useDocus.b9e6b105.js","./app.config.88c4fc0b.js","./page.70291227.css"],import.meta.url).then(e=>e.default||e)},Sa=Q(()=>{const e=G(),t=je();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{var o;const r=(o=n==null?void 0:n.meta)==null?void 0:o.layout;r&&typeof Oe[r]=="function"&&await Oe[r]()})}),e.hooks.hook("link:prefetch",n=>{var i,c,l,a;if(pr(n))return;const r=t.resolve(n);if(!r)return;const o=(i=r==null?void 0:r.meta)==null?void 0:i.layout;let s=Array.isArray((c=r==null?void 0:r.meta)==null?void 0:c.middleware)?(l=r==null?void 0:r.meta)==null?void 0:l.middleware:[(a=r==null?void 0:r.meta)==null?void 0:a.middleware];s=s.filter(u=>typeof u=="string");for(const u of s)typeof He[u]=="function"&&He[u]();o&&typeof Oe[o]=="function"&&Oe[o]()})}),Oa=Q(()=>{const e=te(),t=J(),n=D(()=>{var r,o;return(o=(r=e==null?void 0:e.public)==null?void 0:r.algolia)==null?void 0:o.docSearch});if(n.value){const r=ae(),o=je(),s=D(()=>{const{algolia:a}=te();return a&&a.docSearch?a:{}}),i=a=>a.button===1||a.altKey||a.ctrlKey||a.metaKey||a.shiftKey,c=a=>{const{pathname:u,hash:h}=new URL(a),d=window.location.origin,f=u.replace(d,"/");return Ct(f)+h};(async a=>{const u=document.createElement("div");u.id="#docsearch-container",u.style.width="0",u.style.height="0",u.style.display="none",document.body.appendChild(u),t.value=u;const h=await Promise.all([_(()=>import("./index.ade63bb5.js"),[],import.meta.url),_(()=>Promise.resolve({}),["./style.6a49f87f.css"],import.meta.url)]).then(([b])=>b.default),d=(a==null?void 0:a.lang)||"en",f=`${a.langAttribute||"language"}:${d}`,p=a.docSearch.facetFilters||[];h({container:u,appId:a.applicationId,apiKey:a.apiKey,indexName:a.docSearch.indexName,searchParameters:{...d?{facetFilters:[f].concat(p)}:{facetFilters:p},...a.searchParameters},transformItems:a.transformItems?a.transformItems:b=>b.map(m=>({...m,url:c(m.url)})),navigator:a.navigator?a.navigator:{navigate:({itemUrl:b})=>{const{pathname:m}=new URL(window.location.origin+b);r.path===m?window.location.assign(window.location.origin+b):o.push(b)}},hitComponent:a.hitComponent?a.hitComponent:({hit:b,children:m})=>({type:"a",constructor:void 0,__v:1,props:{href:b.url,children:m,onClick:v=>{if(i(v)||r.fullPath===b.url)return;const{pathname:E}=new URL(window.location.origin+b.url);r.path!==E&&v.preventDefault(),o.push(b.url)}}}),...Object.entries(a).filter(([b])=>!["applicationId","apiKey","indexName","transformItems","navigator","hitComponent","facetFilters","langAttribute","lang"].includes(b)).reduce((b,[m,v])=>(b[m]=v,b),{})})})(s.value)}return{provide:{docSearch:{element:t,hasDocSearch:n}}}});function Ht(e){return JSON.stringify(e,Ia)}function Ia(e,t){return t instanceof RegExp?`--REGEX ${t.toString()}`:t}const Wr=e=>{let t=Ht(e);return t=typeof Buffer<"u"?Buffer.from(t).toString("base64"):btoa(t),t=t.replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,""),(t.match(/.{1,100}/g)||[]).join("/")},$a=()=>async e=>{const{content:t}=te().public,n=e.params(),r=t.experimental.stripQueryParameters?ze(`/query/${`${Ye(n)}.${t.integrity}`}/${Wr(n)}.json`):ze(`/query/${Ye(n)}.${t.integrity}.json`);if(fr())return(await _(()=>import("./client-db.e451d8e0.js"),["./client-db.e451d8e0.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.useContentDatabase())).fetch(e);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Tt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o};function Me(e,...t){const{content:n}=te().public,r=Nn($a(),typeof e!="string"?e:{});let o;typeof e=="string"&&(o=En(et(e,...t)));const s=r.params;return r.params=()=>{var c,l,a;const i=s();return o&&(i.where=i.where||[],i.first&&(i.where||[]).length===0?i.where.push({_path:Ct(o)}):i.where.push({_path:new RegExp(`^${o.replace(/[-[\]{}()*+.,^$\s/]/g,"\\$&")}`)})),(c=i.sort)!=null&&c.length||(i.sort=[{_file:1,$numeric:!0}]),n.locales.length&&((a=(l=i.where)==null?void 0:l.find(h=>h._locale))!=null&&a._locale||(i.where=i.where||[],i.where.push({_locale:n.defaultLocale}))),i},r}const Da=async e=>{const{content:t}=te().public;typeof(e==null?void 0:e.params)!="function"&&(e=Me(e));const n=e.params(),r=t.experimental.stripQueryParameters?ze(`/navigation/${`${Ye(n)}.${t.integrity}`}/${Wr(n)}.json`):ze(`/navigation/${Ye(n)}.${t.integrity}.json`);if(fr())return(await _(()=>import("./client-db.e451d8e0.js"),["./client-db.e451d8e0.js","./cookie.71eae014.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.generateNavigation))(n);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Tt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o},Ha=Q(e=>{var s,i;const{documentDriven:t,experimental:n}=(i=(s=te())==null?void 0:s.public)==null?void 0:i.content,r=(c,l,a,u)=>{var h;if(l&&(l!=null&&l.layout))return l.layout;if(c.matched.length&&((h=c.matched[0].meta)!=null&&h.layout))return c.matched[0].meta.layout;if(a&&l){const{navKeyFromPath:d}=Pr(),f=d(l._path,"layout",a);if(f)return f}if(t.layoutFallbacks&&u){let d;for(const f of t.layoutFallbacks)if(u[f]&&u[f].layout){d=u[f].layout;break}if(d)return d}return"default"},o=async(c,l=!1)=>{e.callHook("content:document-driven:start",{route:c,dedup:l});const a=c.meta.documentDriven||{};if(c.meta.documentDriven===!1)return;const{navigation:u,pages:h,globals:d,surrounds:f}=ke(),p=Ct(c.path),b=[];if(t.navigation&&a.navigation!==!1){const m=()=>{const{navigation:v}=ke();return v.value&&!l?v.value:Da().then(E=>(v.value=E,E)).catch(()=>null)};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.globals){const m=()=>{const{globals:v}=ke();if(typeof t.globals=="object"&&Array.isArray(t.globals)){console.log("Globals must be a list of keys with QueryBuilderParams as a value.");return}return Promise.all(Object.entries(t.globals).map(([E,P])=>{if(!l&&v.value[E])return v.value[E];let C="findOne";return P!=null&&P.type&&(C=P.type),Me(P)[C]().catch(()=>null)})).then(E=>E.reduce((P,C,k)=>{const I=Object.keys(t.globals)[k];return P[I]=C,P},{}))};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.page&&a.page!==!1){let m={_path:p};typeof a.page=="string"&&(m={_path:a.page}),typeof a.page=="object"&&(m=a.page);const v=()=>{const{pages:E}=ke();return!l&&E.value[p]&&E.value[p]._path===p?E.value[p]:Me().where(m).findOne().catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));if(t.surround&&a.surround!==!1){let m=p;["string","object"].includes(typeof a.page)&&(m=a.page),["string","object"].includes(typeof a.surround)&&(m=a.surround);const v=()=>{const{surrounds:E}=ke();return!l&&E.value[p]?E.value[p]:Me().where({_partial:{$not:!0},navigation:{$not:!1}}).without(["body"]).findSurround(m).catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));return await Promise.all(b.map(m=>m())).then(async([m,v,E,P])=>{var k,I;m&&(u.value=m),v&&(d.value=v),P&&(f.value[p]=P);const C=(E==null?void 0:E.redirect)||((I=(k=E==null?void 0:E._dir)==null?void 0:k.navigation)==null?void 0:I.redirect);if(C)return h.value[p]=E,C;if(E){const M=r(c,E,m,v),ie=Oe[M];ie&&typeof ie=="function"&&await ie(),c.meta.layout=M,E.layout=M,h.value[p]=E}await e.callHook("content:document-driven:finish",{route:c,dedup:l,page:E,navigation:m,globals:v,surround:P})})};bn(async(c,l)=>{if(c.path.includes("favicon.ico")||!n.clientDB&&c.path===l.path)return;const a=await o(c,!1);if(a)return pr(a)?ue(e,wn,[a,{external:!0}]):a}),e.hook("app:data:refresh",async()=>await o(ae(),!0))});const Ma=e=>({color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`,borderColor:`{elements.state.${e}.borderColor.primary} !important`,":deep(p code)":{color:`{elements.state.${e}.color.secondary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(code)":{color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(a code)":{borderColor:`{elements.state.${e}.borderColor.primary} !important`},":deep(a)":{borderColor:"currentColor",code:{backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`},"&:hover":{color:`{elements.state.${e}.color.secondary} !important`,borderColor:"currentColor !important",code:{backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`,color:`{elements.state.${e}.color.secondary} !important`,borderColor:`{elements.state.${e}.borderColor.secondary} !important`}}}}),Va=e=>({marginTop:e,marginBottom:e}),xa=e=>({marginLeft:e,marginRight:e}),ja=e=>({paddingTop:e,paddingBottom:e}),Ba=e=>({paddingLeft:e,paddingRight:e}),Na={overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},Ua=e=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":e}),Ka=e=>({fontSize:`{text.${e}.fontSize}`,lineHeight:`{text.${e}.lineHeight}`}),Fa={stateColors:Ma,my:Va,mx:xa,py:ja,px:Ba,truncate:Na,lineClamp:Ua,text:Ka},za=Q(async e=>{e.vueApp.use(An,{colorSchemeMode:"class",utils:Fa})}),qa="__NUXT_COLOR_MODE__",Wa="ColorScheme",Ga="theme",Qa="nuxt-color-mode",se=window[qa],Za=Q(e=>{const t=kt("color-mode",()=>_e({preference:se.preference,value:se.value,unknown:!1,forced:!1})).value;Je({htmlAttrs:{[`data-${Ga}`]:D(()=>t.value)}}),je().afterEach(o=>{const s=o.meta.colorMode;s&&s!=="system"?(t.value=s,t.forced=!0):(s==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?se.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=se.getColorScheme())}))}fe(()=>t.preference,o=>{var s;t.forced||(o==="system"?(t.value=se.getColorScheme(),r()):t.value=o,(s=window.localStorage)==null||s.setItem(Qa,o))},{immediate:!0}),fe(()=>t.value,(o,s)=>{se.removeColorScheme(s),se.addColorScheme(o)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=se.preference,t.value=se.value,t.unknown=!1)}),e.provide("colorMode",t)}),cr=".studio",Ke={appConfig:`${cr}/app.config.json`,tokensConfig:`${cr}/tokens.config.json`},bl=e=>{let t;return(...n)=>(t||(t=e()),t)};function Ja(e,t){for(const n in e){const r=t[n];n in t||delete e[n],r!==null&&typeof r=="object"&&Ja(e[n],t[n])}}function Ya(e,t){for(const n in t){const r=t[n];r!==null&&typeof r=="object"?(e[n]=e[n]||{},Ya(e[n],r)):e[n]=r}}const Xa=Q(async e=>{let t,n;if(!window.parent||window.self===window.parent)return;const r=je(),o=J(""),s=J(!0),i=p=>({path:p.path,query:dt(p.query),params:dt(p.params),fullPath:p.fullPath,meta:dt(p.meta)}),c=([t,n]=qe(()=>_(()=>import("./useStudio.321f4379.js"),["./useStudio.321f4379.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.45fd3bd9.js","./ContentPreviewMode.9fd06d7d.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(p=>p.useStudio)),t=await t,n(),t),{findContentWithId:l,updateContent:a,removeContentWithId:u,requestRerender:h,syncPreviewAppConfig:d,syncPreviewTokensConfig:f}=c();window.addEventListener("keydown",p=>{(p.metaKey||p.ctrlKey||p.altKey||p.shiftKey)&&window.parent.postMessage({type:"nuxt-studio:preview:keydown",payload:{key:p.key,metaKey:p.metaKey,ctrlKey:p.ctrlKey,shiftKey:p.shiftKey,altKey:p.altKey}},"*")}),window.addEventListener("message",async p=>{const{type:b,payload:m={}}=p.data||{};switch(b){case"nuxt-studio:editor:file-selected":{const v=await l(m.path);v?v._partial||v._path!==ae().path&&(o.value=v._path,r.push(v._path)):(o.value="/",ae().path!=="/"&&r.push("/"));break}case"nuxt-studio:editor:file-changed":{const{additions:v=[],deletions:E=[]}=m;for(const P of v)await a(P);for(const P of E)await u(P.path);h();break}case"nuxt-studio:config:file-changed":{const{additions:v=[],deletions:E=[]}=m,P=v.find(M=>M.path===Ke.appConfig);P&&d(P==null?void 0:P.parsed),E.find(M=>M.path===Ke.appConfig)&&d(void 0);const k=v.find(M=>M.path===Ke.tokensConfig);k&&f(k==null?void 0:k.parsed),E.find(M=>M.path===Ke.tokensConfig)&&f(void 0);break}}}),e.hook("content:document-driven:finish",({route:p,page:b,dedup:m})=>{if(m||s.value){s.value=!1;return}if(b&&o.value===b._path){o.value="";return}window.parent.postMessage({type:"nuxt-studio:preview:document-driven:finish",payload:{...i(p),contentId:b==null?void 0:b._id}},"*")}),r==null||r.afterEach(p=>{window.parent.postMessage({type:"nuxt-studio:preview:route-changed",payload:i(p)},"*")}),e.hook("nuxt-studio:preview:ready",()=>{window.parent.postMessage({type:"nuxt-studio:preview:ready",payload:i(ae())},"*")})}),ei=Q(e=>{const t=te().public.studio||{},n=ae(),r=Tt("previewToken",{sameSite:"none",secure:!0});async function o(){const s=await _(()=>import("./useStudio.321f4379.js"),["./useStudio.321f4379.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.45fd3bd9.js","./ContentPreviewMode.9fd06d7d.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(c=>c.useStudio),{mountPreviewUI:i}=s();i(),Me("/non-existing-path").findOne()}if(t.apiURL){if(Object.prototype.hasOwnProperty.call(n.query,"preview")&&!n.query.preview||!n.query.preview&&!r.value)return;n.query.preview&&r.value!==n.query.preview&&(r.value=String(n.query.preview)),e.hook("app:mounted",async()=>{await o()})}}),ti=Q(e=>{hs()&&(e.hooks.hook("link:prefetch",t=>{if(!Pn(t).protocol)return Ft(t)}),je().beforeResolve(async(t,n)=>{if(t.path===n.path)return;const r=await Ft(t.path);r&&Object.assign(e.static.data,r.data)}))}),ri=Q(e=>{const t=J(!1),n=()=>t.value=!0,r=()=>t.value=!1,o=()=>t.value=!t.value;return e.$router.afterEach(()=>setTimeout(r,50)),fe(t,s=>{const i=document.documentElement;s?i.style.overflow="hidden":setTimeout(()=>{i.style.overflow=""},100)},{immediate:!0}),{provide:{menu:{visible:t,close:r,open:n,toggle:o}}}}),ni=Q(()=>{navigator&&navigator.userAgent&&navigator.userAgent.match(/Win[a-z0-9]*;/)&&document.documentElement.classList.add("docus-scrollbars")}),oi=[_s,vs,La,Sa,Oa,Ha,za,Za,Xa,ei,ti,ri,ni],si=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""}),ai=(e,t)=>{const n=e.route.matched.find(o=>{var s;return((s=o.components)==null?void 0:s.default)===e.Component.type}),r=t??(n==null?void 0:n.meta.key)??(n&&si(e.route,n));return typeof r=="function"?r(e.route):r},ii=(e,t)=>({default:()=>e?W(Dn,e===!0?{}:e,t):t}),li=K({name:"FragmentWrapper",setup(e,{slots:t}){return()=>{var n;return(n=t.default)==null?void 0:n.call(t)}}}),ci=(e,t,n)=>({default:()=>t?W(e,t===!0?{}:t,n):W(li,{},n)}),Gr=K({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t}){const n=G();return()=>W(qr,{name:e.name,route:e.route,...t},{default:r=>{if(!r.Component)return;const o=ai(r,e.pageKey),s=n.deferHydration(),i=!!(e.transition??r.route.meta.pageTransition??bt),c=i&&di([e.transition,r.route.meta.pageTransition,bt,{onAfterLeave:()=>{n.callHook("page:transition:finish",r.Component)}}].filter(Boolean));return ci(un,i&&c,ii(e.keepalive??r.route.meta.keepalive??gs,W(yr,{onPending:()=>n.callHook("page:start",r.Component),onResolve:()=>{Pe(()=>n.callHook("page:finish",r.Component).finally(s))}},{default:()=>W(fi,{key:o,routeProps:r,pageKey:o,hasTransition:i})}))).default()}})}});function ui(e){return Array.isArray(e)?e:e?[e]:[]}function di(e){const t=e.map(n=>({...n,onAfterLeave:ui(n.onAfterLeave)}));return Un(...t)}const fi=K({name:"RouteProvider",props:["routeProps","pageKey","hasTransition"],setup(e){const t=e.pageKey,n=e.routeProps.route,r={};for(const o in e.routeProps.route)r[o]=D(()=>t===e.pageKey?e.routeProps.route[o]:n[o]);return Ie("_route",_e(r)),()=>W(e.routeProps.Component)}}),wl=Object.freeze(Object.defineProperty({__proto__:null,default:Gr},Symbol.toStringTag,{value:"Module"}));const Qr={__name:"AppLoadingBar",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3}},setup(e){const t=e,n=G(),r=_e({percent:0,show:!1,canSucceed:!0});let o=null,s=null,i;function c(){o&&clearInterval(o),s&&clearTimeout(s),o=null}function l(){r.show||(c(),r.percent=0,r.canSucceed=!0,t.throttle?s=setTimeout(d,t.throttle):d())}function a(f){r.percent=Math.min(100,Math.floor(r.percent+f))}function u(){r.percent=100,h()}function h(){c(),setTimeout(()=>{r.show=!1,setTimeout(()=>{r.percent=0},400)},500)}function d(){r.show=!0,i=1e4/Math.floor(t.duration),o=setInterval(()=>{a(i)},100)}return n.hook("content:middleware:start",l),n.hook("page:start",l),n.hook("page:finish",u),mr(()=>c),(f,p)=>(L(),j("div",{class:At(["nuxt-progress",{"nuxt-progress-failed":!R(r).canSucceed}]),style:Hn({width:`${R(r).percent}%`,left:R(r).left,opacity:R(r).show?1:0,backgroundSize:`${100/R(r).percent*100}% auto`})},null,6))}},pi=Object.freeze(Object.defineProperty({__proto__:null,default:Qr},Symbol.toStringTag,{value:"Module"})),hi=K({__name:"AppSocialIcons",setup(e){const t=["twitter","facebook","instagram","youtube","github","medium"],{config:n}=me(),r=D(()=>Object.entries(n.value.socials||{}).map(([o,s])=>typeof s=="object"?s:typeof s=="string"&&s&&t.includes(o)?{href:`https://${o}.com/${s}`,icon:`fa-brands:${o}`,label:s}:null).filter(Boolean));return(o,s)=>{const i=we,c=tt;return L(!0),j(Ve,null,We(R(r),l=>(L(),x(c,{key:l.label,rel:"noopener noreferrer",title:l.label,"aria-label":l.label,href:l.href,target:"_blank"},{default:re(()=>[l.icon?(L(),x(i,{key:0,name:l.icon},null,8,["name"])):ee("",!0)]),_:2},1032,["title","aria-label","href"]))),128)}}});const ot=X(hi,[["__scopeId","data-v-224b171c"]]),_i=Object.freeze(Object.defineProperty({__proto__:null,default:ot},Symbol.toStringTag,{value:"Module"})),mi=()=>{const{$menu:e}=G();return e},gi={class:"wrapper"},yi={class:"icons"},vi=K({__name:"AppHeaderDialog",setup(e){const{navigation:t}=Lt(),{config:n}=me(),r=D(()=>{var l;return((l=n.value.aside)==null?void 0:l.exclude)||[]}),o=D(()=>(t.value||[]).filter(l=>!r.value.includes(l._path))),{visible:s,open:i,close:c}=mi();return fe(s,l=>l?i():c()),(l,a)=>{const u=we,h=ot,d=fn;return L(),j(Ve,null,[V("button",{"aria-label":"Menu",onClick:a[0]||(a[0]=(...f)=>R(i)&&R(i)(...f))},[U(u,{name:"heroicons-outline:menu","aria-hidden":"”true”"})]),(L(),x(Mn,{to:"body"},[R(s)?(L(),j("nav",{key:0,class:"dialog",onClick:a[3]||(a[3]=(...f)=>R(c)&&R(c)(...f))},[V("div",{onClick:a[2]||(a[2]=dn(()=>{},["stop"]))},[V("div",gi,[V("button",{"aria-label":"Menu",onClick:a[1]||(a[1]=(...f)=>R(c)&&R(c)(...f))},[U(u,{name:"heroicons-outline:x","aria-hidden":"”true”"})]),V("div",yi,[U(h)])]),U(d,{links:R(o)},null,8,["links"])])])):ee("",!0)]))],64)}}});const Zr=X(vi,[["__scopeId","data-v-291983a4"]]),Ei=Object.freeze(Object.defineProperty({__proto__:null,default:Zr},Symbol.toStringTag,{value:"Module"})),bi={},wi={viewBox:"133.827 188.259 264.992 112.316",width:"100",height:"50",style:{height:"50px"}},Pi=Vn('',10),Ri=[Pi];function Ti(e,t){return L(),j("svg",wi,Ri)}const Jr=X(bi,[["render",Ti]]),Ci=Object.freeze(Object.defineProperty({__proto__:null,default:Jr},Symbol.toStringTag,{value:"Module"})),Ai={key:2},ki=K({__name:"AppHeaderLogo",setup(e){const{config:t}=me(),n=D(()=>{var o;return((o=t.value.header)==null?void 0:o.logo)||!1}),r=D(()=>{var o;return((o=t.value.header)==null?void 0:o.title)||t.value.title});return(o,s)=>{const i=Jr,c=tt;return L(),x(c,{class:"navbar-logo",to:"/","aria-label":R(r)},{default:re(()=>[R(n)&&typeof R(n)=="string"?(L(),x(vr(R(n)),{key:0})):R(n)?(L(),x(i,{key:1})):(L(),j("span",Ai,Ge(R(r)),1))]),_:1},8,["aria-label"])}}});const Yr=X(ki,[["__scopeId","data-v-0e437bbb"]]),Li=Object.freeze(Object.defineProperty({__proto__:null,default:Yr},Symbol.toStringTag,{value:"Module"})),Si={key:0},Oi=K({__name:"AppHeaderNavigation",setup(e){const t=ae(),{navBottomLink:n}=Pr(),{navigation:r}=Lt(),{config:o}=me(),s=D(()=>{var a;return!!((a=o.value.aside)!=null&&a.level)}),i=D(()=>{var a;return((a=o.value.header)==null?void 0:a.exclude)||[]}),c=D(()=>(r.value||[]).filter(a=>!i.value.includes(a._path))),l=a=>a.exact?t.fullPath===a._path:t.fullPath.startsWith(a._path);return(a,u)=>{const h=we,d=tt;return R(s)?(L(),j("nav",Si,[V("ul",null,[(L(!0),j(Ve,null,We(R(c),f=>(L(),j("li",{key:f._path},[U(d,{class:At(["link",{active:l(f)}]),to:f.redirect?f.redirect:R(n)(f)},{default:re(()=>{var p,b;return[f.icon&&((b=(p=R(o))==null?void 0:p.header)!=null&&b.showLinkIcon)?(L(),x(h,{key:0,name:f.icon},null,8,["name"])):ee("",!0),Er(" "+Ge(f.title),1)]}),_:2},1032,["to","class"])]))),128))])])):ee("",!0)}}});const Xr=X(Oi,[["__scopeId","data-v-01b60614"]]),Ii=Object.freeze(Object.defineProperty({__proto__:null,default:Xr},Symbol.toStringTag,{value:"Module"})),en=()=>{const{$docSearch:e}=G();return e||{hasDocSearch:J(!1)}},tn=e=>(xn("data-v-1e99f08b"),e=e(),jn(),e),$i={type:"button","aria-label":"Search"},Di={class:"content"},Hi=tn(()=>V("span",null,"Search",-1)),Mi=tn(()=>V("span",null,[V("kbd",null,"⌘"),V("kbd",null,"K")],-1)),Vi=K({__name:"AppSearch",setup(e){const{element:t}=en(),n=()=>t.value.querySelector("button").click();return(r,o)=>{const s=we;return L(),j("div",{class:"doc-search",onClick:n},[V("button",$i,[V("span",Di,[U(s,{name:"heroicons-outline:search"}),Hi,Mi])])])}}});const rn=X(Vi,[["__scopeId","data-v-1e99f08b"]]),xi=Object.freeze(Object.defineProperty({__proto__:null,default:rn},Symbol.toStringTag,{value:"Module"})),nn=K({name:"ClientOnly",inheritAttrs:!1,props:["fallback","placeholder","placeholderTag","fallbackTag"],setup(e,{slots:t,attrs:n}){const r=J(!1);return br(()=>{r.value=!0}),o=>{var l;if(r.value)return(l=t.default)==null?void 0:l.call(t);const s=t.fallback||t.placeholder;if(s)return s();const i=o.fallback||o.placeholder||"",c=o.fallbackTag||o.placeholderTag||"span";return j(c,n,i)}}}),gt=new WeakMap;function ji(e){if(gt.has(e))return gt.get(e);const t={...e};return t.render?t.render=(n,...r)=>{if(n.mounted$){const o=e.render(n,...r);return o.children===null||typeof o.children=="string"?V(o.type,o.props,o.children,o.patchFlag,o.dynamicProps,o.shapeFlag):W(o)}else return W("div",n.$attrs??n._.attrs)}:t.template&&(t.template=` + + + `),t.setup=(n,r)=>{var s;const o=J(!1);return br(()=>{o.value=!0}),Promise.resolve(((s=e.setup)==null?void 0:s.call(e,n,r))||{}).then(i=>typeof i!="function"?{...i,mounted$:o}:(...c)=>{if(o.value){const l=i(...c);return l.children===null||typeof l.children=="string"?V(l.type,l.props,l.children,l.patchFlag,l.dynamicProps,l.shapeFlag):W(l)}else return W("div",r.attrs)})},gt.set(e,t),t}const Pl=Object.freeze(Object.defineProperty({__proto__:null,createClientOnly:ji,default:nn},Symbol.toStringTag,{value:"Module"})),Bi={name:Wa,props:{placeholder:String,tag:{type:String,default:"span"}}};function Ni(e,t,n,r,o,s){const i=nn;return L(),x(i,{placeholder:n.placeholder,"placeholder-tag":n.tag},{default:re(()=>[wr(e.$slots,"default")]),_:3},8,["placeholder","placeholder-tag"])}const on=X(Bi,[["render",Ni]]),Rl=Object.freeze(Object.defineProperty({__proto__:null,default:on},Symbol.toStringTag,{value:"Module"})),Ui=()=>kt("color-mode").value,Ki=K({__name:"ThemeSelect",setup(e){const t=Ui(),n=()=>{const r=["system","light","dark"],s=(r.indexOf(t.preference)+1)%r.length;t.preference=r[s]};return(r,o)=>{const s=we,i=on;return L(),j("button",{"aria-label":"Color Mode",onClick:n},[U(i,{placeholder:"..."},{default:re(()=>[R(t).preference==="dark"?(L(),x(s,{key:0,name:"uil:moon"})):R(t).preference==="light"?(L(),x(s,{key:1,name:"uil:sun"})):(L(),x(s,{key:2,name:"uil:desktop"}))]),_:1})])}}});const sn=X(Ki,[["__scopeId","data-v-4a6c39b0"]]),Fi=Object.freeze(Object.defineProperty({__proto__:null,default:sn},Symbol.toStringTag,{value:"Module"})),zi={class:"section left"},qi={class:"section center"},Wi={class:"section right"},Gi={class:"social-icons"},Qi=K({__name:"AppHeader",props:{},setup(e){const{config:t}=me(),{navigation:n}=Lt(),{hasDocSearch:r}=en(),o=D(()=>{var s;return((s=n.value)==null?void 0:s.length)>1});return(s,i)=>{var p,b;const c=Zr,l=Yr,a=Xr,u=rn,h=sn,d=ot,f=hr;return L(),j("header",{class:At({"has-dialog":R(o),"has-doc-search":R(r)})},[U(f,{fluid:(b=(p=R(t))==null?void 0:p.header)==null?void 0:b.fluid},{default:re(()=>[V("div",zi,[R(o)?(L(),x(c,{key:0})):ee("",!0),U(l)]),V("div",qi,[R(o)?(L(),x(l,{key:0})):ee("",!0),U(a)]),V("div",Wi,[R(r)?(L(),x(u,{key:0})):ee("",!0),U(h),V("div",Gi,[U(d)])])]),_:1},8,["fluid"])],2)}}});const an=X(Qi,[["__scopeId","data-v-8375ebf7"]]),Zi=Object.freeze(Object.defineProperty({__proto__:null,default:an},Symbol.toStringTag,{value:"Module"})),Ji={class:"left"},Yi=["href"],Xi={key:1},el={class:"center"},tl={class:"right"},rl=["aria-label","href"],nl=K({__name:"AppFooter",setup(e){const{config:t}=me(),n=J(null),r=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.iconLinks)||[]}),o=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.textLinks)||[]}),s=D(()=>{var c;return Object.entries(((c=t.value)==null?void 0:c.socials)||{}).filter(([l,a])=>a).length}),i=D(()=>n.value?s.value:0);return(c,l)=>{var f,p;const a=tt,u=we,h=ot,d=hr;return L(),j("footer",null,[U(d,{fluid:(p=(f=R(t))==null?void 0:f.footer)==null?void 0:p.fluid,padded:"",class:"footer-container"},{default:re(()=>{var b,m,v,E,P,C,k,I,M,ie,Re,Te,Ce,le;return[V("div",Ji,[(m=(b=R(t))==null?void 0:b.footer)!=null&&m.credits?(L(),j("a",{key:0,href:((P=(E=(v=R(t))==null?void 0:v.footer)==null?void 0:E.credits)==null?void 0:P.href)||"#",rel:"noopener",target:"_blank"},[(I=(k=(C=R(t))==null?void 0:C.footer)==null?void 0:k.credits)!=null&&I.icon?(L(),x(vr((Re=(ie=(M=R(t))==null?void 0:M.footer)==null?void 0:ie.credits)==null?void 0:Re.icon),{key:0,class:"left-icon"})):ee("",!0),(le=(Ce=(Te=R(t))==null?void 0:Te.footer)==null?void 0:Ce.credits)!=null&&le.text?(L(),j("p",Xi,Ge(R(t).footer.credits.text),1)):ee("",!0)],8,Yi)):ee("",!0)]),V("div",el,[(L(!0),j(Ve,null,We(R(o),Z=>(L(),x(a,{key:Z.href,class:"text-link","aria-label":Z.text,href:Z.href,target:Z.target||"_self"},{default:re(()=>[Er(Ge(Z.text),1)]),_:2},1032,["aria-label","href","target"]))),128))]),V("div",tl,[(L(!0),j(Ve,null,We(R(r).slice(0,6-R(i)),Z=>(L(),j("a",{key:Z.label,class:"icon-link",rel:"noopener","aria-label":Z.label,href:Z.href,target:"_blank"},[U(u,{name:Z.icon},null,8,["name"])],8,rl))),128)),U(h,{ref_key:"socialIcons",ref:n},null,512)])]}),_:1},8,["fluid"])])}}});const ln=X(nl,[["__scopeId","data-v-eebf8ee0"]]),ol=Object.freeze(Object.defineProperty({__proto__:null,default:ln},Symbol.toStringTag,{value:"Module"})),sl=(e,t=ae())=>{const n=R(e),r=te();fe(()=>R(e),(s=n)=>{if(!t.path||!s)return;const i=Object.assign({},(s==null?void 0:s.head)||{});i.meta=[...i.meta||[]],i.link=[...i.link||[]];const c=i.title||(s==null?void 0:s.title);c&&(i.title=c),r.public.content.host;const l=(i==null?void 0:i.description)||(s==null?void 0:s.description);l&&i.meta.filter(a=>a.name==="description").length===0&&i.meta.push({name:"description",content:l}),i!=null&&i.image||(s==null||s.image),Pe(()=>Je(i))},{immediate:!0})},al=K({__name:"AppLayout",setup(e){const{config:t}=me();return Je({titleTemplate:t.value.titleTemplate,meta:[{name:"twitter:card",content:"summary_large_image"}]}),fe(()=>t.value.titleTemplate,()=>Je({titleTemplate:t.value.titleTemplate})),sl(t.value),(n,r)=>{const o=Qr,s=an,i=ln;return L(),j("div",null,[U(o),U(s),wr(n.$slots,"default"),U(i)])}}}),il={};function ll(e,t){const n=Gr,r=al;return L(),x(r,null,{default:re(()=>[U(n)]),_:1})}const cl=X(il,[["render",ll]]),ur={__name:"nuxt-root",setup(e){const t=g(()=>_(()=>import("./error-component.d8e3cc55.js"),["./error-component.d8e3cc55.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(c=>c.default||c)),n=()=>null,r=G(),o=r.deferHydration();Ie("_route",ae()),r.hooks.callHookWith(c=>c.map(l=>l()),"vue:setup");const s=rt();Bn((c,l,a)=>{r.hooks.callHook("vue:error",c,l,a).catch(u=>console.error("[nuxt] Error in `vue:error` hook",u)),io(c)&&(c.fatal||c.unhandled)&&ue(r,Se,[c])});const{islandContext:i}=!1;return(c,l)=>(L(),x(yr,{onResolve:R(o)},{default:re(()=>[R(s)?(L(),x(R(t),{key:0,error:R(s)},null,8,["error"])):R(i)?(L(),x(R(n),{key:1,context:R(i)},null,8,["context"])):(L(),x(R(cl),{key:2}))]),_:1},8,["onResolve"]))}};globalThis.$fetch||(globalThis.$fetch=eo.create({baseURL:ro()}));let dr;const ul=Rn(oi);dr=async function(){var o;const n=Boolean((o=window.__NUXT__)==null?void 0:o.serverRendered)?pn(ur):hn(ur),r=Tn({vueApp:n});try{await Cn(r,ul)}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}try{await r.hooks.callHook("app:created",n),await r.hooks.callHook("app:beforeMount",n),n.mount("#"+ys),await r.hooks.callHook("app:mounted",n),await Pe()}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}},dr().catch(e=>{console.error("Error while mounting app:",e)});export{pi as A,Ci as L,cr as S,Fi as T,al as _,sl as a,Je as b,lo as c,El as d,vl as e,Da as f,ci as g,Ye as h,bl as i,Ya as j,Ja as k,Oe as l,Ke as m,_i as n,Ei as o,wl as p,Me as q,Li as r,Ii as s,xi as t,Ui as u,Pl as v,Rl as w,Zi as x,ol as y}; diff --git a/docs/.output/public/_nuxt/entry.f3791b9c.js b/docs/.output/public/_nuxt/entry.f3791b9c.js deleted file mode 100644 index efaaf5d7..00000000 --- a/docs/.output/public/_nuxt/entry.f3791b9c.js +++ /dev/null @@ -1,10 +0,0 @@ -import{w as Fe,s as dr,T as cn,_ as we,a as un,b as dn,c as fn,d as pn}from"./DocsAsideTree.b95e55e0.js";import{d as hn,u as Rt}from"./cookie.b9cff64d.js";import{w as _n,a as mn,j as Tt,u as Y,c as gn,d as Q,b as yn,e as ze,f as ae,g as ue,h as jt,i as Xe,k as fr,l as se,m as Ct,n as vn,o as En,p as bn,_ as et,q as wn,r as Pn,s as Rn}from"./app.config.f41ab05d.js";import{_,p as Tn,a as X,b as pr}from"./Container.f1017aa2.js";import{t as Cn,n as Pe,g as hr,i as he,r as Z,w as An,a as fe,o as _r,b as kn,c as Ln,u as R,d as Sn,v as mr,e as g,s as gt,f as U,h as D,p as Ie,j as W,k as _e,l as On,m as ut,K as In,S as gr,q as L,x as j,y as At,z as $n,A as qe,F as Ve,B as x,C as te,D as ee,E as V,G as K,T as Dn,H as Hn,I as yr,J as We,L as vr,M as Mn,N as Vn,O as Er,P as br,Q as xn}from"./runtime-core.esm-bundler.6894272a.js";import{u as kt,a as ke,b as wr,c as me,d as Lt}from"./useDocus.41ab1ca5.js";import{c as jn}from"./query.c3f7607a.js";import{d as Bn}from"./index.d2b0cb5e.js";class Nn extends Error{constructor(){super(...arguments),this.name="FetchError"}}function Kn(e,t,n){let r="";e&&n&&(r=`${n.status} ${n.statusText} (${e.toString()})`),t&&(r=`${t.message} (${r})`);const o=new Nn(r);return Object.defineProperty(o,"request",{get(){return e}}),Object.defineProperty(o,"response",{get(){return n}}),Object.defineProperty(o,"data",{get(){return n&&n._data}}),Object.defineProperty(o,"status",{get(){return n&&n.status}}),Object.defineProperty(o,"statusText",{get(){return n&&n.statusText}}),Object.defineProperty(o,"statusCode",{get(){return n&&n.status}}),Object.defineProperty(o,"statusMessage",{get(){return n&&n.statusText}}),o}const Un=new Set(Object.freeze(["PATCH","POST","PUT","DELETE"]));function Bt(e="GET"){return Un.has(e.toUpperCase())}function Fn(e){if(e===void 0)return!1;const t=typeof e;return t==="string"||t==="number"||t==="boolean"||t===null?!0:t!=="object"?!1:Array.isArray(e)?!0:e.constructor&&e.constructor.name==="Object"||typeof e.toJSON=="function"}const zn=new Set(["image/svg","application/xml","application/xhtml","application/html"]),qn=/^application\/(?:[\w!#$%&*.^`~-]*\+)?json(;.+)?$/i;function Wn(e=""){if(!e)return"json";const t=e.split(";").shift();return qn.test(t)?"json":zn.has(t)||t.startsWith("text/")?"text":"blob"}const Gn=new Set([408,409,425,429,500,502,503,504]);function Pr(e){const{fetch:t,Headers:n}=e;function r(i){const c=i.error&&i.error.name==="AbortError"||!1;if(i.options.retry!==!1&&!c){const a=typeof i.options.retry=="number"?i.options.retry:Bt(i.options.method)?0:1,u=i.response&&i.response.status||500;if(a>0&&Gn.has(u))return o(i.request,{...i.options,retry:a-1})}const l=Kn(i.request,i.error,i.response);throw Error.captureStackTrace&&Error.captureStackTrace(l,o),l}const o=async function(c,l={}){const a={request:c,options:{...e.defaults,...l},response:void 0,error:void 0};a.options.onRequest&&await a.options.onRequest(a),typeof a.request=="string"&&(a.options.baseURL&&(a.request=_n(a.request,a.options.baseURL)),(a.options.query||a.options.params)&&(a.request=mn(a.request,{...a.options.params,...a.options.query})),a.options.body&&Bt(a.options.method)&&Fn(a.options.body)&&(a.options.body=typeof a.options.body=="string"?a.options.body:JSON.stringify(a.options.body),a.options.headers=new n(a.options.headers),a.options.headers.has("content-type")||a.options.headers.set("content-type","application/json"),a.options.headers.has("accept")||a.options.headers.set("accept","application/json"))),a.response=await t(a.request,a.options).catch(async h=>(a.error=h,a.options.onRequestError&&await a.options.onRequestError(a),r(a)));const u=(a.options.parseResponse?"json":a.options.responseType)||Wn(a.response.headers.get("content-type")||"");if(u==="json"){const h=await a.response.text(),d=a.options.parseResponse||hn;a.response._data=d(h)}else u==="stream"?a.response._data=a.response.body:a.response._data=await a.response[u]();return a.options.onResponse&&await a.options.onResponse(a),a.response.status>=400&&a.response.status<600?(a.options.onResponseError&&await a.options.onResponseError(a),r(a)):a.response},s=function(c,l){return o(c,l).then(a=>a._data)};return s.raw=o,s.native=t,s.create=(i={})=>Pr({...e,defaults:{...e.defaults,...i}}),s}const Rr=function(){if(typeof globalThis<"u")return globalThis;if(typeof self<"u")return self;if(typeof window<"u")return window;if(typeof global<"u")return global;throw new Error("unable to locate global object")}(),Qn=Rr.fetch||(()=>Promise.reject(new Error("[ofetch] global.fetch is not supported!"))),Zn=Rr.Headers,Jn=Pr({fetch:Qn,Headers:Zn}),Yn=Jn,Xn=()=>{var e;return((e=window==null?void 0:window.__NUXT__)==null?void 0:e.config)||{}},Ge=Xn().app,eo=()=>Ge.baseURL,to=()=>Ge.buildAssetsDir,ro=(...e)=>Tt(Tr(),to(),...e),Tr=(...e)=>{const t=Ge.cdnURL||Ge.baseURL;return e.length?Tt(t,...e):t};globalThis.__buildAssetsURL=ro,globalThis.__publicAssetsURL=Tr;class yt extends Error{constructor(){super(...arguments),this.statusCode=500,this.fatal=!1,this.unhandled=!1,this.statusMessage=void 0}toJSON(){const t={message:this.message,statusCode:this.statusCode};return this.statusMessage&&(t.statusMessage=this.statusMessage),this.data!==void 0&&(t.data=this.data),t}}yt.__h3_error__=!0;function vt(e){if(typeof e=="string")return new yt(e);if(no(e))return e;const t=new yt(e.message??e.statusMessage,e.cause?{cause:e.cause}:void 0);if("stack"in e)try{Object.defineProperty(t,"stack",{get(){return e.stack}})}catch{try{t.stack=e.stack}catch{}}return e.data&&(t.data=e.data),e.statusCode?t.statusCode=e.statusCode:e.status&&(t.statusCode=e.status),e.statusMessage?t.statusMessage=e.statusMessage:e.statusText&&(t.statusMessage=e.statusText),e.fatal!==void 0&&(t.fatal=e.fatal),e.unhandled!==void 0&&(t.unhandled=e.unhandled),t}function no(e){var t;return((t=e==null?void 0:e.constructor)==null?void 0:t.__h3_error__)===!0}const tt=()=>Cn(Y().payload,"error"),Se=e=>{const t=ao(e);try{Y().callHook("app:error",t);const r=tt();r.value=r.value||t}catch{throw t}return t},oo=async(e={})=>{const t=Y(),n=tt();t.callHook("app:error:cleared",e),e.redirect&&await t.$router.replace(e.redirect),n.value=null},so=e=>!!(e&&typeof e=="object"&&"__nuxt_error"in e),ao=e=>{const t=vt(e);return t.__nuxt_error=!0,t},io=["script","style","noscript"],lo=["base","meta","link","style","script","noscript"],co=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function uo(e,t){const{props:n,tag:r}=e;if(co.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Be=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),io.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function St(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function Cr(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||St(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Be(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Be(f),a(f);continue}f.$el=r.createElement(p.tag),Be(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!lo.includes(v))continue;const E=uo({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Be(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let Ue=null;async function fo(e,t={}){function n(){return Ue=null,Cr(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return Ue=Ue||new Promise(o=>r(()=>o(n())))}const po={__proto__:null,debouncedRenderDOMHead:fo,get domUpdatePromise(){return Ue},hashCode:St,renderDOMHead:Cr},ho=["title","titleTemplate","base","htmlAttrs","bodyAttrs","meta","link","style","script","noscript"],_o=["tagPosition","tagPriority","tagDuplicateStrategy"];async function mo(e,t){const n={tag:e,props:{}};return e==="title"||e==="titleTemplate"?(n.children=t instanceof Promise?await t:t,n):(n.props=await go({...t}),["children","innerHtml","innerHTML"].forEach(r=>{typeof n.props[r]<"u"&&(n.children=n.props[r],typeof n.children=="object"&&(n.children=JSON.stringify(n.children)),delete n.props[r])}),Object.keys(n.props).filter(r=>_o.includes(r)).forEach(r=>{n[r]=n.props[r],delete n.props[r]}),typeof n.props.class=="object"&&!Array.isArray(n.props.class)&&(n.props.class=Object.keys(n.props.class).filter(r=>n.props.class[r])),Array.isArray(n.props.class)&&(n.props.class=n.props.class.join(" ")),n.props.content&&Array.isArray(n.props.content)?n.props.content.map((r,o)=>{const s={...n,props:{...n.props}};return s.props.content=r,s.key=`${n.props.name||n.props.property}:${o}`,s}):n)}async function go(e){for(const t of Object.keys(e))e[t]instanceof Promise&&(e[t]=await e[t]),String(e[t])==="true"?e[t]="":String(e[t])==="false"&&delete e[t];return e}const Nt=e=>{if(typeof e.tagPriority=="number")return e.tagPriority;switch(e.tagPriority){case"critical":return 2;case"high":return 9;case"low":return 12}switch(e.tag){case"base":return-1;case"title":return 1;case"meta":return e.props.charset?-2:e.props["http-equiv"]==="content-security-policy"?0:10;default:return 10}},yo=(e,t)=>Nt(e)-Nt(t),vo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function Eo(e,t){const{props:n,tag:r}=e;if(vo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Kt=(e,t)=>e==null?t||null:typeof e=="function"?e(t):e.replace("%s",t??"");function bo(e){let t=e.findIndex(r=>r.tag==="titleTemplate");const n=e.findIndex(r=>r.tag==="title");if(n!==-1&&t!==-1){const r=Kt(e[t].children,e[n].children);r!==null?e[n].children=r||e[n].children:delete e[n]}else if(t!==-1){const r=Kt(e[t].children);r!==null&&(e[t].children=r,e[t].tag="title",t=-1)}return t!==-1&&delete e[t],e.filter(Boolean)}const wo=e=>{e=e||{};const t=e.dedupeKeys||["hid","vmid","key"];return{hooks:{"tag:normalise":function({tag:n}){t.forEach(o=>{n.props[o]&&(n.key=n.props[o],delete n.props[o])});const r=n.key?`${n.tag}:${n.key}`:Eo(n);r&&(n._d=r)},"tags:resolve":function(n){const r={};n.tags.forEach(o=>{let s=o._d||o._p;const i=r[s];if(i){let c=o==null?void 0:o.tagDuplicateStrategy;if(!c&&(o.tag==="htmlAttrs"||o.tag==="bodyAttrs")&&(c="merge"),c==="merge"){const a=i.props;["class","style"].forEach(u=>{o.props[u]&&a[u]&&(u==="style"&&!a[u].endsWith(";")&&(a[u]+=";"),o.props[u]=`${a[u]} ${o.props[u]}`)}),r[s].props={...a,...o.props};return}else o._e===i._e&&(s=o._d=`${s}:${o._p}`);const l=Object.keys(o.props).length;if((l===0||l===1&&typeof o.props["data-h-key"]<"u")&&!o.children){delete r[s];return}}r[s]=o}),n.tags=Object.values(r)}}}},Po=()=>({hooks:{"tags:resolve":e=>{const t=n=>{var r;return(r=e.tags.find(o=>o._d===n))==null?void 0:r._p};for(const n of e.tags){if(!n.tagPriority||typeof n.tagPriority=="number")continue;const r=[{prefix:"before:",offset:-1},{prefix:"after:",offset:1}];for(const{prefix:o,offset:s}of r)if(n.tagPriority.startsWith(o)){const i=n.tagPriority.replace(o,""),c=t(i);typeof c<"u"&&(n._p=c+s)}}e.tags.sort((n,r)=>n._p-r._p).sort(yo)}}}),Ro=()=>({hooks:{"tags:resolve":e=>{e.tags=bo(e.tags)}}}),To=()=>({hooks:{"tag:normalise":function({tag:e}){typeof e.props.body<"u"&&(e.tagPosition="bodyClose",delete e.props.body)}}}),Co=typeof window<"u",Ao=()=>({hooks:{"tag:normalise":e=>{var o,s;const{tag:t,entry:n}=e,r=typeof t.props._dynamic<"u";!Ar.includes(t.tag)||!t.key||(t._hash=St(JSON.stringify({tag:t.tag,key:t.key})),!(Co||(s=(o=Lr())==null?void 0:o.resolvedOptions)!=null&&s.document)&&(n._m==="server"||r)&&(t.props[`data-h-${t._hash}`]=""))},"tags:resolve":e=>{e.tags=e.tags.map(t=>(delete t.props._dynamic,t))}}}),ko=e=>({hooks:{"entries:updated":function(t){if(typeof(e==null?void 0:e.document)>"u"&&typeof window>"u")return;let n=e==null?void 0:e.delayFn;!n&&typeof requestAnimationFrame<"u"&&(n=requestAnimationFrame),Promise.resolve().then(function(){return po}).then(({debouncedRenderDOMHead:r})=>{r(t,{document:(e==null?void 0:e.document)||window.document,delayFn:n})})}}}),Lo=()=>{const e=(t,n)=>{const r={},o={};Object.entries(n.props).forEach(([i,c])=>{i.startsWith("on")&&typeof c=="function"?o[i]=c:r[i]=c});let s;return t==="dom"&&n.tag==="script"&&typeof r.src=="string"&&typeof o.onload<"u"&&(s=r.src,delete r.src),{props:r,eventHandlers:o,delayedSrc:s}};return{hooks:{"ssr:render":function(t){t.tags=t.tags.map(n=>(n.props=e("ssr",n).props,n))},"dom:beforeRenderTag":function(t){const{props:n,eventHandlers:r,delayedSrc:o}=e("dom",t.tag);Object.keys(r).length&&(t.tag.props=n,t.tag._eventHandlers=r,t.tag._delayedSrc=o)},"dom:renderTag":function(t){const n=t.$el;if(!t.tag._eventHandlers||!n)return;const r=t.tag.tag==="bodyAttrs"&&typeof window<"u"?window:n;Object.entries(t.tag._eventHandlers).forEach(([o,s])=>{const i=`${t.tag._d||t.tag._p}:${o}`,c=o.slice(2).toLowerCase(),l=`data-h-${c}`;if(delete t.staleSideEffects[i],n.hasAttribute(l))return;const a=s;n.setAttribute(l,""),r.addEventListener(c,a),t.entry&&(t.entry._sde[i]=()=>{r.removeEventListener(c,a),n.removeAttribute(l)})}),t.tag._delayedSrc&&n.setAttribute("src",t.tag._delayedSrc)}}}};function So(e){return Array.isArray(e)?e:[e]}const Ar=["base","meta","link","style","script","noscript"];let kr;const Oo=e=>kr=e,Lr=()=>kr,Io=10;async function $o(e){const t=[];return Object.entries(e.resolvedInput||e.input).filter(([n,r])=>typeof r<"u"&&ho.includes(n)).forEach(([n,r])=>{const o=So(r);t.push(...o.map(s=>mo(n,s)).flat())}),(await Promise.all(t)).flat().map((n,r)=>(n._e=e._i,n._p=(e._i<[wo(),Po(),Ro(),Ao(),Lo(),To()],Ho=(e={})=>[ko({document:e==null?void 0:e.document,delayFn:e==null?void 0:e.domDelayFn})];function Mo(e={}){const t=Vo({...e,plugins:[...Ho(e),...(e==null?void 0:e.plugins)||[]]});return Oo(t),t}function Vo(e={}){let t=[],n={},r=0;const o=gn();e!=null&&e.hooks&&o.addHooks(e.hooks),e.plugins=[...Do(),...(e==null?void 0:e.plugins)||[]],e.plugins.forEach(c=>c.hooks&&o.addHooks(c.hooks));const s=()=>o.callHook("entries:updated",i),i={resolvedOptions:e,headEntries(){return t},get hooks(){return o},use(c){c.hooks&&o.addHooks(c.hooks)},push(c,l){const a={_i:r++,input:c,_sde:{}};return l!=null&&l.mode&&(a._m=l==null?void 0:l.mode),t.push(a),s(),{dispose(){t=t.filter(u=>u._i!==a._i?!0:(n={...n,...u._sde||{}},u._sde={},s(),!1))},patch(u){t=t.map(h=>(h._i===a._i&&(a.input=h.input=u,s()),h))}}},async resolveTags(){const c={tags:[],entries:[...t]};await o.callHook("entries:resolve",c);for(const l of c.entries)for(const a of await $o(l)){const u={tag:a,entry:l};await o.callHook("tag:normalise",u),c.tags.push(u.tag)}return await o.callHook("tags:resolve",c),c.tags},_elMap:{},_popSideEffectQueue(){const c={...n};return n={},c}};return i.hooks.callHook("init",i),i}function xo(e){return typeof e=="function"?e():R(e)}function Qe(e,t=""){if(e instanceof Promise)return e;const n=xo(e);if(!e||!n)return n;if(Array.isArray(n))return n.map(r=>Qe(r,t));if(typeof n=="object"){let r=!1;const o=Object.fromEntries(Object.entries(n).map(([s,i])=>s==="titleTemplate"||s.startsWith("on")?[s,R(i)]:((typeof i=="function"||Sn(i))&&(r=!0),[s,Qe(i,s)])));return r&&Ar.includes(String(t))&&(o._dynamic=!0),o}return n}const jo=mr.startsWith("3"),Bo=typeof window<"u",Sr="usehead";function Ot(){return hr()&&he(Sr)||Lr()}function No(e={}){const t=Mo({...e,domDelayFn:r=>setTimeout(()=>Pe(()=>r()),10),plugins:[Ko(),...(e==null?void 0:e.plugins)||[]]}),n={install(r){jo&&(r.config.globalProperties.$unhead=t,r.provide(Sr,t))}};return t.install=n.install,t}const Ko=()=>({hooks:{"entries:resolve":function(e){for(const t of e.entries)t.resolvedInput=Qe(t.input)}}});function Uo(e,t={}){const n=Ot(),r=Z(!1),o=Z({});An(()=>{o.value=Qe(e)});const s=n.push(o.value,t);return fe([o,r],([c,l])=>{l||s.patch(c)}),hr()&&(_r(()=>{s.dispose()}),kn(()=>{r.value=!0}),Ln(()=>{r.value=!1})),s}function Fo(e,t={}){return Ot().push(e,t)}function Or(e,t={}){var r;const n=Ot();if(n){const o=Bo||!!((r=n.resolvedOptions)!=null&&r.document);return t.mode==="server"&&o||t.mode==="client"&&!o?void 0:o?Uo(e,t):Fo(e,t)}}const zo=["script","style","noscript"],qo=["base","meta","link","style","script","noscript"],Wo=["base","title","titleTemplate","bodyAttrs","htmlAttrs"];function Go(e,t){const{props:n,tag:r}=e;if(Wo.includes(r))return r;if(r==="link"&&n.rel==="canonical")return"canonical";if(n.charset)return"charset";const o=["id"];r==="meta"&&o.push("name","property","http-equiv");for(const s of o)if(typeof n[s]<"u"){const i=String(n[s]);return t&&!t(i)?!1:`${r}:${s}:${i}`}return!1}const Ne=(e,t)=>{const{tag:n,$el:r}=e;r&&(Object.entries(n.props).forEach(([o,s])=>{s=String(s);const i=`attr:${o}`;if(o==="class"){if(!s)return;for(const c of s.split(" ")){const l=`${i}:${c}`;t&&t(e,l,()=>r.classList.remove(c)),r.classList.contains(c)||r.classList.add(c)}return}t&&!o.startsWith("data-h-")&&t(e,i,()=>r.removeAttribute(o)),r.getAttribute(o)!==s&&r.setAttribute(o,s)}),zo.includes(n.tag)&&r.innerHTML!==(n.children||"")&&(r.innerHTML=n.children||""))};function Qo(e){let t=9;for(let n=0;n>>9)+65536).toString(16).substring(1,8).toLowerCase()}async function Ir(e,t={}){var u,h;const n={shouldRender:!0};if(await e.hooks.callHook("dom:beforeRender",n),!n.shouldRender)return;const r=t.document||window.document,o=e._popSideEffectQueue();e.headEntries().map(d=>d._sde).forEach(d=>{Object.entries(d).forEach(([f,p])=>{o[f]=p})});const s=async d=>{const f=e.headEntries().find(b=>b._i===d._e),p={renderId:d._d||Qo(JSON.stringify({...d,_e:void 0,_p:void 0})),$el:null,shouldRender:!0,tag:d,entry:f,staleSideEffects:o};return await e.hooks.callHook("dom:beforeRenderTag",p),p},i=[],c={body:[],head:[]},l=(d,f,p)=>{f=`${d.renderId}:${f}`,d.entry&&(d.entry._sde[f]=p),delete o[f]},a=d=>{e._elMap[d.renderId]=d.$el,i.push(d),l(d,"el",()=>{var f;(f=d.$el)==null||f.remove(),delete e._elMap[d.renderId]})};for(const d of await e.resolveTags()){const f=await s(d);if(!f.shouldRender)continue;const{tag:p}=f;if(p.tag==="title"){r.title=p.children||"",i.push(f);continue}if(p.tag==="htmlAttrs"||p.tag==="bodyAttrs"){f.$el=r[p.tag==="htmlAttrs"?"documentElement":"body"],Ne(f,l),i.push(f);continue}if(f.$el=e._elMap[f.renderId],!f.$el&&p._hash&&(f.$el=r.querySelector(`${(u=p.tagPosition)!=null&&u.startsWith("body")?"body":"head"} > ${p.tag}[data-h-${p._hash}]`)),f.$el){f.tag._d&&Ne(f),a(f);continue}f.$el=r.createElement(p.tag),Ne(f),c[(h=p.tagPosition)!=null&&h.startsWith("body")?"body":"head"].push(f)}Object.entries(c).forEach(([d,f])=>{var b;if(!f.length)return;const p=(b=r==null?void 0:r[d])==null?void 0:b.children;if(p){for(const m of[...p].reverse()){const v=m.tagName.toLowerCase();if(!qo.includes(v))continue;const E=Go({tag:v,props:m.getAttributeNames().reduce((C,k)=>({...C,[k]:m.getAttribute(k)}),{})}),P=f.findIndex(C=>{var k;return C&&(C.tag._d===E||((k=m.isEqualNode)==null?void 0:k.call(m,C.$el)))});if(P!==-1){const C=f[P];C.$el=m,Ne(C),a(C),delete f[P]}}f.forEach(m=>{if(m.$el){switch(m.tag.tagPosition){case"bodyClose":r.body.appendChild(m.$el);break;case"bodyOpen":r.body.insertBefore(m.$el,r.body.firstChild);break;case"head":default:r.head.appendChild(m.$el);break}a(m)}})}});for(const d of i)await e.hooks.callHook("dom:renderTag",d);Object.values(o).forEach(d=>d())}let dt=null;async function Zo(e,t={}){function n(){return dt=null,Ir(e,t)}const r=t.delayFn||(o=>setTimeout(o,10));return dt=dt||new Promise(o=>r(()=>o(n())))}function Jo(e){const t=No(),n={unhead:t,install(r){mr.startsWith("3")&&(r.config.globalProperties.$head=t,r.provide("usehead",t))},use(r){t.use(r)},resolveTags(){return t.resolveTags()},headEntries(){return t.headEntries()},headTags(){return t.resolveTags()},push(r,o){return t.push(r,o)},addEntry(r,o){return t.push(r,o)},addHeadObjs(r,o){return t.push(r,o)},addReactiveEntry(r,o){const s=Or(r,o);return typeof s<"u"?s.dispose:()=>{}},removeHeadObjs(){},updateDOM(r,o){o?Ir(t,{document:r}):Zo(t,{delayFn:s=>setTimeout(()=>s(),50),document:r})},internalHooks:t.hooks,hooks:{"before:dom":[],"resolved:tags":[],"resolved:entries":[]}};return t.addHeadObjs=n.addHeadObjs,t.updateDOM=n.updateDOM,t.hooks.hook("dom:beforeRender",r=>{for(const o of n.hooks["before:dom"])o()===!1&&(r.shouldRender=!1)}),e&&n.addHeadObjs(e),n}function Ze(e,t){return Y()._useHead(e,t)}const Yo={ignoreUnknown:!1,respectType:!1,respectFunctionNames:!1,respectFunctionProperties:!1,unorderedObjects:!0,unorderedArrays:!1,unorderedSets:!1};function Xo(e,t={}){t={...Yo,...t};const n=$r(t);return n.dispatch(e),n.toString()}function $r(e){const t=[];let n=[];const r=o=>{t.push(o)};return{toString(){return t.join("")},getContext(){return n},dispatch(o){return e.replacer&&(o=e.replacer(o)),this["_"+(o===null?"null":typeof o)](o)},_object(o){const s=/\[object (.*)]/i,i=Object.prototype.toString.call(o),c=s.exec(i),l=c?c[1].toLowerCase():"unknown:["+i.toLowerCase()+"]";let a=null;if((a=n.indexOf(o))>=0)return this.dispatch("[CIRCULAR:"+a+"]");if(n.push(o),typeof Buffer<"u"&&Buffer.isBuffer&&Buffer.isBuffer(o))return r("buffer:"),r(o.toString("utf8"));if(l!=="object"&&l!=="function"&&l!=="asyncfunction")if(this["_"+l])this["_"+l](o);else{if(e.ignoreUnknown)return r("["+l+"]");throw new Error('Unknown object type "'+l+'"')}else{let u=Object.keys(o);e.unorderedObjects&&(u=u.sort()),e.respectType!==!1&&!Ut(o)&&u.splice(0,0,"prototype","__proto__","letructor"),e.excludeKeys&&(u=u.filter(function(h){return!e.excludeKeys(h)})),r("object:"+u.length+":");for(const h of u)this.dispatch(h),r(":"),e.excludeValues||this.dispatch(o[h]),r(",")}},_array(o,s){if(s=typeof s<"u"?s:e.unorderedArrays!==!1,r("array:"+o.length+":"),!s||o.length<=1){for(const l of o)this.dispatch(l);return}const i=[],c=o.map(l=>{const a=$r(e);return a.dispatch(l),i.push(a.getContext()),a.toString()});return n=[...n,...i],c.sort(),this._array(c,!1)},_date(o){return r("date:"+o.toJSON())},_symbol(o){return r("symbol:"+o.toString())},_error(o){return r("error:"+o.toString())},_boolean(o){return r("bool:"+o.toString())},_string(o){r("string:"+o.length+":"),r(o.toString())},_function(o){r("fn:"),Ut(o)?this.dispatch("[native]"):this.dispatch(o.toString()),e.respectFunctionNames!==!1&&this.dispatch("function-name:"+String(o.name)),e.respectFunctionProperties&&this._object(o)},_number(o){return r("number:"+o.toString())},_xml(o){return r("xml:"+o.toString())},_null(){return r("Null")},_undefined(){return r("Undefined")},_regexp(o){return r("regex:"+o.toString())},_uint8array(o){return r("uint8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint8clampedarray(o){return r("uint8clampedarray:"),this.dispatch(Array.prototype.slice.call(o))},_int8array(o){return r("int8array:"),this.dispatch(Array.prototype.slice.call(o))},_uint16array(o){return r("uint16array:"),this.dispatch(Array.prototype.slice.call(o))},_int16array(o){return r("int16array:"),this.dispatch(Array.prototype.slice.call(o))},_uint32array(o){return r("uint32array:"),this.dispatch(Array.prototype.slice.call(o))},_int32array(o){return r("int32array:"),this.dispatch(Array.prototype.slice.call(o))},_float32array(o){return r("float32array:"),this.dispatch(Array.prototype.slice.call(o))},_float64array(o){return r("float64array:"),this.dispatch(Array.prototype.slice.call(o))},_arraybuffer(o){return r("arraybuffer:"),this.dispatch(new Uint8Array(o))},_url(o){return r("url:"+o.toString())},_map(o){r("map:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_set(o){r("set:");const s=[...o];return this._array(s,e.unorderedSets!==!1)},_file(o){return r("file:"),this.dispatch([o.name,o.size,o.type,o.lastModfied])},_blob(){if(e.ignoreUnknown)return r("[blob]");throw new Error(`Hashing Blob objects is currently not supported -Use "options.replacer" or "options.ignoreUnknown" -`)},_domwindow(){return r("domwindow")},_bigint(o){return r("bigint:"+o.toString())},_process(){return r("process")},_timer(){return r("timer")},_pipe(){return r("pipe")},_tcp(){return r("tcp")},_udp(){return r("udp")},_tty(){return r("tty")},_statwatcher(){return r("statwatcher")},_securecontext(){return r("securecontext")},_connection(){return r("connection")},_zlib(){return r("zlib")},_context(){return r("context")},_nodescript(){return r("nodescript")},_httpparser(){return r("httpparser")},_dataview(){return r("dataview")},_signal(){return r("signal")},_fsevent(){return r("fsevent")},_tlswrap(){return r("tlswrap")}}}function Ut(e){return typeof e!="function"?!1:/^function\s+\w*\s*\(\s*\)\s*{\s+\[native code]\s+}$/i.exec(Function.prototype.toString.call(e))!=null}class ve{constructor(t,n){t=this.words=t||[],this.sigBytes=n!==void 0?n:t.length*4}toString(t){return(t||es).stringify(this)}concat(t){if(this.clamp(),this.sigBytes%4)for(let n=0;n>>2]>>>24-n%4*8&255;this.words[this.sigBytes+n>>>2]|=r<<24-(this.sigBytes+n)%4*8}else for(let n=0;n>>2]=t.words[n>>>2];return this.sigBytes+=t.sigBytes,this}clamp(){this.words[this.sigBytes>>>2]&=4294967295<<32-this.sigBytes%4*8,this.words.length=Math.ceil(this.sigBytes/4)}clone(){return new ve([...this.words])}}const es={stringify(e){const t=[];for(let n=0;n>>2]>>>24-n%4*8&255;t.push((r>>>4).toString(16),(r&15).toString(16))}return t.join("")}},ts={stringify(e){const t="ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789",n=[];for(let r=0;r>>2]>>>24-r%4*8&255,s=e.words[r+1>>>2]>>>24-(r+1)%4*8&255,i=e.words[r+2>>>2]>>>24-(r+2)%4*8&255,c=o<<16|s<<8|i;for(let l=0;l<4&&r*8+l*6>>6*(3-l)&63))}return n.join("")}},rs={parse(e){const t=e.length,n=[];for(let r=0;r>>2]|=(e.charCodeAt(r)&255)<<24-r%4*8;return new ve(n,t)}},ns={parse(e){return rs.parse(unescape(encodeURIComponent(e)))}};class os{constructor(){this._minBufferSize=0,this.blockSize=512/32,this.reset()}reset(){this._data=new ve,this._nDataBytes=0}_append(t){typeof t=="string"&&(t=ns.parse(t)),this._data.concat(t),this._nDataBytes+=t.sigBytes}_doProcessBlock(t,n){}_process(t){let n,r=this._data.sigBytes/(this.blockSize*4);t?r=Math.ceil(r):r=Math.max((r|0)-this._minBufferSize,0);const o=r*this.blockSize,s=Math.min(o*4,this._data.sigBytes);if(o){for(let i=0;i>>7)^(P<<14|P>>>18)^P>>>3,k=pe[d-2],I=(k<<15|k>>>17)^(k<<13|k>>>19)^k>>>10;pe[d]=C+pe[d-7]+I+pe[d-16]}const f=l&a^~l&u,p=o&s^o&i^s&i,b=(o<<30|o>>>2)^(o<<19|o>>>13)^(o<<10|o>>>22),m=(l<<26|l>>>6)^(l<<21|l>>>11)^(l<<7|l>>>25),v=h+m+f+is[d]+pe[d],E=b+p;h=u,u=a,a=l,l=c+v|0,c=i,i=s,s=o,o=v+E|0}r[0]=r[0]+o|0,r[1]=r[1]+s|0,r[2]=r[2]+i|0,r[3]=r[3]+c|0,r[4]=r[4]+l|0,r[5]=r[5]+a|0,r[6]=r[6]+u|0,r[7]=r[7]+h|0}finalize(t){super.finalize(t);const n=this._nDataBytes*8,r=this._data.sigBytes*8;return this._data.words[r>>>5]|=128<<24-r%32,this._data.words[(r+64>>>9<<4)+14]=Math.floor(n/4294967296),this._data.words[(r+64>>>9<<4)+15]=n,this._data.sigBytes=this._data.words.length*4,this._process(),this._hash}}function cs(e){return new ls().finalize(e).toString(ts)}function Je(e,t={}){const n=typeof e=="string"?e:Xo(e,t);return cs(n).slice(0,10)}const ft={ExampleCard:g(()=>_(()=>import("./ExampleCard.26f9bb19.js"),["./ExampleCard.26f9bb19.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleHero:g(()=>_(()=>import("./ExampleHero.02aa09cf.js"),["./ExampleHero.02aa09cf.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleIconCard:g(()=>_(()=>import("./ExampleIconCard.07caa17e.js"),["./ExampleIconCard.07caa17e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ExampleMultiselect:g(()=>_(()=>import("./ExampleMultiselect.edfb3bb6.js"),["./ExampleMultiselect.edfb3bb6.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ExampleTheTitle:g(()=>_(()=>import("./ExampleTheTitle.f00d8fad.js"),["./ExampleTheTitle.f00d8fad.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),HeroAnnouncement:g(()=>_(()=>import("./HeroAnnouncement.15bcf84c.js"),["./HeroAnnouncement.15bcf84c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./HeroAnnouncement.c8294d82.css"],import.meta.url).then(e=>e.default||e)),IconMarkdown:g(()=>_(()=>import("./IconMarkdown.abd5e80b.js"),["./IconMarkdown.abd5e80b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),Logo:g(()=>_(()=>Promise.resolve().then(()=>Ei),void 0,import.meta.url).then(e=>e.default||e)),MyButton:g(()=>_(()=>import("./MyButton.67bdaa98.js"),["./MyButton.67bdaa98.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./MyButton.c36465b2.css"],import.meta.url).then(e=>e.default||e)),PropInspector:g(()=>_(()=>import("./PropInspector.83153412.js"),["./PropInspector.83153412.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./PropInspector.8b357721.css"],import.meta.url).then(e=>e.default||e)),ReadMore:g(()=>_(()=>import("./ReadMore.4d40ce3f.js"),["./ReadMore.4d40ce3f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),AppFooter:g(()=>_(()=>Promise.resolve().then(()=>Yi),void 0,import.meta.url).then(e=>e.default||e)),AppHeader:g(()=>_(()=>Promise.resolve().then(()=>Fi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderDialog:g(()=>_(()=>Promise.resolve().then(()=>hi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderLogo:g(()=>_(()=>Promise.resolve().then(()=>Pi),void 0,import.meta.url).then(e=>e.default||e)),AppHeaderNavigation:g(()=>_(()=>Promise.resolve().then(()=>Ci),void 0,import.meta.url).then(e=>e.default||e)),AppLayout:g(()=>_(()=>import("./AppLayout.7354fe11.js"),["./AppLayout.7354fe11.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),AppLoadingBar:g(()=>_(()=>Promise.resolve().then(()=>ii),void 0,import.meta.url).then(e=>e.default||e)),AppSearch:g(()=>_(()=>Promise.resolve().then(()=>Ii),void 0,import.meta.url).then(e=>e.default||e)),AppSocialIcons:g(()=>_(()=>Promise.resolve().then(()=>ci),void 0,import.meta.url).then(e=>e.default||e)),DocumentDrivenNotFound:g(()=>_(()=>import("./DocumentDrivenNotFound.66d77c6e.js"),["./DocumentDrivenNotFound.66d77c6e.js","./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css"],import.meta.url).then(e=>e.default||e)),ThemeSelect:g(()=>_(()=>Promise.resolve().then(()=>xi),void 0,import.meta.url).then(e=>e.default||e)),DocsAside:g(()=>_(()=>import("./DocsAside.08a0955d.js"),["./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css"],import.meta.url).then(e=>e.default||e)),DocsAsideTree:g(()=>_(()=>import("./DocsAsideTree.b95e55e0.js").then(e=>e.D),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocsPageBottom:g(()=>_(()=>import("./DocsPageBottom.b38ecc43.js"),["./DocsPageBottom.b38ecc43.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css"],import.meta.url).then(e=>e.default||e)),DocsPageLayout:g(()=>_(()=>import("./DocsPageLayout.d352cf62.js"),["./DocsPageLayout.d352cf62.js","./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css","./DocsPageBottom.b38ecc43.js","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2b9ea48f.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e)),DocsPrevNext:g(()=>_(()=>import("./DocsPrevNext.2b9ea48f.js"),["./DocsPrevNext.2b9ea48f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsPrevNext.6bb4ff17.css"],import.meta.url).then(e=>e.default||e)),DocsToc:g(()=>_(()=>import("./DocsToc.55846f28.js"),["./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css"],import.meta.url).then(e=>e.default||e)),DocsTocLinks:g(()=>_(()=>import("./DocsTocLinks.644c91ee.js"),["./DocsTocLinks.644c91ee.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./app.config.f41ab05d.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./DocsTocLinks.2846f127.css"],import.meta.url).then(e=>e.default||e)),EditOnLink:g(()=>_(()=>import("./EditOnLink.77af6984.js"),["./EditOnLink.77af6984.js","./EditOnLink.vue.1d2292f2.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./useDocus.41ab1ca5.js"],import.meta.url).then(e=>e.default||e)),ProseA:g(()=>_(()=>import("./ProseA.a4d07cc8.js"),["./ProseA.a4d07cc8.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseA.89c7f0ff.css"],import.meta.url).then(e=>e.default||e)),ProseBlockquote:g(()=>_(()=>import("./ProseBlockquote.ecc3d96f.js"),["./ProseBlockquote.ecc3d96f.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseBlockquote.e233c07e.css"],import.meta.url).then(e=>e.default||e)),ProseCode:g(()=>_(()=>import("./ProseCode.0e5c7be6.js"),["./ProseCode.0e5c7be6.js","./ProseCodeCopyButton.29965c5a.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js","./ProseCode.69d80bcc.css"],import.meta.url).then(e=>e.default||e)),ProseCodeInline:g(()=>_(()=>import("./ProseCodeInline.dca1a534.js"),["./ProseCodeInline.dca1a534.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseCodeInline.aab68857.css"],import.meta.url).then(e=>e.default||e)),ProseEm:g(()=>_(()=>import("./ProseEm.35693543.js"),["./ProseEm.35693543.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseEm.26a085fc.css"],import.meta.url).then(e=>e.default||e)),ProseH1:g(()=>_(()=>import("./ProseH1.c24b90eb.js"),["./ProseH1.c24b90eb.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH1.e8ed25c4.css"],import.meta.url).then(e=>e.default||e)),ProseH2:g(()=>_(()=>import("./ProseH2.957cbe8e.js"),["./ProseH2.957cbe8e.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH2.39cb29c9.css"],import.meta.url).then(e=>e.default||e)),ProseH3:g(()=>_(()=>import("./ProseH3.cb2444de.js"),["./ProseH3.cb2444de.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH3.185f3970.css"],import.meta.url).then(e=>e.default||e)),ProseH4:g(()=>_(()=>import("./ProseH4.77a5278f.js"),["./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css"],import.meta.url).then(e=>e.default||e)),ProseH5:g(()=>_(()=>import("./ProseH5.8dc93198.js"),["./ProseH5.8dc93198.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH5.85b0a165.css"],import.meta.url).then(e=>e.default||e)),ProseH6:g(()=>_(()=>import("./ProseH6.bdc78e01.js"),["./ProseH6.bdc78e01.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH6.c7358255.css"],import.meta.url).then(e=>e.default||e)),ProseHr:g(()=>_(()=>import("./ProseHr.75e3ac21.js"),["./ProseHr.75e3ac21.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseHr.c7c78bbe.css"],import.meta.url).then(e=>e.default||e)),ProseImg:g(()=>_(()=>import("./ProseImg.16c4c81d.js"),["./ProseImg.16c4c81d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ProseImg.018721e2.css"],import.meta.url).then(e=>e.default||e)),ProseLi:g(()=>_(()=>import("./ProseLi.171f9b22.js"),["./ProseLi.171f9b22.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseLi.ac05b421.css"],import.meta.url).then(e=>e.default||e)),ProseOl:g(()=>_(()=>import("./ProseOl.8e9d7d6a.js"),["./ProseOl.8e9d7d6a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseOl.d78cb0de.css"],import.meta.url).then(e=>e.default||e)),ProseP:g(()=>_(()=>import("./ProseP.9fd9b629.js"),["./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),ProseStrong:g(()=>_(()=>import("./ProseStrong.3de7628e.js"),["./ProseStrong.3de7628e.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseStrong.263d77e1.css"],import.meta.url).then(e=>e.default||e)),ProseTable:g(()=>_(()=>import("./ProseTable.a85f8bca.js"),["./ProseTable.a85f8bca.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTable.c65fbffe.css"],import.meta.url).then(e=>e.default||e)),ProseTbody:g(()=>_(()=>import("./ProseTbody.37a7db42.js"),["./ProseTbody.37a7db42.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ProseTd:g(()=>_(()=>import("./ProseTd.921f02a8.js"),["./ProseTd.921f02a8.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTd.4df19d93.css"],import.meta.url).then(e=>e.default||e)),ProseTh:g(()=>_(()=>import("./ProseTh.d24c1b52.js"),["./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css"],import.meta.url).then(e=>e.default||e)),ProseThead:g(()=>_(()=>import("./ProseThead.40eb8658.js"),["./ProseThead.40eb8658.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseThead.65d34604.css"],import.meta.url).then(e=>e.default||e)),ProseTr:g(()=>_(()=>import("./ProseTr.d0d94723.js"),["./ProseTr.d0d94723.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTr.65bec588.css"],import.meta.url).then(e=>e.default||e)),ProseUl:g(()=>_(()=>import("./ProseUl.5ba8de5b.js"),["./ProseUl.5ba8de5b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseUl.85b434de.css"],import.meta.url).then(e=>e.default||e)),Alert:g(()=>_(()=>import("./Alert.41cb256b.js"),["./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Alert.f24f4058.css"],import.meta.url).then(e=>e.default||e)),Badge:g(()=>_(()=>import("./Badge.af643d4e.js"),["./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Badge.05529646.css"],import.meta.url).then(e=>e.default||e)),ButtonLink:g(()=>_(()=>import("./ButtonLink.91883881.js"),["./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css"],import.meta.url).then(e=>e.default||e)),Callout:g(()=>_(()=>import("./Callout.12d57ced.js"),["./Callout.12d57ced.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./Callout.a5db879a.css"],import.meta.url).then(e=>e.default||e)),CodeBlock:g(()=>_(()=>import("./CodeBlock.163820c8.js"),["./CodeBlock.163820c8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./CodeBlock.e4cadaca.css"],import.meta.url).then(e=>e.default||e)),CodeGroup:g(()=>_(()=>import("./CodeGroup.c21eec3c.js"),["./CodeGroup.c21eec3c.js","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css"],import.meta.url).then(e=>e.default||e)),Container:g(()=>_(()=>import("./Container.f1017aa2.js").then(e=>e.C),["./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),CopyButton:g(()=>_(()=>import("./CopyButton.f7858c79.js"),["./CopyButton.f7858c79.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./index.889aa611.js"],import.meta.url).then(e=>e.default||e)),Ellipsis:g(()=>_(()=>import("./Ellipsis.50580cd1.js"),["./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css"],import.meta.url).then(e=>e.default||e)),List:g(()=>_(()=>import("./List.63030545.js"),["./List.63030545.js","./List.vue.98cb48bf.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./List.a65f0e81.css"],import.meta.url).then(e=>e.default||e)),NuxtImg:g(()=>_(()=>import("./NuxtImg.66944f8e.js"),["./NuxtImg.66944f8e.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Props:g(()=>_(()=>import("./Props.876d937c.js"),["./Props.876d937c.js","./ProseTh.d24c1b52.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseTh.348cb47e.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTbody.37a7db42.js","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./app.config.f41ab05d.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Sandbox:g(()=>_(()=>import("./Sandbox.b8bdb0c7.js"),["./Sandbox.b8bdb0c7.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./Sandbox.68fd6c5d.css"],import.meta.url).then(e=>e.default||e)),SourceLink:g(()=>_(()=>import("./SourceLink.8b39af38.js"),["./SourceLink.8b39af38.js","./ProseP.9fd9b629.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./ProseP.945916cd.css"],import.meta.url).then(e=>e.default||e)),TabsHeader:g(()=>_(()=>import("./TabsHeader.f80c17f8.js"),["./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css"],import.meta.url).then(e=>e.default||e)),Terminal:g(()=>_(()=>import("./Terminal.e111a4e9.js"),["./Terminal.e111a4e9.js","./index.889aa611.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./Terminal.55a17588.css"],import.meta.url).then(e=>e.default||e)),VideoPlayer:g(()=>_(()=>import("./VideoPlayer.065c6aeb.js"),["./VideoPlayer.065c6aeb.js","./NuxtImg.vue.a13022c3.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./VideoPlayer.e2296f21.css"],import.meta.url).then(e=>e.default||e)),IconCodeSandBox:g(()=>_(()=>import("./IconCodeSandBox.c8242608.js"),["./IconCodeSandBox.c8242608.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconDocus:g(()=>_(()=>import("./IconDocus.288d04af.js"),["./IconDocus.288d04af.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxt:g(()=>_(()=>import("./IconNuxt.fcd0b256.js"),["./IconNuxt.fcd0b256.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtContent:g(()=>_(()=>import("./IconNuxtContent.e8429861.js"),["./IconNuxtContent.e8429861.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtLabs:g(()=>_(()=>import("./IconNuxtLabs.d57bf3c9.js"),["./IconNuxtLabs.d57bf3c9.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconNuxtStudio:g(()=>_(()=>import("./IconNuxtStudio.af5044e4.js"),["./IconNuxtStudio.af5044e4.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./IconNuxtStudio.34390cd8.css"],import.meta.url).then(e=>e.default||e)),IconStackBlitz:g(()=>_(()=>import("./IconStackBlitz.8b1569eb.js"),["./IconStackBlitz.8b1569eb.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),IconVueTelescope:g(()=>_(()=>import("./IconVueTelescope.e930811b.js"),["./IconVueTelescope.e930811b.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),BlockHero:g(()=>_(()=>import("./BlockHero.495ede00.js"),["./BlockHero.495ede00.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ButtonLink.91883881.js","./ButtonLink.1b73392c.css","./Terminal.e111a4e9.js","./index.889aa611.js","./Terminal.55a17588.css","./BlockHero.4aa0ef8d.css"],import.meta.url).then(e=>e.default||e)),Card:g(()=>_(()=>import("./Card.178cbb97.js"),["./Card.178cbb97.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./Card.5dfb7f30.css"],import.meta.url).then(e=>e.default||e)),CardGrid:g(()=>_(()=>import("./CardGrid.e3a9f75d.js"),["./CardGrid.e3a9f75d.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./CardGrid.54558efd.css"],import.meta.url).then(e=>e.default||e)),VoltaBoard:g(()=>_(()=>import("./VoltaBoard.1d961799.js"),["./VoltaBoard.1d961799.js","./runtime-core.esm-bundler.6894272a.js","./VoltaBoard.a5d6b336.css"],import.meta.url).then(e=>e.default||e)),ComponentPlayground:g(()=>_(()=>import("./ComponentPlayground.3c424a18.js"),["./ComponentPlayground.3c424a18.js","./ComponentPlayground.vue.1e5cc557.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./Ellipsis.50580cd1.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./Ellipsis.f7ff00dc.css","./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundData:g(()=>_(()=>import("./ComponentPlaygroundData.8cb96cd4.js"),["./ComponentPlaygroundData.8cb96cd4.js","./TabsHeader.f80c17f8.js","./runtime-core.esm-bundler.6894272a.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./Container.dc145a5e.css","./TabsHeader.fed4d9b4.css","./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundProps:g(()=>_(()=>import("./ComponentPlaygroundProps.583c9bda.js"),["./ComponentPlaygroundProps.583c9bda.js","./ProseH4.77a5278f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ProseH4.63359073.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Badge.af643d4e.js","./ContentSlot.c5067a4f.js","./Badge.05529646.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundSlots:g(()=>_(()=>import("./ComponentPlaygroundSlots.71fbb170.js"),["./ComponentPlaygroundSlots.71fbb170.js","./ComponentPlaygroundSlots.vue.d9207f3c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ComponentPlaygroundTokens:g(()=>_(()=>import("./ComponentPlaygroundTokens.334d4f7a.js"),["./ComponentPlaygroundTokens.334d4f7a.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),TokensPlayground:g(()=>_(()=>import("./TokensPlayground.961c6dbe.js"),["./TokensPlayground.961c6dbe.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)),ContentDoc:g(()=>_(()=>import("./ContentDoc.cbc50263.js"),["./ContentDoc.cbc50263.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./ContentQuery.9f33890e.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentList:g(()=>_(()=>import("./ContentList.e8a9fb87.js"),["./ContentList.e8a9fb87.js","./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentNavigation:g(()=>_(()=>import("./ContentNavigation.cefda237.js"),["./ContentNavigation.cefda237.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./DocsAsideTree.b13c5d2f.css","./EditOnLink.vue.1d2292f2.js","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./ProseH4.77a5278f.js","./ProseH4.63359073.css","./ProseP.9fd9b629.js","./ProseP.945916cd.css","./ProseTable.a85f8bca.js","./ProseTable.c65fbffe.css","./ProseTd.921f02a8.js","./ProseTd.4df19d93.css","./ProseTh.d24c1b52.js","./ProseTh.348cb47e.css","./ProseThead.40eb8658.js","./ProseThead.65d34604.css","./ProseTr.d0d94723.js","./ProseTr.65bec588.css","./Badge.af643d4e.js","./Badge.05529646.css","./CodeGroup.vue.e138b097.js","./TabsHeader.f80c17f8.js","./TabsHeader.fed4d9b4.css","./CodeGroup.92ac881c.css","./Ellipsis.50580cd1.js","./Ellipsis.f7ff00dc.css","./List.vue.98cb48bf.js","./List.a65f0e81.css","./NuxtImg.vue.a13022c3.js","./Props.876d937c.js","./ProseTbody.37a7db42.js","./query.c3f7607a.js","./ComponentPlayground.vue.1e5cc557.js","./ComponentPlaygroundData.8cb96cd4.js","./ComponentPlaygroundProps.583c9bda.js","./index.889aa611.js","./ComponentPlaygroundProps.54f42c7a.css","./ComponentPlaygroundSlots.vue.d9207f3c.js","./ComponentPlaygroundTokens.vue.43c587d1.js","./ComponentPlaygroundData.2ba66f99.css","./ComponentPlayground.3f4b16b9.css","./ContentDoc.cbc50263.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./ContentQuery.9f33890e.js","./ContentList.e8a9fb87.js","./DocumentDrivenEmpty.7ceddd7c.js","./Markdown.7f24e431.js","./layout.0a22fa4a.js","./GithubRepository.345038c7.js","./useGithub.1972ce55.js","./GithubLink.6cd695ea.js","./GithubReadme.5eafd6e1.js","./GithubReleases.05c52708.js","./GithubLastRelease.a4aeb30e.js","./GithubRelease.d892113d.js","./GithubContributors.9ddddad6.js","./GithubFileContributors.1ad6f7bf.js","./GithubCommits.35c65eac.js","./ContentNavigation.df5077be.css","./HeroAnnouncement.c8294d82.css","./MyButton.c36465b2.css","./PropInspector.8b357721.css","./Alert.f24f4058.css","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./DocsAside.d7386185.css","./ProseA.89c7f0ff.css","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.6bb4ff17.css","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css","./ProseBlockquote.e233c07e.css","./ProseCode.69d80bcc.css","./ProseEm.26a085fc.css","./ProseH1.e8ed25c4.css","./ProseH2.39cb29c9.css","./ProseH3.185f3970.css","./ProseH5.85b0a165.css","./ProseH6.c7358255.css","./ProseHr.c7c78bbe.css","./ProseImg.018721e2.css","./ProseLi.ac05b421.css","./ProseOl.d78cb0de.css","./ProseStrong.263d77e1.css","./ProseUl.85b434de.css","./Callout.a5db879a.css","./CodeBlock.e4cadaca.css","./Sandbox.68fd6c5d.css","./Terminal.55a17588.css","./VideoPlayer.e2296f21.css","./IconNuxtStudio.34390cd8.css","./BlockHero.4aa0ef8d.css","./Card.5dfb7f30.css","./CardGrid.54558efd.css","./VoltaBoard.a5d6b336.css","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(e=>e.default||e)),ContentQuery:g(()=>_(()=>import("./ContentQuery.9f33890e.js"),["./ContentQuery.9f33890e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),ContentRenderer:g(()=>_(()=>import("./ContentRenderer.b7732722.js"),["./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentRendererMarkdown:g(()=>_(()=>import("./ContentRendererMarkdown.e52b62de.js"),["./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),ContentSlot:g(()=>_(()=>import("./ContentSlot.c5067a4f.js"),["./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),DocumentDrivenEmpty:g(()=>_(()=>import("./DocumentDrivenEmpty.7ceddd7c.js"),["./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),Markdown:g(()=>_(()=>import("./Markdown.7f24e431.js"),["./Markdown.7f24e431.js","./ContentSlot.c5067a4f.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e)),GithubRepository:g(()=>_(()=>import("./GithubRepository.345038c7.js"),["./GithubRepository.345038c7.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLink:g(()=>_(()=>import("./GithubLink.6cd695ea.js"),["./GithubLink.6cd695ea.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js"],import.meta.url).then(e=>e.default||e)),GithubReadme:g(()=>_(()=>import("./GithubReadme.5eafd6e1.js"),["./GithubReadme.5eafd6e1.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubReleases:g(()=>_(()=>import("./GithubReleases.05c52708.js"),["./GithubReleases.05c52708.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubLastRelease:g(()=>_(()=>import("./GithubLastRelease.a4aeb30e.js"),["./GithubLastRelease.a4aeb30e.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubRelease:g(()=>_(()=>import("./GithubRelease.d892113d.js"),["./GithubRelease.d892113d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubContributors:g(()=>_(()=>import("./GithubContributors.9ddddad6.js"),["./GithubContributors.9ddddad6.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubFileContributors:g(()=>_(()=>import("./GithubFileContributors.1ad6f7bf.js"),["./GithubFileContributors.1ad6f7bf.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),GithubCommits:g(()=>_(()=>import("./GithubCommits.35c65eac.js"),["./GithubCommits.35c65eac.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./asyncData.7c06b2d5.js","./useGithub.1972ce55.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)),Icon:g(()=>_(()=>import("./DocsAsideTree.b95e55e0.js").then(e=>e.I),["./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css"],import.meta.url).then(e=>e.default||e))},us=Q(e=>{for(const t in ft)e.vueApp.component(t,ft[t]),e.vueApp.component("Lazy"+t,ft[t])}),ds={meta:[{name:"viewport",content:"width=device-width, initial-scale=1"},{charset:"utf-8"}],link:[],style:[],script:[{defer:!0,"data-domain":"frontier.realdecoy.com",src:"https://plausible.io/js/script.js"}],noscript:[]},pl=!1,Et=!1,fs=!1,ps="__nuxt",hs=Q(e=>{const t=Jo();t.push(ds),e.vueApp.use(t);{let n=!0;const r=()=>{n=!1,t.internalHooks.callHook("entries:updated",t.unhead)};t.internalHooks.hook("dom:beforeRender",o=>{o.shouldRender=!n}),e.hooks.hook("page:start",()=>{n=!0}),e.hooks.hook("page:finish",r),e.hooks.hook("app:mounted",r)}e._useHead=Or});/*! - * vue-router v4.1.6 - * (c) 2022 Eduardo San Martin Morote - * @license MIT - */const ye=typeof window<"u";function _s(e){return e.__esModule||e[Symbol.toStringTag]==="Module"}const $=Object.assign;function pt(e,t){const n={};for(const r in t){const o=t[r];n[r]=J(o)?o.map(e):e(o)}return n}const $e=()=>{},J=Array.isArray,ms=/\/$/,gs=e=>e.replace(ms,"");function ht(e,t,n="/"){let r,o={},s="",i="";const c=t.indexOf("#");let l=t.indexOf("?");return c=0&&(l=-1),l>-1&&(r=t.slice(0,l),s=t.slice(l+1,c>-1?c:t.length),o=e(s)),c>-1&&(r=r||t.slice(0,c),i=t.slice(c,t.length)),r=bs(r??t,n),{fullPath:r+(s&&"?")+s+i,path:r,query:o,hash:i}}function ys(e,t){const n=t.query?e(t.query):"";return t.path+(n&&"?")+n+(t.hash||"")}function Ft(e,t){return!t||!e.toLowerCase().startsWith(t.toLowerCase())?e:e.slice(t.length)||"/"}function vs(e,t,n){const r=t.matched.length-1,o=n.matched.length-1;return r>-1&&r===o&&Ee(t.matched[r],n.matched[o])&&Dr(t.params,n.params)&&e(t.query)===e(n.query)&&t.hash===n.hash}function Ee(e,t){return(e.aliasOf||e)===(t.aliasOf||t)}function Dr(e,t){if(Object.keys(e).length!==Object.keys(t).length)return!1;for(const n in e)if(!Es(e[n],t[n]))return!1;return!0}function Es(e,t){return J(e)?zt(e,t):J(t)?zt(t,e):e===t}function zt(e,t){return J(t)?e.length===t.length&&e.every((n,r)=>n===t[r]):e.length===1&&e[0]===t}function bs(e,t){if(e.startsWith("/"))return e;if(!e)return t;const n=t.split("/"),r=e.split("/");let o=n.length-1,s,i;for(s=0;s1&&o--;else break;return n.slice(0,o).join("/")+"/"+r.slice(s-(s===r.length?1:0)).join("/")}var xe;(function(e){e.pop="pop",e.push="push"})(xe||(xe={}));var De;(function(e){e.back="back",e.forward="forward",e.unknown=""})(De||(De={}));function ws(e){if(!e)if(ye){const t=document.querySelector("base");e=t&&t.getAttribute("href")||"/",e=e.replace(/^\w+:\/\/[^\/]+/,"")}else e="/";return e[0]!=="/"&&e[0]!=="#"&&(e="/"+e),gs(e)}const Ps=/^[^#]+#/;function Rs(e,t){return e.replace(Ps,"#")+t}function Ts(e,t){const n=document.documentElement.getBoundingClientRect(),r=e.getBoundingClientRect();return{behavior:t.behavior,left:r.left-n.left-(t.left||0),top:r.top-n.top-(t.top||0)}}const rt=()=>({left:window.pageXOffset,top:window.pageYOffset});function Cs(e){let t;if("el"in e){const n=e.el,r=typeof n=="string"&&n.startsWith("#"),o=typeof n=="string"?r?document.getElementById(n.slice(1)):document.querySelector(n):n;if(!o)return;t=Ts(o,e)}else t=e;"scrollBehavior"in document.documentElement.style?window.scrollTo(t):window.scrollTo(t.left!=null?t.left:window.pageXOffset,t.top!=null?t.top:window.pageYOffset)}function qt(e,t){return(history.state?history.state.position-t:-1)+e}const bt=new Map;function As(e,t){bt.set(e,t)}function ks(e){const t=bt.get(e);return bt.delete(e),t}let Ls=()=>location.protocol+"//"+location.host;function Hr(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){let c=o.includes(e.slice(s))?e.slice(s).length:1,l=o.slice(c);return l[0]!=="/"&&(l="/"+l),Ft(l,"")}return Ft(n,e)+r+o}function Ss(e,t,n,r){let o=[],s=[],i=null;const c=({state:d})=>{const f=Hr(e,location),p=n.value,b=t.value;let m=0;if(d){if(n.value=f,t.value=d,i&&i===p){i=null;return}m=b?d.position-b.position:0}else r(f);o.forEach(v=>{v(n.value,p,{delta:m,type:xe.pop,direction:m?m>0?De.forward:De.back:De.unknown})})};function l(){i=n.value}function a(d){o.push(d);const f=()=>{const p=o.indexOf(d);p>-1&&o.splice(p,1)};return s.push(f),f}function u(){const{history:d}=window;d.state&&d.replaceState($({},d.state,{scroll:rt()}),"")}function h(){for(const d of s)d();s=[],window.removeEventListener("popstate",c),window.removeEventListener("beforeunload",u)}return window.addEventListener("popstate",c),window.addEventListener("beforeunload",u),{pauseListeners:l,listen:a,destroy:h}}function Wt(e,t,n,r=!1,o=!1){return{back:e,current:t,forward:n,replaced:r,position:window.history.length,scroll:o?rt():null}}function Os(e){const{history:t,location:n}=window,r={value:Hr(e,n)},o={value:t.state};o.value||s(r.value,{back:null,current:r.value,forward:null,position:t.length-1,replaced:!0,scroll:null},!0);function s(l,a,u){const h=e.indexOf("#"),d=h>-1?(n.host&&document.querySelector("base")?e:e.slice(h))+l:Ls()+e+l;try{t[u?"replaceState":"pushState"](a,"",d),o.value=a}catch(f){console.error(f),n[u?"replace":"assign"](d)}}function i(l,a){const u=$({},t.state,Wt(o.value.back,l,o.value.forward,!0),a,{position:o.value.position});s(l,u,!0),r.value=l}function c(l,a){const u=$({},o.value,t.state,{forward:l,scroll:rt()});s(u.current,u,!0);const h=$({},Wt(r.value,l,null),{position:u.position+1},a);s(l,h,!1),r.value=l}return{location:r,state:o,push:c,replace:i}}function Mr(e){e=ws(e);const t=Os(e),n=Ss(e,t.state,t.location,t.replace);function r(s,i=!0){i||n.pauseListeners(),history.go(s)}const o=$({location:"",base:e,go:r,createHref:Rs.bind(null,e)},t,n);return Object.defineProperty(o,"location",{enumerable:!0,get:()=>t.location.value}),Object.defineProperty(o,"state",{enumerable:!0,get:()=>t.state.value}),o}function Is(e){return e=location.host?e||location.pathname+location.search:"",e.includes("#")||(e+="#"),Mr(e)}function $s(e){return typeof e=="string"||e&&typeof e=="object"}function Vr(e){return typeof e=="string"||typeof e=="symbol"}const ce={path:"/",name:void 0,params:{},query:{},hash:"",fullPath:"/",matched:[],meta:{},redirectedFrom:void 0},xr=Symbol("");var Gt;(function(e){e[e.aborted=4]="aborted",e[e.cancelled=8]="cancelled",e[e.duplicated=16]="duplicated"})(Gt||(Gt={}));function be(e,t){return $(new Error,{type:e,[xr]:!0},t)}function re(e,t){return e instanceof Error&&xr in e&&(t==null||!!(e.type&t))}const Qt="[^/]+?",Ds={sensitive:!1,strict:!1,start:!0,end:!0},Hs=/[.+*?^${}()[\]/\\]/g;function Ms(e,t){const n=$({},Ds,t),r=[];let o=n.start?"^":"";const s=[];for(const a of e){const u=a.length?[]:[90];n.strict&&!a.length&&(o+="/");for(let h=0;ht.length?t.length===1&&t[0]===40+40?1:-1:0}function xs(e,t){let n=0;const r=e.score,o=t.score;for(;n0&&t[t.length-1]<0}const js={type:0,value:""},Bs=/[a-zA-Z0-9_]/;function Ns(e){if(!e)return[[]];if(e==="/")return[[js]];if(!e.startsWith("/"))throw new Error(`Invalid path "${e}"`);function t(f){throw new Error(`ERR (${n})/"${a}": ${f}`)}let n=0,r=n;const o=[];let s;function i(){s&&o.push(s),s=[]}let c=0,l,a="",u="";function h(){a&&(n===0?s.push({type:0,value:a}):n===1||n===2||n===3?(s.length>1&&(l==="*"||l==="+")&&t(`A repeatable param (${a}) must be alone in its segment. eg: '/:ids+.`),s.push({type:1,value:a,regexp:u,repeatable:l==="*"||l==="+",optional:l==="*"||l==="?"})):t("Invalid state to consume buffer"),a="")}function d(){a+=l}for(;c{i(E)}:$e}function i(u){if(Vr(u)){const h=r.get(u);h&&(r.delete(u),n.splice(n.indexOf(h),1),h.children.forEach(i),h.alias.forEach(i))}else{const h=n.indexOf(u);h>-1&&(n.splice(h,1),u.record.name&&r.delete(u.record.name),u.children.forEach(i),u.alias.forEach(i))}}function c(){return n}function l(u){let h=0;for(;h=0&&(u.record.path!==n[h].record.path||!jr(u,n[h]));)h++;n.splice(h,0,u),u.record.name&&!Yt(u)&&r.set(u.record.name,u)}function a(u,h){let d,f={},p,b;if("name"in u&&u.name){if(d=r.get(u.name),!d)throw be(1,{location:u});b=d.record.name,f=$(Jt(h.params,d.keys.filter(E=>!E.optional).map(E=>E.name)),u.params&&Jt(u.params,d.keys.map(E=>E.name))),p=d.stringify(f)}else if("path"in u)p=u.path,d=n.find(E=>E.re.test(p)),d&&(f=d.parse(p),b=d.record.name);else{if(d=h.name?r.get(h.name):n.find(E=>E.re.test(h.path)),!d)throw be(1,{location:u,currentLocation:h});b=d.record.name,f=$({},h.params,u.params),p=d.stringify(f)}const m=[];let v=d;for(;v;)m.unshift(v.record),v=v.parent;return{name:b,path:p,params:f,matched:m,meta:qs(m)}}return e.forEach(u=>s(u)),{addRoute:s,resolve:a,removeRoute:i,getRoutes:c,getRecordMatcher:o}}function Jt(e,t){const n={};for(const r of t)r in e&&(n[r]=e[r]);return n}function Fs(e){return{path:e.path,redirect:e.redirect,name:e.name,meta:e.meta||{},aliasOf:void 0,beforeEnter:e.beforeEnter,props:zs(e),children:e.children||[],instances:{},leaveGuards:new Set,updateGuards:new Set,enterCallbacks:{},components:"components"in e?e.components||null:e.component&&{default:e.component}}}function zs(e){const t={},n=e.props||!1;if("component"in e)t.default=n;else for(const r in e.components)t[r]=typeof n=="boolean"?n:n[r];return t}function Yt(e){for(;e;){if(e.record.aliasOf)return!0;e=e.parent}return!1}function qs(e){return e.reduce((t,n)=>$(t,n.meta),{})}function Xt(e,t){const n={};for(const r in e)n[r]=r in t?t[r]:e[r];return n}function jr(e,t){return t.children.some(n=>n===e||jr(e,n))}const Br=/#/g,Ws=/&/g,Gs=/\//g,Qs=/=/g,Zs=/\?/g,Nr=/\+/g,Js=/%5B/g,Ys=/%5D/g,Kr=/%5E/g,Xs=/%60/g,Ur=/%7B/g,ea=/%7C/g,Fr=/%7D/g,ta=/%20/g;function It(e){return encodeURI(""+e).replace(ea,"|").replace(Js,"[").replace(Ys,"]")}function ra(e){return It(e).replace(Ur,"{").replace(Fr,"}").replace(Kr,"^")}function wt(e){return It(e).replace(Nr,"%2B").replace(ta,"+").replace(Br,"%23").replace(Ws,"%26").replace(Xs,"`").replace(Ur,"{").replace(Fr,"}").replace(Kr,"^")}function na(e){return wt(e).replace(Qs,"%3D")}function oa(e){return It(e).replace(Br,"%23").replace(Zs,"%3F")}function sa(e){return e==null?"":oa(e).replace(Gs,"%2F")}function Ye(e){try{return decodeURIComponent(""+e)}catch{}return""+e}function aa(e){const t={};if(e===""||e==="?")return t;const r=(e[0]==="?"?e.slice(1):e).split("&");for(let o=0;os&&wt(s)):[r&&wt(r)]).forEach(s=>{s!==void 0&&(t+=(t.length?"&":"")+n,s!=null&&(t+="="+s))})}return t}function ia(e){const t={};for(const n in e){const r=e[n];r!==void 0&&(t[n]=J(r)?r.map(o=>o==null?null:""+o):r==null?r:""+r)}return t}const la=Symbol(""),tr=Symbol(""),$t=Symbol(""),Dt=Symbol(""),Pt=Symbol("");function Le(){let e=[];function t(r){return e.push(r),()=>{const o=e.indexOf(r);o>-1&&e.splice(o,1)}}function n(){e=[]}return{add:t,list:()=>e,reset:n}}function de(e,t,n,r,o){const s=r&&(r.enterCallbacks[o]=r.enterCallbacks[o]||[]);return()=>new Promise((i,c)=>{const l=h=>{h===!1?c(be(4,{from:n,to:t})):h instanceof Error?c(h):$s(h)?c(be(2,{from:t,to:h})):(s&&r.enterCallbacks[o]===s&&typeof h=="function"&&s.push(h),i())},a=e.call(r&&r.instances[o],t,n,l);let u=Promise.resolve(a);e.length<3&&(u=u.then(l)),u.catch(h=>c(h))})}function _t(e,t,n,r){const o=[];for(const s of e)for(const i in s.components){let c=s.components[i];if(!(t!=="beforeRouteEnter"&&!s.instances[i]))if(ca(c)){const a=(c.__vccOpts||c)[t];a&&o.push(de(a,n,r,s,i))}else{let l=c();o.push(()=>l.then(a=>{if(!a)return Promise.reject(new Error(`Couldn't resolve component "${i}" at "${s.path}"`));const u=_s(a)?a.default:a;s.components[i]=u;const d=(u.__vccOpts||u)[t];return d&&de(d,n,r,s,i)()}))}}return o}function ca(e){return typeof e=="object"||"displayName"in e||"props"in e||"__vccOpts"in e}function rr(e){const t=he($t),n=he(Dt),r=D(()=>t.resolve(R(e.to))),o=D(()=>{const{matched:l}=r.value,{length:a}=l,u=l[a-1],h=n.matched;if(!u||!h.length)return-1;const d=h.findIndex(Ee.bind(null,u));if(d>-1)return d;const f=nr(l[a-2]);return a>1&&nr(u)===f&&h[h.length-1].path!==f?h.findIndex(Ee.bind(null,l[a-2])):d}),s=D(()=>o.value>-1&&pa(n.params,r.value.params)),i=D(()=>o.value>-1&&o.value===n.matched.length-1&&Dr(n.params,r.value.params));function c(l={}){return fa(l)?t[R(e.replace)?"replace":"push"](R(e.to)).catch($e):Promise.resolve()}return{route:r,href:D(()=>r.value.href),isActive:s,isExactActive:i,navigate:c}}const ua=U({name:"RouterLink",compatConfig:{MODE:3},props:{to:{type:[String,Object],required:!0},replace:Boolean,activeClass:String,exactActiveClass:String,custom:Boolean,ariaCurrentValue:{type:String,default:"page"}},useLink:rr,setup(e,{slots:t}){const n=_e(rr(e)),{options:r}=he($t),o=D(()=>({[or(e.activeClass,r.linkActiveClass,"router-link-active")]:n.isActive,[or(e.exactActiveClass,r.linkExactActiveClass,"router-link-exact-active")]:n.isExactActive}));return()=>{const s=t.default&&t.default(n);return e.custom?s:W("a",{"aria-current":n.isExactActive?e.ariaCurrentValue:null,href:n.href,onClick:n.navigate,class:o.value},s)}}}),da=ua;function fa(e){if(!(e.metaKey||e.altKey||e.ctrlKey||e.shiftKey)&&!e.defaultPrevented&&!(e.button!==void 0&&e.button!==0)){if(e.currentTarget&&e.currentTarget.getAttribute){const t=e.currentTarget.getAttribute("target");if(/\b_blank\b/i.test(t))return}return e.preventDefault&&e.preventDefault(),!0}}function pa(e,t){for(const n in t){const r=t[n],o=e[n];if(typeof r=="string"){if(r!==o)return!1}else if(!J(o)||o.length!==r.length||r.some((s,i)=>s!==o[i]))return!1}return!0}function nr(e){return e?e.aliasOf?e.aliasOf.path:e.path:""}const or=(e,t,n)=>e??t??n,ha=U({name:"RouterView",inheritAttrs:!1,props:{name:{type:String,default:"default"},route:Object},compatConfig:{MODE:3},setup(e,{attrs:t,slots:n}){const r=he(Pt),o=D(()=>e.route||r.value),s=he(tr,0),i=D(()=>{let a=R(s);const{matched:u}=o.value;let h;for(;(h=u[a])&&!h.components;)a++;return a}),c=D(()=>o.value.matched[i.value]);Ie(tr,D(()=>i.value+1)),Ie(la,c),Ie(Pt,o);const l=Z();return fe(()=>[l.value,c.value,e.name],([a,u,h],[d,f,p])=>{u&&(u.instances[h]=a,f&&f!==u&&a&&a===d&&(u.leaveGuards.size||(u.leaveGuards=f.leaveGuards),u.updateGuards.size||(u.updateGuards=f.updateGuards))),a&&u&&(!f||!Ee(u,f)||!d)&&(u.enterCallbacks[h]||[]).forEach(b=>b(a))},{flush:"post"}),()=>{const a=o.value,u=e.name,h=c.value,d=h&&h.components[u];if(!d)return sr(n.default,{Component:d,route:a});const f=h.props[u],p=f?f===!0?a.params:typeof f=="function"?f(a):f:null,m=W(d,$({},p,t,{onVnodeUnmounted:v=>{v.component.isUnmounted&&(h.instances[u]=null)},ref:l}));return sr(n.default,{Component:m,route:a})||m}}});function sr(e,t){if(!e)return null;const n=e(t);return n.length===1?n[0]:n}const zr=ha;function _a(e){const t=Us(e.routes,e),n=e.parseQuery||aa,r=e.stringifyQuery||er,o=e.history,s=Le(),i=Le(),c=Le(),l=gt(ce);let a=ce;ye&&e.scrollBehavior&&"scrollRestoration"in history&&(history.scrollRestoration="manual");const u=pt.bind(null,y=>""+y),h=pt.bind(null,sa),d=pt.bind(null,Ye);function f(y,T){let w,A;return Vr(y)?(w=t.getRecordMatcher(y),A=T):A=y,t.addRoute(A,w)}function p(y){const T=t.getRecordMatcher(y);T&&t.removeRoute(T)}function b(){return t.getRoutes().map(y=>y.record)}function m(y){return!!t.getRecordMatcher(y)}function v(y,T){if(T=$({},T||l.value),typeof y=="string"){const S=ht(n,y,T.path),N=t.resolve({path:S.path},T),Ae=o.createHref(S.fullPath);return $(S,N,{params:d(N.params),hash:Ye(S.hash),redirectedFrom:void 0,href:Ae})}let w;if("path"in y)w=$({},y,{path:ht(n,y.path,T.path).path});else{const S=$({},y.params);for(const N in S)S[N]==null&&delete S[N];w=$({},y,{params:h(y.params)}),T.params=h(T.params)}const A=t.resolve(w,T),H=y.hash||"";A.params=u(d(A.params));const B=ys(r,$({},y,{hash:ra(H),path:A.path})),O=o.createHref(B);return $({fullPath:B,hash:H,query:r===er?ia(y.query):y.query||{}},A,{redirectedFrom:void 0,href:O})}function E(y){return typeof y=="string"?ht(n,y,l.value.path):$({},y)}function P(y,T){if(a!==y)return be(8,{from:T,to:y})}function C(y){return M(y)}function k(y){return C($(E(y),{replace:!0}))}function I(y){const T=y.matched[y.matched.length-1];if(T&&T.redirect){const{redirect:w}=T;let A=typeof w=="function"?w(y):w;return typeof A=="string"&&(A=A.includes("?")||A.includes("#")?A=E(A):{path:A},A.params={}),$({query:y.query,hash:y.hash,params:"path"in A?{}:y.params},A)}}function M(y,T){const w=a=v(y),A=l.value,H=y.state,B=y.force,O=y.replace===!0,S=I(w);if(S)return M($(E(S),{state:typeof S=="object"?$({},H,S.state):H,force:B,replace:O}),T||w);const N=w;N.redirectedFrom=T;let Ae;return!B&&vs(r,A,w)&&(Ae=be(16,{to:N,from:A}),Vt(A,A,!0,!1)),(Ae?Promise.resolve(Ae):Re(N,A)).catch(F=>re(F)?re(F,2)?F:at(F):st(F,N,A)).then(F=>{if(F){if(re(F,2))return M($({replace:O},E(F.to),{state:typeof F.to=="object"?$({},H,F.to.state):H,force:B}),T||N)}else F=Ce(N,A,!0,O,H);return Te(N,A,F),F})}function ie(y,T){const w=P(y,T);return w?Promise.reject(w):Promise.resolve()}function Re(y,T){let w;const[A,H,B]=ma(y,T);w=_t(A.reverse(),"beforeRouteLeave",y,T);for(const S of A)S.leaveGuards.forEach(N=>{w.push(de(N,y,T))});const O=ie.bind(null,y,T);return w.push(O),ge(w).then(()=>{w=[];for(const S of s.list())w.push(de(S,y,T));return w.push(O),ge(w)}).then(()=>{w=_t(H,"beforeRouteUpdate",y,T);for(const S of H)S.updateGuards.forEach(N=>{w.push(de(N,y,T))});return w.push(O),ge(w)}).then(()=>{w=[];for(const S of y.matched)if(S.beforeEnter&&!T.matched.includes(S))if(J(S.beforeEnter))for(const N of S.beforeEnter)w.push(de(N,y,T));else w.push(de(S.beforeEnter,y,T));return w.push(O),ge(w)}).then(()=>(y.matched.forEach(S=>S.enterCallbacks={}),w=_t(B,"beforeRouteEnter",y,T),w.push(O),ge(w))).then(()=>{w=[];for(const S of i.list())w.push(de(S,y,T));return w.push(O),ge(w)}).catch(S=>re(S,8)?S:Promise.reject(S))}function Te(y,T,w){for(const A of c.list())A(y,T,w)}function Ce(y,T,w,A,H){const B=P(y,T);if(B)return B;const O=T===ce,S=ye?history.state:{};w&&(A||O?o.replace(y.fullPath,$({scroll:O&&S&&S.scroll},H)):o.push(y.fullPath,H)),l.value=y,Vt(y,T,w,O),at()}let le;function G(){le||(le=o.listen((y,T,w)=>{if(!xt.listening)return;const A=v(y),H=I(A);if(H){M($(H,{replace:!0}),A).catch($e);return}a=A;const B=l.value;ye&&As(qt(B.fullPath,w.delta),rt()),Re(A,B).catch(O=>re(O,12)?O:re(O,2)?(M(O.to,A).then(S=>{re(S,20)&&!w.delta&&w.type===xe.pop&&o.go(-1,!1)}).catch($e),Promise.reject()):(w.delta&&o.go(-w.delta,!1),st(O,A,B))).then(O=>{O=O||Ce(A,B,!1),O&&(w.delta&&!re(O,8)?o.go(-w.delta,!1):w.type===xe.pop&&re(O,20)&&o.go(-1,!1)),Te(A,B,O)}).catch($e)}))}let ot=Le(),Mt=Le(),je;function st(y,T,w){at(y);const A=Mt.list();return A.length?A.forEach(H=>H(y,T,w)):console.error(y),Promise.reject(y)}function ln(){return je&&l.value!==ce?Promise.resolve():new Promise((y,T)=>{ot.add([y,T])})}function at(y){return je||(je=!y,G(),ot.list().forEach(([T,w])=>y?w(y):T()),ot.reset()),y}function Vt(y,T,w,A){const{scrollBehavior:H}=e;if(!ye||!H)return Promise.resolve();const B=!w&&ks(qt(y.fullPath,0))||(A||!w)&&history.state&&history.state.scroll||null;return Pe().then(()=>H(y,T,B)).then(O=>O&&Cs(O)).catch(O=>st(O,y,T))}const it=y=>o.go(y);let lt;const ct=new Set,xt={currentRoute:l,listening:!0,addRoute:f,removeRoute:p,hasRoute:m,getRoutes:b,resolve:v,options:e,push:C,replace:k,go:it,back:()=>it(-1),forward:()=>it(1),beforeEach:s.add,beforeResolve:i.add,afterEach:c.add,onError:Mt.add,isReady:ln,install(y){const T=this;y.component("RouterLink",da),y.component("RouterView",zr),y.config.globalProperties.$router=T,Object.defineProperty(y.config.globalProperties,"$route",{enumerable:!0,get:()=>R(l)}),ye&&!lt&&l.value===ce&&(lt=!0,C(o.location).catch(H=>{}));const w={};for(const H in ce)w[H]=D(()=>l.value[H]);y.provide($t,T),y.provide(Dt,_e(w)),y.provide(Pt,l);const A=y.unmount;ct.add(y),y.unmount=function(){ct.delete(y),ct.size<1&&(a=ce,le&&le(),le=null,l.value=ce,lt=!1,je=!1),A()}}};return xt}function ge(e){return e.reduce((t,n)=>t.then(()=>n()),Promise.resolve())}function ma(e,t){const n=[],r=[],o=[],s=Math.max(t.matched.length,e.matched.length);for(let i=0;iEe(a,c))?r.push(c):n.push(c));const l=e.matched[i];l&&(t.matched.find(a=>Ee(a,l))||o.push(l))}return[n,r,o]}function hl(){return he(Dt)}const z={},q={},ar=[{name:(z==null?void 0:z.name)??"slug",path:(z==null?void 0:z.path)??"/:slug(.*)*",children:[],meta:z,alias:(z==null?void 0:z.alias)||[],redirect:(z==null?void 0:z.redirect)||void 0,component:()=>_(()=>import("./document-driven.2bce7a6e.js"),["./document-driven.2bce7a6e.js","./DocumentDrivenEmpty.7ceddd7c.js","./runtime-core.esm-bundler.6894272a.js","./ContentRenderer.b7732722.js","./ContentRendererMarkdown.e52b62de.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./DocumentDrivenNotFound.66d77c6e.js","./ButtonLink.91883881.js","./DocsAsideTree.b95e55e0.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./ContentSlot.c5067a4f.js","./ButtonLink.1b73392c.css","./DocumentDrivenNotFound.434430ce.css","./layout.0a22fa4a.js","./query.c3f7607a.js"],import.meta.url).then(e=>e.default||e)},{name:(q==null?void 0:q.name)??"__app_config.json",path:(q==null?void 0:q.path)??"/__app_config.json",children:[],meta:q,alias:(q==null?void 0:q.alias)||[],redirect:(q==null?void 0:q.redirect)||void 0,component:()=>_(()=>import("./empty.9bcab498.js"),["./empty.9bcab498.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(e=>e.default||e)}],ga={scrollBehavior(e,t,n){if(!history.state.stop){if(history.state.smooth)return{el:history.state.smooth,behavior:"smooth"};if(e.hash){const r=document.querySelector(e.hash);if(!r)return;const{marginTop:o}=getComputedStyle(r),s=parseInt(o);return{top:document.querySelector(e.hash).offsetTop-s,behavior:"smooth"}}return n||{top:0}}}},ya={scrollBehavior(e,t,n){const r=Y();let o=n||void 0;if(!o&&t&&e&&e.meta.scrollToTop!==!1&&va(t,e)&&(o={left:0,top:0}),e.path===t.path){if(t.hash&&!e.hash)return{left:0,top:0};if(e.hash)return{el:e.hash,top:ir(e.hash)}}const s=c=>!!(c.meta.pageTransition??Et),i=s(t)&&s(e)?"page:transition:finish":"page:finish";return new Promise(c=>{r.hooks.hookOnce(i,async()=>{await Pe(),e.hash&&(o={el:e.hash,top:ir(e.hash)}),c(o)})})}};function ir(e){try{const t=document.querySelector(e);if(t)return parseFloat(getComputedStyle(t).scrollMarginTop)}catch{}return 0}function va(e,t){const n=e.matched[0]===t.matched[0];return!!(!n||n&&JSON.stringify(e.params)!==JSON.stringify(t.params))}const Ea={},ne={...Ea,...ya,...ga},ba=yn(async e=>{var o;let t,n;if(!((o=e.meta)!=null&&o.validate))return;const r=([t,n]=ze(()=>Promise.resolve(e.meta.validate(e))),t=await t,n(),t);if(r!==!0)return r}),wa=[ba],He={};function Pa(e,t){const{pathname:n,search:r,hash:o}=t,s=e.indexOf("#");if(s>-1){const c=o.includes(e.slice(s))?e.slice(s).length:1;let l=o.slice(c);return l[0]!=="/"&&(l="/"+l),jt(l,"")}return jt(n,e)+r+o}const Ra=Q(async e=>{var p,b;let t,n,r=ae().app.baseURL;ne.hashMode&&!r.includes("#")&&(r+="#");const o=((p=ne.history)==null?void 0:p.call(ne,r))??(ne.hashMode?Is(r):Mr(r)),s=((b=ne.routes)==null?void 0:b.call(ne,ar))??ar,i=Pa(r,window.location),c=_a({...ne,history:o,routes:s});e.vueApp.use(c);const l=gt(c.currentRoute.value);c.afterEach((m,v)=>{l.value=v}),Object.defineProperty(e.vueApp.config.globalProperties,"previousRoute",{get:()=>l.value});const a=gt(c.resolve(i)),u=()=>{a.value=c.currentRoute.value};e.hook("page:finish",u),c.afterEach((m,v)=>{var E,P,C,k;((P=(E=m.matched[0])==null?void 0:E.components)==null?void 0:P.default)===((k=(C=v.matched[0])==null?void 0:C.components)==null?void 0:k.default)&&u()});const h={};for(const m in a.value)h[m]=D(()=>a.value[m]);e._route=_e(h),e._middleware=e._middleware||{global:[],named:{}};const d=tt();try{[t,n]=ze(()=>c.isReady()),await t,n()}catch(m){[t,n]=ze(()=>ue(e,Se,[m])),await t,n()}const f=kt("_layout");return c.beforeEach(async(m,v)=>{var P;m.meta=_e(m.meta),e.isHydrating&&f.value&&!On(m.meta.layout)&&(m.meta.layout=f.value),e._processingMiddleware=!0;const E=new Set([...wa,...e._middleware.global]);for(const C of m.matched){const k=C.meta.middleware;if(k)if(Array.isArray(k))for(const I of k)E.add(I);else E.add(k)}for(const C of E){const k=typeof C=="string"?e._middleware.named[C]||await((P=He[C])==null?void 0:P.call(He).then(M=>M.default||M)):C;if(!k)throw new Error(`Unknown route middleware: '${C}'.`);const I=await ue(e,k,[m,v]);if(!e.payload.serverRendered&&e.isHydrating&&(I===!1||I instanceof Error)){const M=I||vt({statusCode:404,statusMessage:`Page Not Found: ${i}`});return await ue(e,Se,[M]),!1}if(I||I===!1)return I}}),c.afterEach(async m=>{delete e._processingMiddleware,!e.isHydrating&&d.value&&await ue(e,oo),m.matched.length===0&&await ue(e,Se,[vt({statusCode:404,fatal:!1,statusMessage:`Page not found: ${m.fullPath}`})])}),e.hooks.hookOnce("app:created",async()=>{try{await c.replace({...c.resolve(i),name:void 0,force:!0})}catch(m){await ue(e,Se,[m])}}),{provide:{router:c}}}),Oe={"docs-page":()=>_(()=>import("./docs-page.436b5c87.js"),["./docs-page.436b5c87.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./docs-page.5b0d6071.css"],import.meta.url).then(e=>e.default||e),default:()=>_(()=>import("./default.aab8fc36.js"),["./default.aab8fc36.js","./DocsPageLayout.d352cf62.js","./DocsAside.08a0955d.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./DocsAside.d7386185.css","./ProseCodeInline.dca1a534.js","./ProseCodeInline.aab68857.css","./Alert.41cb256b.js","./ContentSlot.c5067a4f.js","./Alert.f24f4058.css","./DocsPageBottom.b38ecc43.js","./ProseA.a4d07cc8.js","./ProseA.89c7f0ff.css","./EditOnLink.vue.1d2292f2.js","./DocsPageBottom.d9d559e1.css","./DocsPrevNext.2b9ea48f.js","./DocsPrevNext.6bb4ff17.css","./DocsToc.55846f28.js","./DocsTocLinks.644c91ee.js","./DocsTocLinks.2846f127.css","./DocsToc.6b8d2996.css","./DocsPageLayout.0537ea8c.css"],import.meta.url).then(e=>e.default||e),page:()=>_(()=>import("./page.f33b5a13.js"),["./page.f33b5a13.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css","./useDocus.41ab1ca5.js","./app.config.f41ab05d.js","./page.70291227.css"],import.meta.url).then(e=>e.default||e)},Ta=Q(()=>{const e=Y(),t=Xe();e.hooks.hook("app:mounted",()=>{t.beforeEach(async n=>{var o;const r=(o=n==null?void 0:n.meta)==null?void 0:o.layout;r&&typeof Oe[r]=="function"&&await Oe[r]()})}),e.hooks.hook("link:prefetch",n=>{var i,c,l,a;if(fr(n))return;const r=t.resolve(n);if(!r)return;const o=(i=r==null?void 0:r.meta)==null?void 0:i.layout;let s=Array.isArray((c=r==null?void 0:r.meta)==null?void 0:c.middleware)?(l=r==null?void 0:r.meta)==null?void 0:l.middleware:[(a=r==null?void 0:r.meta)==null?void 0:a.middleware];s=s.filter(u=>typeof u=="string");for(const u of s)typeof He[u]=="function"&&He[u]();o&&typeof Oe[o]=="function"&&Oe[o]()})}),Ca=Q(()=>{const e=ae(),t=Z(),n=D(()=>{var r,o;return(o=(r=e==null?void 0:e.public)==null?void 0:r.algolia)==null?void 0:o.docSearch});if(n.value){const r=se(),o=Xe(),s=D(()=>{const{algolia:a}=ae();return a&&a.docSearch?a:{}}),i=a=>a.button===1||a.altKey||a.ctrlKey||a.metaKey||a.shiftKey,c=a=>{const{pathname:u,hash:h}=new URL(a),d=window.location.origin,f=u.replace(d,"/");return Ct(f)+h};(async a=>{const u=document.createElement("div");u.id="#docsearch-container",u.style.width="0",u.style.height="0",u.style.display="none",document.body.appendChild(u),t.value=u;const h=await Promise.all([_(()=>import("./index.ade63bb5.js"),[],import.meta.url),_(()=>Promise.resolve({}),["./style.6a49f87f.css"],import.meta.url)]).then(([b])=>b.default),d=(a==null?void 0:a.lang)||"en",f=`${a.langAttribute||"language"}:${d}`,p=a.docSearch.facetFilters||[];h({container:u,appId:a.applicationId,apiKey:a.apiKey,indexName:a.docSearch.indexName,searchParameters:{...d?{facetFilters:[f].concat(p)}:{facetFilters:p},...a.searchParameters},transformItems:a.transformItems?a.transformItems:b=>b.map(m=>({...m,url:c(m.url)})),navigator:a.navigator?a.navigator:{navigate:({itemUrl:b})=>{const{pathname:m}=new URL(window.location.origin+b);r.path===m?window.location.assign(window.location.origin+b):o.push(b)}},hitComponent:a.hitComponent?a.hitComponent:({hit:b,children:m})=>({type:"a",constructor:void 0,__v:1,props:{href:b.url,children:m,onClick:v=>{if(i(v)||r.fullPath===b.url)return;const{pathname:E}=new URL(window.location.origin+b.url);r.path!==E&&v.preventDefault(),o.push(b.url)}}}),...Object.entries(a).filter(([b])=>!["applicationId","apiKey","indexName","transformItems","navigator","hitComponent","facetFilters","langAttribute","lang"].includes(b)).reduce((b,[m,v])=>(b[m]=v,b),{})})})(s.value)}return{provide:{docSearch:{element:t,hasDocSearch:n}}}});function Ht(e){return JSON.stringify(e,Aa)}function Aa(e,t){return t instanceof RegExp?`--REGEX ${t.toString()}`:t}const qr=e=>{let t=Ht(e);return t=typeof Buffer<"u"?Buffer.from(t).toString("base64"):btoa(t),t=t.replace(/\+/g,"-").replace(/\//g,"_").replace(/=/g,""),(t.match(/.{1,100}/g)||[]).join("/")},ka=()=>async e=>{const{content:t}=ae().public,n=e.params(),r=t.experimental.stripQueryParameters?Fe(`/query/${`${Je(n)}.${t.integrity}`}/${qr(n)}.json`):Fe(`/query/${Je(n)}.${t.integrity}.json`);if(dr())return(await _(()=>import("./client-db.514bef37.js"),["./client-db.514bef37.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.useContentDatabase())).fetch(e);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Rt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o};function Me(e,...t){const{content:n}=ae().public,r=jn(ka(),typeof e!="string"?e:{});let o;typeof e=="string"&&(o=vn(Tt(e,...t)));const s=r.params;return r.params=()=>{var c,l,a;const i=s();return o&&(i.where=i.where||[],i.first&&(i.where||[]).length===0?i.where.push({_path:Ct(o)}):i.where.push({_path:new RegExp(`^${o.replace(/[-[\]{}()*+.,^$\s/]/g,"\\$&")}`)})),(c=i.sort)!=null&&c.length||(i.sort=[{_file:1,$numeric:!0}]),n.locales.length&&((a=(l=i.where)==null?void 0:l.find(h=>h._locale))!=null&&a._locale||(i.where=i.where||[],i.where.push({_locale:n.defaultLocale}))),i},r}const La=async e=>{const{content:t}=ae().public;typeof(e==null?void 0:e.params)!="function"&&(e=Me(e));const n=e.params(),r=t.experimental.stripQueryParameters?Fe(`/navigation/${`${Je(n)}.${t.integrity}`}/${qr(n)}.json`):Fe(`/navigation/${Je(n)}.${t.integrity}.json`);if(dr())return(await _(()=>import("./client-db.514bef37.js"),["./client-db.514bef37.js","./cookie.b9cff64d.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./query.c3f7607a.js"],import.meta.url).then(i=>i.generateNavigation))(n);const o=await $fetch(r,{method:"GET",responseType:"json",params:t.experimental.stripQueryParameters?void 0:{_params:Ht(n),previewToken:Rt("previewToken").value}});if(typeof o=="string"&&o.startsWith(""))throw new Error("Not found");return o},Sa=Q(e=>{var s,i;const{documentDriven:t,experimental:n}=(i=(s=ae())==null?void 0:s.public)==null?void 0:i.content,r=(c,l,a,u)=>{var h;if(l&&(l!=null&&l.layout))return l.layout;if(c.matched.length&&((h=c.matched[0].meta)!=null&&h.layout))return c.matched[0].meta.layout;if(a&&l){const{navKeyFromPath:d}=wr(),f=d(l._path,"layout",a);if(f)return f}if(t.layoutFallbacks&&u){let d;for(const f of t.layoutFallbacks)if(u[f]&&u[f].layout){d=u[f].layout;break}if(d)return d}return"default"},o=async(c,l=!1)=>{e.callHook("content:document-driven:start",{route:c,dedup:l});const a=c.meta.documentDriven||{};if(c.meta.documentDriven===!1)return;const{navigation:u,pages:h,globals:d,surrounds:f}=ke(),p=Ct(c.path),b=[];if(t.navigation&&a.navigation!==!1){const m=()=>{const{navigation:v}=ke();return v.value&&!l?v.value:La().then(E=>(v.value=E,E)).catch(()=>null)};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.globals){const m=()=>{const{globals:v}=ke();if(typeof t.globals=="object"&&Array.isArray(t.globals)){console.log("Globals must be a list of keys with QueryBuilderParams as a value.");return}return Promise.all(Object.entries(t.globals).map(([E,P])=>{if(!l&&v.value[E])return v.value[E];let C="findOne";return P!=null&&P.type&&(C=P.type),Me(P)[C]().catch(()=>null)})).then(E=>E.reduce((P,C,k)=>{const I=Object.keys(t.globals)[k];return P[I]=C,P},{}))};b.push(m)}else b.push(()=>Promise.resolve(null));if(t.page&&a.page!==!1){let m={_path:p};typeof a.page=="string"&&(m={_path:a.page}),typeof a.page=="object"&&(m=a.page);const v=()=>{const{pages:E}=ke();return!l&&E.value[p]&&E.value[p]._path===p?E.value[p]:Me().where(m).findOne().catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));if(t.surround&&a.surround!==!1){let m=p;["string","object"].includes(typeof a.page)&&(m=a.page),["string","object"].includes(typeof a.surround)&&(m=a.surround);const v=()=>{const{surrounds:E}=ke();return!l&&E.value[p]?E.value[p]:Me().where({_partial:{$not:!0},navigation:{$not:!1}}).without(["body"]).findSurround(m).catch(()=>null)};b.push(v)}else b.push(()=>Promise.resolve(null));return await Promise.all(b.map(m=>m())).then(async([m,v,E,P])=>{var k,I;m&&(u.value=m),v&&(d.value=v),P&&(f.value[p]=P);const C=(E==null?void 0:E.redirect)||((I=(k=E==null?void 0:E._dir)==null?void 0:k.navigation)==null?void 0:I.redirect);if(C)return h.value[p]=E,C;if(E){const M=r(c,E,m,v),ie=Oe[M];ie&&typeof ie=="function"&&await ie(),c.meta.layout=M,E.layout=M,h.value[p]=E}await e.callHook("content:document-driven:finish",{route:c,dedup:l,page:E,navigation:m,globals:v,surround:P})})};En(async(c,l)=>{if(c.path.includes("favicon.ico")||!n.clientDB&&c.path===l.path)return;const a=await o(c,!1);if(a)return fr(a)?ue(e,bn,[a,{external:!0}]):a}),e.hook("app:data:refresh",async()=>await o(se(),!0))});const Oa=e=>({color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`,borderColor:`{elements.state.${e}.borderColor.primary} !important`,":deep(p code)":{color:`{elements.state.${e}.color.secondary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(code)":{color:`{elements.state.${e}.color.primary} !important`,backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`},":deep(a code)":{borderColor:`{elements.state.${e}.borderColor.primary} !important`},":deep(a)":{borderColor:"currentColor",code:{backgroundColor:`{elements.state.${e}.backgroundColor.primary} !important`},"&:hover":{color:`{elements.state.${e}.color.secondary} !important`,borderColor:"currentColor !important",code:{backgroundColor:`{elements.state.${e}.backgroundColor.secondary} !important`,color:`{elements.state.${e}.color.secondary} !important`,borderColor:`{elements.state.${e}.borderColor.secondary} !important`}}}}),Ia=e=>({marginTop:e,marginBottom:e}),$a=e=>({marginLeft:e,marginRight:e}),Da=e=>({paddingTop:e,paddingBottom:e}),Ha=e=>({paddingLeft:e,paddingRight:e}),Ma={overflow:"hidden",textOverflow:"ellipsis",whiteSpace:"nowrap"},Va=e=>({overflow:"hidden",display:"-webkit-box","-webkit-box-orient":"vertical","-webkit-line-clamp":e}),xa=e=>({fontSize:`{text.${e}.fontSize}`,lineHeight:`{text.${e}.lineHeight}`}),ja={stateColors:Oa,my:Ia,mx:$a,py:Da,px:Ha,truncate:Ma,lineClamp:Va,text:xa},Ba=Q(async e=>{e.vueApp.use(Tn,{colorSchemeMode:"class",utils:ja})}),Na="__NUXT_COLOR_MODE__",Ka="ColorScheme",Ua="theme",Fa="nuxt-color-mode",oe=window[Na],za=Q(e=>{const t=kt("color-mode",()=>_e({preference:oe.preference,value:oe.value,unknown:!1,forced:!1})).value;Ze({htmlAttrs:{[`data-${Ua}`]:D(()=>t.value)}}),Xe().afterEach(o=>{const s=o.meta.colorMode;s&&s!=="system"?(t.value=s,t.forced=!0):(s==="system"&&console.warn("You cannot force the colorMode to system at the page level."),t.forced=!1,t.value=t.preference==="system"?oe.getColorScheme():t.preference)});let n;function r(){n||!window.matchMedia||(n=window.matchMedia("(prefers-color-scheme: dark)"),n.addEventListener("change",()=>{!t.forced&&t.preference==="system"&&(t.value=oe.getColorScheme())}))}fe(()=>t.preference,o=>{var s;t.forced||(o==="system"?(t.value=oe.getColorScheme(),r()):t.value=o,(s=window.localStorage)==null||s.setItem(Fa,o))},{immediate:!0}),fe(()=>t.value,(o,s)=>{oe.removeColorScheme(s),oe.addColorScheme(o)}),t.preference==="system"&&r(),e.hook("app:mounted",()=>{t.unknown&&(t.preference=oe.preference,t.value=oe.value,t.unknown=!1)}),e.provide("colorMode",t)}),lr=".studio",Ke={appConfig:`${lr}/app.config.json`,tokensConfig:`${lr}/tokens.config.json`},_l=e=>{let t;return(...n)=>(t||(t=e()),t)};function qa(e,t){for(const n in e){const r=t[n];n in t||delete e[n],r!==null&&typeof r=="object"&&qa(e[n],t[n])}}function Wa(e,t){for(const n in t){const r=t[n];r!==null&&typeof r=="object"?(e[n]=e[n]||{},Wa(e[n],r)):e[n]=r}}const Ga=Q(async e=>{let t,n;if(!window.parent||window.self===window.parent)return;const r=Xe(),o=Z(""),s=Z(!0),i=p=>({path:p.path,query:ut(p.query),params:ut(p.params),fullPath:p.fullPath,meta:ut(p.meta)}),c=([t,n]=ze(()=>_(()=>import("./useStudio.ef34e52b.js"),["./useStudio.ef34e52b.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.7c06b2d5.js","./ContentPreviewMode.ea418cb0.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(p=>p.useStudio)),t=await t,n(),t),{findContentWithId:l,updateContent:a,removeContentWithId:u,requestRerender:h,syncPreviewAppConfig:d,syncPreviewTokensConfig:f}=c();window.addEventListener("keydown",p=>{(p.metaKey||p.ctrlKey||p.altKey||p.shiftKey)&&window.parent.postMessage({type:"nuxt-studio:preview:keydown",payload:{key:p.key,metaKey:p.metaKey,ctrlKey:p.ctrlKey,shiftKey:p.shiftKey,altKey:p.altKey}},"*")}),window.addEventListener("message",async p=>{const{type:b,payload:m={}}=p.data||{};switch(b){case"nuxt-studio:editor:file-selected":{const v=await l(m.path);v?v._partial||v._path!==se().path&&(o.value=v._path,r.push(v._path)):(o.value="/",se().path!=="/"&&r.push("/"));break}case"nuxt-studio:editor:file-changed":{const{additions:v=[],deletions:E=[]}=m;for(const P of v)await a(P);for(const P of E)await u(P.path);h();break}case"nuxt-studio:config:file-changed":{const{additions:v=[],deletions:E=[]}=m,P=v.find(M=>M.path===Ke.appConfig);P&&d(P==null?void 0:P.parsed),E.find(M=>M.path===Ke.appConfig)&&d(void 0);const k=v.find(M=>M.path===Ke.tokensConfig);k&&f(k==null?void 0:k.parsed),E.find(M=>M.path===Ke.tokensConfig)&&f(void 0);break}}}),e.hook("content:document-driven:finish",({route:p,page:b,dedup:m})=>{if(m||s.value){s.value=!1;return}if(b&&o.value===b._path){o.value="";return}window.parent.postMessage({type:"nuxt-studio:preview:document-driven:finish",payload:{...i(p),contentId:b==null?void 0:b._id}},"*")}),r==null||r.afterEach(p=>{window.parent.postMessage({type:"nuxt-studio:preview:route-changed",payload:i(p)},"*")}),e.hook("nuxt-studio:preview:ready",()=>{window.parent.postMessage({type:"nuxt-studio:preview:ready",payload:i(se())},"*")})}),Qa=Q(e=>{const t=ae().public.studio||{},n=se(),r=Rt("previewToken",{sameSite:"none",secure:!0});async function o(){const s=await _(()=>import("./useStudio.ef34e52b.js"),["./useStudio.ef34e52b.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./asyncData.7c06b2d5.js","./ContentPreviewMode.ea418cb0.js","./query.c3f7607a.js","./ContentPreviewMode.dea45f14.css"],import.meta.url).then(c=>c.useStudio),{mountPreviewUI:i}=s();i(),Me("/non-existing-path").findOne()}if(t.apiURL){if(Object.prototype.hasOwnProperty.call(n.query,"preview")&&!n.query.preview||!n.query.preview&&!r.value)return;n.query.preview&&r.value!==n.query.preview&&(r.value=String(n.query.preview)),e.hook("app:mounted",async()=>{await o()})}}),Za=Q(e=>{const t=Z(!1),n=()=>t.value=!0,r=()=>t.value=!1,o=()=>t.value=!t.value;return e.$router.afterEach(()=>setTimeout(r,50)),fe(t,s=>{const i=document.documentElement;s?i.style.overflow="hidden":setTimeout(()=>{i.style.overflow=""},100)},{immediate:!0}),{provide:{menu:{visible:t,close:r,open:n,toggle:o}}}}),Ja=Q(()=>{navigator&&navigator.userAgent&&navigator.userAgent.match(/Win[a-z0-9]*;/)&&document.documentElement.classList.add("docus-scrollbars")}),Ya=[us,hs,Ra,Ta,Ca,Sa,Ba,za,Ga,Qa,Za,Ja],Xa=(e,t)=>t.path.replace(/(:\w+)\([^)]+\)/g,"$1").replace(/(:\w+)[?+*]/g,"$1").replace(/:\w+/g,n=>{var r;return((r=e.params[n.slice(1)])==null?void 0:r.toString())||""}),ei=(e,t)=>{const n=e.route.matched.find(o=>{var s;return((s=o.components)==null?void 0:s.default)===e.Component.type}),r=t??(n==null?void 0:n.meta.key)??(n&&Xa(e.route,n));return typeof r=="function"?r(e.route):r},ti=(e,t)=>({default:()=>e?W(In,e===!0?{}:e,t):t}),ri=U({name:"FragmentWrapper",setup(e,{slots:t}){return()=>{var n;return(n=t.default)==null?void 0:n.call(t)}}}),ni=(e,t,n)=>({default:()=>t?W(e,t===!0?{}:t,n):W(ri,{},n)}),Wr=U({name:"NuxtPage",inheritAttrs:!1,props:{name:{type:String},transition:{type:[Boolean,Object],default:void 0},keepalive:{type:[Boolean,Object],default:void 0},route:{type:Object},pageKey:{type:[Function,String],default:null}},setup(e,{attrs:t}){const n=Y();return()=>W(zr,{name:e.name,route:e.route,...t},{default:r=>{if(!r.Component)return;const o=ei(r,e.pageKey),s=n.deferHydration(),i=!!(e.transition??r.route.meta.pageTransition??Et),c=i&&si([e.transition,r.route.meta.pageTransition,Et,{onAfterLeave:()=>{n.callHook("page:transition:finish",r.Component)}}].filter(Boolean));return ni(cn,i&&c,ti(e.keepalive??r.route.meta.keepalive??fs,W(gr,{onPending:()=>n.callHook("page:start",r.Component),onResolve:()=>{Pe(()=>n.callHook("page:finish",r.Component).finally(s))}},{default:()=>W(ai,{key:o,routeProps:r,pageKey:o,hasTransition:i})}))).default()}})}});function oi(e){return Array.isArray(e)?e:e?[e]:[]}function si(e){const t=e.map(n=>({...n,onAfterLeave:oi(n.onAfterLeave)}));return Bn(...t)}const ai=U({name:"RouteProvider",props:["routeProps","pageKey","hasTransition"],setup(e){const t=e.pageKey,n=e.routeProps.route,r={};for(const o in e.routeProps.route)r[o]=D(()=>t===e.pageKey?e.routeProps.route[o]:n[o]);return Ie("_route",_e(r)),()=>W(e.routeProps.Component)}}),ml=Object.freeze(Object.defineProperty({__proto__:null,default:Wr},Symbol.toStringTag,{value:"Module"}));const Gr={__name:"AppLoadingBar",props:{throttle:{type:Number,default:200},duration:{type:Number,default:2e3}},setup(e){const t=e,n=Y(),r=_e({percent:0,show:!1,canSucceed:!0});let o=null,s=null,i;function c(){o&&clearInterval(o),s&&clearTimeout(s),o=null}function l(){r.show||(c(),r.percent=0,r.canSucceed=!0,t.throttle?s=setTimeout(d,t.throttle):d())}function a(f){r.percent=Math.min(100,Math.floor(r.percent+f))}function u(){r.percent=100,h()}function h(){c(),setTimeout(()=>{r.show=!1,setTimeout(()=>{r.percent=0},400)},500)}function d(){r.show=!0,i=1e4/Math.floor(t.duration),o=setInterval(()=>{a(i)},100)}return n.hook("content:middleware:start",l),n.hook("page:start",l),n.hook("page:finish",u),_r(()=>c),(f,p)=>(L(),j("div",{class:At(["nuxt-progress",{"nuxt-progress-failed":!R(r).canSucceed}]),style:$n({width:`${R(r).percent}%`,left:R(r).left,opacity:R(r).show?1:0,backgroundSize:`${100/R(r).percent*100}% auto`})},null,6))}},ii=Object.freeze(Object.defineProperty({__proto__:null,default:Gr},Symbol.toStringTag,{value:"Module"})),li=U({__name:"AppSocialIcons",setup(e){const t=["twitter","facebook","instagram","youtube","github","medium"],{config:n}=me(),r=D(()=>Object.entries(n.value.socials||{}).map(([o,s])=>typeof s=="object"?s:typeof s=="string"&&s&&t.includes(o)?{href:`https://${o}.com/${s}`,icon:`fa-brands:${o}`,label:s}:null).filter(Boolean));return(o,s)=>{const i=we,c=et;return L(!0),j(Ve,null,qe(R(r),l=>(L(),x(c,{key:l.label,rel:"noopener noreferrer",title:l.label,"aria-label":l.label,href:l.href,target:"_blank"},{default:te(()=>[l.icon?(L(),x(i,{key:0,name:l.icon},null,8,["name"])):ee("",!0)]),_:2},1032,["title","aria-label","href"]))),128)}}});const nt=X(li,[["__scopeId","data-v-224b171c"]]),ci=Object.freeze(Object.defineProperty({__proto__:null,default:nt},Symbol.toStringTag,{value:"Module"})),ui=()=>{const{$menu:e}=Y();return e},di={class:"wrapper"},fi={class:"icons"},pi=U({__name:"AppHeaderDialog",setup(e){const{navigation:t}=Lt(),{config:n}=me(),r=D(()=>{var l;return((l=n.value.aside)==null?void 0:l.exclude)||[]}),o=D(()=>(t.value||[]).filter(l=>!r.value.includes(l._path))),{visible:s,open:i,close:c}=ui();return fe(s,l=>l?i():c()),(l,a)=>{const u=we,h=nt,d=dn;return L(),j(Ve,null,[V("button",{"aria-label":"Menu",onClick:a[0]||(a[0]=(...f)=>R(i)&&R(i)(...f))},[K(u,{name:"heroicons-outline:menu","aria-hidden":"”true”"})]),(L(),x(Dn,{to:"body"},[R(s)?(L(),j("nav",{key:0,class:"dialog",onClick:a[3]||(a[3]=(...f)=>R(c)&&R(c)(...f))},[V("div",{onClick:a[2]||(a[2]=un(()=>{},["stop"]))},[V("div",di,[V("button",{"aria-label":"Menu",onClick:a[1]||(a[1]=(...f)=>R(c)&&R(c)(...f))},[K(u,{name:"heroicons-outline:x","aria-hidden":"”true”"})]),V("div",fi,[K(h)])]),K(d,{links:R(o)},null,8,["links"])])])):ee("",!0)]))],64)}}});const Qr=X(pi,[["__scopeId","data-v-291983a4"]]),hi=Object.freeze(Object.defineProperty({__proto__:null,default:Qr},Symbol.toStringTag,{value:"Module"})),_i={},mi={viewBox:"133.827 188.259 264.992 112.316",width:"100",height:"50",style:{height:"50px"}},gi=Hn('',10),yi=[gi];function vi(e,t){return L(),j("svg",mi,yi)}const Zr=X(_i,[["render",vi]]),Ei=Object.freeze(Object.defineProperty({__proto__:null,default:Zr},Symbol.toStringTag,{value:"Module"})),bi={key:2},wi=U({__name:"AppHeaderLogo",setup(e){const{config:t}=me(),n=D(()=>{var o;return((o=t.value.header)==null?void 0:o.logo)||!1}),r=D(()=>{var o;return((o=t.value.header)==null?void 0:o.title)||t.value.title});return(o,s)=>{const i=Zr,c=et;return L(),x(c,{class:"navbar-logo",to:"/","aria-label":R(r)},{default:te(()=>[R(n)&&typeof R(n)=="string"?(L(),x(yr(R(n)),{key:0})):R(n)?(L(),x(i,{key:1})):(L(),j("span",bi,We(R(r)),1))]),_:1},8,["aria-label"])}}});const Jr=X(wi,[["__scopeId","data-v-0e437bbb"]]),Pi=Object.freeze(Object.defineProperty({__proto__:null,default:Jr},Symbol.toStringTag,{value:"Module"})),Ri={key:0},Ti=U({__name:"AppHeaderNavigation",setup(e){const t=se(),{navBottomLink:n}=wr(),{navigation:r}=Lt(),{config:o}=me(),s=D(()=>{var a;return!!((a=o.value.aside)!=null&&a.level)}),i=D(()=>{var a;return((a=o.value.header)==null?void 0:a.exclude)||[]}),c=D(()=>(r.value||[]).filter(a=>!i.value.includes(a._path))),l=a=>a.exact?t.fullPath===a._path:t.fullPath.startsWith(a._path);return(a,u)=>{const h=we,d=et;return R(s)?(L(),j("nav",Ri,[V("ul",null,[(L(!0),j(Ve,null,qe(R(c),f=>(L(),j("li",{key:f._path},[K(d,{class:At(["link",{active:l(f)}]),to:f.redirect?f.redirect:R(n)(f)},{default:te(()=>{var p,b;return[f.icon&&((b=(p=R(o))==null?void 0:p.header)!=null&&b.showLinkIcon)?(L(),x(h,{key:0,name:f.icon},null,8,["name"])):ee("",!0),vr(" "+We(f.title),1)]}),_:2},1032,["to","class"])]))),128))])])):ee("",!0)}}});const Yr=X(Ti,[["__scopeId","data-v-01b60614"]]),Ci=Object.freeze(Object.defineProperty({__proto__:null,default:Yr},Symbol.toStringTag,{value:"Module"})),Xr=()=>{const{$docSearch:e}=Y();return e||{hasDocSearch:Z(!1)}},en=e=>(Mn("data-v-1e99f08b"),e=e(),Vn(),e),Ai={type:"button","aria-label":"Search"},ki={class:"content"},Li=en(()=>V("span",null,"Search",-1)),Si=en(()=>V("span",null,[V("kbd",null,"⌘"),V("kbd",null,"K")],-1)),Oi=U({__name:"AppSearch",setup(e){const{element:t}=Xr(),n=()=>t.value.querySelector("button").click();return(r,o)=>{const s=we;return L(),j("div",{class:"doc-search",onClick:n},[V("button",Ai,[V("span",ki,[K(s,{name:"heroicons-outline:search"}),Li,Si])])])}}});const tn=X(Oi,[["__scopeId","data-v-1e99f08b"]]),Ii=Object.freeze(Object.defineProperty({__proto__:null,default:tn},Symbol.toStringTag,{value:"Module"})),rn=U({name:"ClientOnly",inheritAttrs:!1,props:["fallback","placeholder","placeholderTag","fallbackTag"],setup(e,{slots:t,attrs:n}){const r=Z(!1);return Er(()=>{r.value=!0}),o=>{var l;if(r.value)return(l=t.default)==null?void 0:l.call(t);const s=t.fallback||t.placeholder;if(s)return s();const i=o.fallback||o.placeholder||"",c=o.fallbackTag||o.placeholderTag||"span";return j(c,n,i)}}}),mt=new WeakMap;function $i(e){if(mt.has(e))return mt.get(e);const t={...e};return t.render?t.render=(n,...r)=>{if(n.mounted$){const o=e.render(n,...r);return o.children===null||typeof o.children=="string"?V(o.type,o.props,o.children,o.patchFlag,o.dynamicProps,o.shapeFlag):W(o)}else return W("div",n.$attrs??n._.attrs)}:t.template&&(t.template=` - - - `),t.setup=(n,r)=>{var s;const o=Z(!1);return Er(()=>{o.value=!0}),Promise.resolve(((s=e.setup)==null?void 0:s.call(e,n,r))||{}).then(i=>typeof i!="function"?{...i,mounted$:o}:(...c)=>{if(o.value){const l=i(...c);return l.children===null||typeof l.children=="string"?V(l.type,l.props,l.children,l.patchFlag,l.dynamicProps,l.shapeFlag):W(l)}else return W("div",r.attrs)})},mt.set(e,t),t}const gl=Object.freeze(Object.defineProperty({__proto__:null,createClientOnly:$i,default:rn},Symbol.toStringTag,{value:"Module"})),Di={name:Ka,props:{placeholder:String,tag:{type:String,default:"span"}}};function Hi(e,t,n,r,o,s){const i=rn;return L(),x(i,{placeholder:n.placeholder,"placeholder-tag":n.tag},{default:te(()=>[br(e.$slots,"default")]),_:3},8,["placeholder","placeholder-tag"])}const nn=X(Di,[["render",Hi]]),yl=Object.freeze(Object.defineProperty({__proto__:null,default:nn},Symbol.toStringTag,{value:"Module"})),Mi=()=>kt("color-mode").value,Vi=U({__name:"ThemeSelect",setup(e){const t=Mi(),n=()=>{const r=["system","light","dark"],s=(r.indexOf(t.preference)+1)%r.length;t.preference=r[s]};return(r,o)=>{const s=we,i=nn;return L(),j("button",{"aria-label":"Color Mode",onClick:n},[K(i,{placeholder:"..."},{default:te(()=>[R(t).preference==="dark"?(L(),x(s,{key:0,name:"uil:moon"})):R(t).preference==="light"?(L(),x(s,{key:1,name:"uil:sun"})):(L(),x(s,{key:2,name:"uil:desktop"}))]),_:1})])}}});const on=X(Vi,[["__scopeId","data-v-4a6c39b0"]]),xi=Object.freeze(Object.defineProperty({__proto__:null,default:on},Symbol.toStringTag,{value:"Module"})),ji={class:"section left"},Bi={class:"section center"},Ni={class:"section right"},Ki={class:"social-icons"},Ui=U({__name:"AppHeader",props:{},setup(e){const{config:t}=me(),{navigation:n}=Lt(),{hasDocSearch:r}=Xr(),o=D(()=>{var s;return((s=n.value)==null?void 0:s.length)>1});return(s,i)=>{var p,b;const c=Qr,l=Jr,a=Yr,u=tn,h=on,d=nt,f=pr;return L(),j("header",{class:At({"has-dialog":R(o),"has-doc-search":R(r)})},[K(f,{fluid:(b=(p=R(t))==null?void 0:p.header)==null?void 0:b.fluid},{default:te(()=>[V("div",ji,[R(o)?(L(),x(c,{key:0})):ee("",!0),K(l)]),V("div",Bi,[R(o)?(L(),x(l,{key:0})):ee("",!0),K(a)]),V("div",Ni,[R(r)?(L(),x(u,{key:0})):ee("",!0),K(h),V("div",Ki,[K(d)])])]),_:1},8,["fluid"])],2)}}});const sn=X(Ui,[["__scopeId","data-v-8375ebf7"]]),Fi=Object.freeze(Object.defineProperty({__proto__:null,default:sn},Symbol.toStringTag,{value:"Module"})),zi={class:"left"},qi=["href"],Wi={key:1},Gi={class:"center"},Qi={class:"right"},Zi=["aria-label","href"],Ji=U({__name:"AppFooter",setup(e){const{config:t}=me(),n=Z(null),r=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.iconLinks)||[]}),o=D(()=>{var c,l;return((l=(c=t.value)==null?void 0:c.footer)==null?void 0:l.textLinks)||[]}),s=D(()=>{var c;return Object.entries(((c=t.value)==null?void 0:c.socials)||{}).filter(([l,a])=>a).length}),i=D(()=>n.value?s.value:0);return(c,l)=>{var f,p;const a=et,u=we,h=nt,d=pr;return L(),j("footer",null,[K(d,{fluid:(p=(f=R(t))==null?void 0:f.footer)==null?void 0:p.fluid,padded:"",class:"footer-container"},{default:te(()=>{var b,m,v,E,P,C,k,I,M,ie,Re,Te,Ce,le;return[V("div",zi,[(m=(b=R(t))==null?void 0:b.footer)!=null&&m.credits?(L(),j("a",{key:0,href:((P=(E=(v=R(t))==null?void 0:v.footer)==null?void 0:E.credits)==null?void 0:P.href)||"#",rel:"noopener",target:"_blank"},[(I=(k=(C=R(t))==null?void 0:C.footer)==null?void 0:k.credits)!=null&&I.icon?(L(),x(yr((Re=(ie=(M=R(t))==null?void 0:M.footer)==null?void 0:ie.credits)==null?void 0:Re.icon),{key:0,class:"left-icon"})):ee("",!0),(le=(Ce=(Te=R(t))==null?void 0:Te.footer)==null?void 0:Ce.credits)!=null&&le.text?(L(),j("p",Wi,We(R(t).footer.credits.text),1)):ee("",!0)],8,qi)):ee("",!0)]),V("div",Gi,[(L(!0),j(Ve,null,qe(R(o),G=>(L(),x(a,{key:G.href,class:"text-link","aria-label":G.text,href:G.href,target:G.target||"_self"},{default:te(()=>[vr(We(G.text),1)]),_:2},1032,["aria-label","href","target"]))),128))]),V("div",Qi,[(L(!0),j(Ve,null,qe(R(r).slice(0,6-R(i)),G=>(L(),j("a",{key:G.label,class:"icon-link",rel:"noopener","aria-label":G.label,href:G.href,target:"_blank"},[K(u,{name:G.icon},null,8,["name"])],8,Zi))),128)),K(h,{ref_key:"socialIcons",ref:n},null,512)])]}),_:1},8,["fluid"])])}}});const an=X(Ji,[["__scopeId","data-v-eebf8ee0"]]),Yi=Object.freeze(Object.defineProperty({__proto__:null,default:an},Symbol.toStringTag,{value:"Module"})),Xi=(e,t=se())=>{const n=R(e),r=ae();fe(()=>R(e),(s=n)=>{if(!t.path||!s)return;const i=Object.assign({},(s==null?void 0:s.head)||{});i.meta=[...i.meta||[]],i.link=[...i.link||[]];const c=i.title||(s==null?void 0:s.title);c&&(i.title=c),r.public.content.host;const l=(i==null?void 0:i.description)||(s==null?void 0:s.description);l&&i.meta.filter(a=>a.name==="description").length===0&&i.meta.push({name:"description",content:l}),i!=null&&i.image||(s==null||s.image),Pe(()=>Ze(i))},{immediate:!0})},el=U({__name:"AppLayout",setup(e){const{config:t}=me();return Ze({titleTemplate:t.value.titleTemplate,meta:[{name:"twitter:card",content:"summary_large_image"}]}),fe(()=>t.value.titleTemplate,()=>Ze({titleTemplate:t.value.titleTemplate})),Xi(t.value),(n,r)=>{const o=Gr,s=sn,i=an;return L(),j("div",null,[K(o),K(s),br(n.$slots,"default"),K(i)])}}}),tl={};function rl(e,t){const n=Wr,r=el;return L(),x(r,null,{default:te(()=>[K(n)]),_:1})}const nl=X(tl,[["render",rl]]),cr={__name:"nuxt-root",setup(e){const t=g(()=>_(()=>import("./error-component.9c8606a2.js"),["./error-component.9c8606a2.js","./Container.f1017aa2.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./Container.dc145a5e.css"],import.meta.url).then(c=>c.default||c)),n=()=>null,r=Y(),o=r.deferHydration();Ie("_route",se()),r.hooks.callHookWith(c=>c.map(l=>l()),"vue:setup");const s=tt();xn((c,l,a)=>{r.hooks.callHook("vue:error",c,l,a).catch(u=>console.error("[nuxt] Error in `vue:error` hook",u)),so(c)&&(c.fatal||c.unhandled)&&ue(r,Se,[c])});const{islandContext:i}=!1;return(c,l)=>(L(),x(gr,{onResolve:R(o)},{default:te(()=>[R(s)?(L(),x(R(t),{key:0,error:R(s)},null,8,["error"])):R(i)?(L(),x(R(n),{key:1,context:R(i)},null,8,["context"])):(L(),x(R(nl),{key:2}))]),_:1},8,["onResolve"]))}};globalThis.$fetch||(globalThis.$fetch=Yn.create({baseURL:eo()}));let ur;const ol=wn(Ya);ur=async function(){var o;const n=Boolean((o=window.__NUXT__)==null?void 0:o.serverRendered)?fn(cr):pn(cr),r=Pn({vueApp:n});try{await Rn(r,ol)}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}try{await r.hooks.callHook("app:created",n),await r.hooks.callHook("app:beforeMount",n),n.mount("#"+ps),await r.hooks.callHook("app:mounted",n),await Pe()}catch(s){await r.callHook("app:error",s),r.payload.error=r.payload.error||s}},ur().catch(e=>{console.error("Error while mounting app:",e)});export{ii as A,Ei as L,lr as S,xi as T,el as _,Xi as a,Ze as b,ao as c,hl as d,pl as e,La as f,ni as g,Je as h,_l as i,Wa as j,qa as k,Oe as l,Ke as m,ci as n,hi as o,ml as p,Me as q,Pi as r,Ci as s,Ii as t,Mi as u,gl as v,yl as w,Fi as x,Yi as y}; diff --git a/docs/.output/public/_nuxt/error-404.1576ed15.js b/docs/.output/public/_nuxt/error-404.709df2ea.js similarity index 89% rename from docs/.output/public/_nuxt/error-404.1576ed15.js rename to docs/.output/public/_nuxt/error-404.709df2ea.js index 69d067c3..945862d4 100644 --- a/docs/.output/public/_nuxt/error-404.1576ed15.js +++ b/docs/.output/public/_nuxt/error-404.709df2ea.js @@ -1 +1 @@ -import{_ as r}from"./app.config.f41ab05d.js";import{b as a}from"./entry.f3791b9c.js";import{a as n}from"./Container.f1017aa2.js";import{q as d,x as l,E as e,J as s,G as c,C as p,L as m,M as f,N as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.b95e55e0.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const h=t=>(f("data-v-30d2164e"),t=t(),x(),t),u={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},g=h(()=>e("div",{class:"fixed left-0 right-0 spotlight z-10"},null,-1)),_={class:"max-w-520px text-center z-20"},b=["textContent"],y=["textContent"],w={class:"w-full flex items-center justify-center"},S={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:404},statusMessage:{type:String,default:"Not Found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(t){const o=t;return a({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(k,N)=>{const i=r;return d(),l("div",u,[g,e("div",_,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,b),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,y),e("div",w,[c(i,{to:"/",class:"gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer"},{default:p(()=>[m(s(t.backHome),1)]),_:1})])])])}}},U=n(S,[["__scopeId","data-v-30d2164e"]]);export{U as default}; +import{_ as r}from"./app.config.88c4fc0b.js";import{b as a}from"./entry.c31835cb.js";import{a as n}from"./Container.f1017aa2.js";import{q as d,x as l,E as e,J as s,G as c,C as p,L as m,M as f,N as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./DocsAsideTree.4387e6ea.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./query.c3f7607a.js";const h=t=>(f("data-v-30d2164e"),t=t(),x(),t),u={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},g=h(()=>e("div",{class:"fixed left-0 right-0 spotlight z-10"},null,-1)),_={class:"max-w-520px text-center z-20"},b=["textContent"],y=["textContent"],w={class:"w-full flex items-center justify-center"},S={__name:"error-404",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:404},statusMessage:{type:String,default:"Not Found"},description:{type:String,default:"Sorry, the page you are looking for could not be found."},backHome:{type:String,default:"Go back home"}},setup(t){const o=t;return a({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(k,N)=>{const i=r;return d(),l("div",u,[g,e("div",_,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,b),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,y),e("div",w,[c(i,{to:"/",class:"gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer"},{default:p(()=>[m(s(t.backHome),1)]),_:1})])])])}}},U=n(S,[["__scopeId","data-v-30d2164e"]]);export{U as default}; diff --git a/docs/.output/public/_nuxt/error-500.421dc5a9.js b/docs/.output/public/_nuxt/error-500.9e9af3bc.js similarity index 88% rename from docs/.output/public/_nuxt/error-500.421dc5a9.js rename to docs/.output/public/_nuxt/error-500.9e9af3bc.js index 7d05bc97..9895b205 100644 --- a/docs/.output/public/_nuxt/error-500.421dc5a9.js +++ b/docs/.output/public/_nuxt/error-500.9e9af3bc.js @@ -1 +1 @@ -import{b as i}from"./entry.f3791b9c.js";import{a as r}from"./Container.f1017aa2.js";import{q as a,x as n,E as e,J as s,M as l,N as d}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";const p=t=>(l("data-v-32388612"),t=t(),d(),t),c={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},m=p(()=>e("div",{class:"fixed -bottom-1/2 left-0 right-0 h-1/2 spotlight"},null,-1)),h={class:"max-w-520px text-center"},f=["textContent"],g=["textContent"],x={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Server error"},description:{type:String,default:"This page is temporarily unavailable."}},setup(t){const o=t;return i({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(b,u)=>(a(),n("div",c,[m,e("div",h,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,f),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,g)])]))}},I=r(x,[["__scopeId","data-v-32388612"]]);export{I as default}; +import{b as i}from"./entry.c31835cb.js";import{a as r}from"./Container.f1017aa2.js";import{q as a,x as n,E as e,J as s,M as l,N as d}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./query.c3f7607a.js";const p=t=>(l("data-v-32388612"),t=t(),d(),t),c={class:"font-sans antialiased bg-white dark:bg-black text-black dark:text-white grid min-h-screen place-content-center overflow-hidden"},m=p(()=>e("div",{class:"fixed -bottom-1/2 left-0 right-0 h-1/2 spotlight"},null,-1)),h={class:"max-w-520px text-center"},f=["textContent"],g=["textContent"],x={__name:"error-500",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},statusCode:{type:Number,default:500},statusMessage:{type:String,default:"Server error"},description:{type:String,default:"This page is temporarily unavailable."}},setup(t){const o=t;return i({title:`${o.statusCode} - ${o.statusMessage} | ${o.appName}`,script:[],style:[{children:'*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}'}]}),(b,u)=>(a(),n("div",c,[m,e("div",h,[e("h1",{class:"text-8xl sm:text-10xl font-medium mb-8",textContent:s(t.statusCode)},null,8,f),e("p",{class:"text-xl px-8 sm:px-0 sm:text-4xl font-light mb-16 leading-tight",textContent:s(t.description)},null,8,g)])]))}},I=r(x,[["__scopeId","data-v-32388612"]]);export{I as default}; diff --git a/docs/.output/public/_nuxt/error-component.9c8606a2.js b/docs/.output/public/_nuxt/error-component.d8e3cc55.js similarity index 74% rename from docs/.output/public/_nuxt/error-component.9c8606a2.js rename to docs/.output/public/_nuxt/error-component.d8e3cc55.js index f9a2fc38..df7746f2 100644 --- a/docs/.output/public/_nuxt/error-component.9c8606a2.js +++ b/docs/.output/public/_nuxt/error-component.d8e3cc55.js @@ -1,3 +1,3 @@ import{_ as o}from"./Container.f1017aa2.js";import{e as n,q as f,B as g,ac as E,ad as k,u as s}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";const P={__name:"nuxt-error-page",props:{error:Object},setup(c){const{error:t}=c;(t.stack||"").split(` `).splice(1).map(e=>({text:e.replace("webpack:/","").replace(".vue",".js").trim(),internal:e.includes("node_modules")&&!e.includes(".cache")||e.includes("internal")||e.includes("new Promise")})).map(e=>`${e.text}`).join(` -`);const r=Number(t.statusCode||500),a=r===404,u=t.statusMessage??(a?"Page Not Found":"Internal Server Error"),i=t.message||t.toString(),p=void 0,m=n(()=>o(()=>import("./error-404.1576ed15.js"),["./error-404.1576ed15.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-404.97011ca1.css"],import.meta.url).then(e=>e.default||e)),_=n(()=>o(()=>import("./error-500.421dc5a9.js"),["./error-500.421dc5a9.js","./entry.f3791b9c.js","./DocsAsideTree.b95e55e0.js","./app.config.f41ab05d.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.b9cff64d.js","./useDocus.41ab1ca5.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-500.82e14f63.css"],import.meta.url).then(e=>e.default||e)),d=a?m:_;return(e,l)=>(f(),g(s(d),E(k({statusCode:s(r),statusMessage:s(u),description:s(i),stack:s(p)})),null,16))}},C=P;export{C as default}; +`);const r=Number(t.statusCode||500),a=r===404,u=t.statusMessage??(a?"Page Not Found":"Internal Server Error"),i=t.message||t.toString(),p=void 0,m=n(()=>o(()=>import("./error-404.709df2ea.js"),["./error-404.709df2ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-404.97011ca1.css"],import.meta.url).then(e=>e.default||e)),_=n(()=>o(()=>import("./error-500.9e9af3bc.js"),["./error-500.9e9af3bc.js","./entry.c31835cb.js","./DocsAsideTree.4387e6ea.js","./app.config.88c4fc0b.js","./index.d2b0cb5e.js","./runtime-core.esm-bundler.6894272a.js","./cookie.71eae014.js","./useDocus.b9e6b105.js","./Container.f1017aa2.js","./Container.dc145a5e.css","./DocsAsideTree.b13c5d2f.css","./query.c3f7607a.js","./entry.2e7e04dc.css","./error-500.82e14f63.css"],import.meta.url).then(e=>e.default||e)),d=a?m:_;return(e,l)=>(f(),g(s(d),E(k({statusCode:s(r),statusMessage:s(u),description:s(i),stack:s(p)})),null,16))}},C=P;export{C as default}; diff --git a/docs/.output/public/_nuxt/layout.0a22fa4a.js b/docs/.output/public/_nuxt/layout.37427c44.js similarity index 72% rename from docs/.output/public/_nuxt/layout.0a22fa4a.js rename to docs/.output/public/_nuxt/layout.37427c44.js index 8b4154cc..9f00c0c9 100644 --- a/docs/.output/public/_nuxt/layout.0a22fa4a.js +++ b/docs/.output/public/_nuxt/layout.37427c44.js @@ -1 +1 @@ -import{T as p}from"./DocsAsideTree.b95e55e0.js";import{l as u,d as l,e as f,g as r}from"./entry.f3791b9c.js";import{l as d}from"./app.config.f41ab05d.js";import{f as i,j as y,h as c,i as L,u as h}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./query.c3f7607a.js";const _=i({name:"LayoutLoader",inheritAttrs:!1,props:{name:String},async setup(n,t){const o=await u[n.name]().then(a=>a.default||a);return()=>y(o,t.attrs,t.slots)}}),b=i({name:"NuxtLayout",inheritAttrs:!1,props:{name:{type:[String,Boolean,Object],default:null}},setup(n,t){const o=L("_route"),a=o===d()?l():o,e=c(()=>h(n.name)??a.meta.layout??"default");return()=>{const s=e.value&&e.value in u,m=a.meta.layoutTransition??f;return r(p,s&&m,{default:()=>r(_,s&&{key:e.value,name:e.value,...t.attrs},t.slots).default()}).default()}}});export{b as default}; +import{T as p}from"./DocsAsideTree.4387e6ea.js";import{l as u,d as l,e as f,g as r}from"./entry.c31835cb.js";import{l as d}from"./app.config.88c4fc0b.js";import{f as i,j as y,h as c,i as L,u as h}from"./runtime-core.esm-bundler.6894272a.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./Container.f1017aa2.js";import"./index.d2b0cb5e.js";import"./query.c3f7607a.js";const _=i({name:"LayoutLoader",inheritAttrs:!1,props:{name:String},async setup(n,t){const o=await u[n.name]().then(a=>a.default||a);return()=>y(o,t.attrs,t.slots)}}),b=i({name:"NuxtLayout",inheritAttrs:!1,props:{name:{type:[String,Boolean,Object],default:null}},setup(n,t){const o=L("_route"),a=o===d()?l():o,e=c(()=>h(n.name)??a.meta.layout??"default");return()=>{const s=e.value&&e.value in u,m=a.meta.layoutTransition??f;return r(p,s&&m,{default:()=>r(_,s&&{key:e.value,name:e.value,...t.attrs},t.slots).default()}).default()}}});export{b as default}; diff --git a/docs/.output/public/_nuxt/page.f33b5a13.js b/docs/.output/public/_nuxt/page.49790b66.js similarity index 72% rename from docs/.output/public/_nuxt/page.f33b5a13.js rename to docs/.output/public/_nuxt/page.49790b66.js index e552778b..ea174a5b 100644 --- a/docs/.output/public/_nuxt/page.f33b5a13.js +++ b/docs/.output/public/_nuxt/page.49790b66.js @@ -1 +1 @@ -import{b as r,a as c}from"./Container.f1017aa2.js";import{c as p}from"./useDocus.41ab1ca5.js";import{f as i,q as u,x as l,G as m,C as f,u as n,E as g,P as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./app.config.f41ab05d.js";const v={class:"page-layout"},C=i({__name:"page",setup(b){const{config:e}=p();return(_,h)=>{var t,a,o,s;const d=r;return u(),l("div",v,[m(d,{fluid:(a=(t=n(e))==null?void 0:t.main)==null?void 0:a.fluid,padded:(s=(o=n(e))==null?void 0:o.main)==null?void 0:s.padded},{default:f(()=>[g("article",null,[x(_.$slots,"default",{},void 0,!0)])]),_:3},8,["fluid","padded"])])}}});const V=c(C,[["__scopeId","data-v-415bdc86"]]);export{V as default}; +import{b as r,a as c}from"./Container.f1017aa2.js";import{c as p}from"./useDocus.b9e6b105.js";import{f as i,q as u,x as l,G as m,C as f,u as n,E as g,P as x}from"./runtime-core.esm-bundler.6894272a.js";import"./index.d2b0cb5e.js";import"./app.config.88c4fc0b.js";const v={class:"page-layout"},C=i({__name:"page",setup(b){const{config:e}=p();return(_,h)=>{var t,a,o,s;const d=r;return u(),l("div",v,[m(d,{fluid:(a=(t=n(e))==null?void 0:t.main)==null?void 0:a.fluid,padded:(s=(o=n(e))==null?void 0:o.main)==null?void 0:s.padded},{default:f(()=>[g("article",null,[x(_.$slots,"default",{},void 0,!0)])]),_:3},8,["fluid","padded"])])}}});const V=c(C,[["__scopeId","data-v-415bdc86"]]);export{V as default}; diff --git a/docs/.output/public/_nuxt/useDocus.41ab1ca5.js b/docs/.output/public/_nuxt/useDocus.b9e6b105.js similarity index 98% rename from docs/.output/public/_nuxt/useDocus.41ab1ca5.js rename to docs/.output/public/_nuxt/useDocus.b9e6b105.js index 858cd676..5a53e426 100644 --- a/docs/.output/public/_nuxt/useDocus.41ab1ca5.js +++ b/docs/.output/public/_nuxt/useDocus.b9e6b105.js @@ -1 +1 @@ -import{u as D,t as E,m as $,l as S}from"./app.config.f41ab05d.js";import{t as j,d as B,k as H,h as c}from"./runtime-core.esm-bundler.6894272a.js";function x(...t){const i=typeof t[t.length-1]=="string"?t.pop():void 0;typeof t[0]!="string"&&t.unshift(i);const[e,a]=t;if(!e||typeof e!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+e);if(a!==void 0&&typeof a!="function")throw new Error("[nuxt] [useState] init must be a function: "+a);const u="$s"+e,n=D(),l=j(n.payload.state,u);if(l.value===void 0&&a){const r=a();if(B(r))return n.payload.state[u]=r,r;l.value=r}return l}function L(){const t=D();return t._appConfig||(t._appConfig=H(E)),t._appConfig}const T=t=>{if(!t.children)return t._path;for(const i of(t==null?void 0:t.children)||[]){const e=T(i);if(e)return e}},K=(t,i)=>{for(const e of i){if(e._path===t&&!e._id)return e.children;if(e.children){const a=K(t,e.children);if(a)return a}}},R=(t,i)=>{for(const e of i){if(e._path===t)return e;if(e.children){const a=R(t,e.children);if(a)return a}}},N=(t,i,e)=>{let a;const u=(n,l)=>{for(const r of l){if(n!=null&&n.startsWith(r._path)&&r[i]&&(a=r[i]),r._path===n)return;r.children&&u(n,r.children)}};return u(t,e),a},V=()=>({navBottomLink:T,navDirFromPath:K,navPageFromPath:R,navKeyFromPath:N}),W=()=>{const t=x("dd-pages",()=>({})),i=x("dd-surrounds",()=>({})),e=x("dd-navigation"),a=x("dd-globals",()=>({}));return{pages:t,surrounds:i,navigation:e,globals:a}},q=()=>{const{navigation:t,pages:i,surrounds:e,globals:a}=W(),u=c(()=>$(S().path)),n=c(()=>i.value[u.value]),l=c(()=>e.value[u.value]),r=c(()=>{var o,f;return(f=(o=n==null?void 0:n.value)==null?void 0:o.body)==null?void 0:f.toc}),P=c(()=>{var o;return(o=n.value)==null?void 0:o.type}),s=c(()=>{var o;return(o=n.value)==null?void 0:o.excerpt}),p=c(()=>{var o;return(o=n.value)==null?void 0:o.layout}),v=c(()=>{var o;return(o=l.value)==null?void 0:o[1]}),h=c(()=>{var o;return(o=l.value)==null?void 0:o[0]});return{globals:a,navigation:t,surround:l,page:n,excerpt:s,toc:r,type:P,layout:p,next:v,prev:h}},I=()=>{const t=c(()=>{var s;return((s=L())==null?void 0:s.docus)||{}}),{navPageFromPath:i,navDirFromPath:e,navKeyFromPath:a}=V(),{navigation:u,page:n}=q(),l=S(),r=c(()=>{var f,d,m,y,_,g,C,b,A,F,w;const s=((f=t==null?void 0:t.value)==null?void 0:f.titleTemplate)||a((d=n==null?void 0:n.value)==null?void 0:d._path,"titleTemplate",u.value||[])||`%s · ${((m=t==null?void 0:t.value)==null?void 0:m.title)||"Docus"}`,p=((y=t==null?void 0:t.value)==null?void 0:y.main)||{},v=((_=t==null?void 0:t.value)==null?void 0:_.header)||{},h=((g=t==null?void 0:t.value)==null?void 0:g.aside)||{},o=((C=t==null?void 0:t.value)==null?void 0:C.footer)||{};return{...t.value,titleTemplate:s,main:{...p,...a(l.path,"main",u.value||[]),...(b=n.value)==null?void 0:b.main},header:{...v,...a(l.path,"header",u.value||[]),...(A=n.value)==null?void 0:A.header},aside:{...h,...a(l.path,"aside",u.value||[]),...(F=n.value)==null?void 0:F.aside},footer:{...o,...a(l.path,"footer",u.value||[]),...(w=n.value)==null?void 0:w.footer}}});return{tree:c(()=>{var o,f,d,m,y;let s=u.value||[];const p=l.path,v=((f=(o=r==null?void 0:r.value)==null?void 0:o.aside)==null?void 0:f.level)||0,h=((m=(d=r==null?void 0:r.value)==null?void 0:d.aside)==null?void 0:m.exclude)||[];if(v){const g=p.split("/").splice(0,1+v).join("/");s=e(g,s)||[],Array.isArray(s)||(s=[s])}if(s.length===0){if(s=i(((y=n.value)==null?void 0:y._path)||"/",u.value||[]),!s)return[];Array.isArray(s)||(s=[s])}return s.filter(_=>!h.includes(_._path))}),config:r}};export{W as a,V as b,I as c,q as d,L as e,x as u}; +import{u as D,v as E,m as $,l as S}from"./app.config.88c4fc0b.js";import{t as j,d as B,k as H,h as c}from"./runtime-core.esm-bundler.6894272a.js";function x(...t){const i=typeof t[t.length-1]=="string"?t.pop():void 0;typeof t[0]!="string"&&t.unshift(i);const[e,a]=t;if(!e||typeof e!="string")throw new TypeError("[nuxt] [useState] key must be a string: "+e);if(a!==void 0&&typeof a!="function")throw new Error("[nuxt] [useState] init must be a function: "+a);const u="$s"+e,n=D(),l=j(n.payload.state,u);if(l.value===void 0&&a){const r=a();if(B(r))return n.payload.state[u]=r,r;l.value=r}return l}function L(){const t=D();return t._appConfig||(t._appConfig=H(E)),t._appConfig}const T=t=>{if(!t.children)return t._path;for(const i of(t==null?void 0:t.children)||[]){const e=T(i);if(e)return e}},K=(t,i)=>{for(const e of i){if(e._path===t&&!e._id)return e.children;if(e.children){const a=K(t,e.children);if(a)return a}}},R=(t,i)=>{for(const e of i){if(e._path===t)return e;if(e.children){const a=R(t,e.children);if(a)return a}}},N=(t,i,e)=>{let a;const u=(n,l)=>{for(const r of l){if(n!=null&&n.startsWith(r._path)&&r[i]&&(a=r[i]),r._path===n)return;r.children&&u(n,r.children)}};return u(t,e),a},V=()=>({navBottomLink:T,navDirFromPath:K,navPageFromPath:R,navKeyFromPath:N}),W=()=>{const t=x("dd-pages",()=>({})),i=x("dd-surrounds",()=>({})),e=x("dd-navigation"),a=x("dd-globals",()=>({}));return{pages:t,surrounds:i,navigation:e,globals:a}},q=()=>{const{navigation:t,pages:i,surrounds:e,globals:a}=W(),u=c(()=>$(S().path)),n=c(()=>i.value[u.value]),l=c(()=>e.value[u.value]),r=c(()=>{var o,f;return(f=(o=n==null?void 0:n.value)==null?void 0:o.body)==null?void 0:f.toc}),P=c(()=>{var o;return(o=n.value)==null?void 0:o.type}),s=c(()=>{var o;return(o=n.value)==null?void 0:o.excerpt}),p=c(()=>{var o;return(o=n.value)==null?void 0:o.layout}),v=c(()=>{var o;return(o=l.value)==null?void 0:o[1]}),h=c(()=>{var o;return(o=l.value)==null?void 0:o[0]});return{globals:a,navigation:t,surround:l,page:n,excerpt:s,toc:r,type:P,layout:p,next:v,prev:h}},I=()=>{const t=c(()=>{var s;return((s=L())==null?void 0:s.docus)||{}}),{navPageFromPath:i,navDirFromPath:e,navKeyFromPath:a}=V(),{navigation:u,page:n}=q(),l=S(),r=c(()=>{var f,d,m,y,_,g,C,b,A,F,w;const s=((f=t==null?void 0:t.value)==null?void 0:f.titleTemplate)||a((d=n==null?void 0:n.value)==null?void 0:d._path,"titleTemplate",u.value||[])||`%s · ${((m=t==null?void 0:t.value)==null?void 0:m.title)||"Docus"}`,p=((y=t==null?void 0:t.value)==null?void 0:y.main)||{},v=((_=t==null?void 0:t.value)==null?void 0:_.header)||{},h=((g=t==null?void 0:t.value)==null?void 0:g.aside)||{},o=((C=t==null?void 0:t.value)==null?void 0:C.footer)||{};return{...t.value,titleTemplate:s,main:{...p,...a(l.path,"main",u.value||[]),...(b=n.value)==null?void 0:b.main},header:{...v,...a(l.path,"header",u.value||[]),...(A=n.value)==null?void 0:A.header},aside:{...h,...a(l.path,"aside",u.value||[]),...(F=n.value)==null?void 0:F.aside},footer:{...o,...a(l.path,"footer",u.value||[]),...(w=n.value)==null?void 0:w.footer}}});return{tree:c(()=>{var o,f,d,m,y;let s=u.value||[];const p=l.path,v=((f=(o=r==null?void 0:r.value)==null?void 0:o.aside)==null?void 0:f.level)||0,h=((m=(d=r==null?void 0:r.value)==null?void 0:d.aside)==null?void 0:m.exclude)||[];if(v){const g=p.split("/").splice(0,1+v).join("/");s=e(g,s)||[],Array.isArray(s)||(s=[s])}if(s.length===0){if(s=i(((y=n.value)==null?void 0:y._path)||"/",u.value||[]),!s)return[];Array.isArray(s)||(s=[s])}return s.filter(_=>!h.includes(_._path))}),config:r}};export{W as a,V as b,I as c,q as d,L as e,x as u}; diff --git a/docs/.output/public/_nuxt/useGithub.1972ce55.js b/docs/.output/public/_nuxt/useGithub.0ae0bb61.js similarity index 93% rename from docs/.output/public/_nuxt/useGithub.1972ce55.js rename to docs/.output/public/_nuxt/useGithub.0ae0bb61.js index e647f207..cc951008 100644 --- a/docs/.output/public/_nuxt/useGithub.1972ce55.js +++ b/docs/.output/public/_nuxt/useGithub.0ae0bb61.js @@ -1 +1 @@ -import"./app.config.f41ab05d.js";const f=()=>({fetchRepository:e=>{const t=`/api/_github/repository/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReleases:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchRelease:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchLastRelease:e=>{const t=`/api/_github/releases/${s({...e,last:!0})}.json`;return $fetch(t,{responseType:"json"})},fetchContributors:e=>{const t=`/api/_github/contributors/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchFileContributors:e=>{const t=`/api/_github/contributors/file/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReadme:e=>{const t=`/api/_github/readme/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchCommits:e=>{const t=`/api/_github/commits/${s(e)}.json`;return $fetch(t,{responseType:"json"})}});function s(o){return Object.entries(o).map(([n,r])=>`${n}_${String(r)}`).join(":")}export{f as u}; +import"./app.config.88c4fc0b.js";const f=()=>({fetchRepository:e=>{const t=`/api/_github/repository/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReleases:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchRelease:e=>{const t=`/api/_github/releases/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchLastRelease:e=>{const t=`/api/_github/releases/${s({...e,last:!0})}.json`;return $fetch(t,{responseType:"json"})},fetchContributors:e=>{const t=`/api/_github/contributors/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchFileContributors:e=>{const t=`/api/_github/contributors/file/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchReadme:e=>{const t=`/api/_github/readme/${s(e)}.json`;return $fetch(t,{responseType:"json"})},fetchCommits:e=>{const t=`/api/_github/commits/${s(e)}.json`;return $fetch(t,{responseType:"json"})}});function s(o){return Object.entries(o).map(([n,r])=>`${n}_${String(r)}`).join(":")}export{f as u}; diff --git a/docs/.output/public/_nuxt/useStudio.ef34e52b.js b/docs/.output/public/_nuxt/useStudio.321f4379.js similarity index 89% rename from docs/.output/public/_nuxt/useStudio.ef34e52b.js rename to docs/.output/public/_nuxt/useStudio.321f4379.js index feaf5726..056ac7bf 100644 --- a/docs/.output/public/_nuxt/useStudio.ef34e52b.js +++ b/docs/.output/public/_nuxt/useStudio.321f4379.js @@ -1 +1 @@ -import{u as _,f as O,g}from"./app.config.f41ab05d.js";import{d as b}from"./DocsAsideTree.b95e55e0.js";import{r as x}from"./asyncData.7c06b2d5.js";import{u as P,e as k}from"./useDocus.41ab1ca5.js";import{u as m}from"./cookie.b9cff64d.js";import J from"./ContentPreviewMode.ea418cb0.js";import{i as R,j as A,k as U,S as F,m as S}from"./entry.f3791b9c.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./Container.f1017aa2.js";/* empty css */import"./query.c3f7607a.js";const L=(u=[],v,h)=>{const f=[...v||[]],n=[...h||[]],p=JSON.parse(JSON.stringify(u));for(const i of f)if(i.oldPath)if(n.splice(n.findIndex(r=>r.path===i.oldPath),1),f.find(r=>r.path===i.oldPath))p.push({path:i.path,parsed:i.parsed});else{const r=p.find(d=>d.path===i.oldPath);r&&(r.path=i.path,i.parsed?r.parsed=i.parsed:i.pathMeta&&["_file","_path","_id","_locale"].forEach(d=>{r.parsed[d]=i.pathMeta[d]}))}else if(i.new)p.push({path:i.path,parsed:i.parsed});else{const l=p.find(r=>r.path===i.path);l&&Object.assign(l,{path:i.path,parsed:i.parsed})}for(const i of n)p.splice(p.findIndex(l=>l.path===i.path),1);const w=new Intl.Collator(void 0,{numeric:!0});return p.sort((i,l)=>w.compare(i.path,l.path)),p},D=R(()=>JSON.parse(JSON.stringify(k()))),X=()=>{const u=_(),v=O().public.studio||{},h=D();let f;const n=P("studio-client-db",()=>null),p=P("studio-preview-db-files",()=>[]);u.hook("content:storage",e=>{n.value=e});const w=async(e,t,s=!0)=>{const o=m("previewToken",{sameSite:"none",secure:!0}),c=await e.getKeys(`${o.value}:`);await Promise.all(c.map(a=>e.removeItem(a))),await e.setItem(`${o.value}$`,JSON.stringify({ignoreBuiltContents:s})),await Promise.all(t.map(a=>{var C;return e.setItem(`${o.value}:${(C=a.parsed)==null?void 0:C._id}`,JSON.stringify(a.parsed))}))},i=e=>{const t=g(u,k);A(t,e||h),e||U(t,h)},l=e=>{var s,o,c,a;const t=(a=(c=(o=(s=u==null?void 0:u.vueApp)==null?void 0:s._context)==null?void 0:o.config)==null?void 0:c.globalProperties)==null?void 0:a.$pinceauTheme;!t||!(t!=null&&t.updateTheme)||(f||(f=JSON.parse(JSON.stringify((t==null?void 0:t.theme.value)||{}))),g(u,t.updateTheme,[e||f]))},r=async e=>{if(p.value=e.files=e.files||p.value||[],!n.value)return!1;const t=L(e.files,e.additions,e.deletions),s=t.filter(a=>!a.path.startsWith(F));await w(n.value,s,(e.files||[]).length!==0);const o=t.find(a=>a.path===S.appConfig);i(o==null?void 0:o.parsed);const c=t.find(a=>a.path===S.tokensConfig);return l(c==null?void 0:c.parsed),y(),!0},d=async()=>{const e=m("previewToken",{sameSite:"none",secure:!0});await $fetch("api/projects/preview/sync",{baseURL:v.apiURL,method:"POST",params:{token:e.value}})},T=()=>{const e=m("previewToken",{sameSite:"none",secure:!0}),t=document.createElement("div");t.id="__nuxt_preview_wrapper",document.body.appendChild(t),b(J,{previewToken:e,apiURL:v.apiURL,syncPreview:r,requestPreviewSyncAPI:d}).mount(t)},I=async e=>{var o,c;const t=m("previewToken",{sameSite:"none",secure:!0});if(!e)return null;e=e.replace(/\/$/,"");let s=await((o=n.value)==null?void 0:o.getItem(`${t.value}:${e}`));return s||(s=await((c=n.value)==null?void 0:c.getItem(e))),s},$=e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});n.value&&n.value.setItem(`${t.value}:${(s=e.parsed)==null?void 0:s._id}`,JSON.stringify(e.parsed))},N=async e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});await((s=n.value)==null?void 0:s.removeItem(`${t.value}:${e}`))},y=()=>{g(u,x)};return{apiURL:v.apiURL,contentStorage:n,syncPreviewFiles:w,syncPreviewAppConfig:i,syncPreviewTokensConfig:l,requestPreviewSynchronization:d,mountPreviewUI:T,findContentWithId:I,updateContent:$,removeContentWithId:N,requestRerender:y}};export{X as useStudio}; +import{u as _,b as O,g}from"./app.config.88c4fc0b.js";import{d as b}from"./DocsAsideTree.4387e6ea.js";import{r as x}from"./asyncData.45fd3bd9.js";import{u as P,e as k}from"./useDocus.b9e6b105.js";import{u as m}from"./cookie.71eae014.js";import J from"./ContentPreviewMode.9fd06d7d.js";import{i as R,j as A,k as U,S as F,m as S}from"./entry.c31835cb.js";import"./index.d2b0cb5e.js";import"./runtime-core.esm-bundler.6894272a.js";import"./Container.f1017aa2.js";/* empty css */import"./query.c3f7607a.js";const L=(u=[],v,h)=>{const f=[...v||[]],n=[...h||[]],p=JSON.parse(JSON.stringify(u));for(const i of f)if(i.oldPath)if(n.splice(n.findIndex(r=>r.path===i.oldPath),1),f.find(r=>r.path===i.oldPath))p.push({path:i.path,parsed:i.parsed});else{const r=p.find(d=>d.path===i.oldPath);r&&(r.path=i.path,i.parsed?r.parsed=i.parsed:i.pathMeta&&["_file","_path","_id","_locale"].forEach(d=>{r.parsed[d]=i.pathMeta[d]}))}else if(i.new)p.push({path:i.path,parsed:i.parsed});else{const l=p.find(r=>r.path===i.path);l&&Object.assign(l,{path:i.path,parsed:i.parsed})}for(const i of n)p.splice(p.findIndex(l=>l.path===i.path),1);const w=new Intl.Collator(void 0,{numeric:!0});return p.sort((i,l)=>w.compare(i.path,l.path)),p},D=R(()=>JSON.parse(JSON.stringify(k()))),X=()=>{const u=_(),v=O().public.studio||{},h=D();let f;const n=P("studio-client-db",()=>null),p=P("studio-preview-db-files",()=>[]);u.hook("content:storage",e=>{n.value=e});const w=async(e,t,s=!0)=>{const o=m("previewToken",{sameSite:"none",secure:!0}),c=await e.getKeys(`${o.value}:`);await Promise.all(c.map(a=>e.removeItem(a))),await e.setItem(`${o.value}$`,JSON.stringify({ignoreBuiltContents:s})),await Promise.all(t.map(a=>{var C;return e.setItem(`${o.value}:${(C=a.parsed)==null?void 0:C._id}`,JSON.stringify(a.parsed))}))},i=e=>{const t=g(u,k);A(t,e||h),e||U(t,h)},l=e=>{var s,o,c,a;const t=(a=(c=(o=(s=u==null?void 0:u.vueApp)==null?void 0:s._context)==null?void 0:o.config)==null?void 0:c.globalProperties)==null?void 0:a.$pinceauTheme;!t||!(t!=null&&t.updateTheme)||(f||(f=JSON.parse(JSON.stringify((t==null?void 0:t.theme.value)||{}))),g(u,t.updateTheme,[e||f]))},r=async e=>{if(p.value=e.files=e.files||p.value||[],!n.value)return!1;const t=L(e.files,e.additions,e.deletions),s=t.filter(a=>!a.path.startsWith(F));await w(n.value,s,(e.files||[]).length!==0);const o=t.find(a=>a.path===S.appConfig);i(o==null?void 0:o.parsed);const c=t.find(a=>a.path===S.tokensConfig);return l(c==null?void 0:c.parsed),y(),!0},d=async()=>{const e=m("previewToken",{sameSite:"none",secure:!0});await $fetch("api/projects/preview/sync",{baseURL:v.apiURL,method:"POST",params:{token:e.value}})},T=()=>{const e=m("previewToken",{sameSite:"none",secure:!0}),t=document.createElement("div");t.id="__nuxt_preview_wrapper",document.body.appendChild(t),b(J,{previewToken:e,apiURL:v.apiURL,syncPreview:r,requestPreviewSyncAPI:d}).mount(t)},I=async e=>{var o,c;const t=m("previewToken",{sameSite:"none",secure:!0});if(!e)return null;e=e.replace(/\/$/,"");let s=await((o=n.value)==null?void 0:o.getItem(`${t.value}:${e}`));return s||(s=await((c=n.value)==null?void 0:c.getItem(e))),s},$=e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});n.value&&n.value.setItem(`${t.value}:${(s=e.parsed)==null?void 0:s._id}`,JSON.stringify(e.parsed))},N=async e=>{var s;const t=m("previewToken",{sameSite:"none",secure:!0});await((s=n.value)==null?void 0:s.removeItem(`${t.value}:${e}`))},y=()=>{g(u,x)};return{apiURL:v.apiURL,contentStorage:n,syncPreviewFiles:w,syncPreviewAppConfig:i,syncPreviewTokensConfig:l,requestPreviewSynchronization:d,mountPreviewUI:T,findContentWithId:I,updateContent:$,removeContentWithId:N,requestRerender:y}};export{X as useStudio}; diff --git a/docs/.output/public/_nuxt/welcome.4086e1c1.js b/docs/.output/public/_nuxt/welcome.2c2152cf.js similarity index 98% rename from docs/.output/public/_nuxt/welcome.4086e1c1.js rename to docs/.output/public/_nuxt/welcome.2c2152cf.js index 16934afb..bb0f1617 100644 --- a/docs/.output/public/_nuxt/welcome.4086e1c1.js +++ b/docs/.output/public/_nuxt/welcome.2c2152cf.js @@ -1 +1 @@ -import{b as i}from"./entry.f3791b9c.js";import"./ContentNavigation.cefda237.js";import{a as r}from"./Container.f1017aa2.js";import{q as o,x as C,E as t,J as s,H as e}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.b95e55e0.js";import"./app.config.f41ab05d.js";import"./index.d2b0cb5e.js";import"./cookie.b9cff64d.js";import"./useDocus.41ab1ca5.js";import"./query.c3f7607a.js";import"./asyncData.7c06b2d5.js";import"./ContentSlot.c5067a4f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.1d2292f2.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.77a5278f.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.af643d4e.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./TabsHeader.f80c17f8.js";import"./Ellipsis.50580cd1.js";import"./List.vue.98cb48bf.js";import"./NuxtImg.vue.a13022c3.js";import"./Props.876d937c.js";import"./ProseTbody.37a7db42.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.1e5cc557.js";import"./ComponentPlaygroundData.8cb96cd4.js";import"./ComponentPlaygroundProps.583c9bda.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";/* empty css */import"./ContentDoc.cbc50263.js";import"./ContentRenderer.b7732722.js";import"./ContentRendererMarkdown.e52b62de.js";import"./ContentQuery.9f33890e.js";import"./ContentList.e8a9fb87.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.7f24e431.js";import"./layout.0a22fa4a.js";import"./GithubRepository.345038c7.js";import"./useGithub.1972ce55.js";import"./GithubLink.6cd695ea.js";import"./GithubReadme.5eafd6e1.js";import"./GithubReleases.05c52708.js";import"./GithubLastRelease.a4aeb30e.js";import"./GithubRelease.d892113d.js";import"./GithubContributors.9ddddad6.js";import"./GithubFileContributors.1ad6f7bf.js";import"./GithubCommits.35c65eac.js";const l={class:"antialiased bg-white dark:bg-black text-black dark:text-white min-h-screen place-content-center flex flex-col items-center justify-center text-sm sm:text-base"},D=e('',1),d={class:"relative border-t bg-white dark:bg-black border-gray-200 dark:border-gray-900 w-full h-[70px] flex items-center"},n=e('
    ',1),p={class:"mx-auto sm:px-6 lg:px-8 px-4 w-full"},c={class:"flex flex-col items-center gap-3 sm:flex-row sm:justify-between"},E={class:"flex flex-col-reverse items-center gap-3 sm:flex-row"},h={class:"text-sm text-gray-700 dark:text-gray-300"},A=e('
    ',1),f={__name:"welcome",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},title:{type:String,default:"Welcome to Nuxt!"},readDocs:{type:String,default:"We highly recommend you take a look at the Nuxt documentation, whether you are new or have previous experience with the framework."},followTwitter:{type:String,default:"Follow the Nuxt Twitter account to get latest news about releases, new modules, tutorials and tips."},starGitHub:{type:String,default:"Nuxt is open source and the code is available on GitHub, feel free to star it, participate in discussions or dive into the source."}},setup(a){return i({title:`${a.title}`,script:[],style:[{children:`@property --gradient-angle{syntax:'';inherits:false;initial-value:180deg}@keyframes gradient-rotate{0%{--gradient-angle:0deg}100%{--gradient-angle:360deg}}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p,h2,h3{margin:0}h1,h2,h3{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}svg,img{display:block;vertical-align:middle}ul{list-style:none;margin:0;padding:0}`}]}),(g,m)=>(o(),C("div",l,[D,t("footer",d,[n,t("div",p,[t("div",c,[t("div",E,[t("span",h,"© 2022-"+s(new Date().getFullYear())+" Nuxt - MIT License",1)]),A])])])]))}},r0=r(f,[["__scopeId","data-v-a75d3b4d"]]);export{r0 as default}; +import{b as i}from"./entry.c31835cb.js";import"./ContentNavigation.2763794e.js";import{a as r}from"./Container.f1017aa2.js";import{q as o,x as C,E as t,J as s,H as e}from"./runtime-core.esm-bundler.6894272a.js";import"./DocsAsideTree.4387e6ea.js";import"./app.config.88c4fc0b.js";import"./index.d2b0cb5e.js";import"./cookie.71eae014.js";import"./useDocus.b9e6b105.js";import"./query.c3f7607a.js";import"./asyncData.45fd3bd9.js";import"./ContentSlot.811112da.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./EditOnLink.vue.23cee876.js";/* empty css */import"./ProseCodeInline.dca1a534.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseH4.282cba87.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ProseP.9fd9b629.js";/* empty css */import"./ProseTable.a85f8bca.js";import"./ProseTd.921f02a8.js";import"./ProseTh.d24c1b52.js";import"./ProseThead.40eb8658.js";import"./ProseTr.d0d94723.js";/* empty css */import"./Badge.09ee14a8.js";/* empty css *//* empty css */import"./CodeGroup.vue.e138b097.js";import"./TabsHeader.f80c17f8.js";import"./Ellipsis.50580cd1.js";import"./List.vue.9ef0bef2.js";import"./NuxtImg.vue.0972faf4.js";import"./Props.7f60a4b4.js";import"./ProseTbody.37a7db42.js";/* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css *//* empty css */import"./ComponentPlayground.vue.69892806.js";import"./ComponentPlaygroundData.b0c91250.js";import"./ComponentPlaygroundProps.659d0c56.js";import"./index.889aa611.js";import"./ComponentPlaygroundSlots.vue.d9207f3c.js";import"./ComponentPlaygroundTokens.vue.43c587d1.js";/* empty css */import"./ContentDoc.0b92d62d.js";import"./ContentRenderer.8e4912b9.js";import"./ContentRendererMarkdown.433c31c8.js";import"./ContentQuery.5ffc4b8c.js";import"./ContentList.97fc1b04.js";import"./DocumentDrivenEmpty.7ceddd7c.js";import"./Markdown.834a7772.js";import"./layout.37427c44.js";import"./GithubRepository.a7e8d415.js";import"./useGithub.0ae0bb61.js";import"./GithubLink.2353077b.js";import"./GithubReadme.cec09318.js";import"./GithubReleases.adf0483e.js";import"./GithubLastRelease.79db9f48.js";import"./GithubRelease.5c4f9c85.js";import"./GithubContributors.2435a600.js";import"./GithubFileContributors.41f6cd9d.js";import"./GithubCommits.a31447d4.js";const l={class:"antialiased bg-white dark:bg-black text-black dark:text-white min-h-screen place-content-center flex flex-col items-center justify-center text-sm sm:text-base"},D=e('',1),d={class:"relative border-t bg-white dark:bg-black border-gray-200 dark:border-gray-900 w-full h-[70px] flex items-center"},n=e('
    ',1),p={class:"mx-auto sm:px-6 lg:px-8 px-4 w-full"},c={class:"flex flex-col items-center gap-3 sm:flex-row sm:justify-between"},E={class:"flex flex-col-reverse items-center gap-3 sm:flex-row"},h={class:"text-sm text-gray-700 dark:text-gray-300"},A=e('
    ',1),f={__name:"welcome",props:{appName:{type:String,default:"Nuxt"},version:{type:String,default:""},title:{type:String,default:"Welcome to Nuxt!"},readDocs:{type:String,default:"We highly recommend you take a look at the Nuxt documentation, whether you are new or have previous experience with the framework."},followTwitter:{type:String,default:"Follow the Nuxt Twitter account to get latest news about releases, new modules, tutorials and tips."},starGitHub:{type:String,default:"Nuxt is open source and the code is available on GitHub, feel free to star it, participate in discussions or dive into the source."}},setup(a){return i({title:`${a.title}`,script:[],style:[{children:`@property --gradient-angle{syntax:'';inherits:false;initial-value:180deg}@keyframes gradient-rotate{0%{--gradient-angle:0deg}100%{--gradient-angle:360deg}}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p,h2,h3{margin:0}h1,h2,h3{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}svg,img{display:block;vertical-align:middle}ul{list-style:none;margin:0;padding:0}`}]}),(g,m)=>(o(),C("div",l,[D,t("footer",d,[n,t("div",p,[t("div",c,[t("div",E,[t("span",h,"© 2022-"+s(new Date().getFullYear())+" Nuxt - MIT License",1)]),A])])])]))}},r0=r(f,[["__scopeId","data-v-a75d3b4d"]]);export{r0 as default}; diff --git a/docs/.output/public/_payload.js b/docs/.output/public/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/api/_content/cache.1678414054441.json b/docs/.output/public/api/_content/cache.1678414054441.json deleted file mode 100644 index 9904ee39..00000000 --- a/docs/.output/public/api/_content/cache.1678414054441.json +++ /dev/null @@ -1 +0,0 @@ -{"generatedAt":1678414074899,"generateTime":1018,"contents":[{"_path":"/_partials/hello-world","_dir":"_partials","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"I am a partial","description":"With some Hello World text.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"i-am-a-partial"},"children":[{"type":"text","value":"I am a partial"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With some Hello World text."}]},{"type":"element","tag":"button-link","props":{":blank":"true","class":"mr-2","href":"https://stackblitz.com/github/nuxt/starter/tree/content"},"children":[{"type":"text","value":"Play on StackBlitz"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_partials:hello-world.md","_source":"content","_file":"_partials/hello-world.md","_extension":"md"},{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontier","description":"The file-based CMS for your Nuxt application, powered by Markdown and Vue components.","navigation":false,"layout":"page","body":{"type":"root","children":[{"type":"element","tag":"block-hero","props":{":cta":"[\"Get Started\",\"/frontier/introduction\"]",":secondary":"[\"Star on GitHub\",\"https://github.com/realdecoy/frontier\"]","snippet":"npm i -g @rdfrontier/cli"},"children":[{"type":"element","tag":"template","props":{"v-slot:announce":""},"children":[{"type":"element","tag":"hero-announcement","props":{"label":"Discover the all new ","to":"/frontier/introduction/whats-frontier"},"children":[]}]},{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier - by Realdecoy"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A full service toolset for building "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"web"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"mobile"}]},{"type":"text","value":" software products. With "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"templates"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"libraries"}]},{"type":"text","value":", Frontier delivers a designed development experience to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"10x"}]},{"type":"text","value":" your software development."}]}]},{"type":"element","tag":"template","props":{"v-slot:support":""},"children":[]}]},{"type":"element","tag":"card-grid","props":{},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Powerful Features"}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"CLI"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Standard Library"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage battle-hardened code from the standard library."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"TypeKit"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use Common type definition and data structures from the typekit."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A beautifully structured vue template and cli for authoring frontend applications."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Spectre"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Test your applications to the moon with the Spectre testing suite."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Mobile"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Build Mobile applications with ease with structures React Native foundation."}]}]}]},{"type":"element","tag":"template","props":{"v-slot:root":""},"children":[{"type":"element","tag":"ellipsis","props":{},"children":[]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},{"_path":"/frontier/_dir","_dir":"frontier","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:2.frontier:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/1.introduction/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"},{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"},{"_path":"/frontier/installation/_dir","_dir":"installation","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:2.frontier:2.installation:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/2.installation/_dir.yml","_extension":"yml"},{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"general-use"},"children":[{"type":"text","value":"General Use"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"},{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"},{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"navigation"},"children":[{"type":"text","value":"Navigation"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"},{"_path":"/frontier/cli/_dir","_dir":"cli","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:3.cli:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/3.cli/_dir.yml","_extension":"yml"},{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"},{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"},{"_path":"/frontier/plugins/_dir","_dir":"plugins","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:4.plugins:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/4.plugins/_dir.yml","_extension":"yml"},{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend"},"children":[{"type":"text","value":"Frontend"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"},{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"},{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"},{"_path":"/frontier/libraries/_dir","_dir":"libraries","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:5.libraries:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/5.libraries/_dir.yml","_extension":"yml"},{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"},{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"},{"_path":"/frontier/templates/_dir","_dir":"templates","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:6.templates:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/6.templates/_dir.yml","_extension":"yml"},{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"},{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"},{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"},{"_path":"/rdvue/_dir","_dir":"rdvue","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:3.rdvue:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue","rel":["nofollow"]},"children":[{"type":"text","value":"RDVue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services."}]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6297f2"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"vue:"}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global installation:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install vue\nfrontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6297f2"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"vue"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6297f2"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-e95677"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-67d224"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-9737ac"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information\n\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can confirm the successful installation of RDvue in three simple steps:"}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:create-project "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generated folders are named in kebab-case."}]},{"type":"element","tag":"h3","props":{"id":"step-2-install-project-dependencies"},"children":[{"type":"text","value":"Step 2: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \nnpm install\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"cd \nnpm install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-3-serve-project"},"children":[{"type":"text","value":"Step 3: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npm run serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-page"},"children":[{"type":"text","value":"Generating a Page"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:add:page \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:add:page "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/ ."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:generate component \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:generate component "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-9737ac{color:#CF222E}\n.ct-e95677{color:#0A3069}\n.ct-67d224{color:#24292F}\n.ct-6297f2{color:#953800}\n.dark .ct-6297f2{color:#FFA657}\n.dark .ct-67d224{color:#C9D1D9}\n.dark .ct-e95677{color:#A5D6FF}\n.dark .ct-9737ac{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":2,"text":"Usage"},{"id":"options","depth":2,"text":"Options"},{"id":"validate-installation","depth":2,"text":"Validate Installation","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-install-project-dependencies","depth":3,"text":"Step 2: Install project dependencies"},{"id":"step-3-serve-project","depth":3,"text":"Step 3: Serve project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-page","depth":3,"text":"Generating a Page"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/rdvue/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:3.rdvue:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"README."}]}]},{"type":"element","tag":"h2","props":{"id":"how-to-use-rdvue-cli"},"children":[{"type":"text","value":"How to use rdvue-cli"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commands will follow the basic structure:"}]},{"type":"element","tag":"code","props":{"code":"npx rdvue \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npx rdvue "}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue create-project "}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue add: \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue add: "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:plugin:\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:plugin:"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#localization"},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:upgrade \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:upgrade "}]}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"how-to-use-rdvue-cli","depth":2,"text":"How to use rdvue-cli"},{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/rdvue/scaffilding/_dir","_dir":"scaffilding","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:3.scaffilding:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/3.scaffilding/_dir.yml","_extension":"yml"},{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\nimport { SitemapStream, streamToPromise } from 'sitemap'\n\nexport default defineEventHandler(async (event) => {\n // Fetch all documents\n const docs = await serverQueryContent(event).find()\n const sitemap = new SitemapStream({\n hostname: 'https://example.com'\n })\n\n for (const doc of docs) {\n sitemap.write({\n url: doc._path,\n changefreq: 'monthly'\n })\n }\n sitemap.end()\n\n return streamToPromise(sitemap)\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f8a41"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ec713f"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\n // ...\n nitro: {\n prerender: {\n routes: ['/sitemap.xml']\n }\n }\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-9dc395"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c5e78b"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f8a41"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-ad512d"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8f7939"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-e57db5"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-8f8a41{color:#6E7781}\n.ct-c5e78b{color:#8250DF}\n.ct-9dc395{color:#CF222E}\n.ct-ec713f{color:#0550AE}\n.ct-ad512d{color:#0A3069}\n.ct-8f7939{color:#24292F}\n.ct-e57db5{color:#953800}\n.dark .ct-e57db5{color:#FFA657}\n.dark .ct-8f7939{color:#C9D1D9}\n.dark .ct-ad512d{color:#A5D6FF}\n.dark .ct-ec713f{color:#79C0FF}\n.dark .ct-9dc395{color:#FF7B72}\n.dark .ct-c5e78b{color:#D2A8FF}\n.dark .ct-8f8a41{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"},{"_path":"/rdvue/template-schema/_dir","_dir":"template-schema","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:4.template-schema:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/4.template-schema/_dir.yml","_extension":"yml"},{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\n \"version\": 1\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\n \"sourceDirectory\": \"./\",\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\n {\n \"name\": \"config\",\n \"private\": true\n },\n {\n \"name\": \"store\",\n \"private\": true\n },\n {\n \"name\": \"component\",\n \"private\": false\n },\n {\n \"name\": \"service\",\n \"private\": false\n },\n {\n \"name\": \"model\",\n \"private\": false\n },\n {\n \"name\": \"page\",\n \"private\": false\n },\n {\n \"name\": \"sm\",\n \"private\": false\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\n \"auth\",\n \"localization\",\n \"storybook\"\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\n  \"version\": 1,\n  \"sourceDirectory\": \"./\",\n  \"features\": [\n    {\n      \"name\": \"config\",\n      \"private\": true\n    },\n    {\n      \"name\": \"store\",\n      \"private\": true\n    },\n    {\n      \"name\": \"component\",\n      \"private\": false\n    },\n    {\n      \"name\": \"service\",\n      \"private\": false\n    },\n    {\n      \"name\": \"model\",\n      \"private\": false\n    },\n    {\n      \"name\": \"page\",\n      \"private\": false\n    },\n    {\n      \"name\": \"sm\",\n      \"private\": false\n    }\n  ],\n  \"plugins\": [\n    \"auth\",\n    \"localization\",\n    \"storybook\"\n  ],\n  \"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  },\n  \"groups\": [\n    {\n      \"name\": \"authentication\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"auth\"\n      ],\n      \"question\": \"Which Authentication Library would you like to install?\"\n    },\n    {\n      \"name\": \"locale\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"localization\"\n      ],\n      \"question\": \"Which Localization Library would you like to install?\"\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ],\n  \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-fa167d"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"  }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"store/auth.ts\",\n \"target\": \"store/auth.ts\"\n },\n {\n \"source\": \"services/auth.ts\",\n \"target\": \"services/auth.ts\"\n },\n {\n \"source\": \"model/user.ts\",\n \"target\": \"model/user.ts\"\n },\n {\n \"source\": \"pages/register/index.ts\",\n \"target\": \"pages/auth/register/index.ts\"\n },\n {\n \"source\": \"pages/register/register.ts\",\n \"target\": \"pages/auth/register/register.ts\"\n },\n {\n \"source\": \"pages/register/register.scss\",\n \"target\": \"pages/auth/register/register.scss\"\n },\n {\n \"source\": \"pages/register/register.vue\",\n \"target\": \"pages/auth/register/register.vue\"\n },\n {\n \"source\": \"pages/login/index.ts\",\n \"target\": \"pages/auth/login/index.ts\"\n },\n {\n \"source\": \"pages/login/login.ts\",\n \"target\": \"pages/auth/login/login.ts\"\n },\n {\n \"source\": \"pages/login/login.scss\",\n \"target\": \"pages/auth/login/login.scss\"\n },\n {\n \"source\": \"pages/login/login.vue\",\n \"target\": \"pages/auth/login/login.vue\"\n },\n {\n \"source\": \"pages/forget-password/index.ts\",\n \"target\": \"pages/auth/forget-password/index.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.ts\",\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.scss\",\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.vue\",\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"index.ts\",\n \"target\": \"index.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.scss\",\n \"target\": \"${componentNameKebab}.scss\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.ts\",\n \"target\": \"${componentNameKebab}.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.spec.js\",\n \"target\": \"${componentNameKebab}.spec.js\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.vue\",\n \"target\": \"${componentNameKebab}.vue\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n }\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-df5783"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\n path: '/buefy-sample',\n name: 'buefy-sample',\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-c0d9e8"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-c0d9e8"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-9305ca"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-3e85ea"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-668093"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-92c7b9"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\n transpileDependencies: 'vuetify',\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\n transpileDependencies: 'vuetify',\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-9305ca{color:#8250DF}\n.ct-668093{color:#953800}\n.ct-c0d9e8{color:#CF222E}\n.ct-3e85ea{color:#0A3069}\n.ct-fa167d{color:#0550AE}\n.ct-df5783{color:#116329}\n.ct-92c7b9{color:#24292F}\n.dark .ct-92c7b9{color:#C9D1D9}\n.dark .ct-df5783{color:#7EE787}\n.dark .ct-fa167d{color:#79C0FF}\n.dark .ct-3e85ea{color:#A5D6FF}\n.dark .ct-c0d9e8{color:#FF7B72}\n.dark .ct-668093{color:#FFA657}\n.dark .ct-9305ca{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"},{"_path":"/rdvue/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:5.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/5.features/_dir.yml","_extension":"yml"},{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rdvue-features"},"children":[{"type":"text","value":"Rdvue Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
    slots: {
    header: ‘The header component goes here’,
    ...
    }
    "}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"meta: {\n layout: '',\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]},{"type":"element","tag":"h2","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"mark","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"i18n language codes,"}]}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical-5"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n \"message\": \"hello i18n!!\"\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"document"}]},{"type":"text","value":" as follows:"}]},{"type":"element","tag":"code","props":{"code":"
    \n

    {{ $t(\"message\") }}

    \n
    \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"
    \n

    {{ $t(\"message\") }}

    \n
    "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"if the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":" is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"h2","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"services","depth":2,"text":"Services","children":[{"id":"technical","depth":3,"text":"Technical"}]},{"id":"pages","depth":2,"text":"Pages","children":[{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"components","depth":2,"text":"Components","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"layouts","depth":2,"text":"Layouts","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"stores","depth":2,"text":"Stores","children":[{"id":"technical-4","depth":3,"text":"Technical"}]},{"id":"localization","depth":2,"text":"Localization","children":[{"id":"technical-5","depth":3,"text":"Technical"}]},{"id":"bundle-analysis","depth":2,"text":"Bundle Analysis"}]}},"_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"},{"_path":"/rdvue/themeing/_dir","_dir":"themeing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:6.themeing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/6.themeing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Tailwind is the best practice approach for styling Components and Pages within RDVue."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"},{"_path":"/rdvue/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:7.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/7.testing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h2","props":{"id":"cypress"},"children":[{"type":"text","value":"Cypress"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on "},{"type":"element","tag":"a","props":{"href":"https://www.selenium.dev/projects/","rel":["nofollow"]},"children":[{"type":"text","value":"Selenium"}]},{"type":"text","value":", instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a "},{"type":"element","tag":"a","props":{"href":"https://docs.cypress.io/api/api/table-of-contents.html","rel":["nofollow"]},"children":[{"type":"text","value":"API"}]},{"type":"text","value":" that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Within a project generated by the CLI tool, the following folder structure will be created:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/cypress.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All the e2e tests created by Cypress will live in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"cypress/integration/specs"}]},{"type":"text","value":" directory. All these test files will have a .ts extension as they are written in TypeScript."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An example of a test file written in Cypress can be seen below:"}]},{"type":"element","tag":"code","props":{"code":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>When you are testing the connection between pages and user flows, a Cypress test should be created."}]},{"type":"element","tag":"h3","props":{"id":"running-tests"},"children":[{"type":"text","value":"Running tests"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to run your Cypress tests, execute "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"npm run test:e2e"}]},{"type":"text","value":" and the following dialog will open"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/inspection.png?raw=true"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here, you can click on the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Run all specs"}]},{"type":"text","value":" option and see all the tests execute or you can click on a specific test file and see that test execute."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests."}]},{"type":"element","tag":"h2","props":{"id":"unit-tests-with-jest"},"children":[{"type":"text","value":"Unit Tests with Jest"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you wish to automate your unit tests, "},{"type":"element","tag":"a","props":{"href":"https://jestjs.io/","rel":["nofollow"]},"children":[{"type":"text","value":"Jest"}]},{"type":"text","value":" can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each component generated by the RDVue CLI comes with a "},{"type":"element","tag":"component-name","props":{},"children":[{"type":"text","value":".spec.js file and the folder structure will look like the following:"}]}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The spec file generated will contain the following basic test by default:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest2.png?raw=true"},"children":[]},{"type":"text","value":"\n)\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘"},{"type":"element","tag":"a","props":{"href":"https://github.com/vue/test-utils","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@vue/test-utils"}]}]},{"type":"text","value":"' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cypress","depth":2,"text":"Cypress","children":[{"id":"technical","depth":3,"text":"Technical"},{"id":"running-tests","depth":3,"text":"Running tests"}]},{"id":"unit-tests-with-jest","depth":2,"text":"Unit Tests with Jest","children":[{"id":"technical-1","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"},{"_path":"/spectre/_dir","_dir":"spectre","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:bookmark-alt","_id":"content:4.Spectre:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:cube","_id":"content:4.Spectre:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"},{"_path":"/mobile/_dir","_dir":"mobile","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:5.mobile:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:5.mobile:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the installation guide below to set up the Stripe CLI.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdmobile","rel":["nofollow"]},"children":[{"type":"text","value":"Mobile"}]},{"type":"text","value":" is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the "},{"type":"element","tag":"a","props":{"href":"#installation"},"children":[{"type":"text","value":"installation guide"}]},{"type":"text","value":" below to set up the Stripe CLI."}]},{"type":"element","tag":"h2","props":{"id":"system-requirements"},"children":[{"type":"text","value":"System Requirements"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You will need "},{"type":"element","tag":"a","props":{"href":"https://docs.expo.dev/get-started/installation/#expo-cli","rel":["nofollow"]},"children":[{"type":"text","value":"React Native Expo CLI"}]},{"type":"text","value":" and it dependencies in order to run the project."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Git"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"For macOS or Linux users: Watchman"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"MacOs to run on iOS simular."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Recommended tools"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual Studio Code Editor "},{"type":"element","tag":"a","props":{"href":"https://code.visualstudio.com/download","rel":["nofollow"]},"children":[{"type":"text","value":"VS Code"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Installing the mobile plugin can be done with the following command:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install @rdfrontier/plugin-mobile\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"@rdfrontier/plugin-mobile"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To check if the everything went will you can check the current version of mobile:"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile -v | --version\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-6e9309"},"children":[{"type":"text","value":"-v"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"|"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"--version"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now we can start using the CLI if the installation was successful."}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"project-name","props":{},"children":[{"type":"text","value":" with the actual name of your project. Preferrably written in snake case (eg. "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"my-awesome-project"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project my-awesome-project\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-2-run-project"},"children":[{"type":"text","value":"Step 2: Run project"}]},{"type":"element","tag":"code","props":{"code":"cd my-awesome-project\n","language":"shell","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6e9309"},"children":[{"type":"text","value":"cd"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac."}]},{"type":"element","tag":"code","props":{"code":"npm run ios \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"ios"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac or Windows."}]},{"type":"element","tag":"code","props":{"code":"npm run android\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"android"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here you can perform multiple other actions but a good next step is to "},{"type":"element","tag":"a","props":{"href":"usage.md#add"},"children":[{"type":"text","value":"learn to add features"}]},{"type":"text","value":". See examples below:"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-screen"},"children":[{"type":"text","value":"Generating a Screen"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:screen \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen gets its own dedicated folder. The folder will be given the name of the page. This folder is located at "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/src/screens/"}]},{"type":"text","value":"."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:component \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-040057"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-d8126f"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-4ff9f6"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-54668f"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-54668f{color:#CF222E}\n.ct-6e9309{color:#0550AE}\n.ct-d8126f{color:#0A3069}\n.ct-4ff9f6{color:#24292F}\n.ct-040057{color:#953800}\n.dark .ct-040057{color:#FFA657}\n.dark .ct-4ff9f6{color:#C9D1D9}\n.dark .ct-d8126f{color:#A5D6FF}\n.dark .ct-6e9309{color:#79C0FF}\n.dark .ct-54668f{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"system-requirements","depth":2,"text":"System Requirements"},{"id":"installation","depth":2,"text":"Installation","children":[{"id":"validate-installation","depth":3,"text":"Validate installation"}]},{"id":"usage","depth":2,"text":"Usage","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-run-project","depth":3,"text":"Step 2: Run project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-screen","depth":3,"text":"Generating a Screen"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:5.mobile:1.getting-started:1.overview.md","_source":"content","_file":"5.mobile/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/mobile/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:5.mobile:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal."}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the CLI option below for a list of commands and options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile: --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1c96f9"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"mobile:"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-990783"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"cli-command"},"children":[{"type":"text","value":"CLI Command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]},{"type":"text","value":" will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile:create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1c96f9"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"mobile:create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--bundleIdenifier"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"The name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app)."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--verbose"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Show debug logs when creating the project."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile:add: \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1c96f9"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"mobile:add:"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"featur"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2ff843"},"children":[{"type":"text","value":"nam"}]},{"type":"element","tag":"span","props":{"class":"ct-ed64ce"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-042e1d"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Features"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Learn more below about each feature the CLI provides:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#components"},"children":[{"type":"text","value":"Component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#pages"},"children":[{"type":"text","value":"Page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#screens"},"children":[{"type":"text","value":"Screen"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#layouts"},"children":[{"type":"text","value":"Layout"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#services"},"children":[{"type":"text","value":"Service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"features.md#stores"},"children":[{"type":"text","value":"Store"}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-990783{color:#0550AE}\n.ct-042e1d{color:#CF222E}\n.ct-2ff843{color:#0A3069}\n.ct-ed64ce{color:#24292F}\n.ct-1c96f9{color:#953800}\n.dark .ct-1c96f9{color:#FFA657}\n.dark .ct-ed64ce{color:#C9D1D9}\n.dark .ct-2ff843{color:#A5D6FF}\n.dark .ct-042e1d{color:#FF7B72}\n.dark .ct-990783{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-command","depth":2,"text":"CLI Command","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"}]}]}},"_type":"markdown","_id":"content:5.mobile:2.cli-commands:1.usage.md","_source":"content","_file":"5.mobile/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/mobile/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:3.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/3.features/_dir.yml","_extension":"yml"},{"_path":"/mobile/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Features","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"features"},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"cli-reference.md#add"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"\n> It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document.\n"},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":". Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:component \n\n# Example\n$ frontier mobile:add:component fancy-text\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"fancy-text"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component folder consists of for two files. These file include:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".tsx"}]},{"type":"text","value":": This file holds actual functional logic and view hierarchy for the component you are trying to create.."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".styles.tsx"}]},{"type":"text","value":": This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See below for example of folder structure after creating a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text"}]},{"type":"text","value":":"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/frontier/tree/mobile-integration/packages/frontier-plugins/plugin-mobile/docs/images/component.png"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.tsx"}]}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.tsx\n\nimport { Component } from \"react\";\nimport styles from \"./fancy-text.styles\";\n\nclass FancyText extends Component {\n render() {\n return Some Fancy Text\n }\n}\n\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" { Component } "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"react\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" styles "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"./fancy-text.styles\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"class"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"FancyText"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"extends"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"Component"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-fec27d"},"children":[{"type":"text","value":"render"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"() {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-6c9842"},"children":[{"type":"text","value":"Text"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"style"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"styles.title"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":">Some Fancy Text"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is an example of the stylesheet "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.styles.tsx"}]},{"type":"text","value":"."}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.style.tsx\n\nimport { StyleSheet } from \"react-native\";\n\nexport StyleSheet.create({\n text: {\n color: \"red\",\n fontSize: 18,\n }\n });\n};\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.style.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" { StyleSheet } "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"react-native\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" StyleSheet."}]},{"type":"element","tag":"span","props":{"class":"ct-fec27d"},"children":[{"type":"text","value":"create"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" text: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" color: "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"red\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" fontSize: "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"18"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" });"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"choosing-between-class-and-function-components"},"children":[{"type":"text","value":"Choosing between Class and Function components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Class-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you want to work with components lifecycle functions - Even though react provides hooks like "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"useEffect()"}]},{"type":"text","value":", this can get quite cumbersome when the components grows."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screen"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#stores--context"},"children":[{"type":"text","value":"Context Provider"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"state"}]},{"type":"text","value":" variables - A general rule of thump is to keep state variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"props"}]},{"type":"text","value":" variables - A general rule of thump is to keep props variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you intend on making API calls from within the component."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Function-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If the component is mostly visual with little to no functional logic."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Screen, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#nagivation"},"children":[{"type":"text","value":"Navigator"}]},{"type":"text","value":" before it can be used within a mobile application."}]},{"type":"element","tag":"h3","props":{"id":"usage-1"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:screen \n\n# Example\n$ frontier mobile:add:screen login\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"login"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen is contained within it's own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/screens"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Screen:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tsx"}]},{"type":"text","value":": This is similar to a "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":" but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"styles.tsx"}]},{"type":"text","value":": All Stylesheet file are the same as the stylesheet used shown in "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:service \n\n# Example\n$ frontier mobile:add:service auth\n\n# Output File \n> src/services/auth.service.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"service-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" src/services/auth.service.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/services"}]},{"type":"text","value":" directory. The directory contains a file for each service that has been created:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[service-name]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"serivce.tsx"}]},{"type":"text","value":": The file will contain a related grouping of http functions."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage)."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"nagivation"},"children":[{"type":"text","value":"Nagivation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated context is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"\n \n\n","language":"jsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-6c9842"},"children":[{"type":"text","value":"Stack.Navigator"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"screenOptions"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"{ headerShwon: "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"initialRouteName"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"'Login'"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-6c9842"},"children":[{"type":"text","value":"Stack.Screen"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"\"Login\""}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d1e82d"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"Login"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" />"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":""}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Screen component to load for the given name."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Navigation should be centralized within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/core/navigation"}]},{"type":"text","value":" directory. This is where the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" library is configured and where the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Stack"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For more details on the available options for configuring a Stack, please refer to the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" documentation, and more specifically, the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/#api-definition","rel":["nofollow"]},"children":[{"type":"text","value":"API Definition"}]},{"type":"text","value":"."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"stores-context"},"children":[{"type":"text","value":"Stores / Context"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"h3","props":{"id":"usage-2"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:store \n\n# Example\n$ frontier mobile:add:store auth\n\n# Output File \n> src/contexts/auth.context.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"store-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4c468f"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-80f4c5"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ad15af"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-da3f8a"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-2dd33d"},"children":[{"type":"text","value":" src/contexts/auth.context.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Type"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"ContextProvider"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"Consumer"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Allows components to subscribe to changes in the global state endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"with"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when Class-based components would like to consume data from the a context"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"use"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when function-based components would like to consume data from the a contextresponse."}]}]}]}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":" - This is the provided name for the context when created using the CLI's "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"add"}]},{"type":"text","value":" command above."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"HOC (High-Order Component)"}]},{"type":"text","value":" - a higher-order component is a function that takes a component and returns a new enhanced component."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-6c9842{color:#116329}\n.ct-fec27d{color:#8250DF}\n.ct-d1e82d{color:#0550AE}\n.ct-ad15af{color:#6E7781}\n.ct-da3f8a{color:#CF222E}\n.ct-80f4c5{color:#0A3069}\n.ct-2dd33d{color:#24292F}\n.ct-4c468f{color:#953800}\n.dark .ct-4c468f{color:#FFA657}\n.dark .ct-2dd33d{color:#C9D1D9}\n.dark .ct-80f4c5{color:#A5D6FF}\n.dark .ct-da3f8a{color:#FF7B72}\n.dark .ct-ad15af{color:#8B949E}\n.dark .ct-d1e82d{color:#79C0FF}\n.dark .ct-fec27d{color:#D2A8FF}\n.dark .ct-6c9842{color:#7EE787}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"components","depth":2,"text":"Components","children":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"},{"id":"choosing-between-class-and-function-components","depth":3,"text":"Choosing between Class and Function components"}]},{"id":"screens","depth":2,"text":"Screens","children":[{"id":"usage-1","depth":3,"text":"Usage"},{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"services","depth":2,"text":"Services","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"nagivation","depth":2,"text":"Nagivation","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"stores-context","depth":2,"text":"Stores / Context","children":[{"id":"usage-2","depth":3,"text":"Usage"},{"id":"technical-4","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:5.mobile:3.features:1.features.md","_source":"content","_file":"5.mobile/3.features/1.features.md","_extension":"md"},{"_path":"/mobile/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:4.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/4.testing/_dir.yml","_extension":"yml"},{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing-wip"},"children":[{"type":"text","value":"Testing (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:4.testing:1.testing.md","_source":"content","_file":"5.mobile/4.testing/1.testing.md","_extension":"md"},{"_path":"/mobile/deployment/_dir","_dir":"deployment","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:5.deployment:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/5.deployment/_dir.yml","_extension":"yml"},{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Deployment (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"deployment-wip"},"children":[{"type":"text","value":"Deployment (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:5.deployment:1.deployment.md","_source":"content","_file":"5.mobile/5.deployment/1.deployment.md","_extension":"md"},{"_path":"/design/_dir","_dir":"design","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:6.design:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:6.design:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"},{"_path":"/iac/_dir","_dir":"iac","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:7.IAC:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:7.IAC:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"}],"navigation":[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Getting Started","_path":"/mobile/getting-started/overview"}],"icon":"heroicons-outline:flag"},{"title":"Cli Commands","_path":"/mobile/cli-commands","children":[{"title":"CLI Commands","_path":"/mobile/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Features","_path":"/mobile/features","children":[{"title":"Features","_path":"/mobile/features/features"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/mobile/testing","children":[{"title":"Testing (WIP)","_path":"/mobile/testing/testing"}],"icon":"heroicons-outline:code"},{"title":"Deployment","_path":"/mobile/deployment","children":[{"title":"Deployment (WIP)","_path":"/mobile/deployment/deployment"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}]} \ No newline at end of file diff --git a/docs/.output/public/api/_content/cache.1678726370648.json b/docs/.output/public/api/_content/cache.1678726370648.json new file mode 100644 index 00000000..c2e14952 --- /dev/null +++ b/docs/.output/public/api/_content/cache.1678726370648.json @@ -0,0 +1 @@ +{"generatedAt":1678726418127,"generateTime":36,"contents":[{"_path":"/_partials/hello-world","_dir":"_partials","_draft":false,"_partial":true,"_locale":"","_empty":false,"title":"I am a partial","description":"With some Hello World text.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"i-am-a-partial"},"children":[{"type":"text","value":"I am a partial"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"With some Hello World text."}]},{"type":"element","tag":"button-link","props":{":blank":"true","class":"mr-2","href":"https://stackblitz.com/github/nuxt/starter/tree/content"},"children":[{"type":"text","value":"Play on StackBlitz"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:_partials:hello-world.md","_source":"content","_file":"_partials/hello-world.md","_extension":"md"},{"_path":"/","_dir":"","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontier","description":"The file-based CMS for your Nuxt application, powered by Markdown and Vue components.","navigation":false,"layout":"page","body":{"type":"root","children":[{"type":"element","tag":"block-hero","props":{":cta":"[\"Get Started\",\"/frontier/introduction\"]",":secondary":"[\"Star on GitHub\",\"https://github.com/realdecoy/frontier\"]","snippet":"npm i -g @rdfrontier/cli"},"children":[{"type":"element","tag":"template","props":{"v-slot:announce":""},"children":[{"type":"element","tag":"hero-announcement","props":{"label":"Discover the all new ","to":"/frontier/introduction/whats-frontier"},"children":[]}]},{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Frontier - by Realdecoy"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A full service toolset for building "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"web"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"mobile"}]},{"type":"text","value":" software products. With "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"templates"}]},{"type":"text","value":" and "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"libraries"}]},{"type":"text","value":", Frontier delivers a designed development experience to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"10x"}]},{"type":"text","value":" your software development."}]}]},{"type":"element","tag":"template","props":{"v-slot:support":""},"children":[]}]},{"type":"element","tag":"card-grid","props":{},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Powerful Features"}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"CLI"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Standard Library"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Leverage battle-hardened code from the standard library."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"TypeKit"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Use Common type definition and data structures from the typekit."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A beautifully structured vue template and cli for authoring frontend applications."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Spectre"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Test your applications to the moon with the Spectre testing suite."}]}]}]},{"type":"element","tag":"card","props":{":icon":"null"},"children":[{"type":"element","tag":"template","props":{"v-slot:title":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Mobile"}]}]},{"type":"element","tag":"template","props":{"v-slot:description":""},"children":[{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Build Mobile applications with ease with structures React Native foundation."}]}]}]},{"type":"element","tag":"template","props":{"v-slot:root":""},"children":[{"type":"element","tag":"ellipsis","props":{},"children":[]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:1.index.md","_source":"content","_file":"1.index.md","_extension":"md"},{"_path":"/frontier/_dir","_dir":"frontier","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/_dir","_dir":"introduction","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:2.frontier:1.introduction:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/1.introduction/_dir.yml","_extension":"yml"},{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"},{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"},{"_path":"/frontier/installation/_dir","_dir":"installation","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:2.frontier:2.installation:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/2.installation/_dir.yml","_extension":"yml"},{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"general-use"},"children":[{"type":"text","value":"General Use"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"},{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"},{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"navigation"},"children":[{"type":"text","value":"Navigation"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"},{"_path":"/frontier/cli/_dir","_dir":"cli","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:3.cli:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/3.cli/_dir.yml","_extension":"yml"},{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"},{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"},{"_path":"/frontier/plugins/_dir","_dir":"plugins","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:2.frontier:4.plugins:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/4.plugins/_dir.yml","_extension":"yml"},{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend"},"children":[{"type":"text","value":"Frontend"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"},{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"},{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"},{"_path":"/frontier/libraries/_dir","_dir":"libraries","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:5.libraries:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/5.libraries/_dir.yml","_extension":"yml"},{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"},{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"},{"_path":"/frontier/templates/_dir","_dir":"templates","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:2.frontier:6.templates:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"2.frontier/6.templates/_dir.yml","_extension":"yml"},{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"},{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"},{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"},{"_path":"/rdvue/_dir","_dir":"rdvue","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:pencil-alt","_id":"content:3.rdvue:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue","rel":["nofollow"]},"children":[{"type":"text","value":"RDVue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services."}]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e3caa"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"vue:"}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global installation:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install vue\nfrontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e3caa"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"vue"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e3caa"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information\n\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can confirm the successful installation of RDvue in three simple steps:"}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:create-project "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generated folders are named in kebab-case."}]},{"type":"element","tag":"h3","props":{"id":"step-2-install-project-dependencies"},"children":[{"type":"text","value":"Step 2: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \nnpm install\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"cd \nnpm install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-3-serve-project"},"children":[{"type":"text","value":"Step 3: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npm run serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-page"},"children":[{"type":"text","value":"Generating a Page"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:add:page \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:add:page "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/ ."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:generate component \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:generate component "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-5a13f8{color:#CF222E}\n.ct-2741d4{color:#0A3069}\n.ct-5f408a{color:#24292F}\n.ct-1e3caa{color:#953800}\n.dark .ct-1e3caa{color:#FFA657}\n.dark .ct-5f408a{color:#C9D1D9}\n.dark .ct-2741d4{color:#A5D6FF}\n.dark .ct-5a13f8{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":2,"text":"Usage"},{"id":"options","depth":2,"text":"Options"},{"id":"validate-installation","depth":2,"text":"Validate Installation","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-install-project-dependencies","depth":3,"text":"Step 2: Install project dependencies"},{"id":"step-3-serve-project","depth":3,"text":"Step 3: Serve project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-page","depth":3,"text":"Generating a Page"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/rdvue/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:3.rdvue:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"README."}]}]},{"type":"element","tag":"h2","props":{"id":"how-to-use-rdvue-cli"},"children":[{"type":"text","value":"How to use rdvue-cli"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commands will follow the basic structure:"}]},{"type":"element","tag":"code","props":{"code":"npx rdvue \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npx rdvue "}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue create-project "}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue add: \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue add: "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:plugin:\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:plugin:"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#localization"},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:upgrade \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:upgrade "}]}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"how-to-use-rdvue-cli","depth":2,"text":"How to use rdvue-cli"},{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/rdvue/scaffilding/_dir","_dir":"scaffilding","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:book-open","_id":"content:3.rdvue:3.scaffilding:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/3.scaffilding/_dir.yml","_extension":"yml"},{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\nimport { SitemapStream, streamToPromise } from 'sitemap'\n\nexport default defineEventHandler(async (event) => {\n // Fetch all documents\n const docs = await serverQueryContent(event).find()\n const sitemap = new SitemapStream({\n hostname: 'https://example.com'\n })\n\n for (const doc of docs) {\n sitemap.write({\n url: doc._path,\n changefreq: 'monthly'\n })\n }\n sitemap.end()\n\n return streamToPromise(sitemap)\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bbd220"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\n // ...\n nitro: {\n prerender: {\n routes: ['/sitemap.xml']\n }\n }\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bbd220"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-bbd220{color:#6E7781}\n.ct-3f742c{color:#8250DF}\n.ct-f26bde{color:#CF222E}\n.ct-b32566{color:#0550AE}\n.ct-727d1b{color:#0A3069}\n.ct-a8d0d7{color:#24292F}\n.ct-5daa89{color:#953800}\n.dark .ct-5daa89{color:#FFA657}\n.dark .ct-a8d0d7{color:#C9D1D9}\n.dark .ct-727d1b{color:#A5D6FF}\n.dark .ct-b32566{color:#79C0FF}\n.dark .ct-f26bde{color:#FF7B72}\n.dark .ct-3f742c{color:#D2A8FF}\n.dark .ct-bbd220{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"},{"_path":"/rdvue/template-schema/_dir","_dir":"template-schema","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:4.template-schema:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/4.template-schema/_dir.yml","_extension":"yml"},{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\n \"version\": 1\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\n \"sourceDirectory\": \"./\",\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\n {\n \"name\": \"config\",\n \"private\": true\n },\n {\n \"name\": \"store\",\n \"private\": true\n },\n {\n \"name\": \"component\",\n \"private\": false\n },\n {\n \"name\": \"service\",\n \"private\": false\n },\n {\n \"name\": \"model\",\n \"private\": false\n },\n {\n \"name\": \"page\",\n \"private\": false\n },\n {\n \"name\": \"sm\",\n \"private\": false\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\n \"auth\",\n \"localization\",\n \"storybook\"\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\n  \"version\": 1,\n  \"sourceDirectory\": \"./\",\n  \"features\": [\n    {\n      \"name\": \"config\",\n      \"private\": true\n    },\n    {\n      \"name\": \"store\",\n      \"private\": true\n    },\n    {\n      \"name\": \"component\",\n      \"private\": false\n    },\n    {\n      \"name\": \"service\",\n      \"private\": false\n    },\n    {\n      \"name\": \"model\",\n      \"private\": false\n    },\n    {\n      \"name\": \"page\",\n      \"private\": false\n    },\n    {\n      \"name\": \"sm\",\n      \"private\": false\n    }\n  ],\n  \"plugins\": [\n    \"auth\",\n    \"localization\",\n    \"storybook\"\n  ],\n  \"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  },\n  \"groups\": [\n    {\n      \"name\": \"authentication\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"auth\"\n      ],\n      \"question\": \"Which Authentication Library would you like to install?\"\n    },\n    {\n      \"name\": \"locale\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"localization\"\n      ],\n      \"question\": \"Which Localization Library would you like to install?\"\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ],\n  \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"store/auth.ts\",\n \"target\": \"store/auth.ts\"\n },\n {\n \"source\": \"services/auth.ts\",\n \"target\": \"services/auth.ts\"\n },\n {\n \"source\": \"model/user.ts\",\n \"target\": \"model/user.ts\"\n },\n {\n \"source\": \"pages/register/index.ts\",\n \"target\": \"pages/auth/register/index.ts\"\n },\n {\n \"source\": \"pages/register/register.ts\",\n \"target\": \"pages/auth/register/register.ts\"\n },\n {\n \"source\": \"pages/register/register.scss\",\n \"target\": \"pages/auth/register/register.scss\"\n },\n {\n \"source\": \"pages/register/register.vue\",\n \"target\": \"pages/auth/register/register.vue\"\n },\n {\n \"source\": \"pages/login/index.ts\",\n \"target\": \"pages/auth/login/index.ts\"\n },\n {\n \"source\": \"pages/login/login.ts\",\n \"target\": \"pages/auth/login/login.ts\"\n },\n {\n \"source\": \"pages/login/login.scss\",\n \"target\": \"pages/auth/login/login.scss\"\n },\n {\n \"source\": \"pages/login/login.vue\",\n \"target\": \"pages/auth/login/login.vue\"\n },\n {\n \"source\": \"pages/forget-password/index.ts\",\n \"target\": \"pages/auth/forget-password/index.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.ts\",\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.scss\",\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.vue\",\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"index.ts\",\n \"target\": \"index.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.scss\",\n \"target\": \"${componentNameKebab}.scss\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.ts\",\n \"target\": \"${componentNameKebab}.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.spec.js\",\n \"target\": \"${componentNameKebab}.spec.js\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.vue\",\n \"target\": \"${componentNameKebab}.vue\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n }\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\n path: '/buefy-sample',\n name: 'buefy-sample',\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5afa47"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5afa47"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-cbbb72"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\n transpileDependencies: 'vuetify',\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\n transpileDependencies: 'vuetify',\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-cbbb72{color:#8250DF}\n.ct-ea3ebc{color:#953800}\n.ct-5afa47{color:#CF222E}\n.ct-a47098{color:#0A3069}\n.ct-5e3ff4{color:#0550AE}\n.ct-865b38{color:#116329}\n.ct-d87ea3{color:#24292F}\n.dark .ct-d87ea3{color:#C9D1D9}\n.dark .ct-865b38{color:#7EE787}\n.dark .ct-5e3ff4{color:#79C0FF}\n.dark .ct-a47098{color:#A5D6FF}\n.dark .ct-5afa47{color:#FF7B72}\n.dark .ct-ea3ebc{color:#FFA657}\n.dark .ct-cbbb72{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"},{"_path":"/rdvue/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:5.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/5.features/_dir.yml","_extension":"yml"},{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rdvue-features"},"children":[{"type":"text","value":"Rdvue Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
    slots: {
    header: ‘The header component goes here’,
    ...
    }
    "}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"meta: {\n layout: '',\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]},{"type":"element","tag":"h2","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"mark","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"i18n language codes,"}]}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical-5"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n \"message\": \"hello i18n!!\"\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"document"}]},{"type":"text","value":" as follows:"}]},{"type":"element","tag":"code","props":{"code":"
    \n

    {{ $t(\"message\") }}

    \n
    \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"
    \n

    {{ $t(\"message\") }}

    \n
    "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"if the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":" is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"h2","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"services","depth":2,"text":"Services","children":[{"id":"technical","depth":3,"text":"Technical"}]},{"id":"pages","depth":2,"text":"Pages","children":[{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"components","depth":2,"text":"Components","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"layouts","depth":2,"text":"Layouts","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"stores","depth":2,"text":"Stores","children":[{"id":"technical-4","depth":3,"text":"Technical"}]},{"id":"localization","depth":2,"text":"Localization","children":[{"id":"technical-5","depth":3,"text":"Technical"}]},{"id":"bundle-analysis","depth":2,"text":"Bundle Analysis"}]}},"_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"},{"_path":"/rdvue/themeing/_dir","_dir":"themeing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:6.themeing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/6.themeing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Tailwind is the best practice approach for styling Components and Pages within RDVue."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"},{"_path":"/rdvue/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:3.rdvue:7.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"3.rdvue/7.testing/_dir.yml","_extension":"yml"},{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h2","props":{"id":"cypress"},"children":[{"type":"text","value":"Cypress"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on "},{"type":"element","tag":"a","props":{"href":"https://www.selenium.dev/projects/","rel":["nofollow"]},"children":[{"type":"text","value":"Selenium"}]},{"type":"text","value":", instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a "},{"type":"element","tag":"a","props":{"href":"https://docs.cypress.io/api/api/table-of-contents.html","rel":["nofollow"]},"children":[{"type":"text","value":"API"}]},{"type":"text","value":" that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Within a project generated by the CLI tool, the following folder structure will be created:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/cypress.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All the e2e tests created by Cypress will live in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"cypress/integration/specs"}]},{"type":"text","value":" directory. All these test files will have a .ts extension as they are written in TypeScript."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An example of a test file written in Cypress can be seen below:"}]},{"type":"element","tag":"code","props":{"code":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>When you are testing the connection between pages and user flows, a Cypress test should be created."}]},{"type":"element","tag":"h3","props":{"id":"running-tests"},"children":[{"type":"text","value":"Running tests"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to run your Cypress tests, execute "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"npm run test:e2e"}]},{"type":"text","value":" and the following dialog will open"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/inspection.png?raw=true"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here, you can click on the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Run all specs"}]},{"type":"text","value":" option and see all the tests execute or you can click on a specific test file and see that test execute."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests."}]},{"type":"element","tag":"h2","props":{"id":"unit-tests-with-jest"},"children":[{"type":"text","value":"Unit Tests with Jest"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you wish to automate your unit tests, "},{"type":"element","tag":"a","props":{"href":"https://jestjs.io/","rel":["nofollow"]},"children":[{"type":"text","value":"Jest"}]},{"type":"text","value":" can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each component generated by the RDVue CLI comes with a "},{"type":"element","tag":"component-name","props":{},"children":[{"type":"text","value":".spec.js file and the folder structure will look like the following:"}]}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The spec file generated will contain the following basic test by default:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest2.png?raw=true"},"children":[]},{"type":"text","value":"\n)\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘"},{"type":"element","tag":"a","props":{"href":"https://github.com/vue/test-utils","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@vue/test-utils"}]}]},{"type":"text","value":"' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cypress","depth":2,"text":"Cypress","children":[{"id":"technical","depth":3,"text":"Technical"},{"id":"running-tests","depth":3,"text":"Running tests"}]},{"id":"unit-tests-with-jest","depth":2,"text":"Unit Tests with Jest","children":[{"id":"technical-1","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"},{"_path":"/spectre/_dir","_dir":"spectre","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:bookmark-alt","_id":"content:4.Spectre:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:cube","_id":"content:4.Spectre:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"4.Spectre/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"},{"_path":"/mobile/_dir","_dir":"mobile","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:5.mobile:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:5.mobile:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/mobile/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the installation guide below to set up the Stripe CLI.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/frontier/tree/main/packages/frontier-plugins/plugin-mobile","rel":["nofollow"]},"children":[{"type":"text","value":"Mobile"}]},{"type":"text","value":" is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the "},{"type":"element","tag":"a","props":{"href":"#installation"},"children":[{"type":"text","value":"installation guide"}]},{"type":"text","value":" below to set up the Stripe CLI."}]},{"type":"element","tag":"h2","props":{"id":"system-requirements"},"children":[{"type":"text","value":"System Requirements"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You will need "},{"type":"element","tag":"a","props":{"href":"https://docs.expo.dev/get-started/installation/#expo-cli","rel":["nofollow"]},"children":[{"type":"text","value":"React Native Expo CLI"}]},{"type":"text","value":" and it dependencies in order to run the project."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Git"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"For macOS or Linux users: Watchman"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"MacOs to run on iOS simular."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Recommended tools"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual Studio Code Editor "},{"type":"element","tag":"a","props":{"href":"https://code.visualstudio.com/download","rel":["nofollow"]},"children":[{"type":"text","value":"VS Code"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Installing the mobile plugin can be done with the following command:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install @rdfrontier/plugin-mobile\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"@rdfrontier/plugin-mobile"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To check if the everything went will you can check the current version of mobile:"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile -v | --version\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-de0d85"},"children":[{"type":"text","value":"-v"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"|"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"--version"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now we can start using the CLI if the installation was successful."}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"project-name","props":{},"children":[{"type":"text","value":" with the actual name of your project. Preferrably written in snake case (eg. "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"my-awesome-project"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project my-awesome-project\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-2-run-project"},"children":[{"type":"text","value":"Step 2: Run project"}]},{"type":"element","tag":"code","props":{"code":"cd my-awesome-project\n","language":"shell","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-de0d85"},"children":[{"type":"text","value":"cd"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac."}]},{"type":"element","tag":"code","props":{"code":"npm run ios \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"ios"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac or Windows."}]},{"type":"element","tag":"code","props":{"code":"npm run android\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"android"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here you can perform multiple other actions but a good next step is to "},{"type":"element","tag":"a","props":{"href":"usage.md#add"},"children":[{"type":"text","value":"learn to add features"}]},{"type":"text","value":". See examples below:"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-screen"},"children":[{"type":"text","value":"Generating a Screen"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:screen \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen gets its own dedicated folder. The folder will be given the name of the page. This folder is located at "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/src/screens/"}]},{"type":"text","value":"."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:component \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-bb61e0{color:#CF222E}\n.ct-de0d85{color:#0550AE}\n.ct-32f434{color:#0A3069}\n.ct-68ea31{color:#24292F}\n.ct-6918b6{color:#953800}\n.dark .ct-6918b6{color:#FFA657}\n.dark .ct-68ea31{color:#C9D1D9}\n.dark .ct-32f434{color:#A5D6FF}\n.dark .ct-de0d85{color:#79C0FF}\n.dark .ct-bb61e0{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"system-requirements","depth":2,"text":"System Requirements"},{"id":"installation","depth":2,"text":"Installation","children":[{"id":"validate-installation","depth":3,"text":"Validate installation"}]},{"id":"usage","depth":2,"text":"Usage","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-run-project","depth":3,"text":"Step 2: Run project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-screen","depth":3,"text":"Generating a Screen"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:5.mobile:1.getting-started:1.overview.md","_source":"content","_file":"5.mobile/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/mobile/cli-commands/_dir","_dir":"cli-commands","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:document-text","_id":"content:5.mobile:2.cli-commands:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/2.cli-commands/_dir.yml","_extension":"yml"},{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal."}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the CLI option below for a list of commands and options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile: --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8ad58d"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"mobile:"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ebca85"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"cli-command"},"children":[{"type":"text","value":"CLI Command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]},{"type":"text","value":" will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile:create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8ad58d"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"mobile:create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--bundleIdenifier"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"The name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app)."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--verbose"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Show debug logs when creating the project."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add: \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8ad58d"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"mobile:add:"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"featur"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"nam"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Features"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Learn more below about each feature the CLI provides:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/components"},"children":[{"type":"text","value":"Component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/pages"},"children":[{"type":"text","value":"Page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/screens"},"children":[{"type":"text","value":"Screen"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/services"},"children":[{"type":"text","value":"Service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/stores"},"children":[{"type":"text","value":"Store"}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-ebca85{color:#0550AE}\n.ct-2d4473{color:#CF222E}\n.ct-52056c{color:#0A3069}\n.ct-b33b22{color:#24292F}\n.ct-8ad58d{color:#953800}\n.dark .ct-8ad58d{color:#FFA657}\n.dark .ct-b33b22{color:#C9D1D9}\n.dark .ct-52056c{color:#A5D6FF}\n.dark .ct-2d4473{color:#FF7B72}\n.dark .ct-ebca85{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-command","depth":2,"text":"CLI Command","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"}]}]}},"_type":"markdown","_id":"content:5.mobile:2.cli-commands:1.usage.md","_source":"content","_file":"5.mobile/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/mobile/features/_dir","_dir":"features","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:3.features:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/3.features/_dir.yml","_extension":"yml"},{"_path":"/mobile/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Features","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"features"},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"cli-reference.md#add"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"\n> It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document.\n"},{"type":"element","tag":"hr","props":{},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:3.features:1.features.md","_source":"content","_file":"5.mobile/3.features/1.features.md","_extension":"md"},{"_path":"/mobile/features/screens","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Screens","description":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are not to be imported by other Screen, Components or Layouts.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Screen, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#nagivation"},"children":[{"type":"text","value":"Navigator"}]},{"type":"text","value":" before it can be used within a mobile application."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:screen \n\n# Example\n$ frontier mobile:add:screen login\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-35462e"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-338533"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-338533"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e12de"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-35462e"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"login"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen is contained within it's own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/screens"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Screen:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tsx"}]},{"type":"text","value":": This is similar to a "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":" but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"styles.tsx"}]},{"type":"text","value":": All Stylesheet file are the same as the stylesheet used shown in "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-1e12de{color:#6E7781}\n.ct-338533{color:#CF222E}\n.ct-75c7dd{color:#0A3069}\n.ct-d80896{color:#24292F}\n.ct-35462e{color:#953800}\n.dark .ct-35462e{color:#FFA657}\n.dark .ct-d80896{color:#C9D1D9}\n.dark .ct-75c7dd{color:#A5D6FF}\n.dark .ct-338533{color:#FF7B72}\n.dark .ct-1e12de{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:1.screens.md","_source":"content","_file":"5.mobile/3.features/1.screens.md","_extension":"md"},{"_path":"/mobile/features/components","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Components","description":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by Screens and Layout. Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":". Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:component \n\n# Example\n$ frontier mobile:add:component fancy-text\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3b36f4"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9d34aa"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3b36f4"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"fancy-text"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component folder consists of for two files. These file include:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".tsx"}]},{"type":"text","value":": This file holds actual functional logic and view hierarchy for the component you are trying to create.."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".styles.tsx"}]},{"type":"text","value":": This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See below for example of folder structure after creating a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text"}]},{"type":"text","value":":"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/frontier/tree/mobile-integration/packages/frontier-plugins/plugin-mobile/docs/images/component.png"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.tsx"}]}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.tsx\n\nimport { Component } from \"react\";\nimport styles from \"./fancy-text.styles\";\n\nclass FancyText extends Component {\n render() {\n return Some Fancy Text\n }\n}\n\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9d34aa"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" { Component } "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"react\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" styles "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"./fancy-text.styles\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"class"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3b36f4"},"children":[{"type":"text","value":"FancyText"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"extends"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a75813"},"children":[{"type":"text","value":"Component"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5d3d75"},"children":[{"type":"text","value":"render"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"() {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-f20ccc"},"children":[{"type":"text","value":"Text"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a75813"},"children":[{"type":"text","value":"style"}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"styles.title"}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":">Some Fancy Text"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is an example of the stylesheet "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.styles.tsx"}]},{"type":"text","value":"."}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.style.tsx\n\nimport { StyleSheet } from \"react-native\";\n\nexport StyleSheet.create({\n text: {\n color: \"red\",\n fontSize: 18,\n }\n });\n};\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9d34aa"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.style.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" { StyleSheet } "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"react-native\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" StyleSheet."}]},{"type":"element","tag":"span","props":{"class":"ct-5d3d75"},"children":[{"type":"text","value":"create"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" text: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" color: "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"red\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" fontSize: "}]},{"type":"element","tag":"span","props":{"class":"ct-a75813"},"children":[{"type":"text","value":"18"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" });"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"choosing-between-class-and-function-components"},"children":[{"type":"text","value":"Choosing between Class and Function components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Class-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you want to work with components lifecycle functions - Even though react provides hooks like "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"useEffect()"}]},{"type":"text","value":", this can get quite cumbersome when the components grows."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screen"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#stores--context"},"children":[{"type":"text","value":"Context Provider"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"state"}]},{"type":"text","value":" variables - A general rule of thump is to keep state variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"props"}]},{"type":"text","value":" variables - A general rule of thump is to keep props variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you intend on making API calls from within the component."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Function-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If the component is mostly visual with little to no functional logic."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-f20ccc{color:#116329}\n.ct-5d3d75{color:#8250DF}\n.ct-a75813{color:#0550AE}\n.ct-9d34aa{color:#6E7781}\n.ct-d92cb0{color:#CF222E}\n.ct-571dc3{color:#0A3069}\n.ct-fbcdfc{color:#24292F}\n.ct-3b36f4{color:#953800}\n.dark .ct-3b36f4{color:#FFA657}\n.dark .ct-fbcdfc{color:#C9D1D9}\n.dark .ct-571dc3{color:#A5D6FF}\n.dark .ct-d92cb0{color:#FF7B72}\n.dark .ct-9d34aa{color:#8B949E}\n.dark .ct-a75813{color:#79C0FF}\n.dark .ct-5d3d75{color:#D2A8FF}\n.dark .ct-f20ccc{color:#7EE787}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"},{"id":"choosing-between-class-and-function-components","depth":3,"text":"Choosing between Class and Function components"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:2.components.md","_source":"content","_file":"5.mobile/3.features/2.components.md","_extension":"md"},{"_path":"/mobile/features/services","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Services","description":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:service \n\n# Example\n$ frontier mobile:add:service auth\n\n# Output File \n> src/services/auth.service.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-83b4ee"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-46e465"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"service-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-46e465"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f45b43"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-83b4ee"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f45b43"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-46e465"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" src/services/auth.service.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/services"}]},{"type":"text","value":" directory. The directory contains a file for each service that has been created:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[service-name]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"serivce.tsx"}]},{"type":"text","value":": The file will contain a related grouping of http functions."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage)."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-f45b43{color:#6E7781}\n.ct-46e465{color:#CF222E}\n.ct-0f99ca{color:#0A3069}\n.ct-93bcfe{color:#24292F}\n.ct-83b4ee{color:#953800}\n.dark .ct-83b4ee{color:#FFA657}\n.dark .ct-93bcfe{color:#C9D1D9}\n.dark .ct-0f99ca{color:#A5D6FF}\n.dark .ct-46e465{color:#FF7B72}\n.dark .ct-f45b43{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:3.services.md","_source":"content","_file":"5.mobile/3.features/3.services.md","_extension":"md"},{"_path":"/mobile/features/navigation","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Nagivation","description":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"nagivation"},"children":[{"type":"text","value":"Nagivation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated context is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"\n \n\n","language":"jsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-16fd3b"},"children":[{"type":"text","value":"Stack.Navigator"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"screenOptions"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"{ headerShwon: "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"initialRouteName"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-b4cb83"},"children":[{"type":"text","value":"'Login'"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-16fd3b"},"children":[{"type":"text","value":"Stack.Screen"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-b4cb83"},"children":[{"type":"text","value":"\"Login\""}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"Login"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" />"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":""}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Screen component to load for the given name."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Navigation should be centralized within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/core/navigation"}]},{"type":"text","value":" directory. This is where the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" library is configured and where the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Stack"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For more details on the available options for configuring a Stack, please refer to the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" documentation, and more specifically, the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/#api-definition","rel":["nofollow"]},"children":[{"type":"text","value":"API Definition"}]},{"type":"text","value":"."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-b4cb83{color:#0A3069}\n.ct-c96c10{color:#CF222E}\n.ct-96e517{color:#0550AE}\n.ct-16fd3b{color:#116329}\n.ct-4702eb{color:#24292F}\n.dark .ct-4702eb{color:#C9D1D9}\n.dark .ct-16fd3b{color:#7EE787}\n.dark .ct-96e517{color:#79C0FF}\n.dark .ct-c96c10{color:#FF7B72}\n.dark .ct-b4cb83{color:#A5D6FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"},{"id":"routing","depth":2,"text":"Routing"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:4.navigation.md","_source":"content","_file":"5.mobile/3.features/4.navigation.md","_extension":"md"},{"_path":"/mobile/features/stores","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Stores / Context","description":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stores-context"},"children":[{"type":"text","value":"Stores / Context"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:store \n\n# Example\n$ frontier mobile:add:store auth\n\n# Output File \n> src/contexts/auth.context.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6dff24"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d32e1"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"store-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d32e1"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-406d56"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6dff24"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-406d56"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2d32e1"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" src/contexts/auth.context.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Type"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"ContextProvider"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"Consumer"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Allows components to subscribe to changes in the global state endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"with"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when Class-based components would like to consume data from the a context"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"use"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when function-based components would like to consume data from the a contextresponse."}]}]}]}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":" - This is the provided name for the context when created using the CLI's "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"add"}]},{"type":"text","value":" command above."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"HOC (High-Order Component)"}]},{"type":"text","value":" - a higher-order component is a function that takes a component and returns a new enhanced component."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-406d56{color:#6E7781}\n.ct-2d32e1{color:#CF222E}\n.ct-7bac3f{color:#0A3069}\n.ct-9639d0{color:#24292F}\n.ct-6dff24{color:#953800}\n.dark .ct-6dff24{color:#FFA657}\n.dark .ct-9639d0{color:#C9D1D9}\n.dark .ct-7bac3f{color:#A5D6FF}\n.dark .ct-2d32e1{color:#FF7B72}\n.dark .ct-406d56{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:5.stores.md","_source":"content","_file":"5.mobile/3.features/5.stores.md","_extension":"md"},{"_path":"/mobile/testing/_dir","_dir":"testing","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:4.testing:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/4.testing/_dir.yml","_extension":"yml"},{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing-wip"},"children":[{"type":"text","value":"Testing (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:4.testing:1.testing.md","_source":"content","_file":"5.mobile/4.testing/1.testing.md","_extension":"md"},{"_path":"/mobile/deployment/_dir","_dir":"deployment","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:code","_id":"content:5.mobile:5.deployment:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"5.mobile/5.deployment/_dir.yml","_extension":"yml"},{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Deployment (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"deployment-wip"},"children":[{"type":"text","value":"Deployment (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:5.deployment:1.deployment.md","_source":"content","_file":"5.mobile/5.deployment/1.deployment.md","_extension":"md"},{"_path":"/design/_dir","_dir":"design","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:6.design:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:6.design:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"6.design/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"},{"_path":"/iac/_dir","_dir":"iac","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:play","_id":"content:7.IAC:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/_dir","_dir":"getting-started","_draft":false,"_partial":true,"_locale":"","icon":"heroicons-outline:flag","_id":"content:7.IAC:1.getting-started:_dir.yml","_type":"yaml","title":"Dir","_source":"content","_file":"7.IAC/1.getting-started/_dir.yml","_extension":"yml"},{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"}],"navigation":[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Getting Started","_path":"/mobile/getting-started/overview"}],"icon":"heroicons-outline:flag"},{"title":"Cli Commands","_path":"/mobile/cli-commands","children":[{"title":"CLI Commands","_path":"/mobile/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Features","_path":"/mobile/features","children":[{"title":"Features","_path":"/mobile/features/features"},{"title":"Screens","_path":"/mobile/features/screens"},{"title":"Components","_path":"/mobile/features/components"},{"title":"Services","_path":"/mobile/features/services"},{"title":"Nagivation","_path":"/mobile/features/navigation"},{"title":"Stores / Context","_path":"/mobile/features/stores"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/mobile/testing","children":[{"title":"Testing (WIP)","_path":"/mobile/testing/testing"}],"icon":"heroicons-outline:code"},{"title":"Deployment","_path":"/mobile/deployment","children":[{"title":"Deployment (WIP)","_path":"/mobile/deployment/deployment"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}]} \ No newline at end of file diff --git a/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678414054441.json b/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678726370648.json similarity index 75% rename from docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678414054441.json rename to docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678726370648.json index 3d8c7676..7aad7284 100644 --- a/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678414054441.json +++ b/docs/.output/public/api/_content/navigation/u7BbTyuhiE.1678726370648.json @@ -1 +1 @@ -[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Getting Started","_path":"/mobile/getting-started/overview"}],"icon":"heroicons-outline:flag"},{"title":"Cli Commands","_path":"/mobile/cli-commands","children":[{"title":"CLI Commands","_path":"/mobile/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Features","_path":"/mobile/features","children":[{"title":"Features","_path":"/mobile/features/features"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/mobile/testing","children":[{"title":"Testing (WIP)","_path":"/mobile/testing/testing"}],"icon":"heroicons-outline:code"},{"title":"Deployment","_path":"/mobile/deployment","children":[{"title":"Deployment (WIP)","_path":"/mobile/deployment/deployment"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}] \ No newline at end of file +[{"title":"Frontier","_path":"/frontier","children":[{"title":"Introduction","_path":"/frontier/introduction","children":[{"title":"What is Frontier?","_path":"/frontier/introduction/whats-frontier"},{"title":"Content directory","_path":"/frontier/introduction/content-directory"},{"title":"Philosophy","_path":"/frontier/introduction/philosophy"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Installation","_path":"/frontier/installation","children":[{"title":"General Use","_path":"/frontier/installation/general"},{"title":"Development","_path":"/frontier/installation/development"},{"title":"Navigation","_path":"/frontier/installation/navigation"}],"icon":"heroicons-outline:document-text"},{"title":"Cli","_path":"/frontier/cli","children":[{"title":"Usage","_path":"/frontier/cli/usage"},{"title":"Development","_path":"/frontier/cli/development"}],"icon":"heroicons-outline:book-open"},{"title":"Plugins","_path":"/frontier/plugins","children":[{"title":"Frontend","_path":"/frontier/plugins/frontend"},{"title":"Mobile","_path":"/frontier/plugins/mobile"},{"title":"Quality","_path":"/frontier/plugins/quality"}],"icon":"heroicons-outline:book-open"},{"title":"Libraries","_path":"/frontier/libraries","children":[{"title":"TypeKit","_path":"/frontier/libraries/typekit"},{"title":"Standard Library","_path":"/frontier/libraries/standard-library"}],"icon":"heroicons-outline:code"},{"title":"Templates","_path":"/frontier/templates","children":[{"title":" Backend - Dot Net","_path":"/frontier/templates/dotnet"},{"title":" Backend - Typescript","_path":"/frontier/templates/typescript"},{"title":" Frontend - Nuxtjs","_path":"/frontier/templates/nuxt"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Rdvue","_path":"/rdvue","children":[{"title":"Getting Started","_path":"/rdvue/getting-started","children":[{"title":"Getting Started","_path":"/rdvue/getting-started/overview"}],"icon":"heroicons-outline:pencil-alt"},{"title":"Cli Commands","_path":"/rdvue/cli-commands","children":[{"title":"CLI Commands","_path":"/rdvue/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Scaffilding","_path":"/rdvue/scaffilding","children":[{"title":"Sitemap","_path":"/rdvue/scaffilding/sitemap"}],"icon":"heroicons-outline:book-open"},{"title":"Template Schema","_path":"/rdvue/template-schema","children":[{"title":"Template Schema","_path":"/rdvue/template-schema/schema"}],"icon":"heroicons-outline:code"},{"title":"Features","_path":"/rdvue/features","children":[{"title":"Rdvue Features","_path":"/rdvue/features/features"}],"icon":"heroicons-outline:code"},{"title":"Themeing","_path":"/rdvue/themeing","children":[{"title":"Theming","_path":"/rdvue/themeing/theming"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/rdvue/testing","children":[{"title":"Testing","_path":"/rdvue/testing/testing"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:book-open"},{"title":"Spectre","_path":"/spectre","children":[{"title":"Getting Started","_path":"/spectre/getting-started","children":[{"title":"Coming Soon","_path":"/spectre/getting-started/introduction"}],"icon":"heroicons-outline:cube"}],"icon":"heroicons-outline:bookmark-alt"},{"title":"Mobile","_path":"/mobile","children":[{"title":"Getting Started","_path":"/mobile/getting-started","children":[{"title":"Getting Started","_path":"/mobile/getting-started/overview"}],"icon":"heroicons-outline:flag"},{"title":"Cli Commands","_path":"/mobile/cli-commands","children":[{"title":"CLI Commands","_path":"/mobile/cli-commands/usage"}],"icon":"heroicons-outline:document-text"},{"title":"Features","_path":"/mobile/features","children":[{"title":"Features","_path":"/mobile/features/features"},{"title":"Screens","_path":"/mobile/features/screens"},{"title":"Components","_path":"/mobile/features/components"},{"title":"Services","_path":"/mobile/features/services"},{"title":"Nagivation","_path":"/mobile/features/navigation"},{"title":"Stores / Context","_path":"/mobile/features/stores"}],"icon":"heroicons-outline:code"},{"title":"Testing","_path":"/mobile/testing","children":[{"title":"Testing (WIP)","_path":"/mobile/testing/testing"}],"icon":"heroicons-outline:code"},{"title":"Deployment","_path":"/mobile/deployment","children":[{"title":"Deployment (WIP)","_path":"/mobile/deployment/deployment"}],"icon":"heroicons-outline:code"}],"icon":"heroicons-outline:play"},{"title":"Design","_path":"/design","children":[{"title":"Getting Started","_path":"/design/getting-started","children":[{"title":"Coming Soon","_path":"/design/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"},{"title":"Iac","_path":"/iac","children":[{"title":"Getting Started","_path":"/iac/getting-started","children":[{"title":"Coming Soon","_path":"/iac/getting-started/introduction"}],"icon":"heroicons-outline:flag"}],"icon":"heroicons-outline:play"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/04YHeHr9tM.1678726370648.json b/docs/.output/public/api/_content/query/04YHeHr9tM.1678726370648.json new file mode 100644 index 00000000..5fd94623 --- /dev/null +++ b/docs/.output/public/api/_content/query/04YHeHr9tM.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the installation guide below to set up the Stripe CLI.","_type":"markdown","_id":"content:5.mobile:1.getting-started:1.overview.md","_source":"content","_file":"5.mobile/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/mobile/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Features","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","_type":"markdown","_id":"content:5.mobile:3.features:1.features.md","_source":"content","_file":"5.mobile/3.features/1.features.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/19ZwhtnBsu.1678726370648.json b/docs/.output/public/api/_content/query/19ZwhtnBsu.1678726370648.json new file mode 100644 index 00000000..33cb8420 --- /dev/null +++ b/docs/.output/public/api/_content/query/19ZwhtnBsu.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"},{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/429l0g1JsL.1678726370648.json b/docs/.output/public/api/_content/query/429l0g1JsL.1678726370648.json new file mode 100644 index 00000000..ce30a0bf --- /dev/null +++ b/docs/.output/public/api/_content/query/429l0g1JsL.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"},{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/47rOsvYKsq.1678726370648.json b/docs/.output/public/api/_content/query/47rOsvYKsq.1678726370648.json new file mode 100644 index 00000000..69c09008 --- /dev/null +++ b/docs/.output/public/api/_content/query/47rOsvYKsq.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"},{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/4yp2Okse4m.1678726370648.json b/docs/.output/public/api/_content/query/4yp2Okse4m.1678726370648.json new file mode 100644 index 00000000..52e757fd --- /dev/null +++ b/docs/.output/public/api/_content/query/4yp2Okse4m.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"},{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/5CKmdxNney.1678726370648.json b/docs/.output/public/api/_content/query/5CKmdxNney.1678726370648.json new file mode 100644 index 00000000..e99b593d --- /dev/null +++ b/docs/.output/public/api/_content/query/5CKmdxNney.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/introduction","_dir":{"icon":"heroicons-outline:pencil-alt","title":"Dir"}} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/5Nv7bn0WQP.1678726370648.json b/docs/.output/public/api/_content/query/5Nv7bn0WQP.1678726370648.json new file mode 100644 index 00000000..eb1eecce --- /dev/null +++ b/docs/.output/public/api/_content/query/5Nv7bn0WQP.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"},{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","_type":"markdown","_id":"content:5.mobile:2.cli-commands:1.usage.md","_source":"content","_file":"5.mobile/2.cli-commands/1.usage.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/6p0u3YetMp.1678726370648.json b/docs/.output/public/api/_content/query/6p0u3YetMp.1678726370648.json new file mode 100644 index 00000000..a982f349 --- /dev/null +++ b/docs/.output/public/api/_content/query/6p0u3YetMp.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"rdvue-features"},"children":[{"type":"text","value":"Rdvue Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"CLI-Commands.md#cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDvue provides an elegant way for generating features."}]},{"type":"element","tag":"h2","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service has access to the following protected memebers:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"api (field) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: Axios"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onRequest(request: AxiosRequestConfig) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before requests are sent to the web API endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onResponse(response: AxiosResponse) => void"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked before responses are handled by a Service’s methods."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"onError(data: any)"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Invoked for errors during request or response."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Page is a conceptual grouping for Vue Components used in routing. Pages are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Pages, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/pages"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Page:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n path: '/login',\n name: 'login',\n meta: { layout: 'default' },\n component: () => import(/* webpackChunkName: \"login\" */ '@/pages/login'),\n},"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"path"}]},{"type":"text","value":" property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"meta"}]},{"type":"text","value":" property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":" to a page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"import()"}]},{"type":"text","value":" function."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"webpackChunkName"}]},{"type":"text","value":" is unique for each route."}]},{"type":"element","tag":"h2","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component is a conceptual grouping for Vue components which are imported by "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" and other Components."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide."}]},{"type":"element","tag":"h3","props":{"id":"technical-2"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component contains all the files present for "},{"type":"element","tag":"a","props":{"href":"#pages"},"children":[{"type":"text","value":"Pages"}]},{"type":"text","value":" with the addition of:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".story.ts"}]},{"type":"text","value":": This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryComponent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryComponent"}]}]}]},{"type":"text","value":": decorates the Component’s class, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Component","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Component"}]}]},{"type":"text","value":" (used in pages) with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the component’s overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"module"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Text stating the module used in the import statement (eg. “@/components/foo”)"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"playground"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Toggles the Playground feature for this component within the Storybook preview."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"api"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: boolean, default: true"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"slots (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: {[key: string]: string}, default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the slots available within the component. Eg."},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"
    slots: {
    header: ‘The header component goes here’,
    ...
    }
    "}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryProp","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryProp"}]}]}]},{"type":"text","value":": decorates the Component’s Props, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Prop","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Prop"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the prop's overall purpose."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"values"}]},{"type":"text","value":" (optional) "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"[array; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type."}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/StoryEvent","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@StoryEvent"}]}]}]},{"type":"text","value":": decorates the Component’s Events, providing the same functionality as "},{"type":"element","tag":"a","props":{"href":"https://github.com/Event","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Event"}]}]},{"type":"text","value":" with the addition of:"}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[]},{"type":"element","tag":"th","props":{"align":null},"children":[]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"description"}]},{"type":"text","value":" "},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"type: string; default: undefined"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Describe the event’s overall purpose."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page."}]},{"type":"element","tag":"h3","props":{"id":"technical-3"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To get a Page to use a Layout, edit it’s definition in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"router.ts"}]},{"type":"text","value":" file and add the following option:"}]},{"type":"element","tag":"code","props":{"code":"meta: {\n layout: '',\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"meta: {\n layout: '',\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example:"}]},{"type":"element","tag":"code","props":{"code":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" routes: [\n {\n path: '/',\n name: 'home',\n component: [...],\n meta: {\n layout: 'two-column',\n },\n },\n ]"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Above, the Layout refers to a component within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory called "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"two-column"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Layout must contain a router-view to display the Page within the area designated for it’s content."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Layout is contained within it’s own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/layouts"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Layout:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the "},{"type":"element","tag":"a","props":{"href":"Theming.md#global-styles"},"children":[{"type":"text","value":"Theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[layout]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the Layout. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"stores"},"children":[{"type":"text","value":"Stores"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Stores enforce a strong process-control for mutating values. Every change within a store "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"must"}]},{"type":"text","value":" go through a specially designed method, called a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Mutation"}]},{"type":"text","value":", in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the "},{"type":"element","tag":"a","props":{"href":"https://chrome.google.com/webstore/detail/vuejs-devtools/nhdogjmejiglipccpnnnanhbledajbpd?hl=en","rel":["nofollow"]},"children":[{"type":"text","value":"Vue DevTools"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Data within a Store can be managed using 3 intrinsic functionalities of every Store:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Getters: Retrieve a value within the store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible."}]}]},{"type":"element","tag":"h3","props":{"id":"technical-4"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Store consists of a standard Class, with "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Decorators"}]},{"type":"text","value":" providing the special functionality:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Module","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Module"}]}]}]},{"type":"text","value":" Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]}]},{"type":"text","value":" Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. "},{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]},{"type":"text","value":" is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>If multiple parameters are used in a base "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":", the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/MultiParamAction","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@MultiParamAction"}]}]}]},{"type":"text","value":" Decorator is the preferred alternative to "},{"type":"element","tag":"a","props":{"href":"https://github.com/Action","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Action"}]}]},{"type":"text","value":" because it allows methods to receive multiple parameters."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]}]},{"type":"text","value":" Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>Attempting to modify a field outside of a method marked with "},{"type":"element","tag":"a","props":{"href":"https://github.com/Mutation","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@Mutation"}]}]},{"type":"text","value":" will result in a runtime error with the Vuex framework."}]},{"type":"element","tag":"h2","props":{"id":"localization"},"children":[{"type":"text","value":"Localization"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Localization refers to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"adaptation"}]},{"type":"text","value":" of an application or website content to meet the language, cultural and other requirements of a specific target market (a "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":"). This feature has two parts that is required to work:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"A JSON file named as the respective "},{"type":"element","tag":"mark","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"i18n language codes,"}]}]},{"type":"text","value":" stored in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locales"}]},{"type":"text","value":" folder"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Function call with respective key"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Based of the current "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":", the matching JSON file would be searched for the matching key/s."}]},{"type":"element","tag":"h3","props":{"id":"technical-5"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Examples:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"A JSON file named “en.json” with structure as follows:"}]}]}]},{"type":"element","tag":"code","props":{"code":"{\n \"message\": \"hello i18n!!\"\n}\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"{\n \"message\": \"hello i18n!!\"\n}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"2. "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"Function"}]},{"type":"text","value":" called within "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"document"}]},{"type":"text","value":" as follows:"}]},{"type":"element","tag":"code","props":{"code":"
    \n

    {{ $t(\"message\") }}

    \n
    \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"
    \n

    {{ $t(\"message\") }}

    \n
    "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The call above would print the value of the message key "},{"type":"element","tag":"mark","props":{},"children":[{"type":"text","value":"if the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"locale"}]},{"type":"text","value":" is set to English (en)"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"!>If no matching key was found, the key would be returned instead. In this case "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"message"}]}]},{"type":"element","tag":"h2","props":{"id":"bundle-analysis"},"children":[{"type":"text","value":"Bundle Analysis"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Bundle Analyzer"}]},{"type":"text","value":" allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To generate build files for bundle analysis we run the following command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"$ npm run build"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Webpack Bundle Analyzer is started at http://127.0.0.1:8888"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected terminal output:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Expected browser output Treemap:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/bundle-image2.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This module will help you:"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Realize what's "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"really"}]},{"type":"text","value":" inside your bundle"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find out what modules make up the most of its size"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Find modules that got there by mistake"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Optimize it!"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>For additional plugin options and configurations please visit: "},{"type":"element","tag":"a","props":{"href":"https://www.npmjs.com/package/webpack-bundle-analyzer","rel":["nofollow"]},"children":[{"type":"text","value":"https://www.npmjs.com/package/webpack-bundle-analyzer"}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"services","depth":2,"text":"Services","children":[{"id":"technical","depth":3,"text":"Technical"}]},{"id":"pages","depth":2,"text":"Pages","children":[{"id":"technical-1","depth":3,"text":"Technical"}]},{"id":"routing","depth":2,"text":"Routing"},{"id":"components","depth":2,"text":"Components","children":[{"id":"technical-2","depth":3,"text":"Technical"}]},{"id":"layouts","depth":2,"text":"Layouts","children":[{"id":"technical-3","depth":3,"text":"Technical"}]},{"id":"stores","depth":2,"text":"Stores","children":[{"id":"technical-4","depth":3,"text":"Technical"}]},{"id":"localization","depth":2,"text":"Localization","children":[{"id":"technical-5","depth":3,"text":"Technical"}]},{"id":"bundle-analysis","depth":2,"text":"Bundle Analysis"}]}},"_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/6pNGztrIpy.1678726370648.json b/docs/.output/public/api/_content/query/6pNGztrIpy.1678726370648.json new file mode 100644 index 00000000..087891df --- /dev/null +++ b/docs/.output/public/api/_content/query/6pNGztrIpy.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"},{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/7Rwiic1Mfu.1678726370648.json b/docs/.output/public/api/_content/query/7Rwiic1Mfu.1678726370648.json new file mode 100644 index 00000000..c920640f --- /dev/null +++ b/docs/.output/public/api/_content/query/7Rwiic1Mfu.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"},{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ALdmBT6ADc.1678726370648.json b/docs/.output/public/api/_content/query/ALdmBT6ADc.1678726370648.json new file mode 100644 index 00000000..9ce03dd3 --- /dev/null +++ b/docs/.output/public/api/_content/query/ALdmBT6ADc.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"theming"},"children":[{"type":"text","value":"Theming"}]},{"type":"element","tag":"h2","props":{"id":"global-styles"},"children":[{"type":"text","value":"Global Styles"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Global styles can be added to the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/theme"}]},{"type":"text","value":" directory."}]},{"type":"element","tag":"h3","props":{"id":"dos-and-dont"},"children":[{"type":"text","value":"Do’s and Don’t"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to apply application level defaults to HTML elements"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do not"}]},{"type":"text","value":" use global styles to customize the imperative look/feel of specific Components. (Use "},{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"Component-level"}]},{"type":"text","value":" styles and "},{"type":"element","tag":"a","props":{"href":"#tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" for that)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" use global styles to override imported UI components' look and feel (Eg. to customize Buefy)."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"main.ts"}]},{"type":"text","value":" app bootstrap file. This will allow unused selectors to be tree-shaken."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Do"}]},{"type":"text","value":" import global styles from a CDN within the public/index.html file."}]}]},{"type":"element","tag":"h2","props":{"id":"tailwind"},"children":[{"type":"text","value":"Tailwind"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/","rel":["nofollow"]},"children":[{"type":"text","value":"Tailwind"}]},{"type":"text","value":" is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Tailwind is the best practice approach for styling Components and Pages within RDVue."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tailwind.config.js"}]},{"type":"text","value":" file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Tailwind utilities can be combined within your custom CSS selectors using the "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/functions-and-directives#apply","rel":["nofollow"]},"children":[{"type":"text","value":"@apply"}]},{"type":"text","value":" directive."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"New utility classes can "},{"type":"element","tag":"a","props":{"href":"https://tailwindcss.com/docs/adding-new-utilities","rel":["nofollow"]},"children":[{"type":"text","value":"implemented"}]},{"type":"text","value":" using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"global-styles","depth":2,"text":"Global Styles","children":[{"id":"dos-and-dont","depth":3,"text":"Do’s and Don’t"}]},{"id":"tailwind","depth":2,"text":"Tailwind","children":[{"id":"technical","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/BLviYQQPJ7.1678726370648.json b/docs/.output/public/api/_content/query/BLviYQQPJ7.1678726370648.json new file mode 100644 index 00000000..995d759c --- /dev/null +++ b/docs/.output/public/api/_content/query/BLviYQQPJ7.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/installation/general","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"General Use","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"general-use"},"children":[{"type":"text","value":"General Use"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:1.general.md","_source":"content","_file":"2.frontier/2.installation/1.general.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/BoNR1lKKhq.1678726370648.json b/docs/.output/public/api/_content/query/BoNR1lKKhq.1678726370648.json new file mode 100644 index 00000000..cf7e569f --- /dev/null +++ b/docs/.output/public/api/_content/query/BoNR1lKKhq.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/BrSZyfjf5T.1678726370648.json b/docs/.output/public/api/_content/query/BrSZyfjf5T.1678726370648.json new file mode 100644 index 00000000..b21430cd --- /dev/null +++ b/docs/.output/public/api/_content/query/BrSZyfjf5T.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"},{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Bwmd3WsD1s.1678726370648.json b/docs/.output/public/api/_content/query/Bwmd3WsD1s.1678726370648.json new file mode 100644 index 00000000..3937bfbf --- /dev/null +++ b/docs/.output/public/api/_content/query/Bwmd3WsD1s.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing"},"children":[{"type":"text","value":"Testing"}]},{"type":"element","tag":"h2","props":{"id":"cypress"},"children":[{"type":"text","value":"Cypress"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on "},{"type":"element","tag":"a","props":{"href":"https://www.selenium.dev/projects/","rel":["nofollow"]},"children":[{"type":"text","value":"Selenium"}]},{"type":"text","value":", instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a "},{"type":"element","tag":"a","props":{"href":"https://docs.cypress.io/api/api/table-of-contents.html","rel":["nofollow"]},"children":[{"type":"text","value":"API"}]},{"type":"text","value":" that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Within a project generated by the CLI tool, the following folder structure will be created:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/cypress.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All the e2e tests created by Cypress will live in the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"cypress/integration/specs"}]},{"type":"text","value":" directory. All these test files will have a .ts extension as they are written in TypeScript."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An example of a test file written in Cypress can be seen below:"}]},{"type":"element","tag":"code","props":{"code":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"// Example spec file to see the different methods that can be used in Cypress to set the current viewport\n/// \n\ncontext('Viewport Examples', () => {\n beforeEach(() => {\n cy.visit('https://example.cypress.io/commands/viewport');\n });\n\n it('cy.viewport() - set the viewport size and dimension', () => {\n // https://on.cypress.io/viewport\n\n cy.get('#navbar').should('be.visible');\n cy.viewport(320, 480);\n\n // the navbar should have collapse since our screen is smaller\n cy.get('#navbar').should('not.be.visible');\n cy.get('.navbar-toggle').should('be.visible').click();\n cy.get('.nav').find('a').should('be.visible');\n\n // lets see what our app looks like on a super large screen\n cy.viewport(2999, 2999);\n\n // cy.viewport() accepts a set of preset sizes\n // to easily set the screen to a device's width and height\n\n // We added a cy.wait() between each viewport change so you can see\n // the change otherwise it is a little too fast to see :)\n\n cy.viewport('macbook-15');\n cy.wait(200);\n cy.viewport('macbook-13');\n cy.wait(200);\n cy.viewport('macbook-11');\n cy.wait(200);\n cy.viewport('ipad-2');\n cy.wait(200);\n cy.viewport('ipad-mini');\n cy.wait(200);\n cy.viewport('iphone-6+');\n cy.wait(200);\n cy.viewport('iphone-6');\n cy.wait(200);\n cy.viewport('iphone-5');\n cy.wait(200);\n cy.viewport('iphone-4');\n cy.wait(200);\n cy.viewport('iphone-3');\n cy.wait(200);\n\n // cy.viewport() accepts an orientation for all presets\n // the default orientation is 'portrait'\n cy.viewport('ipad-2', 'portrait');\n cy.wait(200);\n cy.viewport('iphone-4', 'landscape');\n cy.wait(200);\n\n // The viewport will be reset back to the default dimensions\n // in between tests (the default can be set in cypress.json)\n });\n });"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>When you are testing the connection between pages and user flows, a Cypress test should be created."}]},{"type":"element","tag":"h3","props":{"id":"running-tests"},"children":[{"type":"text","value":"Running tests"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to run your Cypress tests, execute "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"npm run test:e2e"}]},{"type":"text","value":" and the following dialog will open"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/inspection.png?raw=true"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here, you can click on the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Run all specs"}]},{"type":"text","value":" option and see all the tests execute or you can click on a specific test file and see that test execute."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests."}]},{"type":"element","tag":"h2","props":{"id":"unit-tests-with-jest"},"children":[{"type":"text","value":"Unit Tests with Jest"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you wish to automate your unit tests, "},{"type":"element","tag":"a","props":{"href":"https://jestjs.io/","rel":["nofollow"]},"children":[{"type":"text","value":"Jest"}]},{"type":"text","value":" can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases."}]},{"type":"element","tag":"h3","props":{"id":"technical-1"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each component generated by the RDVue CLI comes with a "},{"type":"element","tag":"component-name","props":{},"children":[{"type":"text","value":".spec.js file and the folder structure will look like the following:"}]}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest1.png?raw=true"},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The spec file generated will contain the following basic test by default:"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/rdvue/blob/main/docs/images/unitTest2.png?raw=true"},"children":[]},{"type":"text","value":"\n)\n"},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘"},{"type":"element","tag":"a","props":{"href":"https://github.com/vue/test-utils","rel":["nofollow"]},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"@vue/test-utils"}]}]},{"type":"text","value":"' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM."}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cypress","depth":2,"text":"Cypress","children":[{"id":"technical","depth":3,"text":"Technical"},{"id":"running-tests","depth":3,"text":"Running tests"}]},{"id":"unit-tests-with-jest","depth":2,"text":"Unit Tests with Jest","children":[{"id":"technical-1","depth":3,"text":"Technical"}]}]}},"_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/CmzcyosjoR.1678726370648.json b/docs/.output/public/api/_content/query/CmzcyosjoR.1678726370648.json new file mode 100644 index 00000000..6dafde96 --- /dev/null +++ b/docs/.output/public/api/_content/query/CmzcyosjoR.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"mobile"},"children":[{"type":"text","value":"Mobile"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/CxjcDfvjBc.1678726370648.json b/docs/.output/public/api/_content/query/CxjcDfvjBc.1678726370648.json new file mode 100644 index 00000000..aafb9857 --- /dev/null +++ b/docs/.output/public/api/_content/query/CxjcDfvjBc.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/features/screens","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Screens","description":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are not to be imported by other Screen, Components or Layouts.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"not"}]},{"type":"text","value":" to be imported by other Screen, Components or Layouts."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Screen needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#nagivation"},"children":[{"type":"text","value":"Navigator"}]},{"type":"text","value":" before it can be used within a mobile application."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:screen \n\n# Example\n$ frontier mobile:add:screen login\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-35462e"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-338533"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-338533"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e12de"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-35462e"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-d80896"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-75c7dd"},"children":[{"type":"text","value":"login"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen is contained within it's own sub-folder within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/screens"}]},{"type":"text","value":" directory. The directory contains the following files which each carry out a specific role in developing a Screen:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"tsx"}]},{"type":"text","value":": This is similar to a "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":" but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[screen]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"styles.tsx"}]},{"type":"text","value":": All Stylesheet file are the same as the stylesheet used shown in "},{"type":"element","tag":"a","props":{"href":"#component"},"children":[{"type":"text","value":"Component"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-1e12de{color:#6E7781}\n.ct-338533{color:#CF222E}\n.ct-75c7dd{color:#0A3069}\n.ct-d80896{color:#24292F}\n.ct-35462e{color:#953800}\n.dark .ct-35462e{color:#FFA657}\n.dark .ct-d80896{color:#C9D1D9}\n.dark .ct-75c7dd{color:#A5D6FF}\n.dark .ct-338533{color:#FF7B72}\n.dark .ct-1e12de{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:1.screens.md","_source":"content","_file":"5.mobile/3.features/1.screens.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ESBtShW9sz.1678726370648.json b/docs/.output/public/api/_content/query/ESBtShW9sz.1678726370648.json new file mode 100644 index 00000000..04e1a3b9 --- /dev/null +++ b/docs/.output/public/api/_content/query/ESBtShW9sz.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"},{"_path":"/rdvue/themeing/theming","_dir":"themeing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Theming","description":"","_type":"markdown","_id":"content:3.rdvue:6.themeing:1.theming.md","_source":"content","_file":"3.rdvue/6.themeing/1.theming.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/FCRaYwQMEC.1678726370648.json b/docs/.output/public/api/_content/query/FCRaYwQMEC.1678726370648.json new file mode 100644 index 00000000..c31c9bad --- /dev/null +++ b/docs/.output/public/api/_content/query/FCRaYwQMEC.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"testing-wip"},"children":[{"type":"text","value":"Testing (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:4.testing:1.testing.md","_source":"content","_file":"5.mobile/4.testing/1.testing.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/FrVRb75X5s.1678726370648.json b/docs/.output/public/api/_content/query/FrVRb75X5s.1678726370648.json new file mode 100644 index 00000000..a8647c92 --- /dev/null +++ b/docs/.output/public/api/_content/query/FrVRb75X5s.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/features/components","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Components","description":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by Screens and Layout. Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide.","_type":"markdown","_id":"content:5.mobile:3.features:2.components.md","_source":"content","_file":"5.mobile/3.features/2.components.md","_extension":"md"},{"_path":"/mobile/features/navigation","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Nagivation","description":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.","_type":"markdown","_id":"content:5.mobile:3.features:4.navigation.md","_source":"content","_file":"5.mobile/3.features/4.navigation.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/GkDGmUyz0M.1678726370648.json b/docs/.output/public/api/_content/query/GkDGmUyz0M.1678726370648.json new file mode 100644 index 00000000..c82e129f --- /dev/null +++ b/docs/.output/public/api/_content/query/GkDGmUyz0M.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/template-schema/schema","_dir":"template-schema","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Template Schema","description":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"template-schema"},"children":[{"type":"text","value":"Template Schema"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module."}]},{"type":"element","tag":"h2","props":{"id":"templatejson"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The template.json file includes the following properties:"}]},{"type":"element","tag":"h3","props":{"id":"version"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A number representing the current version of the file."}]},{"type":"element","tag":"code","props":{"code":"{\n \"version\": 1\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"1"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that will be copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":"{\n \"sourceDirectory\": \"./\",\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"features"},"children":[{"type":"text","value":"features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The name property holds the name of a feature, this the name that you must use when running a command on any of these features."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user."}]},{"type":"element","tag":"code","props":{"code":" \"features\": [\n {\n \"name\": \"config\",\n \"private\": true\n },\n {\n \"name\": \"store\",\n \"private\": true\n },\n {\n \"name\": \"component\",\n \"private\": false\n },\n {\n \"name\": \"service\",\n \"private\": false\n },\n {\n \"name\": \"model\",\n \"private\": false\n },\n {\n \"name\": \"page\",\n \"private\": false\n },\n {\n \"name\": \"sm\",\n \"private\": false\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"plugins"},"children":[{"type":"text","value":"plugins"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage."}]},{"type":"element","tag":"code","props":{"code":"\"plugins\": [\n \"auth\",\n \"localization\",\n \"storybook\"\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"project"},"children":[{"type":"text","value":"project"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The features property/key is an array holding the name of all features which will be automatically generated at project creation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"groups"},"children":[{"type":"text","value":"groups"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The groups section is used to group plugins that offer similar functionalities."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each group is represented as an object. Each object has the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"isMultipleChoice - boolean indicating if more than one option can be selected from this group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins - a list of the names of the plugins that belong to the group"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"question - the question prompted to a user when they run the command to add a plugin from a group"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Running rdvue add-group would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from."}]},{"type":"element","tag":"code","props":{"code":"\"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"presets"},"children":[{"type":"text","value":"presets"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name of the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"description - description of the preset. Conventionally used to list out the plugins that comes with the preset"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"plugins- a list of the plugins which the preset will install"}]}]},{"type":"element","tag":"code","props":{"code":" \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ]"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"custompreset"},"children":[{"type":"text","value":"customPreset"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name - the name displayed to the user"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"groups - a list containing the names of the Feature Groups which the user will be able to choose from"}]}]},{"type":"element","tag":"code","props":{"code":" \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"example-templatejson-file"},"children":[{"type":"text","value":"Example "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"template.json"}]},{"type":"text","value":" file"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Here is a sample of what a complete template.json file would look like."}]},{"type":"element","tag":"code","props":{"code":"{\n  \"version\": 1,\n  \"sourceDirectory\": \"./\",\n  \"features\": [\n    {\n      \"name\": \"config\",\n      \"private\": true\n    },\n    {\n      \"name\": \"store\",\n      \"private\": true\n    },\n    {\n      \"name\": \"component\",\n      \"private\": false\n    },\n    {\n      \"name\": \"service\",\n      \"private\": false\n    },\n    {\n      \"name\": \"model\",\n      \"private\": false\n    },\n    {\n      \"name\": \"page\",\n      \"private\": false\n    },\n    {\n      \"name\": \"sm\",\n      \"private\": false\n    }\n  ],\n  \"plugins\": [\n    \"auth\",\n    \"localization\",\n    \"storybook\"\n  ],\n  \"project\": {\n    \"features\": [\n      \"config\",\n      \"store\"\n    ],\n    \"plugins\": [\n      \"storybook\"\n    ]\n  },\n  \"groups\": [\n    {\n      \"name\": \"authentication\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"auth\"\n      ],\n      \"question\": \"Which Authentication Library would you like to install?\"\n    },\n    {\n      \"name\": \"locale\",\n      \"isMultipleChoice\": false,\n      \"plugins\": [\n        \"localization\"\n      ],\n      \"question\": \"Which Localization Library would you like to install?\"\n    }\n  ],\n  \"presets\": [\n    {\n      \"name\": \"Sample Preset 1\",\n      \"description\": \"Installs storybook, and localization\",\n      \"plugins\": [\n        \"storybook\",\n        \"localization\"\n      ]\n    }\n  ],\n  \"customPreset\": {\n    \"groups\": [\n      \"authentication\",\n      \"locale\"\n    ],\n    \"name\": \"custom\"\n  }\n}\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"version\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"1"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"sourceDirectory\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"./\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"true"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"service\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"page\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"sm\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"private\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"auth\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"project\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"features\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"config\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"auth\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Which Authentication Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"locale\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"isMultipleChoice\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-5e3ff4"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"question\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Which Localization Library would you like to install?\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"presets\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Sample Preset 1\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"description\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"Installs storybook, and localization\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"plugins\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"storybook\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"        "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"localization\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"customPreset\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"groups\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"authentication\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"      "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"locale\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    ],"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"    "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"name\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"custom\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"  }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"h1","props":{"id":"template-module"},"children":[{"type":"text","value":"Template Module"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:"}]},{"type":"element","tag":"h3","props":{"id":"version-1"},"children":[{"type":"text","value":"version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The current version of the file."}]},{"type":"element","tag":"code","props":{"code":"\"version\": 1\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"version\": 1"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"name"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Name of the module (e.g component)"}]},{"type":"element","tag":"code","props":{"code":" \"name\": \"component\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"name\": \"component\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"description"},"children":[{"type":"text","value":"description"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A description of the module. This is also displayed inside the CLI help menu for each Module."}]},{"type":"element","tag":"code","props":{"code":"\"description\": \"Generate a basic components needed for basic authenticaton.\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"description\": \"Generate a basic components needed for basic authenticaton.\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"sourcedirectory-1"},"children":[{"type":"text","value":"sourceDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Source directory for module files that get copied into a project. Normally points to the base folder of a module."}]},{"type":"element","tag":"code","props":{"code":" \"sourceDirectory\": \"./\"\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"sourceDirectory\": \"./\""}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"installdirectory"},"children":[{"type":"text","value":"installDirectory"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"the location that the module should be generated in the Vue project."}]},{"type":"element","tag":"h3","props":{"id":"files"},"children":[{"type":"text","value":"files"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"a string (if the file should be copied as-is)"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"store/auth.ts\",\n \"target\": \"store/auth.ts\"\n },\n {\n \"source\": \"services/auth.ts\",\n \"target\": \"services/auth.ts\"\n },\n {\n \"source\": \"model/user.ts\",\n \"target\": \"model/user.ts\"\n },\n {\n \"source\": \"pages/register/index.ts\",\n \"target\": \"pages/auth/register/index.ts\"\n },\n {\n \"source\": \"pages/register/register.ts\",\n \"target\": \"pages/auth/register/register.ts\"\n },\n {\n \"source\": \"pages/register/register.scss\",\n \"target\": \"pages/auth/register/register.scss\"\n },\n {\n \"source\": \"pages/register/register.vue\",\n \"target\": \"pages/auth/register/register.vue\"\n },\n {\n \"source\": \"pages/login/index.ts\",\n \"target\": \"pages/auth/login/index.ts\"\n },\n {\n \"source\": \"pages/login/login.ts\",\n \"target\": \"pages/auth/login/login.ts\"\n },\n {\n \"source\": \"pages/login/login.scss\",\n \"target\": \"pages/auth/login/login.scss\"\n },\n {\n \"source\": \"pages/login/login.vue\",\n \"target\": \"pages/auth/login/login.vue\"\n },\n {\n \"source\": \"pages/forget-password/index.ts\",\n \"target\": \"pages/auth/forget-password/index.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.ts\",\n \"target\": \"pages/auth/forget-password/forget-password.ts\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.scss\",\n \"target\": \"pages/auth/forget-password/forget-password.scss\"\n },\n {\n \"source\": \"pages/forget-password/forget-password.vue\",\n \"target\": \"pages/auth/forget-password/forget-password.vue\"\n }\n ]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"store/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"services/auth.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"services/auth.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model/user.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"model/user.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/register.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/register.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/register.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/register.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/register/register.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/register/register.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/login.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/login.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/login.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/login.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/login/login.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/login/login.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/index.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.ts\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.scss\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/forget-password/forget-password.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"pages/auth/forget-password/forget-password.vue\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"object with required properties:"},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"source and target (for change of name if necessary)"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"and an optional content list of objects for finding and replacing content within the file -"}]}]},{"type":"element","tag":"code","props":{"code":"\"files\": [\n {\n \"source\": \"index.ts\",\n \"target\": \"index.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.scss\",\n \"target\": \"${componentNameKebab}.scss\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n },\n {\n \"source\": \"component.ts\",\n \"target\": \"${componentNameKebab}.ts\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.spec.js\",\n \"target\": \"${componentNameKebab}.spec.js\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__KEBAB__\",\n \"replace\": \"${componentNameKebab}\"\n },\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentName}\"\n }\n ]\n },\n {\n \"source\": \"component.vue\",\n \"target\": \"${componentNameKebab}.vue\",\n \"content\": [\n {\n \"matchRegex\": \"__COMPONENT__\",\n \"replace\": \"${componentNameKebab}\"\n }\n ]\n }\n]\n","language":"json","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"files\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"index.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.scss\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.ts\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.spec.js\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__KEBAB__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentName}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" },"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"source\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"component.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"target\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}.vue\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"content\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": ["}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"matchRegex\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"__COMPONENT__\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-865b38"},"children":[{"type":"text","value":"\"replace\""}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":": "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"\"${componentNameKebab}\""}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" ]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"]"}]}]}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\n _Note: files section can be a combination of both types mentioned above._\n\n### packages\nThis section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.\n\nThe dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.\n\n```json\n \"packages\": {\n \"dependencies\": [\"vue-i18n\"],\n \"devDependencies\": [\"vue-cli-plugin-i18n\"]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"There’s currently no support for specifying package versions."}]}]},{"type":"element","tag":"h3","props":{"id":"routes"},"children":[{"type":"text","value":"routes"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The routes section of the manifest.json allows you to define an array of routes. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"routes\": [\n {\n \"path\": \"'/buefy-sample'\",\n \"name\": \"'buefy-sample'\",\n \"component\": \"`require('@/pages/buefy-sample/buefy-sample.vue').default`\"\n }\n ]"}]}]}]}]}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"path: relative URL where module component (.vue file) can be viewed"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"name: name of the route"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"component: the sample component created as a part of your module"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:"}]},{"type":"element","tag":"code","props":{"code":"export default [{\n path: '/buefy-sample',\n name: 'buefy-sample',\n component: require('@/pages/buefy-sample/buefy-sample.vue').default\n },];\n","language":"javascript","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5afa47"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5afa47"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" [{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"path: "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"'/buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"name: "}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"'buefy-sample'"}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"component: "}]},{"type":"element","tag":"span","props":{"class":"ct-cbbb72"},"children":[{"type":"text","value":"require"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-a47098"},"children":[{"type":"text","value":"'@/pages/buefy-sample/buefy-sample.vue'"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":").default"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ea3ebc"},"children":[{"type":"text","value":"},]"}]},{"type":"element","tag":"span","props":{"class":"ct-d87ea3"},"children":[{"type":"text","value":";"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"vueoptions"},"children":[{"type":"text","value":"vueOptions"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Plugin options needed in vue.config for module to work"}]},{"type":"element","tag":"code","props":{"code":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"\"vueOptions\": {\n \"transpileDependencies\": [\n \"'vuetify'\"\n ]\n }"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options."}]},{"type":"element","tag":"code","props":{"code":"module.exports = {\n transpileDependencies: 'vuetify',\n};\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"module.exports = {\n transpileDependencies: 'vuetify',\n};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"modules"},"children":[{"type":"text","value":"modules"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Configuration imports needed for your module to work. These configs are store in the src/config folder."}]},{"type":"element","tag":"code","props":{"code":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" \"modules\": {\n \"vuetify\": \"`require('@/config/vuetify').default`\"\n } "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-cbbb72{color:#8250DF}\n.ct-ea3ebc{color:#953800}\n.ct-5afa47{color:#CF222E}\n.ct-a47098{color:#0A3069}\n.ct-5e3ff4{color:#0550AE}\n.ct-865b38{color:#116329}\n.ct-d87ea3{color:#24292F}\n.dark .ct-d87ea3{color:#C9D1D9}\n.dark .ct-865b38{color:#7EE787}\n.dark .ct-5e3ff4{color:#79C0FF}\n.dark .ct-a47098{color:#A5D6FF}\n.dark .ct-5afa47{color:#FF7B72}\n.dark .ct-ea3ebc{color:#FFA657}\n.dark .ct-cbbb72{color:#D2A8FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"templatejson","depth":2,"text":"template.json","children":[{"id":"version","depth":3,"text":"version"},{"id":"sourcedirectory","depth":3,"text":"sourceDirectory"},{"id":"features","depth":3,"text":"features"},{"id":"plugins","depth":3,"text":"plugins"},{"id":"project","depth":3,"text":"project"},{"id":"groups","depth":3,"text":"groups"},{"id":"presets","depth":3,"text":"presets"},{"id":"custompreset","depth":3,"text":"customPreset"},{"id":"example-templatejson-file","depth":3,"text":"Example template.json file"},{"id":"version-1","depth":3,"text":"version"},{"id":"name","depth":3,"text":"name"},{"id":"description","depth":3,"text":"description"},{"id":"sourcedirectory-1","depth":3,"text":"sourceDirectory"},{"id":"installdirectory","depth":3,"text":"installDirectory"},{"id":"files","depth":3,"text":"files"},{"id":"routes","depth":3,"text":"routes"},{"id":"vueoptions","depth":3,"text":"vueOptions"},{"id":"modules","depth":3,"text":"modules"}]}]}},"_type":"markdown","_id":"content:3.rdvue:4.template-schema:1.schema.md","_source":"content","_file":"3.rdvue/4.template-schema/1.schema.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/HOF2lC6065.1678726370648.json b/docs/.output/public/api/_content/query/HOF2lC6065.1678726370648.json new file mode 100644 index 00000000..a81b6cf4 --- /dev/null +++ b/docs/.output/public/api/_content/query/HOF2lC6065.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/features/navigation","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Nagivation","description":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"nagivation"},"children":[{"type":"text","value":"Nagivation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layouts"}]},{"type":"text","value":" section goes into more detail on this approach."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> A Page needs to be added to the "},{"type":"element","tag":"a","props":{"href":"#routing"},"children":[{"type":"text","value":"Router"}]},{"type":"text","value":" before it can be previewed within a web browser."}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated context is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"vue"}]},{"type":"text","value":": This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"ts"}]},{"type":"text","value":": This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"scss"}]},{"type":"text","value":": This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory."}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[page]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"spec.ts"}]},{"type":"text","value":": This contains the unit-level tests for the page. Read the "},{"type":"element","tag":"a","props":{"href":"Testing.md#unit-tests-with-jest"},"children":[{"type":"text","value":"testing section"}]},{"type":"text","value":" for more details about writing tests."}]}]},{"type":"element","tag":"h2","props":{"id":"routing"},"children":[{"type":"text","value":"Routing"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a Route definition for a sample Login page:"}]},{"type":"element","tag":"code","props":{"code":"\n \n\n","language":"jsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-16fd3b"},"children":[{"type":"text","value":"Stack.Navigator"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"screenOptions"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"{ headerShwon: "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"false"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"initialRouteName"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-b4cb83"},"children":[{"type":"text","value":"'Login'"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-16fd3b"},"children":[{"type":"text","value":"Stack.Screen"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"name"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-b4cb83"},"children":[{"type":"text","value":"\"Login\""}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-96e517"},"children":[{"type":"text","value":"component"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":"Login"}]},{"type":"element","tag":"span","props":{"class":"ct-c96c10"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":" />"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-4702eb"},"children":[{"type":"text","value":""}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"name"}]},{"type":"text","value":" field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"component"}]},{"type":"text","value":" property specifies the Screen component to load for the given name."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Navigation should be centralized within the "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"src/core/navigation"}]},{"type":"text","value":" directory. This is where the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" library is configured and where the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"Stack"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"For more details on the available options for configuring a Stack, please refer to the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/","rel":["nofollow"]},"children":[{"type":"text","value":"React Navigation"}]},{"type":"text","value":" documentation, and more specifically, the "},{"type":"element","tag":"a","props":{"href":"https://reactnavigation.org/docs/stack-navigator/#api-definition","rel":["nofollow"]},"children":[{"type":"text","value":"API Definition"}]},{"type":"text","value":"."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-b4cb83{color:#0A3069}\n.ct-c96c10{color:#CF222E}\n.ct-96e517{color:#0550AE}\n.ct-16fd3b{color:#116329}\n.ct-4702eb{color:#24292F}\n.dark .ct-4702eb{color:#C9D1D9}\n.dark .ct-16fd3b{color:#7EE787}\n.dark .ct-96e517{color:#79C0FF}\n.dark .ct-c96c10{color:#FF7B72}\n.dark .ct-b4cb83{color:#A5D6FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"},{"id":"routing","depth":2,"text":"Routing"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:4.navigation.md","_source":"content","_file":"5.mobile/3.features/4.navigation.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/HlvQ2CNI92.1678726370648.json b/docs/.output/public/api/_content/query/HlvQ2CNI92.1678726370648.json new file mode 100644 index 00000000..2e78ec20 --- /dev/null +++ b/docs/.output/public/api/_content/query/HlvQ2CNI92.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"quality"},"children":[{"type":"text","value":"Quality"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/J1BQKIMJrl.1678726370648.json b/docs/.output/public/api/_content/query/J1BQKIMJrl.1678726370648.json new file mode 100644 index 00000000..77409639 --- /dev/null +++ b/docs/.output/public/api/_content/query/J1BQKIMJrl.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"},{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/J36ejkBU7w.1678726370648.json b/docs/.output/public/api/_content/query/J36ejkBU7w.1678726370648.json new file mode 100644 index 00000000..74befbb9 --- /dev/null +++ b/docs/.output/public/api/_content/query/J36ejkBU7w.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal."}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the CLI option below for a list of commands and options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile: --help\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8ad58d"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"mobile:"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"comman"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"d"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-ebca85"},"children":[{"type":"text","value":"--help"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"cli-command"},"children":[{"type":"text","value":"CLI Command"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]},{"type":"text","value":" will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Usage"}]}]},{"type":"element","tag":"code","props":{"code":"$ npx mobile:create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8ad58d"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"npx"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"mobile:create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--bundleIdenifier"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"The name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app)."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"--verbose"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Show debug logs when creating the project."}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add: \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-8ad58d"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"mobile:add:"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"featur"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-52056c"},"children":[{"type":"text","value":"nam"}]},{"type":"element","tag":"span","props":{"class":"ct-b33b22"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d4473"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Features"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Learn more below about each feature the CLI provides:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/components"},"children":[{"type":"text","value":"Component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/pages"},"children":[{"type":"text","value":"Page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/screens"},"children":[{"type":"text","value":"Screen"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/services"},"children":[{"type":"text","value":"Service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"/mobile/features/stores"},"children":[{"type":"text","value":"Store"}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-ebca85{color:#0550AE}\n.ct-2d4473{color:#CF222E}\n.ct-52056c{color:#0A3069}\n.ct-b33b22{color:#24292F}\n.ct-8ad58d{color:#953800}\n.dark .ct-8ad58d{color:#FFA657}\n.dark .ct-b33b22{color:#C9D1D9}\n.dark .ct-52056c{color:#A5D6FF}\n.dark .ct-2d4473{color:#FF7B72}\n.dark .ct-ebca85{color:#79C0FF}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-command","depth":2,"text":"CLI Command","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"}]}]}},"_type":"markdown","_id":"content:5.mobile:2.cli-commands:1.usage.md","_source":"content","_file":"5.mobile/2.cli-commands/1.usage.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/JJ9C4UNvCH.1678726370648.json b/docs/.output/public/api/_content/query/JJ9C4UNvCH.1678726370648.json new file mode 100644 index 00000000..1a77676d --- /dev/null +++ b/docs/.output/public/api/_content/query/JJ9C4UNvCH.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/features/screens","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Screens","description":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are not to be imported by other Screen, Components or Layouts.","_type":"markdown","_id":"content:5.mobile:3.features:1.screens.md","_source":"content","_file":"5.mobile/3.features/1.screens.md","_extension":"md"},{"_path":"/mobile/features/services","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Services","description":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:","_type":"markdown","_id":"content:5.mobile:3.features:3.services.md","_source":"content","_file":"5.mobile/3.features/3.services.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/JlWpJOmqbt.1678726370648.json b/docs/.output/public/api/_content/query/JlWpJOmqbt.1678726370648.json new file mode 100644 index 00000000..b9374dfd --- /dev/null +++ b/docs/.output/public/api/_content/query/JlWpJOmqbt.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend"},"children":[{"type":"text","value":"Frontend"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/KGVfeDohnm.1678726370648.json b/docs/.output/public/api/_content/query/KGVfeDohnm.1678726370648.json new file mode 100644 index 00000000..e9877b6c --- /dev/null +++ b/docs/.output/public/api/_content/query/KGVfeDohnm.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"},{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/KP6cJhSEbf.1678726370648.json b/docs/.output/public/api/_content/query/KP6cJhSEbf.1678726370648.json new file mode 100644 index 00000000..3b4e222c --- /dev/null +++ b/docs/.output/public/api/_content/query/KP6cJhSEbf.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing (WIP)","description":"","_type":"markdown","_id":"content:5.mobile:4.testing:1.testing.md","_source":"content","_file":"5.mobile/4.testing/1.testing.md","_extension":"md"},{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Lt6BIToPNN.1678726370648.json b/docs/.output/public/api/_content/query/Lt6BIToPNN.1678726370648.json new file mode 100644 index 00000000..7e978f33 --- /dev/null +++ b/docs/.output/public/api/_content/query/Lt6BIToPNN.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"},{"_path":"/mobile/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the installation guide below to set up the Stripe CLI.","_type":"markdown","_id":"content:5.mobile:1.getting-started:1.overview.md","_source":"content","_file":"5.mobile/1.getting-started/1.overview.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/MMGz34b8PH.1678726370648.json b/docs/.output/public/api/_content/query/MMGz34b8PH.1678726370648.json new file mode 100644 index 00000000..a6caeba5 --- /dev/null +++ b/docs/.output/public/api/_content/query/MMGz34b8PH.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/templates/nuxt","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Frontend - Nuxtjs","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"frontend-nuxtjs"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Frontend"}]},{"type":"text","value":" - Nuxtjs"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:3.nuxt.md","_source":"content","_file":"2.frontier/6.templates/3.nuxt.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/O32KeiYrUa.1678726370648.json b/docs/.output/public/api/_content/query/O32KeiYrUa.1678726370648.json new file mode 100644 index 00000000..3c149415 --- /dev/null +++ b/docs/.output/public/api/_content/query/O32KeiYrUa.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-typescript"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Typescript"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/P314osc27P.1678726370648.json b/docs/.output/public/api/_content/query/P314osc27P.1678726370648.json new file mode 100644 index 00000000..47bce8fc --- /dev/null +++ b/docs/.output/public/api/_content/query/P314osc27P.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"},{"_path":"/rdvue/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing","description":"","_type":"markdown","_id":"content:3.rdvue:7.testing:1.testing.md","_source":"content","_file":"3.rdvue/7.testing/1.testing.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/xWeY3NfYtX.1678414054441.json b/docs/.output/public/api/_content/query/RMnrvBawPn.1678726370648.json similarity index 100% rename from docs/.output/public/api/_content/query/xWeY3NfYtX.1678414054441.json rename to docs/.output/public/api/_content/query/RMnrvBawPn.1678726370648.json diff --git a/docs/.output/public/api/_content/query/RoutJwnTpy.1678726370648.json b/docs/.output/public/api/_content/query/RoutJwnTpy.1678726370648.json new file mode 100644 index 00000000..cff8f7ad --- /dev/null +++ b/docs/.output/public/api/_content/query/RoutJwnTpy.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"},{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Smd1FvtVfQ.1678726370648.json b/docs/.output/public/api/_content/query/Smd1FvtVfQ.1678726370648.json new file mode 100644 index 00000000..97af2ad3 --- /dev/null +++ b/docs/.output/public/api/_content/query/Smd1FvtVfQ.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"},{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/Su48x97rZI.1678726370648.json b/docs/.output/public/api/_content/query/Su48x97rZI.1678726370648.json new file mode 100644 index 00000000..748f4941 --- /dev/null +++ b/docs/.output/public/api/_content/query/Su48x97rZI.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/WXBaqghg8k.1678726370648.json b/docs/.output/public/api/_content/query/WXBaqghg8k.1678726370648.json new file mode 100644 index 00000000..b923dc05 --- /dev/null +++ b/docs/.output/public/api/_content/query/WXBaqghg8k.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"},{"_path":"/rdvue/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Rdvue Features","description":"This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.","_type":"markdown","_id":"content:3.rdvue:5.features:1.features.md","_source":"content","_file":"3.rdvue/5.features/1.features.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/WoZUvC9rqb.1678726370648.json b/docs/.output/public/api/_content/query/WoZUvC9rqb.1678726370648.json new file mode 100644 index 00000000..a474cc16 --- /dev/null +++ b/docs/.output/public/api/_content/query/WoZUvC9rqb.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Deployment (WIP)","description":"","_type":"markdown","_id":"content:5.mobile:5.deployment:1.deployment.md","_source":"content","_file":"5.mobile/5.deployment/1.deployment.md","_extension":"md"},{"_path":"/iac/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:7.IAC:1.getting-started:2.introduction.md","_source":"content","_file":"7.IAC/1.getting-started/2.introduction.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/XTOw4mgR3f.1678726370648.json b/docs/.output/public/api/_content/query/XTOw4mgR3f.1678726370648.json new file mode 100644 index 00000000..b3caa436 --- /dev/null +++ b/docs/.output/public/api/_content/query/XTOw4mgR3f.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/XVPoId9nap.1678726370648.json b/docs/.output/public/api/_content/query/XVPoId9nap.1678726370648.json new file mode 100644 index 00000000..3e6c54a1 --- /dev/null +++ b/docs/.output/public/api/_content/query/XVPoId9nap.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/installation/development","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:2.development.md","_source":"content","_file":"2.frontier/2.installation/2.development.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/YBF0RHqQ3e.1678726370648.json b/docs/.output/public/api/_content/query/YBF0RHqQ3e.1678726370648.json new file mode 100644 index 00000000..fd1a0482 --- /dev/null +++ b/docs/.output/public/api/_content/query/YBF0RHqQ3e.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Deployment (WIP)","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"deployment-wip"},"children":[{"type":"text","value":"Deployment (WIP)"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:5.deployment:1.deployment.md","_source":"content","_file":"5.mobile/5.deployment/1.deployment.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/YKOPtCYulT.1678726370648.json b/docs/.output/public/api/_content/query/YKOPtCYulT.1678726370648.json new file mode 100644 index 00000000..8517817b --- /dev/null +++ b/docs/.output/public/api/_content/query/YKOPtCYulT.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"},{"_path":"/frontier/plugins/mobile","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Mobile","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.mobile.md","_source":"content","_file":"2.frontier/4.plugins/2.mobile.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ZfwdkFNJ75.1678726370648.json b/docs/.output/public/api/_content/query/ZfwdkFNJ75.1678726370648.json new file mode 100644 index 00000000..7f6a0fd5 --- /dev/null +++ b/docs/.output/public/api/_content/query/ZfwdkFNJ75.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Features","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"features"},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in "},{"type":"element","tag":"a","props":{"href":"cli-reference.md#add"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"text","value":"."}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"text","value":"\n> It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document.\n"},{"type":"element","tag":"hr","props":{},"children":[]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:5.mobile:3.features:1.features.md","_source":"content","_file":"5.mobile/3.features/1.features.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/a1Dgl9wshN.1678726370648.json b/docs/.output/public/api/_content/query/a1Dgl9wshN.1678726370648.json new file mode 100644 index 00000000..21a78c17 --- /dev/null +++ b/docs/.output/public/api/_content/query/a1Dgl9wshN.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"what-is-frontier"},"children":[{"type":"text","value":"What is Frontier?"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/bjzyL7C69z.1678726370648.json b/docs/.output/public/api/_content/query/bjzyL7C69z.1678726370648.json new file mode 100644 index 00000000..e16f7dda --- /dev/null +++ b/docs/.output/public/api/_content/query/bjzyL7C69z.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/cli/development","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Development","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"development"},"children":[{"type":"text","value":"Development"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:2.development.md","_source":"content","_file":"2.frontier/3.cli/2.development.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/brX4CwCJoQ.1678414054441.json b/docs/.output/public/api/_content/query/brX4CwCJoQ.1678726370648.json similarity index 100% rename from docs/.output/public/api/_content/query/brX4CwCJoQ.1678414054441.json rename to docs/.output/public/api/_content/query/brX4CwCJoQ.1678726370648.json diff --git a/docs/.output/public/api/_content/query/cItbEHp6hX.1678726370648.json b/docs/.output/public/api/_content/query/cItbEHp6hX.1678726370648.json new file mode 100644 index 00000000..4efdda53 --- /dev/null +++ b/docs/.output/public/api/_content/query/cItbEHp6hX.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/eO9hzu7vu1.1678726370648.json b/docs/.output/public/api/_content/query/eO9hzu7vu1.1678726370648.json new file mode 100644 index 00000000..01ecbd7d --- /dev/null +++ b/docs/.output/public/api/_content/query/eO9hzu7vu1.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/introduction/whats-frontier","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"What is Frontier?","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:1.whats-frontier.md","_source":"content","_file":"2.frontier/1.introduction/1.whats-frontier.md","_extension":"md"},{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/eytgjSbEVl.1678726370648.json b/docs/.output/public/api/_content/query/eytgjSbEVl.1678726370648.json new file mode 100644 index 00000000..c2dbd428 --- /dev/null +++ b/docs/.output/public/api/_content/query/eytgjSbEVl.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/cli/usage","_dir":"cli","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Usage","description":"","_type":"markdown","_id":"content:2.frontier:3.cli:1.usage.md","_source":"content","_file":"2.frontier/3.cli/1.usage.md","_extension":"md"},{"_path":"/frontier/plugins/frontend","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Frontend","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:1.frontend.md","_source":"content","_file":"2.frontier/4.plugins/1.frontend.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/fQZ8vTWYd8.1678726370648.json b/docs/.output/public/api/_content/query/fQZ8vTWYd8.1678726370648.json new file mode 100644 index 00000000..aa3e0ba5 --- /dev/null +++ b/docs/.output/public/api/_content/query/fQZ8vTWYd8.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/features/components","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Components","description":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by Screens and Layout. Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"components"},"children":[{"type":"text","value":"Components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screens"}]},{"type":"text","value":" and "},{"type":"element","tag":"a","props":{"href":"#layouts"},"children":[{"type":"text","value":"Layout"}]},{"type":"text","value":". Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:component \n\n# Example\n$ frontier mobile:add:component fancy-text\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3b36f4"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9d34aa"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-3b36f4"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"fancy-text"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Component folder consists of for two files. These file include:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".tsx"}]},{"type":"text","value":": This file holds actual functional logic and view hierarchy for the component you are trying to create.."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[component]"},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":".styles.tsx"}]},{"type":"text","value":": This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"See below for example of folder structure after creating a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text"}]},{"type":"text","value":":"}]},{"type":"element","tag":"img","props":{"src":"https://github.com/realdecoy/frontier/tree/mobile-integration/packages/frontier-plugins/plugin-mobile/docs/images/component.png"},"children":[]},{"type":"text","value":" \n"},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Below is an example of a component called "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.tsx"}]}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.tsx\n\nimport { Component } from \"react\";\nimport styles from \"./fancy-text.styles\";\n\nclass FancyText extends Component {\n render() {\n return Some Fancy Text\n }\n}\n\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9d34aa"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" { Component } "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"react\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" styles "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"./fancy-text.styles\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"class"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3b36f4"},"children":[{"type":"text","value":"FancyText"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"extends"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a75813"},"children":[{"type":"text","value":"Component"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5d3d75"},"children":[{"type":"text","value":"render"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"() {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" <"}]},{"type":"element","tag":"span","props":{"class":"ct-f20ccc"},"children":[{"type":"text","value":"Text"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a75813"},"children":[{"type":"text","value":"style"}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"={"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"styles.title"}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":">Some Fancy Text"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"}"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This is an example of the stylesheet "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"fancy-text.styles.tsx"}]},{"type":"text","value":"."}]},{"type":"element","tag":"code","props":{"code":"// @/component/fancy-text/fancy-text.style.tsx\n\nimport { StyleSheet } from \"react-native\";\n\nexport StyleSheet.create({\n text: {\n color: \"red\",\n fontSize: 18,\n }\n });\n};\n","language":"tsx","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-9d34aa"},"children":[{"type":"text","value":"// @/component/fancy-text/fancy-text.style.tsx"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" { StyleSheet } "}]},{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"react-native\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":";"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-d92cb0"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" StyleSheet."}]},{"type":"element","tag":"span","props":{"class":"ct-5d3d75"},"children":[{"type":"text","value":"create"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" text: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" color: "}]},{"type":"element","tag":"span","props":{"class":"ct-571dc3"},"children":[{"type":"text","value":"\"red\""}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" fontSize: "}]},{"type":"element","tag":"span","props":{"class":"ct-a75813"},"children":[{"type":"text","value":"18"}]},{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":","}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":" });"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-fbcdfc"},"children":[{"type":"text","value":"};"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"choosing-between-class-and-function-components"},"children":[{"type":"text","value":"Choosing between Class and Function components"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Class-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you want to work with components lifecycle functions - Even though react provides hooks like "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"useEffect()"}]},{"type":"text","value":", this can get quite cumbersome when the components grows."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#screens"},"children":[{"type":"text","value":"Screen"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you are creating a "},{"type":"element","tag":"a","props":{"href":"#stores--context"},"children":[{"type":"text","value":"Context Provider"}]},{"type":"text","value":"."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"state"}]},{"type":"text","value":" variables - A general rule of thump is to keep state variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If your component has a lot a "},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"props"}]},{"type":"text","value":" variables - A general rule of thump is to keep props variable count at a max of 5."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If you intend on making API calls from within the component."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"When to choose Function-Based components:"}]}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"If the component is mostly visual with little to no functional logic."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers."}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-f20ccc{color:#116329}\n.ct-5d3d75{color:#8250DF}\n.ct-a75813{color:#0550AE}\n.ct-9d34aa{color:#6E7781}\n.ct-d92cb0{color:#CF222E}\n.ct-571dc3{color:#0A3069}\n.ct-fbcdfc{color:#24292F}\n.ct-3b36f4{color:#953800}\n.dark .ct-3b36f4{color:#FFA657}\n.dark .ct-fbcdfc{color:#C9D1D9}\n.dark .ct-571dc3{color:#A5D6FF}\n.dark .ct-d92cb0{color:#FF7B72}\n.dark .ct-9d34aa{color:#8B949E}\n.dark .ct-a75813{color:#79C0FF}\n.dark .ct-5d3d75{color:#D2A8FF}\n.dark .ct-f20ccc{color:#7EE787}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"},{"id":"choosing-between-class-and-function-components","depth":3,"text":"Choosing between Class and Function components"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:2.components.md","_source":"content","_file":"5.mobile/3.features/2.components.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/fis0WzoDt0.1678726370648.json b/docs/.output/public/api/_content/query/fis0WzoDt0.1678726370648.json new file mode 100644 index 00000000..5921c12a --- /dev/null +++ b/docs/.output/public/api/_content/query/fis0WzoDt0.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/plugins/quality","_dir":"plugins","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Quality","description":"","_type":"markdown","_id":"content:2.frontier:4.plugins:2.quality.md","_source":"content","_file":"2.frontier/4.plugins/2.quality.md","_extension":"md"},{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/fqiFs2KJLv.1678726370648.json b/docs/.output/public/api/_content/query/fqiFs2KJLv.1678726370648.json new file mode 100644 index 00000000..1fbf2bea --- /dev/null +++ b/docs/.output/public/api/_content/query/fqiFs2KJLv.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the installation guide below to set up the Stripe CLI.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/frontier/tree/main/packages/frontier-plugins/plugin-mobile","rel":["nofollow"]},"children":[{"type":"text","value":"Mobile"}]},{"type":"text","value":" is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models,\nand a data-layer design promoting unified consumption through React Contexts and Services.\nFollow the "},{"type":"element","tag":"a","props":{"href":"#installation"},"children":[{"type":"text","value":"installation guide"}]},{"type":"text","value":" below to set up the Stripe CLI."}]},{"type":"element","tag":"h2","props":{"id":"system-requirements"},"children":[{"type":"text","value":"System Requirements"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"You will need "},{"type":"element","tag":"a","props":{"href":"https://docs.expo.dev/get-started/installation/#expo-cli","rel":["nofollow"]},"children":[{"type":"text","value":"React Native Expo CLI"}]},{"type":"text","value":" and it dependencies in order to run the project."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Git"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"For macOS or Linux users: Watchman"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"MacOs to run on iOS simular."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Recommended tools"}]},{"type":"element","tag":"ol","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Visual Studio Code Editor "},{"type":"element","tag":"a","props":{"href":"https://code.visualstudio.com/download","rel":["nofollow"]},"children":[{"type":"text","value":"VS Code"}]},{"type":"text","value":"."}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"installation"},"children":[{"type":"text","value":"Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Installing the mobile plugin can be done with the following command:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install @rdfrontier/plugin-mobile\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"@rdfrontier/plugin-mobile"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"To check if the everything went will you can check the current version of mobile:"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile -v | --version\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-de0d85"},"children":[{"type":"text","value":"-v"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"|"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"--version"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now we can start using the CLI if the installation was successful."}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"project-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"project-name","props":{},"children":[{"type":"text","value":" with the actual name of your project. Preferrably written in snake case (eg. "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"my-awesome-project"}]},{"type":"text","value":")."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Example"}]}]},{"type":"element","tag":"code","props":{"code":"frontier mobile create-project my-awesome-project\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"create-project"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-2-run-project"},"children":[{"type":"text","value":"Step 2: Run project"}]},{"type":"element","tag":"code","props":{"code":"cd my-awesome-project\n","language":"shell","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-de0d85"},"children":[{"type":"text","value":"cd"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"my-awesome-project"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac."}]},{"type":"element","tag":"code","props":{"code":"npm run ios \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"ios"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"If you have a Mac or Windows."}]},{"type":"element","tag":"code","props":{"code":"npm run android\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"run"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"android"}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"From here you can perform multiple other actions but a good next step is to "},{"type":"element","tag":"a","props":{"href":"usage.md#add"},"children":[{"type":"text","value":"learn to add features"}]},{"type":"text","value":". See examples below:"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-screen"},"children":[{"type":"text","value":"Generating a Screen"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:screen \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile:add:screen"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"screen-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Screen gets its own dedicated folder. The folder will be given the name of the page. This folder is located at "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/src/screens/"}]},{"type":"text","value":"."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier mobile:add:component \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6918b6"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"mobile:add:component"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-32f434"},"children":[{"type":"text","value":"component-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-68ea31"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-bb61e0"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-bb61e0{color:#CF222E}\n.ct-de0d85{color:#0550AE}\n.ct-32f434{color:#0A3069}\n.ct-68ea31{color:#24292F}\n.ct-6918b6{color:#953800}\n.dark .ct-6918b6{color:#FFA657}\n.dark .ct-68ea31{color:#C9D1D9}\n.dark .ct-32f434{color:#A5D6FF}\n.dark .ct-de0d85{color:#79C0FF}\n.dark .ct-bb61e0{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"system-requirements","depth":2,"text":"System Requirements"},{"id":"installation","depth":2,"text":"Installation","children":[{"id":"validate-installation","depth":3,"text":"Validate installation"}]},{"id":"usage","depth":2,"text":"Usage","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-run-project","depth":3,"text":"Step 2: Run project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-screen","depth":3,"text":"Generating a Screen"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:5.mobile:1.getting-started:1.overview.md","_source":"content","_file":"5.mobile/1.getting-started/1.overview.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/hgp86jxc5i.1678726370648.json b/docs/.output/public/api/_content/query/hgp86jxc5i.1678726370648.json new file mode 100644 index 00000000..06ed95d8 --- /dev/null +++ b/docs/.output/public/api/_content/query/hgp86jxc5i.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/features/navigation","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Nagivation","description":"A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.","_type":"markdown","_id":"content:5.mobile:3.features:4.navigation.md","_source":"content","_file":"5.mobile/3.features/4.navigation.md","_extension":"md"},{"_path":"/mobile/testing/testing","_dir":"testing","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Testing (WIP)","description":"","_type":"markdown","_id":"content:5.mobile:4.testing:1.testing.md","_source":"content","_file":"5.mobile/4.testing/1.testing.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ikI1xOw44N.1678726370648.json b/docs/.output/public/api/_content/query/ikI1xOw44N.1678726370648.json new file mode 100644 index 00000000..7fdd2937 --- /dev/null +++ b/docs/.output/public/api/_content/query/ikI1xOw44N.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/features/stores","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Stores / Context","description":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"stores-context"},"children":[{"type":"text","value":"Stores / Context"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them."}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them."}]},{"type":"element","tag":"h3","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:store \n\n# Example\n$ frontier mobile:add:store auth\n\n# Output File \n> src/contexts/auth.context.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6dff24"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2d32e1"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"store-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-2d32e1"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-406d56"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-6dff24"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"mobile:add:store"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-7bac3f"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-406d56"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-2d32e1"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-9639d0"},"children":[{"type":"text","value":" src/contexts/auth.context.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/contexts"}]},{"type":"text","value":" directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components."}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Member"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Type"}]}]},{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"ContextProvider"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":"Consumer"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"React Component"}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Allows components to subscribe to changes in the global state endpoint."}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"with"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when Class-based components would like to consume data from the a context"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"use"},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"HOC"},{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]}]},{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"Used when function-based components would like to consume data from the a contextresponse."}]}]}]}]},{"type":"element","tag":"br","props":{},"children":[]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"ContextName"}]},{"type":"text","value":" - This is the provided name for the context when created using the CLI's "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"add"}]},{"type":"text","value":" command above."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"^1"}]},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"HOC (High-Order Component)"}]},{"type":"text","value":" - a higher-order component is a function that takes a component and returns a new enhanced component."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-406d56{color:#6E7781}\n.ct-2d32e1{color:#CF222E}\n.ct-7bac3f{color:#0A3069}\n.ct-9639d0{color:#24292F}\n.ct-6dff24{color:#953800}\n.dark .ct-6dff24{color:#FFA657}\n.dark .ct-9639d0{color:#C9D1D9}\n.dark .ct-7bac3f{color:#A5D6FF}\n.dark .ct-2d32e1{color:#FF7B72}\n.dark .ct-406d56{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":3,"text":"Usage"},{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:5.stores.md","_source":"content","_file":"5.mobile/3.features/5.stores.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/iqMgk3nfMY.1678726370648.json b/docs/.output/public/api/_content/query/iqMgk3nfMY.1678726370648.json new file mode 100644 index 00000000..60af2c0d --- /dev/null +++ b/docs/.output/public/api/_content/query/iqMgk3nfMY.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/features/stores","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Stores / Context","description":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:","_type":"markdown","_id":"content:5.mobile:3.features:5.stores.md","_source":"content","_file":"5.mobile/3.features/5.stores.md","_extension":"md"},{"_path":"/mobile/deployment/deployment","_dir":"deployment","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Deployment (WIP)","description":"","_type":"markdown","_id":"content:5.mobile:5.deployment:1.deployment.md","_source":"content","_file":"5.mobile/5.deployment/1.deployment.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/jWALMeA07z.1678726370648.json b/docs/.output/public/api/_content/query/jWALMeA07z.1678726370648.json new file mode 100644 index 00000000..788881bf --- /dev/null +++ b/docs/.output/public/api/_content/query/jWALMeA07z.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"},{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/kBgJSZjudv.1678726370648.json b/docs/.output/public/api/_content/query/kBgJSZjudv.1678726370648.json new file mode 100644 index 00000000..42654af8 --- /dev/null +++ b/docs/.output/public/api/_content/query/kBgJSZjudv.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"standard-library"},"children":[{"type":"text","value":"Standard Library"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/kP0lcPGw3r.1678726370648.json b/docs/.output/public/api/_content/query/kP0lcPGw3r.1678726370648.json new file mode 100644 index 00000000..64bd4188 --- /dev/null +++ b/docs/.output/public/api/_content/query/kP0lcPGw3r.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"getting-started"},"children":[{"type":"text","value":"Getting Started"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"element","tag":"a","props":{"href":"https://github.com/realdecoy/rdvue","rel":["nofollow"]},"children":[{"type":"text","value":"RDVue"}]},{"type":"text","value":" is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services."}]},{"type":"element","tag":"h2","props":{"id":"usage"},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e3caa"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"vue:"}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Global installation:"}]},{"type":"element","tag":"code","props":{"code":"frontier plugins:install vue\nfrontier vue \n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e3caa"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"plugins:install"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"vue"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-1e3caa"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"vue"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-2741d4"},"children":[{"type":"text","value":"actio"}]},{"type":"element","tag":"span","props":{"class":"ct-5f408a"},"children":[{"type":"text","value":"n"}]},{"type":"element","tag":"span","props":{"class":"ct-5a13f8"},"children":[{"type":"text","value":">"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"options"},"children":[{"type":"text","value":"Options"}]},{"type":"element","tag":"code","props":{"code":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information\n\n","language":"txt","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue::\n\nActions:\n create-project - Scaffold a new rdvue project\n add - Add a feature to a project\n plugin - Inject a utility to extend project functionality\n upgrade - Specify the rdvue template version for a project\n \nOptions:\n --help | -h - Show help information"}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"validate-installation"},"children":[{"type":"text","value":"Validate Installation"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We can confirm the successful installation of RDvue in three simple steps:"}]},{"type":"element","tag":"h3","props":{"id":"step-1-create-a-project"},"children":[{"type":"text","value":"Step 1: Create a project"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:create-project "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Replace "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":""}]},{"type":"text","value":" with the actual name of your project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Generated folders are named in kebab-case."}]},{"type":"element","tag":"h3","props":{"id":"step-2-install-project-dependencies"},"children":[{"type":"text","value":"Step 2: Install project dependencies"}]},{"type":"element","tag":"code","props":{"code":"cd \nnpm install\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"cd \nnpm install"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"step-3-serve-project"},"children":[{"type":"text","value":"Step 3: Serve project"}]},{"type":"element","tag":"code","props":{"code":"npm run serve\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npm run serve"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The project will be served at "},{"type":"element","tag":"a","props":{"href":"http://localhost:8080/","rel":["nofollow"]},"children":[{"type":"text","value":"http://localhost:8080/"}]},{"type":"text","value":" by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation."}]},{"type":"element","tag":"h2","props":{"id":"next-steps"},"children":[{"type":"text","value":"Next Steps"}]},{"type":"element","tag":"h3","props":{"id":"generating-a-page"},"children":[{"type":"text","value":"Generating a Page"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:add:page \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:add:page "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/ ."}]},{"type":"element","tag":"h3","props":{"id":"generating-a-component"},"children":[{"type":"text","value":"Generating a Component"}]},{"type":"element","tag":"code","props":{"code":"frontier vue:generate component \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"frontier vue:generate component "}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-5a13f8{color:#CF222E}\n.ct-2741d4{color:#0A3069}\n.ct-5f408a{color:#24292F}\n.ct-1e3caa{color:#953800}\n.dark .ct-1e3caa{color:#FFA657}\n.dark .ct-5f408a{color:#C9D1D9}\n.dark .ct-2741d4{color:#A5D6FF}\n.dark .ct-5a13f8{color:#FF7B72}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"usage","depth":2,"text":"Usage"},{"id":"options","depth":2,"text":"Options"},{"id":"validate-installation","depth":2,"text":"Validate Installation","children":[{"id":"step-1-create-a-project","depth":3,"text":"Step 1: Create a project"},{"id":"step-2-install-project-dependencies","depth":3,"text":"Step 2: Install project dependencies"},{"id":"step-3-serve-project","depth":3,"text":"Step 3: Serve project"}]},{"id":"next-steps","depth":2,"text":"Next Steps","children":[{"id":"generating-a-page","depth":3,"text":"Generating a Page"},{"id":"generating-a-component","depth":3,"text":"Generating a Component"}]}]}},"_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/khs8gA1FwT.1678726370648.json b/docs/.output/public/api/_content/query/khs8gA1FwT.1678726370648.json new file mode 100644 index 00000000..66587f03 --- /dev/null +++ b/docs/.output/public/api/_content/query/khs8gA1FwT.1678726370648.json @@ -0,0 +1 @@ +[null,{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ozdJ1wICj3.1678726370648.json b/docs/.output/public/api/_content/query/ozdJ1wICj3.1678726370648.json new file mode 100644 index 00000000..78549ef6 --- /dev/null +++ b/docs/.output/public/api/_content/query/ozdJ1wICj3.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/introduction/content-directory","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Content directory","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"content-directory"},"children":[{"type":"text","value":"Content directory"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:2.content-directory.md","_source":"content","_file":"2.frontier/1.introduction/2.content-directory.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/qGEjvCtHGf.1678726370648.json b/docs/.output/public/api/_content/query/qGEjvCtHGf.1678726370648.json new file mode 100644 index 00000000..de0b9523 --- /dev/null +++ b/docs/.output/public/api/_content/query/qGEjvCtHGf.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/libraries/typekit","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"TypeKit","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"typekit"},"children":[{"type":"text","value":"TypeKit"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:5.libraries:1.typekit.md","_source":"content","_file":"2.frontier/5.libraries/1.typekit.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/s6oaJBqQEn.1678726370648.json b/docs/.output/public/api/_content/query/s6oaJBqQEn.1678726370648.json new file mode 100644 index 00000000..45171b79 --- /dev/null +++ b/docs/.output/public/api/_content/query/s6oaJBqQEn.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/templates/dotnet","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Dot Net","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"backend-dot-net"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":" Backend"}]},{"type":"text","value":" - Dot Net"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:6.templates:1.dotNet.md","_source":"content","_file":"2.frontier/6.templates/1.dotNet.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/sEeveVucQ6.1678726370648.json b/docs/.output/public/api/_content/query/sEeveVucQ6.1678726370648.json new file mode 100644 index 00000000..d3022bfe --- /dev/null +++ b/docs/.output/public/api/_content/query/sEeveVucQ6.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/mobile/features/services","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Services","description":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"services"},"children":[{"type":"text","value":"Services"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only interact with a single domain"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation."}]}]},{"type":"element","tag":"code","props":{"code":"$ frontier mobile:add:service \n\n# Example\n$ frontier mobile:add:service auth\n\n# Output File \n> src/services/auth.service.tsx\n","language":"bash","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-83b4ee"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-46e465"},"children":[{"type":"text","value":"<"}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"service-nam"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":"e"}]},{"type":"element","tag":"span","props":{"class":"ct-46e465"},"children":[{"type":"text","value":">"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f45b43"},"children":[{"type":"text","value":"# Example"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-83b4ee"},"children":[{"type":"text","value":"$"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"frontier"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"mobile:add:service"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-0f99ca"},"children":[{"type":"text","value":"auth"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f45b43"},"children":[{"type":"text","value":"# Output File "}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-46e465"},"children":[{"type":"text","value":">"}]},{"type":"element","tag":"span","props":{"class":"ct-93bcfe"},"children":[{"type":"text","value":" src/services/auth.service.tsx"}]}]}]}]}]},{"type":"element","tag":"h3","props":{"id":"technical"},"children":[{"type":"text","value":"Technical"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Each generated serive is contained within the sub-folder "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"src/services"}]},{"type":"text","value":" directory. The directory contains a file for each service that has been created:"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"[service-name]."},{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"serivce.tsx"}]},{"type":"text","value":": The file will contain a related grouping of http functions."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality."}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage)."}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-f45b43{color:#6E7781}\n.ct-46e465{color:#CF222E}\n.ct-0f99ca{color:#0A3069}\n.ct-93bcfe{color:#24292F}\n.ct-83b4ee{color:#953800}\n.dark .ct-83b4ee{color:#FFA657}\n.dark .ct-93bcfe{color:#C9D1D9}\n.dark .ct-0f99ca{color:#A5D6FF}\n.dark .ct-46e465{color:#FF7B72}\n.dark .ct-f45b43{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"technical","depth":3,"text":"Technical"}]}},"_type":"markdown","_id":"content:5.mobile:3.features:3.services.md","_source":"content","_file":"5.mobile/3.features/3.services.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/tEt344hQrs.1678726370648.json b/docs/.output/public/api/_content/query/tEt344hQrs.1678726370648.json new file mode 100644 index 00000000..c0ffed72 --- /dev/null +++ b/docs/.output/public/api/_content/query/tEt344hQrs.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/design/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","_type":"markdown","_id":"content:6.design:1.getting-started:2.introduction.md","_source":"content","_file":"6.design/1.getting-started/2.introduction.md","_extension":"md"},null] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/tuGsv8hqtc.1678726370648.json b/docs/.output/public/api/_content/query/tuGsv8hqtc.1678726370648.json new file mode 100644 index 00000000..0b7bf6d3 --- /dev/null +++ b/docs/.output/public/api/_content/query/tuGsv8hqtc.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"sitemap"},"children":[{"type":"text","value":"Sitemap"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"This can be created by utilising the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap"}]},{"type":"text","value":" library, which can be installed as follows:"}]},{"type":"element","tag":"code-group","props":{},"children":[{"type":"element","tag":"code","props":{"code":"pnpm add --save-dev sitemap\n","filename":"pnpm","language":"bash","meta":"[pnpm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"pnpm"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"yarn add --dev sitemap\n","filename":"yarn","language":"bash","meta":"[yarn]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"yarn"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"add"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"--dev"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]},{"type":"element","tag":"code","props":{"code":"npm install --save-dev sitemap\n","filename":"npm","language":"bash","meta":"[npm]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"npm"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"install"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"--save-dev"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"sitemap"}]}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"server-route"},"children":[{"type":"text","value":"Server Route"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"We will be utilising the "},{"type":"element","tag":"a","props":{"href":"https://nuxt.com/docs/guide/directory-structure/server#server-routes","rel":["nofollow"]},"children":[{"type":"text","value":"server routes"}]},{"type":"text","value":" available within Nuxt, and to do so you'll need to create the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"server/"}]},{"type":"text","value":" directory within your website's root directly."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Once this is done, create a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"routes/"}]},{"type":"text","value":" directory inside this, and add a "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"sitemap.xml.ts"}]},{"type":"text","value":" file, this will translate to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"/sitemap.xml"}]},{"type":"text","value":"."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You'll need to add the following:"}]},{"type":"element","tag":"code","props":{"code":"import { serverQueryContent } from '#content/server'\nimport { SitemapStream, streamToPromise } from 'sitemap'\n\nexport default defineEventHandler(async (event) => {\n // Fetch all documents\n const docs = await serverQueryContent(event).find()\n const sitemap = new SitemapStream({\n hostname: 'https://example.com'\n })\n\n for (const doc of docs) {\n sitemap.write({\n url: doc._path,\n changefreq: 'monthly'\n })\n }\n sitemap.end()\n\n return streamToPromise(sitemap)\n})\n","filename":"server/routes/sitemap.xml.ts","language":"ts","meta":"[server/routes/sitemap.xml.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" { serverQueryContent } "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'#content/server'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"import"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" { SitemapStream, streamToPromise } "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"from"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'sitemap'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"defineEventHandler"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"("}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"async"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" (event) "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"=>"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"{"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bbd220"},"children":[{"type":"text","value":"// Fetch all documents"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"docs"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"await"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"serverQueryContent"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"(event)."}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"find"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"sitemap"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"="}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"new"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"SitemapStream"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" hostname: "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'https://example.com'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"for"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" ("}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"const"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-b32566"},"children":[{"type":"text","value":"doc"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"of"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" docs) {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"write"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" url: doc._path,"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" changefreq: "}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'monthly'"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" })"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" sitemap."}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"end"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"()"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"return"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"streamToPromise"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"(sitemap)"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"}"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":")"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Now, once users go to "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"https://example.com/sitemap.xml"}]},{"type":"text","value":", you'll find the generated XML file with all your pages."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"When using "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt generate"}]},{"type":"text","value":", you may want to pre-render the sitemap since the server route won't be able to run on a static hosting."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"You can do this using the "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nitro.prerender"}]},{"type":"text","value":" option in your "},{"type":"element","tag":"code-inline","props":{},"children":[{"type":"text","value":"nuxt.config"}]},{"type":"text","value":":"}]},{"type":"element","tag":"code","props":{"code":"export default defineNuxtConfig({\n // ...\n nitro: {\n prerender: {\n routes: ['/sitemap.xml']\n }\n }\n})\n","filename":"nuxt.config.ts","language":"ts","meta":"[nuxt.config.ts]"},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"export"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-f26bde"},"children":[{"type":"text","value":"default"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-3f742c"},"children":[{"type":"text","value":"defineNuxtConfig"}]},{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"({"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-bbd220"},"children":[{"type":"text","value":"// ..."}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":" "}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"nitro: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" prerender: {"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" routes: ["}]},{"type":"element","tag":"span","props":{"class":"ct-727d1b"},"children":[{"type":"text","value":"'/sitemap.xml'"}]},{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":"]"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-a8d0d7"},"children":[{"type":"text","value":" }"}]}]},{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{"class":"ct-5daa89"},"children":[{"type":"text","value":"})"}]}]}]}]}]},{"type":"element","tag":"style","children":[{"type":"text","value":".ct-bbd220{color:#6E7781}\n.ct-3f742c{color:#8250DF}\n.ct-f26bde{color:#CF222E}\n.ct-b32566{color:#0550AE}\n.ct-727d1b{color:#0A3069}\n.ct-a8d0d7{color:#24292F}\n.ct-5daa89{color:#953800}\n.dark .ct-5daa89{color:#FFA657}\n.dark .ct-a8d0d7{color:#C9D1D9}\n.dark .ct-727d1b{color:#A5D6FF}\n.dark .ct-b32566{color:#79C0FF}\n.dark .ct-f26bde{color:#FF7B72}\n.dark .ct-3f742c{color:#D2A8FF}\n.dark .ct-bbd220{color:#8B949E}"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"server-route","depth":2,"text":"Server Route"}]}},"_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/uBU6jwJTTz.1678726370648.json b/docs/.output/public/api/_content/query/uBU6jwJTTz.1678726370648.json new file mode 100644 index 00000000..025d1a8c --- /dev/null +++ b/docs/.output/public/api/_content/query/uBU6jwJTTz.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/features/services","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Services","description":"Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:","_type":"markdown","_id":"content:5.mobile:3.features:3.services.md","_source":"content","_file":"5.mobile/3.features/3.services.md","_extension":"md"},{"_path":"/mobile/features/stores","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Stores / Context","description":"A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:","_type":"markdown","_id":"content:5.mobile:3.features:5.stores.md","_source":"content","_file":"5.mobile/3.features/5.stores.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/urUfuwuVJk.1678726370648.json b/docs/.output/public/api/_content/query/urUfuwuVJk.1678726370648.json new file mode 100644 index 00000000..cc2b001a --- /dev/null +++ b/docs/.output/public/api/_content/query/urUfuwuVJk.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/installation/navigation","_dir":"installation","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Navigation","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"navigation"},"children":[{"type":"text","value":"Navigation"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:2.installation:3.navigation.md","_source":"content","_file":"2.frontier/2.installation/3.navigation.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/v3ScIppUqo.1678726370648.json b/docs/.output/public/api/_content/query/v3ScIppUqo.1678726370648.json new file mode 100644 index 00000000..449ada35 --- /dev/null +++ b/docs/.output/public/api/_content/query/v3ScIppUqo.1678726370648.json @@ -0,0 +1 @@ +[null,null] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/wMeaP8hHUN.1678726370648.json b/docs/.output/public/api/_content/query/wMeaP8hHUN.1678726370648.json new file mode 100644 index 00000000..5d99c83b --- /dev/null +++ b/docs/.output/public/api/_content/query/wMeaP8hHUN.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/frontier/libraries/standard-library","_dir":"libraries","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Standard Library","description":"","_type":"markdown","_id":"content:2.frontier:5.libraries:2.standard-library.md","_source":"content","_file":"2.frontier/5.libraries/2.standard-library.md","_extension":"md"},{"_path":"/frontier/templates/typescript","_dir":"templates","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":" Backend - Typescript","description":"","_type":"markdown","_id":"content:2.frontier:6.templates:2.typescript.md","_source":"content","_file":"2.frontier/6.templates/2.typescript.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/wQeP3PjQcK.1678726370648.json b/docs/.output/public/api/_content/query/wQeP3PjQcK.1678726370648.json new file mode 100644 index 00000000..23e51df0 --- /dev/null +++ b/docs/.output/public/api/_content/query/wQeP3PjQcK.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/rdvue/getting-started/overview","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Getting Started","description":"RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting\na development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models,\nand a data-layer design promoting unified consumption through Stores and Services.","_type":"markdown","_id":"content:3.rdvue:1.getting-started:1.overview.md","_source":"content","_file":"3.rdvue/1.getting-started/1.overview.md","_extension":"md"},{"_path":"/rdvue/scaffilding/sitemap","_dir":"scaffilding","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Sitemap","description":"A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.","_type":"markdown","_id":"content:3.rdvue:3.scaffilding:1.sitemap.md","_source":"content","_file":"3.rdvue/3.scaffilding/1.sitemap.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/wscAfndYyi.1678726370648.json b/docs/.output/public/api/_content/query/wscAfndYyi.1678726370648.json new file mode 100644 index 00000000..921c7d6a --- /dev/null +++ b/docs/.output/public/api/_content/query/wscAfndYyi.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/frontier/introduction/philosophy","_dir":"introduction","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Philosophy","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"philosophy"},"children":[{"type":"text","value":"Philosophy"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:2.frontier:1.introduction:3.philosophy.md","_source":"content","_file":"2.frontier/1.introduction/3.philosophy.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/xWeY3NfYtX.1678726370648.json b/docs/.output/public/api/_content/query/xWeY3NfYtX.1678726370648.json new file mode 100644 index 00000000..449ada35 --- /dev/null +++ b/docs/.output/public/api/_content/query/xWeY3NfYtX.1678726370648.json @@ -0,0 +1 @@ +[null,null] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/xYb2WcNJtQ.1678726370648.json b/docs/.output/public/api/_content/query/xYb2WcNJtQ.1678726370648.json new file mode 100644 index 00000000..b982c61a --- /dev/null +++ b/docs/.output/public/api/_content/query/xYb2WcNJtQ.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/spectre/getting-started/introduction","_dir":"getting-started","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Coming Soon","description":"","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"coming-soon"},"children":[{"type":"text","value":"Coming Soon"}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[]}},"_type":"markdown","_id":"content:4.Spectre:1.getting-started:1.introduction.md","_source":"content","_file":"4.Spectre/1.getting-started/1.introduction.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/xhTH8MZ8W5.1678726370648.json b/docs/.output/public/api/_content/query/xhTH8MZ8W5.1678726370648.json new file mode 100644 index 00000000..d1907677 --- /dev/null +++ b/docs/.output/public/api/_content/query/xhTH8MZ8W5.1678726370648.json @@ -0,0 +1 @@ +{"_path":"/rdvue/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.","body":{"type":"root","children":[{"type":"element","tag":"h1","props":{"id":"cli-commands"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli "},{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"README."}]}]},{"type":"element","tag":"h2","props":{"id":"how-to-use-rdvue-cli"},"children":[{"type":"text","value":"How to use rdvue-cli"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"All commands will follow the basic structure:"}]},{"type":"element","tag":"code","props":{"code":"npx rdvue \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"npx rdvue "}]}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-options"},"children":[{"type":"text","value":"CLI Options"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Run the cli option below for a list of commands and options"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Option"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"text","value":"--h, --help"}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Displays the help menu."}]}]}]}]},{"type":"element","tag":"h2","props":{"id":"cli-commands-1"},"children":[{"type":"text","value":"CLI Commands"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"RDVue includes the following sub-commands:"}]},{"type":"element","tag":"table","props":{},"children":[{"type":"element","tag":"thead","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"th","props":{"align":null},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Command"}]}]},{"type":"element","tag":"th","props":{"align":"left"},"children":[{"type":"element","tag":"strong","props":{},"children":[{"type":"text","value":"Description"}]}]}]}]},{"type":"element","tag":"tbody","props":{},"children":[{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#create-project"},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Scaffold a new rdvue project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#add"},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Add a feature to a project"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#plugin"},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Inject a utility to extend project functionality"}]}]},{"type":"element","tag":"tr","props":{},"children":[{"type":"element","tag":"td","props":{"align":null},"children":[{"type":"element","tag":"a","props":{"href":"#upgrade"},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"td","props":{"align":"left"},"children":[{"type":"text","value":"Specify the rdvue template version for a project"}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"create-project"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"create-project"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"create-project will scaffold a new project for you, using one of the presets selected from its interactive shell."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue create-project \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue create-project "}]}]}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"add"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"add"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Adds a feature to the project."}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ npx rdvue add: \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ npx rdvue add: "}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Features"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#components"},"children":[{"type":"text","value":"component"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#pages"},"children":[{"type":"text","value":"page"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#services"},"children":[{"type":"text","value":"service"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#stores"},"children":[{"type":"text","value":"store"}]}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"plugin"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"plugin"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Injects a utility to extend the project's functionality"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:plugin:\n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:plugin:"}]}]}]}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Libraries"}]},{"type":"element","tag":"ul","props":{},"children":[{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"buefy"}]},{"type":"element","tag":"li","props":{},"children":[{"type":"element","tag":"a","props":{"href":"Features.md#localization"},"children":[{"type":"text","value":"localization"}]}]},{"type":"element","tag":"li","props":{},"children":[{"type":"text","value":"vuetify"}]}]},{"type":"element","tag":"hr","props":{},"children":[]},{"type":"element","tag":"h3","props":{"id":"upgrade"},"children":[{"type":"element","tag":"em","props":{},"children":[{"type":"text","value":"upgrade"}]}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Attempts to upgrade the project's rdvue template to the specified version"}]},{"type":"element","tag":"p","props":{},"children":[{"type":"text","value":"Usage"}]},{"type":"element","tag":"code","props":{"code":"$ frontier vue:upgrade \n","meta":null},"children":[{"type":"element","tag":"pre","props":{},"children":[{"type":"element","tag":"code","props":{"__ignoreMap":""},"children":[{"type":"element","tag":"span","props":{"class":"line"},"children":[{"type":"element","tag":"span","props":{},"children":[{"type":"text","value":"$ frontier vue:upgrade "}]}]}]}]}]}],"toc":{"title":"","searchDepth":2,"depth":2,"links":[{"id":"how-to-use-rdvue-cli","depth":2,"text":"How to use rdvue-cli"},{"id":"cli-options","depth":2,"text":"CLI Options"},{"id":"cli-commands-1","depth":2,"text":"CLI Commands","children":[{"id":"create-project","depth":3,"text":"create-project"},{"id":"add","depth":3,"text":"add"},{"id":"plugin","depth":3,"text":"plugin"},{"id":"upgrade","depth":3,"text":"upgrade"}]}]}},"_type":"markdown","_id":"content:3.rdvue:2.cli-commands:1.usage.md","_source":"content","_file":"3.rdvue/2.cli-commands/1.usage.md","_extension":"md"} \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/yi9ZyVWLDM.1678726370648.json b/docs/.output/public/api/_content/query/yi9ZyVWLDM.1678726370648.json new file mode 100644 index 00000000..51e71782 --- /dev/null +++ b/docs/.output/public/api/_content/query/yi9ZyVWLDM.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/features/features","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Features","description":"This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.","_type":"markdown","_id":"content:5.mobile:3.features:1.features.md","_source":"content","_file":"5.mobile/3.features/1.features.md","_extension":"md"},{"_path":"/mobile/features/components","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Components","description":"Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by Screens and Layout. Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide.","_type":"markdown","_id":"content:5.mobile:3.features:2.components.md","_source":"content","_file":"5.mobile/3.features/2.components.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/api/_content/query/ymHf7a6Zbx.1678726370648.json b/docs/.output/public/api/_content/query/ymHf7a6Zbx.1678726370648.json new file mode 100644 index 00000000..6d1b95e0 --- /dev/null +++ b/docs/.output/public/api/_content/query/ymHf7a6Zbx.1678726370648.json @@ -0,0 +1 @@ +[{"_path":"/mobile/cli-commands/usage","_dir":"cli-commands","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"CLI Commands","description":"This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.","_type":"markdown","_id":"content:5.mobile:2.cli-commands:1.usage.md","_source":"content","_file":"5.mobile/2.cli-commands/1.usage.md","_extension":"md"},{"_path":"/mobile/features/screens","_dir":"features","_draft":false,"_partial":false,"_locale":"","_empty":false,"title":"Screens","description":"A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are not to be imported by other Screen, Components or Layouts.","_type":"markdown","_id":"content:5.mobile:3.features:1.screens.md","_source":"content","_file":"5.mobile/3.features/1.screens.md","_extension":"md"}] \ No newline at end of file diff --git a/docs/.output/public/design/getting-started/introduction/_payload.js b/docs/.output/public/design/getting-started/introduction/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/design/getting-started/introduction/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/design/getting-started/introduction/index.html b/docs/.output/public/design/getting-started/introduction/index.html new file mode 100644 index 00000000..04be1804 --- /dev/null +++ b/docs/.output/public/design/getting-started/introduction/index.html @@ -0,0 +1,12 @@ + + + +Coming Soon · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/development/_payload.js b/docs/.output/public/frontier/cli/development/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/cli/development/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/development/index.html b/docs/.output/public/frontier/cli/development/index.html new file mode 100644 index 00000000..27892082 --- /dev/null +++ b/docs/.output/public/frontier/cli/development/index.html @@ -0,0 +1,12 @@ + + + +Development · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/usage/_payload.js b/docs/.output/public/frontier/cli/usage/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/cli/usage/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/cli/usage/index.html b/docs/.output/public/frontier/cli/usage/index.html new file mode 100644 index 00000000..e88aa76b --- /dev/null +++ b/docs/.output/public/frontier/cli/usage/index.html @@ -0,0 +1,12 @@ + + + +Usage · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/development/_payload.js b/docs/.output/public/frontier/installation/development/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/installation/development/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/development/index.html b/docs/.output/public/frontier/installation/development/index.html new file mode 100644 index 00000000..31219a4d --- /dev/null +++ b/docs/.output/public/frontier/installation/development/index.html @@ -0,0 +1,12 @@ + + + +Development · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/general/_payload.js b/docs/.output/public/frontier/installation/general/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/installation/general/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/general/index.html b/docs/.output/public/frontier/installation/general/index.html new file mode 100644 index 00000000..7f7f1742 --- /dev/null +++ b/docs/.output/public/frontier/installation/general/index.html @@ -0,0 +1,12 @@ + + + +General Use · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/navigation/_payload.js b/docs/.output/public/frontier/installation/navigation/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/installation/navigation/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/installation/navigation/index.html b/docs/.output/public/frontier/installation/navigation/index.html new file mode 100644 index 00000000..e1c6c867 --- /dev/null +++ b/docs/.output/public/frontier/installation/navigation/index.html @@ -0,0 +1,12 @@ + + + +Navigation · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/_payload.js b/docs/.output/public/frontier/introduction/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/introduction/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/content-directory/_payload.js b/docs/.output/public/frontier/introduction/content-directory/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/introduction/content-directory/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/content-directory/index.html b/docs/.output/public/frontier/introduction/content-directory/index.html new file mode 100644 index 00000000..7b66c86c --- /dev/null +++ b/docs/.output/public/frontier/introduction/content-directory/index.html @@ -0,0 +1,12 @@ + + + +Content directory · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/index.html b/docs/.output/public/frontier/introduction/index.html new file mode 100644 index 00000000..10f5a6d5 --- /dev/null +++ b/docs/.output/public/frontier/introduction/index.html @@ -0,0 +1,12 @@ + + + +Frontier · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/philosophy/_payload.js b/docs/.output/public/frontier/introduction/philosophy/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/introduction/philosophy/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/philosophy/index.html b/docs/.output/public/frontier/introduction/philosophy/index.html new file mode 100644 index 00000000..deba03a4 --- /dev/null +++ b/docs/.output/public/frontier/introduction/philosophy/index.html @@ -0,0 +1,12 @@ + + + +Philosophy · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/whats-frontier/_payload.js b/docs/.output/public/frontier/introduction/whats-frontier/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/introduction/whats-frontier/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/introduction/whats-frontier/index.html b/docs/.output/public/frontier/introduction/whats-frontier/index.html new file mode 100644 index 00000000..31c57868 --- /dev/null +++ b/docs/.output/public/frontier/introduction/whats-frontier/index.html @@ -0,0 +1,12 @@ + + + +What is Frontier? · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/standard-library/_payload.js b/docs/.output/public/frontier/libraries/standard-library/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/libraries/standard-library/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/standard-library/index.html b/docs/.output/public/frontier/libraries/standard-library/index.html new file mode 100644 index 00000000..c0457f26 --- /dev/null +++ b/docs/.output/public/frontier/libraries/standard-library/index.html @@ -0,0 +1,12 @@ + + + +Standard Library · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/typekit/_payload.js b/docs/.output/public/frontier/libraries/typekit/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/libraries/typekit/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/libraries/typekit/index.html b/docs/.output/public/frontier/libraries/typekit/index.html new file mode 100644 index 00000000..93fbc704 --- /dev/null +++ b/docs/.output/public/frontier/libraries/typekit/index.html @@ -0,0 +1,12 @@ + + + +TypeKit · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/frontend/_payload.js b/docs/.output/public/frontier/plugins/frontend/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/plugins/frontend/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/frontend/index.html b/docs/.output/public/frontier/plugins/frontend/index.html new file mode 100644 index 00000000..d746a917 --- /dev/null +++ b/docs/.output/public/frontier/plugins/frontend/index.html @@ -0,0 +1,12 @@ + + + +Frontend · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/mobile/_payload.js b/docs/.output/public/frontier/plugins/mobile/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/plugins/mobile/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/mobile/index.html b/docs/.output/public/frontier/plugins/mobile/index.html new file mode 100644 index 00000000..8a3f8b99 --- /dev/null +++ b/docs/.output/public/frontier/plugins/mobile/index.html @@ -0,0 +1,12 @@ + + + +Mobile · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/quality/_payload.js b/docs/.output/public/frontier/plugins/quality/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/plugins/quality/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/plugins/quality/index.html b/docs/.output/public/frontier/plugins/quality/index.html new file mode 100644 index 00000000..ea9eaca9 --- /dev/null +++ b/docs/.output/public/frontier/plugins/quality/index.html @@ -0,0 +1,12 @@ + + + +Quality · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/dotnet/_payload.js b/docs/.output/public/frontier/templates/dotnet/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/templates/dotnet/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/dotnet/index.html b/docs/.output/public/frontier/templates/dotnet/index.html new file mode 100644 index 00000000..52b5ad5b --- /dev/null +++ b/docs/.output/public/frontier/templates/dotnet/index.html @@ -0,0 +1,12 @@ + + + + Backend - Dot Net · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/nuxt/_payload.js b/docs/.output/public/frontier/templates/nuxt/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/templates/nuxt/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/nuxt/index.html b/docs/.output/public/frontier/templates/nuxt/index.html new file mode 100644 index 00000000..6944f886 --- /dev/null +++ b/docs/.output/public/frontier/templates/nuxt/index.html @@ -0,0 +1,12 @@ + + + + Frontend - Nuxtjs · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/typescript/_payload.js b/docs/.output/public/frontier/templates/typescript/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/frontier/templates/typescript/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/frontier/templates/typescript/index.html b/docs/.output/public/frontier/templates/typescript/index.html new file mode 100644 index 00000000..47fe397f --- /dev/null +++ b/docs/.output/public/frontier/templates/typescript/index.html @@ -0,0 +1,12 @@ + + + + Backend - Typescript · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/iac/getting-started/introduction/_payload.js b/docs/.output/public/iac/getting-started/introduction/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/iac/getting-started/introduction/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/iac/getting-started/introduction/index.html b/docs/.output/public/iac/getting-started/introduction/index.html new file mode 100644 index 00000000..b1427977 --- /dev/null +++ b/docs/.output/public/iac/getting-started/introduction/index.html @@ -0,0 +1,12 @@ + + + +Coming Soon · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/index.html b/docs/.output/public/index.html index db9e2629..9c4d26d1 100644 --- a/docs/.output/public/index.html +++ b/docs/.output/public/index.html @@ -5,14 +5,13 @@ - - -

    Discover the all new

    Frontier - by Realdecoy

    A full service toolset for building web and mobile software products. With templates and libraries, Frontier delivers a designed development experience to 10x your software development.

    Bash
    $npm i -g @rdfrontier/cli
    Click to copy

    Powerful Features

    CLI

    Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre.

    Standard Library

    Leverage battle-hardened code from the standard library.

    TypeKit

    Use Common type definition and data structures from the typekit.

    RDVue

    A beautifully structured vue template and cli for authoring frontend applications.

    Spectre

    Test your applications to the moon with the Spectre testing suite.

    Mobile

    Build Mobile applications with ease with structures React Native foundation.

    +

    Discover the all new

    Frontier - by Realdecoy

    A full service toolset for building web and mobile software products. With templates and libraries, Frontier delivers a designed development experience to 10x your software development.

    Bash
    $npm i -g @rdfrontier/cli
    Click to copy

    Powerful Features

    CLI

    Take advantage of the Frontier CLI powering tools for: RDVue, RDMobile, and Spectre.

    Standard Library

    Leverage battle-hardened code from the standard library.

    TypeKit

    Use Common type definition and data structures from the typekit.

    RDVue

    A beautifully structured vue template and cli for authoring frontend applications.

    Spectre

    Test your applications to the moon with the Spectre testing suite.

    Mobile

    Build Mobile applications with ease with structures React Native foundation.

    \ No newline at end of file diff --git a/docs/.output/public/mobile/cli-commands/usage/_payload.js b/docs/.output/public/mobile/cli-commands/usage/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/cli-commands/usage/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/cli-commands/usage/index.html b/docs/.output/public/mobile/cli-commands/usage/index.html new file mode 100644 index 00000000..9342333c --- /dev/null +++ b/docs/.output/public/mobile/cli-commands/usage/index.html @@ -0,0 +1,23 @@ + + + +CLI Commands · Frontier + + + + + + +

    CLI Commands


    This reference documents every command and flag available in Stripe’s command-line interface. The mobile CLI helps with scaffolfing project, components and other features right from the terminal.

    CLI Options

    Run the CLI option below for a list of commands and options

    Usage

    $ frontier mobile:<command> --help
    OptionDescription
    --h, --helpDisplays the help menu.

    CLI Command

    RDVue includes the following sub-commands:

    CommandDescription
    create-projectScaffold a new rdvue project
    addAdd a feature to a project

    create-project

    create-project will scaffold a new project for you, using one of the presets selected from its interactive shell.

    Usage

    $ npx mobile:create-project <project-name>
    OptionDescription
    --bundleIdenifierThe name of the unique identifier that will used for deployment to the App & Google play Store (eg. com.company.app).
    --verboseShow debug logs when creating the project.

    add

    Adds a feature to the project.

    Usage

    $ frontier mobile:add:<feature> <name>

    Features

    Learn more below about each feature the CLI provides:

    + \ No newline at end of file diff --git a/docs/.output/public/mobile/deployment/deployment/_payload.js b/docs/.output/public/mobile/deployment/deployment/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/deployment/deployment/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/deployment/deployment/index.html b/docs/.output/public/mobile/deployment/deployment/index.html new file mode 100644 index 00000000..88a9fc3c --- /dev/null +++ b/docs/.output/public/mobile/deployment/deployment/index.html @@ -0,0 +1,12 @@ + + + +Deployment (WIP) · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/mobile/features/components/_payload.js b/docs/.output/public/mobile/features/components/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/features/components/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/features/components/index.html b/docs/.output/public/mobile/features/components/index.html new file mode 100644 index 00000000..87b9d3be --- /dev/null +++ b/docs/.output/public/mobile/features/components/index.html @@ -0,0 +1,30 @@ + + + +Components · Frontier + + + + + + +

    Components

    Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by Screens and Layout. Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide.

    Usage

    $ frontier mobile:add:component <component-name># Example$ frontier mobile:add:component fancy-text

    Technical

    A Component folder consists of for two files. These file include:

    • [component].tsx: This file holds actual functional logic and view hierarchy for the component you are trying to create..
    • [component].styles.tsx: This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all.

    See below for example of folder structure after creating a component called fancy-text:

    +

    Example

    Below is an example of a component called fancy-text.tsx

    // @/component/fancy-text/fancy-text.tsximport { Component } from "react";import styles from "./fancy-text.styles";class FancyText extends Component {  render() {    return <Text style={styles.title}>Some Fancy Text</Text>  }}

    This is an example of the stylesheet fancy-text.styles.tsx.

    // @/component/fancy-text/fancy-text.style.tsximport { StyleSheet } from "react-native";export StyleSheet.create({    text: {      color: "red",      fontSize: 18,    }  });};

    Choosing between Class and Function components

    There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier.

    When to choose Class-Based components:

    1. If you want to work with components lifecycle functions - Even though react provides hooks like useEffect(), this can get quite cumbersome when the components grows.
    2. If you are creating a Screen.
    3. If you are creating a Context Provider.
    4. If your component has a lot a state variables - A general rule of thump is to keep state variable count at a max of 5.
    5. If your component has a lot a props variables - A general rule of thump is to keep props variable count at a max of 5.
    6. If you intend on making API calls from within the component.

    When to choose Function-Based components:

    1. If the component is mostly visual with little to no functional logic.

    Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers.


    + \ No newline at end of file diff --git a/docs/.output/public/mobile/features/features/_payload.js b/docs/.output/public/mobile/features/features/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/features/features/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/features/features/index.html b/docs/.output/public/mobile/features/features/index.html new file mode 100644 index 00000000..84175527 --- /dev/null +++ b/docs/.output/public/mobile/features/features/index.html @@ -0,0 +1,16 @@ + + + +Features · Frontier + + + + + + +

    Features

    This section will provide a brief introduction to generating features inside a project. Each available feature has a dedicated section in our documentation.

    Reading through this section will get you comfortable with the CLI. An in depth look at the command used in this section, along with all available commands, can be found in CLI Commands.


    +> It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document. +
    + \ No newline at end of file diff --git a/docs/.output/public/mobile/features/navigation/_payload.js b/docs/.output/public/mobile/features/navigation/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/features/navigation/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/features/navigation/index.html b/docs/.output/public/mobile/features/navigation/index.html new file mode 100644 index 00000000..41d20feb --- /dev/null +++ b/docs/.output/public/mobile/features/navigation/index.html @@ -0,0 +1,23 @@ + + + +Nagivation · Frontier + + + + + + +

    Nagivation

    A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.

    ?> A Page needs to be added to the Router before it can be previewed within a web browser.

    Technical

    Each generated context is contained within the sub-folder src/contexts directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components.

    • [page].vue: This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation.
    • [page].ts: This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements.
    • [page].scss: This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file.

    ?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory.

    • [page].spec.ts: This contains the unit-level tests for the page. Read the testing section for more details about writing tests.

    Routing

    In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings.

    Below is an example of a Route definition for a sample Login page:

    <Stack.Navigator screenOptions={{ headerShwon: false}} initialRouteName='Login'>  <Stack.Screen name="Login" component={Login} /></Stack.Navigator>

    The name field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency.

    The component property specifies the Screen component to load for the given name.

    Navigation should be centralized within the src/core/navigation directory. This is where the React Navigation library is configured and where the Stack.

    For more details on the available options for configuring a Stack, please refer to the React Navigation documentation, and more specifically, the API Definition.


    Table of Contents
    + \ No newline at end of file diff --git a/docs/.output/public/mobile/features/screens/_payload.js b/docs/.output/public/mobile/features/screens/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/features/screens/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/features/screens/index.html b/docs/.output/public/mobile/features/screens/index.html new file mode 100644 index 00000000..2dee9bb6 --- /dev/null +++ b/docs/.output/public/mobile/features/screens/index.html @@ -0,0 +1,23 @@ + + + +Screens · Frontier + + + + + + +

    Screens

    A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are not to be imported by other Screen, Components or Layouts.

    A Screen needs to be added to the Navigator before it can be used within a mobile application.

    Usage

    $ frontier mobile:add:screen <screen-name># Example$ frontier mobile:add:screen login

    Technical

    Each generated Screen is contained within it's own sub-folder within the src/screens directory. The directory contains the following files which each carry out a specific role in developing a Screen:

    • [screen].tsx: This is similar to a Component but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation.
    • [screen].styles.tsx: All Stylesheet file are the same as the stylesheet used shown in Component.

    Table of Contents
    + \ No newline at end of file diff --git a/docs/.output/public/mobile/features/services/_payload.js b/docs/.output/public/mobile/features/services/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/features/services/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/features/services/index.html b/docs/.output/public/mobile/features/services/index.html new file mode 100644 index 00000000..3f908568 --- /dev/null +++ b/docs/.output/public/mobile/features/services/index.html @@ -0,0 +1,23 @@ + + + +Services · Frontier + + + + + + +

    Services

    Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:

    • Only interact with a single domain
    • Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation.
    $ frontier mobile:add:service <service-name># Example$ frontier mobile:add:service auth# Output File > src/services/auth.service.tsx

    Technical

    Each generated serive is contained within the sub-folder src/services directory. The directory contains a file for each service that has been created:

    • [service-name].serivce.tsx: The file will contain a related grouping of http functions.
    • While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality.
    • Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage).
    + \ No newline at end of file diff --git a/docs/.output/public/mobile/features/stores/_payload.js b/docs/.output/public/mobile/features/stores/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/features/stores/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/features/stores/index.html b/docs/.output/public/mobile/features/stores/index.html new file mode 100644 index 00000000..d2ba9234 --- /dev/null +++ b/docs/.output/public/mobile/features/stores/index.html @@ -0,0 +1,23 @@ + + + +Stores / Context · Frontier + + + + + + +

    Stores / Context

    A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways:

    • Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them.

    An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them.

    Usage

    $ frontier mobile:add:store <store-name># Example$ frontier mobile:add:store auth# Output File > src/contexts/auth.context.tsx

    Technical

    Each generated serive is contained within the sub-folder src/contexts directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components.

    MemberTypeDescription
    ContextNameContextProviderReact ComponentEvery Context object comes with a Provider React component that allows consuming components to subscribe to context changes.
    ContextNameConsumerReact ComponentAllows components to subscribe to changes in the global state endpoint.
    withContextNameHOC^1Used when Class-based components would like to consume data from the a context
    useContextNameHOC^1Used when function-based components would like to consume data from the a contextresponse.

    • ContextName - This is the provided name for the context when created using the CLI's add command above.
    • ^1HOC (High-Order Component) - a higher-order component is a function that takes a component and returns a new enhanced component.
    Table of Contents
    + \ No newline at end of file diff --git a/docs/.output/public/mobile/getting-started/overview/_payload.js b/docs/.output/public/mobile/getting-started/overview/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/getting-started/overview/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/getting-started/overview/index.html b/docs/.output/public/mobile/getting-started/overview/index.html new file mode 100644 index 00000000..ab3817cd --- /dev/null +++ b/docs/.output/public/mobile/getting-started/overview/index.html @@ -0,0 +1,29 @@ + + + +Getting Started · Frontier + + + + + + +

    Getting Started

    Mobile is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models, +and a data-layer design promoting unified consumption through React Contexts and Services. +Follow the installation guide below to set up the Stripe CLI.

    System Requirements

    1. You will need React Native Expo CLI and it dependencies in order to run the project.
    2. Git
    3. For macOS or Linux users: Watchman
    4. MacOs to run on iOS simular.

    Recommended tools

    1. Visual Studio Code Editor VS Code.

    Installation

    Installing the mobile plugin can be done with the following command:

    frontier plugins:install @rdfrontier/plugin-mobile

    Validate installation

    To check if the everything went will you can check the current version of mobile:

    frontier mobile -v | --version

    Usage

    Now we can start using the CLI if the installation was successful.

    Step 1: Create a project

    frontier mobile create-project <project-name>

    Replace with the actual name of your project. Preferrably written in snake case (eg. my-awesome-project).

    Example

    frontier mobile create-project my-awesome-project

    Step 2: Run project

    cd my-awesome-project

    If you have a Mac.

    npm run ios 

    If you have a Mac or Windows.

    npm run android

    Next Steps

    From here you can perform multiple other actions but a good next step is to learn to add features. See examples below:

    Generating a Screen

    frontier mobile:add:screen <screen-name>

    Each generated Screen gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/screens/<screen-name>.

    Generating a Component

    frontier mobile:add:component <component-name>
    + \ No newline at end of file diff --git a/docs/.output/public/mobile/testing/testing/_payload.js b/docs/.output/public/mobile/testing/testing/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/mobile/testing/testing/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/mobile/testing/testing/index.html b/docs/.output/public/mobile/testing/testing/index.html new file mode 100644 index 00000000..ee1b491f --- /dev/null +++ b/docs/.output/public/mobile/testing/testing/index.html @@ -0,0 +1,12 @@ + + + +Testing (WIP) · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/public/rdvue/cli-commands/usage/_payload.js b/docs/.output/public/rdvue/cli-commands/usage/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/cli-commands/usage/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/cli-commands/usage/index.html b/docs/.output/public/rdvue/cli-commands/usage/index.html new file mode 100644 index 00000000..bd34b1a8 --- /dev/null +++ b/docs/.output/public/rdvue/cli-commands/usage/index.html @@ -0,0 +1,14 @@ + + + +CLI Commands · Frontier + + + + + + +

    CLI Commands


    The Rdvue command line tool (CLI) is the main entry point for getting up and running with the Vue application. Similar documentation is available in the rdvue-cli README.

    How to use rdvue-cli

    All commands will follow the basic structure:

    npx rdvue <action>

    CLI Options

    Run the cli option below for a list of commands and options

    OptionDescription
    --h, --helpDisplays the help menu.

    CLI Commands

    RDVue includes the following sub-commands:

    CommandDescription
    create-projectScaffold a new rdvue project
    addAdd a feature to a project
    pluginInject a utility to extend project functionality
    upgradeSpecify the rdvue template version for a project

    create-project

    create-project will scaffold a new project for you, using one of the presets selected from its interactive shell.

    Usage

    $ npx rdvue create-project <project name>

    add

    Adds a feature to the project.

    Usage

    $ npx rdvue add:<feature> <name>

    Features


    plugin

    Injects a utility to extend the project's functionality

    Usage

    $ frontier vue:plugin:<library>

    Libraries


    upgrade

    Attempts to upgrade the project's rdvue template to the specified version

    Usage

    $ frontier vue:upgrade <version>
    + \ No newline at end of file diff --git a/docs/.output/public/rdvue/features/features/_payload.js b/docs/.output/public/rdvue/features/features/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/features/features/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/features/features/index.html b/docs/.output/public/rdvue/features/features/index.html new file mode 100644 index 00000000..76745dbe --- /dev/null +++ b/docs/.output/public/rdvue/features/features/index.html @@ -0,0 +1,34 @@ + + + +Rdvue Features · Frontier + + + + + + +

    Rdvue Features

    This section will provide a brief introduction to generating features inside a project. We provide two examples, namely generating a Page and a Component. Each available feature has a dedicated section in our documentation.

    Reading through this section will get you comfortable with the CLI.

    An in depth look at the command used in this section, along with all available commands, can be found in CLI Commands.

    RDvue provides an elegant way for generating features.

    Services

    Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should:

    • only interact with a single domain
    • only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods support such; adding order related data would make for poor encapsulation.

    Technical

    • While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality.
    • Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over LocalStorage).
    • Each service has access to the following protected memebers:
    MemberDescription
    api (field)
    type: Axios
    Helper to invoke web APIs. Individual service methods need only specify their endpoint paths relative to the registered root domain.
    onRequest(request: AxiosRequestConfig) => voidInvoked before requests are sent to the web API endpoint.
    onResponse(response: AxiosResponse) => voidInvoked before responses are handled by a Service’s methods.
    onError(data: any)Invoked for errors during request or response.

    Pages

    A Page is a conceptual grouping for Vue Components used in routing. Pages are not to be imported by other Pages, Components or Layouts.

    A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The Layouts section goes into more detail on this approach.

    ?> A Page needs to be added to the Router before it can be previewed within a web browser.

    Technical

    Each generated Page is contained within it’s own sub-folder within the src/pages directory. The directory contains the following files which each carry out a specific role in developing a Page:

    • [page].vue: This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation.
    • [page].ts: This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements.
    • [page].scss: This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [page].vue template file.

    ?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory.

    • [page].spec.ts: This contains the unit-level tests for the page. Read the testing section for more details about writing tests.

    Routing

    In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings.

    Below is an example of a Route definition for a sample Login page:

    {
    +  path: '/login',
    +  name: 'login',
    +  meta: { layout: 'default' },
    +  component: () => import(/* webpackChunkName: "login" */ '@/pages/login'),
    +},

    The path property specifies where the page will be accessible under the domain, for example: localhost:8080**/login**.

    The name field provides an alternative means of identifying and navigation to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency.

    The meta property allows specifying arbitrary data that will get passed along to the loaded Page. The CLI recognizes a sub-property called layout which it will use to attach a Layout to a page.

    The component property specifies the Page to load for the given path. Here we used the recommended approach of dynamically loading the Page component using the import() function.

    ?> The import function is not the same as the import statements found at the top of a module file. The former is an asynchronous function that will load a module on-demand at runtime, while the latter only does static, compile-time, imports that always get bundled into the core application’s JavaScript payload.

    The comment within the import statement is a directive for the Webpack pre-processor that compiles to project to create a new file which only contains the code needed to construct and execute the respective Page.

    !>The comment inside the brackets of the import function are important and should be made unique to support proper code separation - or Chunking as it’s technically referred to. Do not delete them and ensure the value for webpackChunkName is unique for each route.

    Components

    A Component is a conceptual grouping for Vue components which are imported by Pages and other Components.

    Unlike Pages, Components are never used in Routing. That would deviate from the RDVue development style guide.

    Technical

    A Component contains all the files present for Pages with the addition of:

    • [component].story.ts: This contains the list of stories which describe the component’s usage. This is helpful for documentation purposes in providing live examples of key ways a Component can be used through the included Storybook preview tool.

    Components use special decorators within their TypeScript file to add metadata useful for generating its documentation within Storybook:

    • @StoryComponent: decorates the Component’s class, providing the same functionality as @Component (used in pages) with the addition of:
    description
    type: string; default: undefined
    Describe the component’s overall purpose.
    module
    type: string; default: undefined
    Text stating the module used in the import statement (eg. “@/components/foo”)
    playground (optional)
    type: boolean, default: true
    Toggles the Playground feature for this component within the Storybook preview.
    api (optional)
    type: boolean, default: true
    Display the Component’s list of props, slots and events on the API tab within the Storybook preview tool.
    slots (optional)
    type: {[key: string]: string}, default: undefined
    Describe the slots available within the component. Eg.

    <br>slots: { <br> header: ‘The header component goes here’,<br> ... <br>}<br>
    • @StoryProp: decorates the Component’s Props, providing the same functionality as @Prop with the addition of:
    description
    type: string; default: undefined
    Describe the prop's overall purpose.
    values (optional)
    [array; default: undefined
    An optional list of values which are considered acceptable for the prop. This is great for constraining Props that are bound to an enum type.
    • @StoryEvent: decorates the Component’s Events, providing the same functionality as @Event with the addition of:
    description
    type: string; default: undefined
    Describe the event’s overall purpose.

    Layouts

    A Layout is a conceptual grouping given to components which serve the purpose of rendering re-usable pieces of UI shared by many pages. An easy example is the header and footer information displayed on many sites: though the body of the page changes often, those elements remain the same.

    ?>A Layout allows us to define the common elements while leaving a slot (router-view) to inject the actual body of the Page.

    Technical

    To get a Page to use a Layout, edit it’s definition in the router.ts file and add the following option:

    meta: {
    +  layout: '<layout-name>',
    +}

    For example:

     routes: [
    +    {
    +      path: '/',
    +      name: 'home',
    +      component: [...],
    +      meta: {
    +        layout: 'two-column',
    +      },
    +    },
    +  ]

    Above, the Layout refers to a component within the src/layouts directory called two-column.

    A Layout must contain a router-view to display the Page within the area designated for it’s content.

    Each generated Layout is contained within it’s own sub-folder within the src/layouts directory. The directory contains the following files which each carry out a specific role in developing a Layout:

    • [layout].vue: This contains the Vue template markup used to implement the structure and layout of a Layout. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation.
    • [layout].ts: This contains the controller which provides the procedural code-behind logical needed to add integrations to a Layout. Through this file you may expose data and handle events generated by Layout elements.
    • [layout].scss: This contains the stylesheet to be applied to the Layout- and that Layout only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the [layout].vue template file.

    ?>Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory.

    • [layout].spec.ts: This contains the unit-level tests for the Layout. Read the testing section for more details about writing tests.

    Stores

    A Store is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for [re]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a Vue Store differs in two distinct ways:

    • Properties are reactive. Changing Store values will automatically propagate to the component-level bindings which use them.
    • Stores enforce a strong process-control for mutating values. Every change within a store must go through a specially designed method, called a Mutation, in order to update an internal value. This also produces the side-effect of making state manipulation atomic and track-able (using the Vue DevTools).

    An application can have as many Stores as needed to logically group state concerns. The RDVue CLI creates strongly typed Stores, enabling full Intellisense and compiler support when writing code against them.

    Data within a Store can be managed using 3 intrinsic functionalities of every Store:

    • Getters: Retrieve a value within the store.
    • Actions - Arbitrary, asynchronous, functions which can perform business logic and invoke mutations.
    • Mutations - Special, synchronous, functions which only update the values in Store. The operate atomically, meaning their changes are indivisible.

    Technical

    A Store consists of a standard Class, with Decorators providing the special functionality:

    • The @Module Decorator is added to the class itself and will be preconfigured with the necessary options whenever you use the CLI to create a new Store.
    • The @Action Decorator is added to the class’ methods that want to carry-out business logic and be able to persist the result of that into state. @MultiParamAction is preferred over this Decorator due to Vuex quirks in how multiple parameters are handled.

    ?>If multiple parameters are used in a base @Action, the real value of the first parameter will be an array with a payload object, and the second parameter will be an options object. This will likely be entirely misaligned from the type information you specified in TypeScript.

    • The @MultiParamAction Decorator is the preferred alternative to @Action because it allows methods to receive multiple parameters.
    • The @Mutation Decorator flags a method as being able to update the Store’s state. That means any fields which belong to the class may be set within the execution context of these methods.

    !>Attempting to modify a field outside of a method marked with @Mutation will result in a runtime error with the Vuex framework.

    Localization

    Localization refers to the adaptation of an application or website content to meet the language, cultural and other requirements of a specific target market (a locale). This feature has two parts that is required to work:

    1. A JSON file named as the respective i18n language codes, stored in the locales folder
    2. Function call with respective key

    Based of the current locale, the matching JSON file would be searched for the matching key/s.

    Technical

    Examples:

    1. A JSON file named “en.json” with structure as follows:
    {
    +  "message": "hello i18n!!"
    +}

    2. Function called within document as follows:

    <div>
    +  <p>{{ $t("message") }}</p>
    +</div>

    The call above would print the value of the message key if the locale is set to English (en).

    !>If no matching key was found, the key would be returned instead. In this case message

    Bundle Analysis

    Bundle Analysis is the method of examining the detailed structure of individual elements within your application output build files. This allows for visualize and analyse build statistics pinpointing areas that can optimized in the next iteration of your build output. This process becomes increasingly important as your bundle size grow which has a direct impact on the end users load time.

    Bundle Analyzer allows for the creation of statistical data that is used for visualizing webpack outputs which helps in understanding the composition of your bundles.

    RDVUE and Bundle Analysis Using Webpack Bundle Analyser Plugin

    To generate build files for bundle analysis we run the following command

    $ npm run build

    This will build production ready files for deployment, additionally spinning up the integrated webpack bundle analysis server:

    Webpack Bundle Analyzer is started at http://127.0.0.1:8888

    Expected terminal output:

    Expected browser output Treemap:

    This module will help you:

    1. Realize what's really inside your bundle
    2. Find out what modules make up the most of its size
    3. Find modules that got there by mistake
    4. Optimize it!

    And the best thing is it supports minified bundles! It parses them to get real size of bundled modules. And it also shows their gzipped sizes!

    ?>For additional plugin options and configurations please visit: https://www.npmjs.com/package/webpack-bundle-analyzer

    + \ No newline at end of file diff --git a/docs/.output/public/rdvue/getting-started/overview/_payload.js b/docs/.output/public/rdvue/getting-started/overview/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/getting-started/overview/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/getting-started/overview/index.html b/docs/.output/public/rdvue/getting-started/overview/index.html new file mode 100644 index 00000000..eaf120a4 --- /dev/null +++ b/docs/.output/public/rdvue/getting-started/overview/index.html @@ -0,0 +1,37 @@ + + + +Getting Started · Frontier + + + + + + +

    Getting Started

    RDVue is an opinionated CLI for generating Vue.js projects. We do so by adopting +a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Page models, +and a data-layer design promoting unified consumption through Stores and Services.

    Usage

    frontier vue:<action>

    Global installation:

    frontier plugins:install vuefrontier vue <action>

    Options

    frontier vue:<action>:<feature>
    +
    +Actions:
    +  create-project   -  Scaffold a new rdvue project
    +  add              -  Add a feature to a project
    +  plugin           -  Inject a utility to extend project functionality
    +  upgrade          -  Specify the rdvue template version for a project
    +    
    +Options:
    +  --help | -h      -  Show help information

    Validate Installation

    We can confirm the successful installation of RDvue in three simple steps:

    Step 1: Create a project

    frontier vue:create-project <project-name>

    Replace <project-name> with the actual name of your project.

    Generated folders are named in kebab-case.

    Step 2: Install project dependencies

    cd <project-name>
    +npm install

    Step 3: Serve project

    npm run serve

    The project will be served at http://localhost:8080/ by default. This information will also be printed out in your terminal. Visiting the link the app is served on will display a default page which was created on project creation.

    Next Steps

    Generating a Page

    frontier vue:add:page <page-name>

    Each generated Page gets its own dedicated folder. The folder will be given the name of the page. This folder is located at /src/pages/<page-name> .

    Generating a Component

    frontier vue:generate component <component-name>
    + \ No newline at end of file diff --git a/docs/.output/public/rdvue/scaffilding/sitemap/_payload.js b/docs/.output/public/rdvue/scaffilding/sitemap/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/scaffilding/sitemap/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/scaffilding/sitemap/index.html b/docs/.output/public/rdvue/scaffilding/sitemap/index.html new file mode 100644 index 00000000..e4b76e2e --- /dev/null +++ b/docs/.output/public/rdvue/scaffilding/sitemap/index.html @@ -0,0 +1,27 @@ + + + +Sitemap · Frontier + + + + + + +

    Sitemap

    A sitemap file is useful for helping Google to better index your website, ensuring that the content you write can be visible in search results.

    This can be created by utilising the sitemap library, which can be installed as follows:

    pnpm
    pnpm add --save-dev sitemap
    yarn
    yarn add --dev sitemap
    npm
    npm install --save-dev sitemap

    Server Route

    We will be utilising the server routes available within Nuxt, and to do so you'll need to create the server/ directory within your website's root directly.

    Once this is done, create a routes/ directory inside this, and add a sitemap.xml.ts file, this will translate to /sitemap.xml.

    You'll need to add the following:

    server/routes/sitemap.xml.ts
    import { serverQueryContent } from '#content/server'import { SitemapStream, streamToPromise } from 'sitemap'export default defineEventHandler(async (event) => {  // Fetch all documents  const docs = await serverQueryContent(event).find()  const sitemap = new SitemapStream({    hostname: 'https://example.com'  })  for (const doc of docs) {    sitemap.write({      url: doc._path,      changefreq: 'monthly'    })  }  sitemap.end()  return streamToPromise(sitemap)})

    Now, once users go to https://example.com/sitemap.xml, you'll find the generated XML file with all your pages.

    When using nuxt generate, you may want to pre-render the sitemap since the server route won't be able to run on a static hosting.

    You can do this using the nitro.prerender option in your nuxt.config:

    nuxt.config.ts
    export default defineNuxtConfig({  // ...  nitro: {    prerender: {      routes: ['/sitemap.xml']    }  }})
    + \ No newline at end of file diff --git a/docs/.output/public/rdvue/template-schema/schema/_payload.js b/docs/.output/public/rdvue/template-schema/schema/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/template-schema/schema/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/template-schema/schema/index.html b/docs/.output/public/rdvue/template-schema/schema/index.html new file mode 100644 index 00000000..16dd6840 --- /dev/null +++ b/docs/.output/public/rdvue/template-schema/schema/index.html @@ -0,0 +1,53 @@ + + + +Template Schema · Frontier + + + + + + +

    Template Schema


    This document provides an overview of the RDvue’s top-level template.json & the manifest.json of each module.

    template.json

    The template.json file keeps a record of each abstracted template module. This file directs how the CLI will navigate and parse each subsequent template module. The following is a breakdown of the sections that make up template.json.

    The template.json file includes the following properties:

    version

    A number representing the current version of the file.

    {  "version": 1}

    sourceDirectory

    Source directory for module files that will be copied into a project. Normally points to the base folder of a module.

    {  "sourceDirectory": "./",}

    features

    The features section holds a list of objects with each representing a single feature. Each object holds two properties, name & private.

    The name property holds the name of a feature, this the name that you must use when running a command on any of these features.

    The private is a boolean which determines whether or not the files of a feature can be overwritten after been initially added to the project. Also, features whose private property is set to true cannot be added by a user.

      "features": [      {        "name": "config",        "private": true      },      {        "name": "store",        "private": true      },      {        "name": "component",        "private": false      },      {        "name": "service",        "private": false      },      {        "name": "model",        "private": false      },      {        "name": "page",        "private": false      },      {        "name": "sm",        "private": false      }  ]

    plugins

    The plugins section holds a list of names of the plugins available in RDvue. After setting up your configuration files for a plugin, simply add the name (the name of the module folder for the configuration files of your plugin) to this list to make it available to the CLI for usage.

    "plugins": [  "auth",  "localization",  "storybook"]

    project

    The project section is an object which defines what will be installed at project creation. Currently, there are two properties/keys on this object, features & plugin.

    The features property/key is an array holding the name of all features which will be automatically generated at project creation.

    The plugins property/key is an array holding the name of all plugins which will be automatically generated at project creation.

    "project": {    "features": [      "config",      "store"    ],    "plugins": [      "storybook"    ]  }

    groups

    The groups section is used to group plugins that offer similar functionalities.

    For example, imagine if we had the following two UI libraries Buefy & Vuetify, we could create a group called ui-library which holds these two plugins.

    Each group is represented as an object. Each object has the following properties:

    • name - the name of the group
    • isMultipleChoice - boolean indicating if more than one option can be selected from this group
    • plugins - a list of the names of the plugins that belong to the group
    • question - the question prompted to a user when they run the command to add a plugin from a group

    Running rdvue add-group <group_name> would prompt a user with the question that belongs to the requested group along with the list of plugins in that group to choose from.

    "project": {    "features": [      "config",      "store"    ],    "plugins": [      "storybook"    ]  }

    presets

    presets are available for a user to quickly scaffold in plugins when creating a project. The presets section of the template.json contains a list of objects. each representing an individual preset. A preset object contains the following properties:

    • name - the name of the preset
    • description - description of the preset. Conventionally used to list out the plugins that comes with the preset
    • plugins- a list of the plugins which the preset will install
     "presets": [    {      "name""Sample Preset 1",      "description""Installs storybook, and localization",      "plugins": [        "storybook",        "localization"      ]    }  ]

    customPreset

    A user can decide to manually select plugins from different groups that they’d like at project creation instead of choosing a preset. The cutomPreset object describes the groups available to a user. It includes the following:

    • name - the name displayed to the user
    • groups - a list containing the names of the Feature Groups which the user will be able to choose from
     "customPreset": {    "groups": [      "authentication",      "locale"    ],    "name""custom"  }

    Example template.json file

    Here is a sample of what a complete template.json file would look like.

    {  "version"1,  "sourceDirectory""./",  "features": [    {      "name""config",      "private"true    },    {      "name""store",      "private"true    },    {      "name""component",      "private"false    },    {      "name""service",      "private"false    },    {      "name""model",      "private"false    },    {      "name""page",      "private"false    },    {      "name""sm",      "private"false    }  ],  "plugins": [    "auth",    "localization",    "storybook"  ],  "project": {    "features": [      "config",      "store"    ],    "plugins": [      "storybook"    ]  },  "groups": [    {      "name""authentication",      "isMultipleChoice"false,      "plugins": [        "auth"      ],      "question""Which Authentication Library would you like to install?"    },    {      "name""locale",      "isMultipleChoice"false,      "plugins": [        "localization"      ],      "question""Which Localization Library would you like to install?"    }  ],  "presets": [    {      "name""Sample Preset 1",      "description""Installs storybook, and localization",      "plugins": [        "storybook",        "localization"      ]    }  ],  "customPreset": {    "groups": [      "authentication",      "locale"    ],    "name""custom"  }}

    Template Module


    Modules are self-contained building blocks of a full Vue project. Each module must contain a manifest.json file.

    A module.json file is built with the following section. Not all sections will be needed inside every module.json file created. A module.json is composed of the following sections:

    version

    The current version of the file.

    "version": 1

    name

    Name of the module (e.g component)

      "name": "component"

    description

    A description of the module. This is also displayed inside the CLI help menu for each Module.

    "description": "Generate a basic components needed for basic authenticaton."

    sourceDirectory

    Source directory for module files that get copied into a project. Normally points to the base folder of a module.

      "sourceDirectory": "./"

    installDirectory

    the location that the module should be generated in the Vue project.

    files

    a list of files that exist in the module that needs to be copied to the install directory. The files in this list can either be either of the following:

    • a string (if the file should be copied as-is)
    "files": [    {      "source": "store/auth.ts",      "target": "store/auth.ts"    },    {      "source": "services/auth.ts",      "target": "services/auth.ts"    },    {      "source": "model/user.ts",      "target": "model/user.ts"    },    {      "source": "pages/register/index.ts",      "target": "pages/auth/register/index.ts"    },    {      "source": "pages/register/register.ts",      "target": "pages/auth/register/register.ts"    },    {      "source": "pages/register/register.scss",      "target": "pages/auth/register/register.scss"    },    {      "source": "pages/register/register.vue",      "target": "pages/auth/register/register.vue"    },    {      "source": "pages/login/index.ts",      "target": "pages/auth/login/index.ts"    },    {      "source": "pages/login/login.ts",      "target": "pages/auth/login/login.ts"    },    {      "source": "pages/login/login.scss",      "target": "pages/auth/login/login.scss"    },    {      "source": "pages/login/login.vue",      "target": "pages/auth/login/login.vue"    },    {      "source": "pages/forget-password/index.ts",      "target": "pages/auth/forget-password/index.ts"    },    {      "source": "pages/forget-password/forget-password.ts",      "target": "pages/auth/forget-password/forget-password.ts"    },    {      "source": "pages/forget-password/forget-password.scss",      "target": "pages/auth/forget-password/forget-password.scss"    },    {      "source": "pages/forget-password/forget-password.vue",      "target": "pages/auth/forget-password/forget-password.vue"    }  ]
    • object with required properties:
      • source and target (for change of name if necessary)
      • and an optional content list of objects for finding and replacing content within the file -
      "files": [  {    "source": "index.ts",    "target": "index.ts",    "content": [      {        "matchRegex": "__COMPONENT__KEBAB__",        "replace": "${componentNameKebab}"      }    ]  },  {    "source": "component.scss",    "target": "${componentNameKebab}.scss",    "content": [      {        "matchRegex": "__COMPONENT__",        "replace": "${componentNameKebab}"      }    ]  },  {    "source": "component.ts",    "target": "${componentNameKebab}.ts",    "content": [      {        "matchRegex": "__COMPONENT__KEBAB__",        "replace": "${componentNameKebab}"      },      {        "matchRegex": "__COMPONENT__",        "replace": "${componentName}"      }    ]  },  {    "source": "component.spec.js",    "target": "${componentNameKebab}.spec.js",    "content": [      {        "matchRegex": "__COMPONENT__KEBAB__",        "replace": "${componentNameKebab}"      },      {        "matchRegex": "__COMPONENT__",        "replace": "${componentName}"      }    ]  },  {    "source": "component.vue",    "target": "${componentNameKebab}.vue",    "content": [      {        "matchRegex": "__COMPONENT__",        "replace": "${componentNameKebab}"      }    ]  }]
    
    +  _Note: files section can be a combination of both types mentioned above._
    +
    +### packages
    +This section is an object that holds the npm packages to be installed with the module. This object contains two properties dependencies and devDependencies. Each holds a list of the name of the dependencies to be installed.
    +
    +The dependencies section holds dependencies required for the module to work (dev and production) while the devDependencies section holds the dependencies that are only needed during development.
    +
    +```json
    + "packages": {
    +    "dependencies": ["vue-i18n"],
    +    "devDependencies": ["vue-cli-plugin-i18n"]
    +  }

    There’s currently no support for specifying package versions.

    routes

    You have the ability to inject a route into the application to allow users to preview a module (feature or plugin) after installing it.

    The routes section of the manifest.json allows you to define an array of routes. Here’s an example:

      "routes": [
    +    {
    +      "path": "'/buefy-sample'",
    +      "name": "'buefy-sample'",
    +      "component": "`require('@/pages/buefy-sample/buefy-sample.vue').default`"
    +    }
    +  ]
    • path: relative URL where module component (.vue file) can be viewed
    • name: name of the route
    • component: the sample component created as a part of your module

    Any number of modules can have a routes section. Therefore, each route definition is programmatically added to an array of route definitions found in .rdvue/routes.js at the root of an RDvue project. The definitions found in this array are then automatically loaded into the router.ts file. Here’s an example:

    export default [{  path: '/buefy-sample',  name: 'buefy-sample',  component: require('@/pages/buefy-sample/buefy-sample.vue').default },];

    vueOptions

    Plugin options needed in vue.config for module to work

    "vueOptions": {
    +    "transpileDependencies": [
    +      "'vuetify'"
    +    ]
    +  }

    All vueOptions are automatically added to the exports object in .rdvue/options.js. This module is then loaded in vue.config.js and used as part of its plugin options.

    module.exports = {
    +  transpileDependencies: 'vuetify',
    +};

    modules

    Configuration imports needed for your module to work. These configs are store in the src/config folder.

      "modules": {
    +    "vuetify": "`require('@/config/vuetify').default`"
    +  } 
    + \ No newline at end of file diff --git a/docs/.output/public/rdvue/testing/testing/_payload.js b/docs/.output/public/rdvue/testing/testing/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/testing/testing/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/testing/testing/index.html b/docs/.output/public/rdvue/testing/testing/index.html new file mode 100644 index 00000000..10c3af4e --- /dev/null +++ b/docs/.output/public/rdvue/testing/testing/index.html @@ -0,0 +1,74 @@ + + + +Testing · Frontier + + + + +

    Testing

    Cypress

    Cypress is a JavaScript end-to-end testing framework that makes it easy to get started with structuring your tests for web applications. At its core, Cypress is not based on Selenium, instead, it is based on a architecture that runs in the same run-loop as your web application. Cypress offers a API that allows developers and QA Engineers a lot of flexibility to make tests. Examples would be offering the ability to do mocking of network requests, taking screenshots or recording your network activity.

    End-to-End (e2e) tests are usually tests that are focused on simulating user interactions. Cypress provides all the necessary dependencies to create these e2e tests and also to debug them if necessary.

    Technical

    Within a project generated by the CLI tool, the following folder structure will be created:

    All the e2e tests created by Cypress will live in the cypress/integration/specs directory. All these test files will have a .ts extension as they are written in TypeScript.

    An example of a test file written in Cypress can be seen below:

    // Example spec file to see the different methods that can be used in Cypress to set the current viewport
    +/// <reference types="Cypress" />
    +
    +context('Viewport Examples', () => {
    +    beforeEach(() => {
    +      cy.visit('https://example.cypress.io/commands/viewport');
    +    });
    +
    +    it('cy.viewport() - set the viewport size and dimension', () => {
    +      // https://on.cypress.io/viewport
    +
    +      cy.get('#navbar').should('be.visible');
    +      cy.viewport(320, 480);
    +
    +      // the navbar should have collapse since our screen is smaller
    +      cy.get('#navbar').should('not.be.visible');
    +      cy.get('.navbar-toggle').should('be.visible').click();
    +      cy.get('.nav').find('a').should('be.visible');
    +
    +      // lets see what our app looks like on a super large screen
    +      cy.viewport(2999, 2999);
    +
    +      // cy.viewport() accepts a set of preset sizes
    +      // to easily set the screen to a device's width and height
    +
    +      // We added a cy.wait() between each viewport change so you can see
    +      // the change otherwise it is a little too fast to see :)
    +
    +      cy.viewport('macbook-15');
    +      cy.wait(200);
    +      cy.viewport('macbook-13');
    +      cy.wait(200);
    +      cy.viewport('macbook-11');
    +      cy.wait(200);
    +      cy.viewport('ipad-2');
    +      cy.wait(200);
    +      cy.viewport('ipad-mini');
    +      cy.wait(200);
    +      cy.viewport('iphone-6+');
    +      cy.wait(200);
    +      cy.viewport('iphone-6');
    +      cy.wait(200);
    +      cy.viewport('iphone-5');
    +      cy.wait(200);
    +      cy.viewport('iphone-4');
    +      cy.wait(200);
    +      cy.viewport('iphone-3');
    +      cy.wait(200);
    +
    +      // cy.viewport() accepts an orientation for all presets
    +      // the default orientation is 'portrait'
    +      cy.viewport('ipad-2', 'portrait');
    +      cy.wait(200);
    +      cy.viewport('iphone-4', 'landscape');
    +      cy.wait(200);
    +
    +      // The viewport will be reset back to the default dimensions
    +      // in between tests (the  default can be set in cypress.json)
    +    });
    +  });

    By default, all projects get sample tests generated for them which contain several examples for selecting elements, automating navigation and changing view ports for more responsive UI tests.

    ?>When you are testing the connection between pages and user flows, a Cypress test should be created.

    Running tests

    In order to run your Cypress tests, execute npm run test:e2e and the following dialog will open

    +

    From here, you can click on the Run all specs option and see all the tests execute or you can click on a specific test file and see that test execute.

    ?>Your application should be running on localhost or hosted at a url before trying to setup e2e tests.

    Unit Tests with Jest

    Unit tests are focused on validating small bits of functionality in a software product. Unit tests can be done manually or they can be automated. If you wish to learn more about unit testing and approaches that can be taken.

    If you wish to automate your unit tests, Jest can be used. Jest is a JavaScript testing framework that can be integrated into several different JavaScript frameworks and it is very useful for certain use cases.

    Technical

    Each component generated by the RDVue CLI comes with a .spec.js file and the folder structure will look like the following:

    The spec file generated will contain the following basic test by default:

    +) +

    This file is using the expect assertion library that comes with Jest and also the shallowMount method that is available to us through the ‘@vue/test-utils' library. Jest comes pre-packaged with Mocha which is enables us to use the 'describe/it’ setup to describe our test suite and our specific test case respectively.

    shallowMount is used to mock or simulate what would happen to the component if it was actually mounted to the DOM. The .exists() method is used with shallowMount in order to check that the component was actually mounted and it does exist in the DOM.

    + \ No newline at end of file diff --git a/docs/.output/public/rdvue/themeing/theming/_payload.js b/docs/.output/public/rdvue/themeing/theming/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/rdvue/themeing/theming/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/rdvue/themeing/theming/index.html b/docs/.output/public/rdvue/themeing/theming/index.html new file mode 100644 index 00000000..2cb295fb --- /dev/null +++ b/docs/.output/public/rdvue/themeing/theming/index.html @@ -0,0 +1,12 @@ + + + +Theming · Frontier + + + + +

    Theming

    Global Styles

    Custom styles can be added into the project to provide global-level styling. This is useful for providing defaults which will be used by all instances of an element - such as overriding a UI framework’s defaults.

    ?>Global styles can be added to the src/theme directory.

    Do’s and Don’t

    • Do use global styles to apply application level defaults to HTML elements
    • Do not use global styles to customize the imperative look/feel of specific Components. (Use Component-level styles and Tailwind for that).
    • Do use global styles to override imported UI components' look and feel (Eg. to customize Buefy).
    • Do import global styles within the main.ts app bootstrap file. This will allow unused selectors to be tree-shaken.
    • Do import global styles from a CDN within the public/index.html file.

    Tailwind

    Tailwind is a utility-first CSS framework which provides standardized classes for layout, colors and responsiveness. It is unique through its approach of providing low-level utility classes which can be rapidly combined to produce complex functionality. It does not provide custom UI elements like Buttons or Dropdowns, but rather focuses on building blocks which are agnostic of a specific visual design.

    ?>Tailwind is the best practice approach for styling Components and Pages within RDVue.

    Technical

    • The tailwind.config.js file allows custom utilities to be created or existing ones overridden. Eg. new standardized margin or padding values.
    • Tailwind utilities can be combined within your custom CSS selectors using the @apply directive.
    • New utility classes can implemented using CSS. They can be used with psuedo class and responsive variants - like native Tailwind utilities.

    ?>The color section in tailwind.config.js should be overridden for new projects and the colors matching your style guide listed instead.

    + \ No newline at end of file diff --git a/docs/.output/public/spectre/getting-started/introduction/_payload.js b/docs/.output/public/spectre/getting-started/introduction/_payload.js new file mode 100644 index 00000000..c459731d --- /dev/null +++ b/docs/.output/public/spectre/getting-started/introduction/_payload.js @@ -0,0 +1 @@ +export default {data:{},prerenderedAt:void 0} \ No newline at end of file diff --git a/docs/.output/public/spectre/getting-started/introduction/index.html b/docs/.output/public/spectre/getting-started/introduction/index.html new file mode 100644 index 00000000..fad5cdd9 --- /dev/null +++ b/docs/.output/public/spectre/getting-started/introduction/index.html @@ -0,0 +1,12 @@ + + + +Coming Soon · Frontier + + + + + + \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs b/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs deleted file mode 100644 index d8539560..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs +++ /dev/null @@ -1,56 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, defineComponent, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Alert", - __ssrInlineRender: true, - props: { - /** - * @values info, success, warning, danger - */ - type: { - type: String, - default: "info", - validator(value) { - return ["info", "success", "warning", "danger", "primary"].includes(value); - } - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_ContentSlot = ContentSlot; - _push(`
    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.default, - unwrap: "p" - }, null, _parent)); - _push(`
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Alert.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-95a79b90"]]); - -export { __nuxt_component_2 as default }; -//# sourceMappingURL=Alert-2b29f746.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map b/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map deleted file mode 100644 index ec774472..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Alert-2b29f746.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Alert-2b29f746.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Alert-2b29f746.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,OAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,MACT,UAAU,KAAO,EAAA;AACf,QAAO,OAAA,CAAC,QAAQ,SAAW,EAAA,SAAA,EAAW,UAAU,SAAS,CAAA,CAAE,SAAS,KAAK,CAAA,CAAA;AAAA,OAC3E;AAAA,KACF;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,QACrC,OAAO,CAAC,OAAA,EAAS,CAAC,OAAA,CAAQ,IAAI,CAAC,CAAA;AAAA,OACjC,EAAG,MAAM,CAAC,CAA+D,CAAA,4DAAA,CAAA,CAAA,CAAA;AACzE,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAc,YAAA,CAAA,CAAA,CAAA;AAAA,KACtB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iEAAiE,CAAA,CAAA;AAC9I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs b/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs deleted file mode 100644 index e79ae8bf..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Alert_vue_vue_type_style_index_0_scoped_95a79b90_transformed_true_lang = ".alert[data-v-95a79b90]{border:1px solid;border-radius:var(--radii-md);font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);margin-bottom:var(--space-8);margin-top:var(--space-8);padding:var(--space-3) var(--space-4)}.alert.primary[data-v-95a79b90]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.alert.primary[data-v-95a79b90] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.alert.primary[data-v-95a79b90] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.alert.primary[data-v-95a79b90] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.alert.primary[data-v-95a79b90] a{border-color:currentColor}.alert.primary[data-v-95a79b90] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.alert.primary[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.alert.primary[data-v-95a79b90] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.alert.info[data-v-95a79b90]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.alert.info[data-v-95a79b90] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.alert.info[data-v-95a79b90] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.alert.info[data-v-95a79b90] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.alert.info[data-v-95a79b90] a{border-color:currentColor}.alert.info[data-v-95a79b90] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.alert.info[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.alert.info[data-v-95a79b90] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.alert.success[data-v-95a79b90]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.alert.success[data-v-95a79b90] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.alert.success[data-v-95a79b90] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.alert.success[data-v-95a79b90] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.alert.success[data-v-95a79b90] a{border-color:currentColor}.alert.success[data-v-95a79b90] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.alert.success[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.alert.success[data-v-95a79b90] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.alert.warning[data-v-95a79b90]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.alert.warning[data-v-95a79b90] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.alert.warning[data-v-95a79b90] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.alert.warning[data-v-95a79b90] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.alert.warning[data-v-95a79b90] a{border-color:currentColor}.alert.warning[data-v-95a79b90] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.alert.warning[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.alert.warning[data-v-95a79b90] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.alert.danger[data-v-95a79b90]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.alert.danger[data-v-95a79b90] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.alert.danger[data-v-95a79b90] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.alert.danger[data-v-95a79b90] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.alert.danger[data-v-95a79b90] a{border-color:currentColor}.alert.danger[data-v-95a79b90] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.alert.danger[data-v-95a79b90] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.alert.danger[data-v-95a79b90] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}"; - -const AlertStyles_484d4e78 = [Alert_vue_vue_type_style_index_0_scoped_95a79b90_transformed_true_lang]; - -export { AlertStyles_484d4e78 as default }; -//# sourceMappingURL=Alert-styles.484d4e78.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map b/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map deleted file mode 100644 index 13865647..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Alert-styles.484d4e78.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Alert-styles.484d4e78.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Alert-styles-1.mjs-4b916eaf.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Alert-styles.484d4e78.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,sEAAyE,GAAA,uhNAAA;;ACC/E,6BAAe,CAACA,sEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs b/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs deleted file mode 100644 index 069b0995..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppFooter_vue_vue_type_style_index_0_scoped_eebf8ee0_transformed_true_lang = "footer[data-v-eebf8ee0]{border-top:1px solid var(--elements-border-primary-static);padding:var(--docus-footer-padding)}footer .footer-container[data-v-eebf8ee0]{display:grid;gap:var(--space-2);grid-template-columns:repeat(12,minmax(0,1fr));justify-items:center}@media (min-width:640px){footer .footer-container[data-v-eebf8ee0]{justify-items:legacy}}footer .footer-container[data-v-eebf8ee0] .icon{height:var(--space-4);width:var(--space-4)}footer .footer-container a[data-v-eebf8ee0]{color:var(--color-gray-500)}:root.dark footer .footer-container a[data-v-eebf8ee0]{color:var(--color-gray-400)}footer .footer-container a[data-v-eebf8ee0]:hover{color:var(--color-gray-700)}:root.dark footer .footer-container a[data-v-eebf8ee0]:hover{color:var(--color-gray-200)}footer .footer-container .left[data-v-eebf8ee0]{display:flex;grid-column:span 12/span 12;order:1;padding-bottom:var(--space-4);padding-top:var(--space-4)}@media (min-width:640px){footer .footer-container .left[data-v-eebf8ee0]{grid-column:span 3/span 3;order:0}}footer .footer-container .left a[data-v-eebf8ee0]{align-items:center;display:flex}footer .footer-container .left p[data-v-eebf8ee0]{font-size:var(--text-xs-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-xs-lineHeight)}footer .footer-container .left-icon[data-v-eebf8ee0]{fill:currentcolor;flex-shrink:0;height:var(--space-4);margin-right:var(--space-2);width:var(--space-4)}footer .footer-container .center[data-v-eebf8ee0]{align-items:center;display:flex;flex-direction:column;grid-column:span 12/span 12}@media (min-width:640px){footer .footer-container .center[data-v-eebf8ee0]{flex-direction:row;grid-column:span 6/span 6;justify-content:center}}footer .footer-container .center .text-link[data-v-eebf8ee0]{font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-sm-lineHeight);padding:var(--space-2)}footer .footer-container .right[data-v-eebf8ee0]{align-items:center;display:flex;grid-column:span 12/span 12;justify-content:flex-end}@media (min-width:640px){footer .footer-container .right[data-v-eebf8ee0]{grid-column:span 3/span 3;margin-right:calc(0px - var(--space-4))}}footer .footer-container .right .icon-link[data-v-eebf8ee0]{display:flex;padding:var(--space-4)}"; - -const AppFooterStyles_775a1c05 = [AppFooter_vue_vue_type_style_index_0_scoped_eebf8ee0_transformed_true_lang]; - -export { AppFooterStyles_775a1c05 as default }; -//# sourceMappingURL=AppFooter-styles.775a1c05.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map deleted file mode 100644 index 693ea61b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppFooter-styles.775a1c05.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppFooter-styles.775a1c05.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppFooter-styles-1.mjs-5f61bee6.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppFooter-styles.775a1c05.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,wtEAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs deleted file mode 100644 index 958c1525..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppHeader_vue_vue_type_style_index_0_scoped_8375ebf7_transformed_true_lang = "[data-v-8375ebf7] .icon{height:var(--space-4);width:var(--space-4)}.has-dialog .left .navbar-logo[data-v-8375ebf7]{display:none}@media (min-width:1024px){.has-dialog .left .navbar-logo[data-v-8375ebf7]{display:block}}.center .navbar-logo[data-v-8375ebf7]{display:block}@media (min-width:1024px){.center .navbar-logo[data-v-8375ebf7]{display:none}}header[data-v-8375ebf7]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background-color:var(--elements-backdrop-background);border-bottom:1px solid var(--elements-border-primary-static);height:var(--docus-header-height);position:sticky;top:0;width:100%;z-index:10}header .container[data-v-8375ebf7]{display:grid;gap:var(--space-2);grid-template-columns:repeat(12,minmax(0,1fr));height:100%}header .section[data-v-8375ebf7]{align-items:center;display:flex;flex:none}header .section.left[data-v-8375ebf7]{grid-column:span 4/span 4}@media (min-width:1024px){header .section.left[data-v-8375ebf7]{margin-left:0}}header .section.center[data-v-8375ebf7]{flex:1;grid-column:span 4/span 4;justify-content:center}header .section.right[data-v-8375ebf7]{align-items:center;display:flex;flex:none;grid-column:span 4/span 4;justify-content:flex-end;margin-right:calc(0px - var(--space-4))}header .section.right .social-icons[data-v-8375ebf7]{display:none}@media (min-width:768px){header .section.right .social-icons[data-v-8375ebf7]{align-items:center;display:flex}}"; - -const AppHeaderStyles_5fd39c5b = [AppHeader_vue_vue_type_style_index_0_scoped_8375ebf7_transformed_true_lang]; - -export { AppHeaderStyles_5fd39c5b as default }; -//# sourceMappingURL=AppHeader-styles.5fd39c5b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map deleted file mode 100644 index 2bf520e2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeader-styles.5fd39c5b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppHeader-styles.5fd39c5b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeader-styles-1.mjs-25f77ee9.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeader-styles.5fd39c5b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,m7CAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs deleted file mode 100644 index 9656cd44..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppHeaderDialog_vue_vue_type_style_index_0_scoped_291983a4_transformed_true_lang = "button[data-v-291983a4]{display:flex;padding:var(--space-4) var(--space-4) var(--space-4) 0;position:relative;z-index:10}@media (min-width:1024px){button[data-v-291983a4]{display:none}}button[data-v-291983a4]{color:var(--color-gray-500)}:root.dark button[data-v-291983a4]{color:var(--color-gray-400)}button[data-v-291983a4]:hover{color:var(--color-gray-700)}:root.dark button[data-v-291983a4]:hover{color:var(--color-gray-200)}.dialog[data-v-291983a4]{align-items:flex-start;-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background-color:hsla(0,0%,100%,.5);display:flex;inset:0 0 0 0;overflow-y:auto;position:fixed;z-index:50}:root.dark .dialog[data-v-291983a4]{background-color:rgba(0,0,0,.5)}@media (min-width:1024px){.dialog[data-v-291983a4]{display:none}}.dialog .icons[data-v-291983a4]{overflow:auto}.dialog>div[data-v-291983a4]{background-color:var(--color-white);box-shadow:var(--shadow-md);max-width:var(--size-xs);min-height:100%;padding-left:var(--space-4);padding-right:var(--space-4);width:100%}:root.dark .dialog>div[data-v-291983a4]{background-color:var(--color-black)}@media (min-width:640px){.dialog>div[data-v-291983a4]{padding-left:var(--space-6);padding-right:var(--space-6)}}.dialog>div>div[data-v-291983a4]{border-bottom:1px solid transparent;gap:var(--space-2);height:var(--docus-header-height);justify-content:space-between}.dialog>div>div[data-v-291983a4],.dialog>div>div .icons[data-v-291983a4]{align-items:center;display:flex}[data-v-291983a4] .icon{height:var(--space-4);width:var(--space-4)}"; - -const AppHeaderDialogStyles_9903b5a9 = [AppHeaderDialog_vue_vue_type_style_index_0_scoped_291983a4_transformed_true_lang]; - -export { AppHeaderDialogStyles_9903b5a9 as default }; -//# sourceMappingURL=AppHeaderDialog-styles.9903b5a9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map deleted file mode 100644 index 62a25535..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppHeaderDialog-styles.9903b5a9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderDialog-styles-1.mjs-58634763.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderDialog-styles.9903b5a9.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,gFAAmF,GAAA,2iDAAA;;ACCzF,uCAAe,CAACA,gFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs deleted file mode 100644 index 823d80ac..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppHeaderLogo_vue_vue_type_style_index_0_scoped_0e437bbb_transformed_true_lang = "a[data-v-0e437bbb]{align-items:center;display:flex;flex:none}a span[data-v-0e437bbb]{color:var(--color-gray-900);font-size:var(--fontSize-xl);font-weight:var(--fontWeight-bold)}:root.dark a span[data-v-0e437bbb]{color:var(--color-gray-100)}a span[data-v-0e437bbb]:hover{color:var(--color-gray-500)}"; - -const AppHeaderLogoStyles_795405cc = [AppHeaderLogo_vue_vue_type_style_index_0_scoped_0e437bbb_transformed_true_lang]; - -export { AppHeaderLogoStyles_795405cc as default }; -//# sourceMappingURL=AppHeaderLogo-styles.795405cc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map deleted file mode 100644 index 18c7255d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeaderLogo-styles.795405cc.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppHeaderLogo-styles.795405cc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderLogo-styles-1.mjs-dea2839e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderLogo-styles.795405cc.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,8EAAiF,GAAA,4SAAA;;ACCvF,qCAAe,CAACA,8EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs b/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs deleted file mode 100644 index 245ae1d2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppHeaderNavigation_vue_vue_type_style_index_0_scoped_01b60614_transformed_true_lang = "nav[data-v-01b60614]{display:none}@media (min-width:1024px){nav[data-v-01b60614]{display:block}}nav ul[data-v-01b60614]{align-items:center;display:flex;flex:1;justify-content:center;max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}nav ul>*+*[data-v-01b60614]{margin-left:var(--space-2)}nav ul li[data-v-01b60614]{display:inline-flex;gap:var(--space-1)}nav ul .link[data-v-01b60614]{align-items:center;border-radius:var(--radii-md);display:flex;font-size:var(--fontSize-sm);gap:var(--space-2);outline:none;padding:var(--space-2) var(--space-4);transition:background .2s ease}nav ul .link svg[data-v-01b60614]{display:inline-block}nav ul .link.active[data-v-01b60614],nav ul .link[data-v-01b60614]:active,nav ul .link[data-v-01b60614]:hover{background-color:var(--color-gray-100)}:root.dark nav ul .link.active[data-v-01b60614],:root.dark nav ul .link[data-v-01b60614]:active,:root.dark nav ul .link[data-v-01b60614]:hover{background-color:var(--color-gray-900)}nav ul .link.active[data-v-01b60614]{box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.05);font-weight:var(--fontWeight-semibold)}"; - -const AppHeaderNavigationStyles_80a8cd0f = [AppHeaderNavigation_vue_vue_type_style_index_0_scoped_01b60614_transformed_true_lang]; - -export { AppHeaderNavigationStyles_80a8cd0f as default }; -//# sourceMappingURL=AppHeaderNavigation-styles.80a8cd0f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map deleted file mode 100644 index 47d5cdfe..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppHeaderNavigation-styles.80a8cd0f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderNavigation-styles-1.mjs-b9021962.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,oFAAuF,GAAA,mlCAAA;;ACC7F,2CAAe,CAACA,oFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs b/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs deleted file mode 100644 index ddf7041c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppLoadingBar_vue_vue_type_style_index_0_transformed_true_lang = ".nuxt-progress{background:repeating-linear-gradient(to right,var(--docus-loadingBar-gradientColorStop1) 0,var(--docus-loadingBar-gradientColorStop2) 50%,var(--docus-loadingBar-gradientColorStop3) 100%);height:var(--docus-loadingBar-height);left:0;opacity:1;position:fixed;right:0;top:0;transition:width .1s,height .4s,opacity .4s;width:0;z-index:999999}"; - -const AppLoadingBarStyles_b242e2e9 = [AppLoadingBar_vue_vue_type_style_index_0_transformed_true_lang]; - -export { AppLoadingBarStyles_b242e2e9 as default }; -//# sourceMappingURL=AppLoadingBar-styles.b242e2e9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map deleted file mode 100644 index 805f6d84..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppLoadingBar-styles.b242e2e9.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppLoadingBar-styles.b242e2e9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppLoadingBar-styles-1.mjs-0dbe330f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppLoadingBar-styles.b242e2e9.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,8DAAiE,GAAA,mWAAA;;ACCvE,qCAAe,CAACA,8DAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs b/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs deleted file mode 100644 index f2c43186..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppSearch_vue_vue_type_style_index_0_scoped_1e99f08b_transformed_true_lang = ".doc-search:hover button[data-v-1e99f08b]{border-color:var(--color-gray-300)}.doc-search button[data-v-1e99f08b]{padding:var(--space-2) var(--space-4)}.doc-search button .content[data-v-1e99f08b]{align-items:center;border-color:var(--color-gray-100);border-radius:var(--radii-md);border-style:solid;border-width:1px;color:var(--color-gray-500);display:flex;font-size:var(--fontSize-xs);gap:var(--space-2);padding:var(--space-rem-375)}:root.dark .doc-search button .content[data-v-1e99f08b]{border-color:var(--color-gray-900);color:var(--color-gray-400)}.doc-search button .content[data-v-1e99f08b]:hover{border-color:var(--color-gray-400);color:var(--color-gray-700)}:root.dark .doc-search button .content[data-v-1e99f08b]:hover{border-color:var(--color-gray-700);color:var(--color-gray-200)}.doc-search button .content span[data-v-1e99f08b]:first-child{display:block;font-size:var(--fontSize-xs);font-weight:var(--fontWeight-medium)}.doc-search button .content span[data-v-1e99f08b]:nth-child(2){display:none;flex:none;font-size:var(--fontSize-xs);font-weight:var(--fontWeight-semibold)}@media (min-width:640px){.doc-search button .content span[data-v-1e99f08b]:nth-child(2){display:block}}"; - -const AppSearchStyles_36eea8dd = [AppSearch_vue_vue_type_style_index_0_scoped_1e99f08b_transformed_true_lang]; - -export { AppSearchStyles_36eea8dd as default }; -//# sourceMappingURL=AppSearch-styles.36eea8dd.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map deleted file mode 100644 index 433cd84d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppSearch-styles.36eea8dd.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppSearch-styles.36eea8dd.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSearch-styles-1.mjs-3ab7d1a8.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSearch-styles.36eea8dd.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,yqCAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs b/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs deleted file mode 100644 index 3ec6d733..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const AppSocialIcons_vue_vue_type_style_index_0_scoped_224b171c_transformed_true_lang = "a[data-v-224b171c]{color:var(--color-gray-500);display:flex;padding:var(--space-4)}:root.dark a[data-v-224b171c]{color:var(--color-gray-400)}a[data-v-224b171c]:hover{color:var(--color-gray-700)}:root.dark a[data-v-224b171c]:hover{color:var(--color-gray-200)}"; - -const AppSocialIconsStyles_994e800b = [AppSocialIcons_vue_vue_type_style_index_0_scoped_224b171c_transformed_true_lang]; - -export { AppSocialIconsStyles_994e800b as default }; -//# sourceMappingURL=AppSocialIcons-styles.994e800b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map b/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map deleted file mode 100644 index 2211bea5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/AppSocialIcons-styles.994e800b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"AppSocialIcons-styles.994e800b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSocialIcons-styles-1.mjs-65e85211.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/AppSocialIcons-styles.994e800b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,oQAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs b/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs deleted file mode 100644 index f3678a9c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs +++ /dev/null @@ -1,56 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, defineComponent, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Badge", - __ssrInlineRender: true, - props: { - /** - * @values info, success, warning, danger - */ - type: { - type: String, - default: "info", - validator(value) { - return ["info", "success", "warning", "danger", "primary"].includes(value); - } - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_ContentSlot = ContentSlot; - _push(``); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.default, - unwrap: "p" - }, null, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Badge.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-69c7b84e"]]); - -export { __nuxt_component_2 as default }; -//# sourceMappingURL=Badge-5f9ab214.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map b/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map deleted file mode 100644 index b45a62dc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Badge-5f9ab214.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Badge-5f9ab214.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Badge-5f9ab214.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,OAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,MACT,UAAU,KAAO,EAAA;AACf,QAAO,OAAA,CAAC,QAAQ,SAAW,EAAA,SAAA,EAAW,UAAU,SAAS,CAAA,CAAE,SAAS,KAAK,CAAA,CAAA;AAAA,OAC3E;AAAA,KACF;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,KAAA,EAAQ,eAAe,UAAW,CAAA;AAAA,QACtC,OAAO,CAAC,CAAC,OAAQ,CAAA,IAAI,GAAG,OAAO,CAAA;AAAA,OACjC,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9B,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,KACjB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iEAAiE,CAAA,CAAA;AAC9I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs b/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs deleted file mode 100644 index b826acc8..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Badge_vue_vue_type_style_index_0_scoped_69c7b84e_transformed_true_lang = ".badge[data-v-69c7b84e]{align-items:center;border:1px solid;border-radius:var(--radii-full);display:inline-flex;font-size:var(--text-base-fontSize);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-base-lineHeight);padding:var(--space-1) var(--space-3)}.badge.primary[data-v-69c7b84e]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.badge.primary[data-v-69c7b84e] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.badge.primary[data-v-69c7b84e] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.badge.primary[data-v-69c7b84e] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.badge.primary[data-v-69c7b84e] a{border-color:currentColor}.badge.primary[data-v-69c7b84e] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.badge.primary[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.badge.primary[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.badge.info[data-v-69c7b84e]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.badge.info[data-v-69c7b84e] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.badge.info[data-v-69c7b84e] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.badge.info[data-v-69c7b84e] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.badge.info[data-v-69c7b84e] a{border-color:currentColor}.badge.info[data-v-69c7b84e] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.badge.info[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.badge.info[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.badge.success[data-v-69c7b84e]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.badge.success[data-v-69c7b84e] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.badge.success[data-v-69c7b84e] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.badge.success[data-v-69c7b84e] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.badge.success[data-v-69c7b84e] a{border-color:currentColor}.badge.success[data-v-69c7b84e] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.badge.success[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.badge.success[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.badge.warning[data-v-69c7b84e]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.badge.warning[data-v-69c7b84e] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.badge.warning[data-v-69c7b84e] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.badge.warning[data-v-69c7b84e] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.badge.warning[data-v-69c7b84e] a{border-color:currentColor}.badge.warning[data-v-69c7b84e] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.badge.warning[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.badge.warning[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.badge.danger[data-v-69c7b84e]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.badge.danger[data-v-69c7b84e] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.badge.danger[data-v-69c7b84e] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.badge.danger[data-v-69c7b84e] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.badge.danger[data-v-69c7b84e] a{border-color:currentColor}.badge.danger[data-v-69c7b84e] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.badge.danger[data-v-69c7b84e] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.badge.danger[data-v-69c7b84e] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}"; - -const BadgeStyles_8af74ce4 = [Badge_vue_vue_type_style_index_0_scoped_69c7b84e_transformed_true_lang]; - -export { BadgeStyles_8af74ce4 as default }; -//# sourceMappingURL=Badge-styles.8af74ce4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map b/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map deleted file mode 100644 index f1aee76a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Badge-styles.8af74ce4.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Badge-styles.8af74ce4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Badge-styles-1.mjs-adb8211f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Badge-styles.8af74ce4.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,sEAAyE,GAAA,ujNAAA;;ACC/E,6BAAe,CAACA,sEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs b/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs deleted file mode 100644 index 64ab9a08..00000000 --- a/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs +++ /dev/null @@ -1,145 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import __nuxt_component_1 from './ButtonLink-df4791d5.mjs'; -import __nuxt_component_2 from './Terminal-35e8f795.mjs'; -import { useSSRContext, defineComponent, mergeProps, withCtx, createTextVNode, toDisplayString } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate, ssrRenderAttr, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import './index-1624a23e.mjs'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "BlockHero", - __ssrInlineRender: true, - props: { - cta: { - type: Array, - required: false - }, - secondary: { - type: Array, - required: false - }, - snippet: { - type: String, - required: false - }, - video: { - type: Array, - required: false - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_ContentSlot = ContentSlot; - const _component_ButtonLink = __nuxt_component_1; - const _component_Terminal = __nuxt_component_2; - _push(`
    `); - if (_ctx.$slots.announce) { - _push(`

    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.announce, - unwrap: "p" - }, null, _parent)); - _push(`

    `); - } else { - _push(``); - } - if (_ctx.$slots.title) { - _push(`

    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.title, - unwrap: "p" - }, null, _parent)); - _push(`

    `); - } else { - _push(``); - } - if (_ctx.$slots.description) { - _push(`

    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.description, - unwrap: "p" - }, null, _parent)); - _push(`

    `); - } else { - _push(``); - } - if (_ctx.$slots.extra) { - _push(`
    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.extra, - unwrap: "p" - }, null, _parent)); - _push(`
    `); - } else { - _push(``); - } - _push(`
    `); - if (!_ctx.$slots.actions) { - _push(``); - if (__props.cta) { - _push(ssrRenderComponent(_component_ButtonLink, { - class: "cta", - bold: "", - size: "medium", - href: __props.cta[1] - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`${ssrInterpolate(__props.cta[0])}`); - } else { - return [ - createTextVNode(toDisplayString(__props.cta[0]), 1) - ]; - } - }), - _: 1 - }, _parent)); - } else { - _push(``); - } - if (__props.secondary) { - _push(`${ssrInterpolate(__props.secondary[0])}`); - } else { - _push(``); - } - _push(``); - } else { - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.actions, - unwrap: "p" - }, null, _parent)); - } - _push(`
    `); - ssrRenderSlot(_ctx.$slots, "support", {}, () => { - if (__props.snippet) { - _push(ssrRenderComponent(_component_Terminal, { content: __props.snippet }, null, _parent)); - } else { - _push(``); - } - }, _push, _parent); - _push(`
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const BlockHero = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-27211c58"]]); - -export { BlockHero as default }; -//# sourceMappingURL=BlockHero-f586796f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map b/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map deleted file mode 100644 index 9f406d5f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/BlockHero-f586796f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"BlockHero-f586796f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/BlockHero-f586796f.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs b/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs deleted file mode 100644 index 17275fae..00000000 --- a/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const BlockHero_vue_vue_type_style_index_0_scoped_27211c58_transformed_true_lang = ".block-hero[data-v-27211c58]{padding:var(--space-20) 0}@media (min-width:640px){.block-hero[data-v-27211c58]{padding:var(--space-24) 0}}@media (min-width:1024px){.block-hero[data-v-27211c58]{padding:var(--space-32) 0}}.block-hero .layout[data-v-27211c58]{display:grid;gap:var(--space-8)}@media (min-width:1024px){.block-hero .layout[data-v-27211c58]{grid-template-columns:repeat(3,minmax(0,1fr))}.block-hero .content[data-v-27211c58]{grid-column:span 2/span 2}}.block-hero .content .announce[data-v-27211c58]{margin-bottom:var(--space-2);text-align:center}@media (min-width:1024px){.block-hero .content .announce[data-v-27211c58]{text-align:left}}.block-hero .content .title[data-v-27211c58]{color:var(--elements-text-primary-color-static);font-size:var(--text-4xl-fontSize);font-weight:var(--fontWeight-bold);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-4xl-lineHeight);text-align:center}@media (min-width:640px){.block-hero .content .title[data-v-27211c58]{font-size:var(--text-5xl-fontSize);line-height:var(--text-5xl-lineHeight)}}@media (min-width:1024px){.block-hero .content .title[data-v-27211c58]{font-size:var(--text-6xl-fontSize);line-height:var(--text-6xl-lineHeight);text-align:left}}.block-hero .content .description[data-v-27211c58]{color:var(--elements-text-secondary-color-static);font-size:var(--text-lg-fontSize);line-height:var(--text-lg-lineHeight);margin-top:var(--space-4);text-align:center}@media (min-width:1024px){.block-hero .content .description[data-v-27211c58]{text-align:left}}.block-hero .content .extra[data-v-27211c58]{margin-top:var(--space-6)}.block-hero .content .actions[data-v-27211c58]{align-items:center;display:flex;flex-direction:column;gap:var(--space-4);justify-content:center;margin-top:var(--space-6)}@media (min-width:640px){.block-hero .content .actions[data-v-27211c58]{flex-direction:row;gap:var(--space-6);margin-top:var(--space-10)}}@media (min-width:1024px){.block-hero .content .actions[data-v-27211c58]{justify-content:flex-start}}.block-hero .content .actions .cta[data-v-27211c58]{margin-bottom:0}.block-hero .content .actions .secondary[data-v-27211c58]{color:var(--elements-text-secondary-color-static);font-weight:var(--fontWeight-medium)}.block-hero .content .actions .secondary[data-v-27211c58]:hover{color:var(--elements-text-secondary-color-hover)}"; - -const BlockHeroStyles_df4a0a32 = [BlockHero_vue_vue_type_style_index_0_scoped_27211c58_transformed_true_lang]; - -export { BlockHeroStyles_df4a0a32 as default }; -//# sourceMappingURL=BlockHero-styles.df4a0a32.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map b/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map deleted file mode 100644 index 0e603363..00000000 --- a/docs/.output/server/chunks/app/_nuxt/BlockHero-styles.df4a0a32.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"BlockHero-styles.df4a0a32.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/BlockHero-styles-1.mjs-70885d4e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/BlockHero-styles.df4a0a32.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,8xEAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs b/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs deleted file mode 100644 index 3510c85f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs +++ /dev/null @@ -1,92 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, defineComponent, computed, ref, mergeProps, unref, withCtx, openBlock, createBlock, createCommentVNode, createVNode } from 'vue'; -import { ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc, c as computedStyle, u as utils, b as usePinceauRuntime } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ButtonLink", - __ssrInlineRender: true, - props: { - blank: { - type: Boolean, - required: false, - default: false - }, - color: computedStyle("primary"), - href: { - type: String, - default: "" - }, - icon: { - type: String, - default: "" - }, - ...{ "size": { "required": false, "type": [String, Object], "default": `medium` }, "transparent": { "required": false, "type": [Boolean, Object], "default": false } } - }, - setup(__props) { - const __$pProps = __props; - const _PBS_backgroundColor = computed(() => ((props = __$pProps, utils$1 = utils) => `{color.${props.color}.600}`)()); - const _m49_backgroundColor = computed(() => ((props = __$pProps, utils$1 = utils) => `{color.${props.color}.500}`)()); - const _BVG_border = computed(() => ((props = __$pProps, utils$1 = utils) => `1px solid {color.${props.color}.600}`)()); - const __$pVariants = ref({ "size": { "small": { "padding": "{space.2} {space.4}", "fontSize": "{text.sm.fontSize}", "lineHeight": "{text.sm.lineHeight}" }, "medium": { "padding": "{space.rem.625} {space.5}", "fontSize": "{text.base.fontSize}", "lineHeight": "{text.base.lineHeight}" }, "large": { "padding": "{space.3} {space.6}", "fontSize": "{text.lg.fontSize}", "lineHeight": "{text.lg.lineHeight}" }, "giant": { "padding": "{space.4} {space.8}", "fontSize": "{text.lg.fontSize}", "lineHeight": "{text.lg.lineHeight}" } }, "transparent": { "true": { "backgroundColor": "transparent" } } }); - const { $pinceau } = usePinceauRuntime(computed(() => __$pProps), __$pVariants, ref({ _PBS_backgroundColor, _m49_backgroundColor, _BVG_border })); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - const _component_ContentSlot = ContentSlot; - _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ - class: ["button-link", [unref($pinceau)]], - to: __props.href, - target: __props.blank ? "_blank" : void 0 - }, _attrs), { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - if (__props.icon) { - _push2(ssrRenderComponent(_component_Icon, { name: __props.icon }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - _push2(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.default, - unwrap: "p ul li" - }, null, _parent2, _scopeId)); - } else { - return [ - __props.icon ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: __props.icon - }, null, 8, ["name"])) : createCommentVNode("", true), - createVNode(_component_ContentSlot, { - use: _ctx.$slots.default, - unwrap: "p ul li" - }, null, 8, ["use"]) - ]; - } - }), - _: 1 - }, _parent)); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-02d3ca01"]]); - -export { __nuxt_component_1 as default }; -//# sourceMappingURL=ButtonLink-df4791d5.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map b/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map deleted file mode 100644 index 93acbe44..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ButtonLink-df4791d5.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ButtonLink-df4791d5.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ButtonLink-df4791d5.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs b/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs deleted file mode 100644 index c2d4a478..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ButtonLink_vue_vue_type_style_index_0_scoped_02d3ca01_transformed_true_lang = ".button-link[data-v-02d3ca01]{align-items:center;background-color:var(---pbs-background-color);border:1px solid transparent;border-radius:var(--radii-md);color:var(--color-white);display:inline-flex;flex:none;font-weight:var(--fontWeight-bold);transition:all .1s ease-in-out}.button-link[data-v-02d3ca01]:hover{background-color:var(---m49-background-color)}.button-link[data-v-02d3ca01]:focus{border:var(---bvg-border)}.button-link .icon[data-v-02d3ca01]{margin-right:var(--space-1)}"; - -const ButtonLinkStyles_2eab8dff = [ButtonLink_vue_vue_type_style_index_0_scoped_02d3ca01_transformed_true_lang]; - -export { ButtonLinkStyles_2eab8dff as default }; -//# sourceMappingURL=ButtonLink-styles.2eab8dff.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map b/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map deleted file mode 100644 index bf4a3cbd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ButtonLink-styles.2eab8dff.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ButtonLink-styles.2eab8dff.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ButtonLink-styles-1.mjs-8bacce47.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ButtonLink-styles.2eab8dff.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,qeAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs b/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs deleted file mode 100644 index 91db9835..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs +++ /dev/null @@ -1,72 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, ref, mergeProps, unref } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderStyle } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Callout", - __ssrInlineRender: true, - props: { - /** - * @values info, success, warning, danger - */ - type: { - type: String, - default: "info", - validator(value) { - return ["info", "success", "warning", "danger", "primary"].includes(value); - } - }, - modelValue: { - required: false, - default: () => ref(false) - } - }, - emits: ["update:modelValue"], - setup(__props, { emit }) { - const props = __props; - const isOpen = ref(props.modelValue); - return (_ctx, _push, _parent, _attrs) => { - const _component_ContentSlot = ContentSlot; - const _component_Icon = __nuxt_component_0$1; - _push(``); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.summary - }, null, _parent)); - _push(``); - _push(ssrRenderComponent(_component_Icon, { - name: "heroicons-outline:chevron-right", - class: ["icon", [unref(isOpen) && "rotate"]] - }, null, _parent)); - _push(`
    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.content - }, null, _parent)); - _push(`
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Callout.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const Callout = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-37e0bf51"]]); - -export { Callout as default }; -//# sourceMappingURL=Callout-fc92c8b7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map b/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map deleted file mode 100644 index 82f6efbb..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Callout-fc92c8b7.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Callout-fc92c8b7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Callout-fc92c8b7.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs b/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs deleted file mode 100644 index 86c9fb52..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Callout_vue_vue_type_style_index_0_scoped_37e0bf51_transformed_true_lang = ".callout[data-v-37e0bf51]{border:1px solid;border-radius:var(--radii-md);font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);margin-bottom:var(--space-8);margin-top:var(--space-8);padding:var(--space-3) var(--space-4);position:relative}.callout.primary[data-v-37e0bf51]{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;color:var(--elements-state-primary-color-primary)!important}.callout.primary[data-v-37e0bf51] p code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.callout.primary[data-v-37e0bf51] code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}.callout.primary[data-v-37e0bf51] a code{border-color:var(--elements-state-primary-borderColor-primary)!important}.callout.primary[data-v-37e0bf51] a{border-color:currentColor}.callout.primary[data-v-37e0bf51] a code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}.callout.primary[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}.callout.primary[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}.callout.info[data-v-37e0bf51]{background-color:var(--elements-state-info-backgroundColor-primary)!important;border-color:var(--elements-state-info-borderColor-primary)!important;color:var(--elements-state-info-color-primary)!important}.callout.info[data-v-37e0bf51] p code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.callout.info[data-v-37e0bf51] code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;color:var(--elements-state-info-color-primary)!important}.callout.info[data-v-37e0bf51] a code{border-color:var(--elements-state-info-borderColor-primary)!important}.callout.info[data-v-37e0bf51] a{border-color:currentColor}.callout.info[data-v-37e0bf51] a code{background-color:var(--elements-state-info-backgroundColor-primary)!important}.callout.info[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-info-color-secondary)!important}.callout.info[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-info-backgroundColor-secondary)!important;border-color:var(--elements-state-info-borderColor-secondary)!important;color:var(--elements-state-info-color-secondary)!important}.callout.success[data-v-37e0bf51]{background-color:var(--elements-state-success-backgroundColor-primary)!important;border-color:var(--elements-state-success-borderColor-primary)!important;color:var(--elements-state-success-color-primary)!important}.callout.success[data-v-37e0bf51] p code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.callout.success[data-v-37e0bf51] code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;color:var(--elements-state-success-color-primary)!important}.callout.success[data-v-37e0bf51] a code{border-color:var(--elements-state-success-borderColor-primary)!important}.callout.success[data-v-37e0bf51] a{border-color:currentColor}.callout.success[data-v-37e0bf51] a code{background-color:var(--elements-state-success-backgroundColor-primary)!important}.callout.success[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-success-color-secondary)!important}.callout.success[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-success-backgroundColor-secondary)!important;border-color:var(--elements-state-success-borderColor-secondary)!important;color:var(--elements-state-success-color-secondary)!important}.callout.warning[data-v-37e0bf51]{background-color:var(--elements-state-warning-backgroundColor-primary)!important;border-color:var(--elements-state-warning-borderColor-primary)!important;color:var(--elements-state-warning-color-primary)!important}.callout.warning[data-v-37e0bf51] p code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.callout.warning[data-v-37e0bf51] code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;color:var(--elements-state-warning-color-primary)!important}.callout.warning[data-v-37e0bf51] a code{border-color:var(--elements-state-warning-borderColor-primary)!important}.callout.warning[data-v-37e0bf51] a{border-color:currentColor}.callout.warning[data-v-37e0bf51] a code{background-color:var(--elements-state-warning-backgroundColor-primary)!important}.callout.warning[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-warning-color-secondary)!important}.callout.warning[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-warning-backgroundColor-secondary)!important;border-color:var(--elements-state-warning-borderColor-secondary)!important;color:var(--elements-state-warning-color-secondary)!important}.callout.danger[data-v-37e0bf51]{background-color:var(--elements-state-danger-backgroundColor-primary)!important;border-color:var(--elements-state-danger-borderColor-primary)!important;color:var(--elements-state-danger-color-primary)!important}.callout.danger[data-v-37e0bf51] p code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.callout.danger[data-v-37e0bf51] code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;color:var(--elements-state-danger-color-primary)!important}.callout.danger[data-v-37e0bf51] a code{border-color:var(--elements-state-danger-borderColor-primary)!important}.callout.danger[data-v-37e0bf51] a{border-color:currentColor}.callout.danger[data-v-37e0bf51] a code{background-color:var(--elements-state-danger-backgroundColor-primary)!important}.callout.danger[data-v-37e0bf51] a:hover{border-color:currentColor!important;color:var(--elements-state-danger-color-secondary)!important}.callout.danger[data-v-37e0bf51] a:hover code{background-color:var(--elements-state-danger-backgroundColor-secondary)!important;border-color:var(--elements-state-danger-borderColor-secondary)!important;color:var(--elements-state-danger-color-secondary)!important}.callout .preview[data-v-37e0bf51]{align-items:center;cursor:pointer;display:flex;justify-content:space-between}.callout .preview .summary[data-v-37e0bf51] p{margin:0}.callout .preview .summary[data-v-37e0bf51] p+p{margin-top:var(--space-2)}.callout .preview .icon[data-v-37e0bf51]{height:var(--space-5);transition:transform .1s;width:var(--space-5)}.callout .preview .icon.rotate[data-v-37e0bf51]{transform:rotate(90deg)}.callout .content[data-v-37e0bf51]{padding-top:var(--space-3)}.callout .content[data-v-37e0bf51] p{margin:0}.callout .content[data-v-37e0bf51] p+p{margin-top:var(--space-2)}"; - -const CalloutStyles_966d42ad = [Callout_vue_vue_type_style_index_0_scoped_37e0bf51_transformed_true_lang]; - -export { CalloutStyles_966d42ad as default }; -//# sourceMappingURL=Callout-styles.966d42ad.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map b/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map deleted file mode 100644 index aa13bfc2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Callout-styles.966d42ad.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Callout-styles.966d42ad.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Callout-styles-1.mjs-7d5d6e6d.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Callout-styles.966d42ad.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,8sOAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs b/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs deleted file mode 100644 index 86ea20a9..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs +++ /dev/null @@ -1,94 +0,0 @@ -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, defineComponent, mergeProps, withCtx, createTextVNode } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Card", - __ssrInlineRender: true, - props: { - icon: { - type: String, - default: "" - }, - iconClass: { - type: String, - default: "" - }, - blurry: { - type: Boolean, - default: true, - required: false - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_Icon = __nuxt_component_0$1; - const _component_ContentSlot = ContentSlot; - _push(``); - if (__props.icon) { - _push(ssrRenderComponent(_component_Icon, { name: __props.icon }, null, _parent)); - } else { - _push(``); - } - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(`

    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.title, - unwrap: "p" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(` Card title `); - } else { - return [ - createTextVNode(" Card title ") - ]; - } - }), - _: 1 - }, _parent)); - _push(`

    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.description, - unwrap: "p" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(` Card description `); - } else { - return [ - createTextVNode(" Card description ") - ]; - } - }), - _: 1 - }, _parent)); - _push(`

    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/landing/Card.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const Card = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-496504c6"]]); - -export { Card as default }; -//# sourceMappingURL=Card-2052047f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map b/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map deleted file mode 100644 index abf5b5d0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Card-2052047f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Card-2052047f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Card-2052047f.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs b/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs deleted file mode 100644 index bf00d79c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Card_vue_vue_type_style_index_0_scoped_496504c6_transformed_true_lang = ".card[data-v-496504c6]{background:var(--elements-backdrop-background);border:1px solid var(--elements-border-primary-static);border-radius:var(--radii-xl);display:block;padding:var(--space-8);position:relative;width:100%}.card.blurry[data-v-496504c6]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter)}.card .icon[data-v-496504c6]{display:inline-block;height:var(--space-6);width:var(--space-6)}.card .icon[data-v-496504c6],.card .title[data-v-496504c6]{margin-bottom:var(--space-2)}.card .title[data-v-496504c6]{color:var(--elements-text-primary-color-static);font-size:var(--text-lg-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-lg-lineHeight)}.card .description[data-v-496504c6]{color:var(--elements-text-secondary-color-static);font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-sm-lineHeight)}"; - -const CardStyles_29530cd8 = [Card_vue_vue_type_style_index_0_scoped_496504c6_transformed_true_lang]; - -export { CardStyles_29530cd8 as default }; -//# sourceMappingURL=Card-styles.29530cd8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map b/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map deleted file mode 100644 index 80e94a32..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Card-styles.29530cd8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Card-styles.29530cd8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Card-styles-1.mjs-ec71d16b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Card-styles.29530cd8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,qEAAwE,GAAA,05BAAA;;ACC9E,4BAAe,CAACA,qEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs b/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs deleted file mode 100644 index 6da0473d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs +++ /dev/null @@ -1,54 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, defineComponent, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "CardGrid", - __ssrInlineRender: true, - props: { - title: { - type: String, - default: "Features" - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_ContentSlot = ContentSlot; - _push(``); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.root - }, null, _parent)); - _push(`

    `); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.title, - unwrap: "p" - }, null, _parent)); - _push(`

    `); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(`
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const CardGrid = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8f7bcfd2"]]); - -export { CardGrid as default }; -//# sourceMappingURL=CardGrid-160bcd85.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map b/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map deleted file mode 100644 index 086e15fc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CardGrid-160bcd85.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CardGrid-160bcd85.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CardGrid-160bcd85.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,UAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,QAAA,EAAW,eAAe,UAAW,CAAA,EAAE,OAAO,WAAY,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9F,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,IAAA;AAAA,OACnB,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAoC,kCAAA,CAAA,CAAA,CAAA;AAC1C,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,KAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAA2C,yCAAA,CAAA,CAAA,CAAA;AACjD,MAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,MAAA,KAAA,CAAM,CAAkB,gBAAA,CAAA,CAAA,CAAA;AAAA,KAC1B,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs b/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs deleted file mode 100644 index 0dfaf01a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const CardGrid_vue_vue_type_style_index_0_scoped_8f7bcfd2_transformed_true_lang = ".card-grid[data-v-8f7bcfd2]{padding-bottom:var(--space-20);position:relative}@media (min-width:640px){.card-grid[data-v-8f7bcfd2]{padding-bottom:var(--space-24)}}@media (min-width:1024px){.card-grid[data-v-8f7bcfd2]{padding-bottom:var(--space-32)}}.card-grid .title[data-v-8f7bcfd2]{color:var(--elements-text-primary-color-static);font-size:var(--text-3xl-fontSize);font-weight:var(--fontWeight-bold);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-3xl-lineHeight);margin-bottom:var(--space-8)}@media (min-width:640px){.card-grid .title[data-v-8f7bcfd2]{font-size:var(--text-4xl-fontSize);line-height:var(--text-4xl-lineHeight)}}.card-grid .layout[data-v-8f7bcfd2]{display:grid;gap:var(--space-4);text-align:left}@media (min-width:640px){.card-grid .layout[data-v-8f7bcfd2]{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.card-grid .layout[data-v-8f7bcfd2]{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1536px){.card-grid .layout[data-v-8f7bcfd2]{gap:var(--space-8)}}"; - -const CardGridStyles_65f28427 = [CardGrid_vue_vue_type_style_index_0_scoped_8f7bcfd2_transformed_true_lang]; - -export { CardGridStyles_65f28427 as default }; -//# sourceMappingURL=CardGrid-styles.65f28427.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map b/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map deleted file mode 100644 index 095de033..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CardGrid-styles.65f28427.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CardGrid-styles.65f28427.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CardGrid-styles-1.mjs-734fb20e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CardGrid-styles.65f28427.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,ugCAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs b/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs deleted file mode 100644 index d9daa9d6..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs +++ /dev/null @@ -1,56 +0,0 @@ -import { useSSRContext, defineComponent, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "CodeBlock", - __ssrInlineRender: true, - props: { - /** - * Label to display for the tab - */ - label: { - type: String, - required: true - }, - /** - * Select which tab should be active - */ - active: { - type: Boolean, - default: false - }, - /** - * Preiew block are bordered and have small padding. - */ - preview: { - type: Boolean, - default: false - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const CodeBlock = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-5ee47deb"]]); - -export { CodeBlock as default }; -//# sourceMappingURL=CodeBlock-f6f4711b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map deleted file mode 100644 index a13319ad..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeBlock-f6f4711b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CodeBlock-f6f4711b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeBlock-f6f4711b.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,WAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA;AAAA;AAAA;AAAA,IAIA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA;AAAA;AAAA;AAAA,IAIA,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,QACrC,KAAA,EAAO,CAAC,YAAc,EAAA;AAAA,UACpB,QAAQ,OAAQ,CAAA,MAAA;AAAA,UAChB,kBAAkB,OAAQ,CAAA,OAAA;AAAA,SAC3B,CAAA;AAAA,OACH,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9B,MAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qEAAqE,CAAA,CAAA;AAClJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,SAAA,+BAAwC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs b/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs deleted file mode 100644 index 46294dfa..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const CodeBlock_vue_vue_type_style_index_0_scoped_5ee47deb_lang = ".code-block[data-v-5ee47deb]{display:none}.code-block.active[data-v-5ee47deb]{display:block}"; - -const CodeBlockStyles_cac949de = [CodeBlock_vue_vue_type_style_index_0_scoped_5ee47deb_lang]; - -export { CodeBlockStyles_cac949de as default }; -//# sourceMappingURL=CodeBlock-styles.cac949de.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map deleted file mode 100644 index f29f42c5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeBlock-styles.cac949de.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CodeBlock-styles.cac949de.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeBlock-styles-1.mjs-a2ddef91.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeBlock-styles.cac949de.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yDAA4D,GAAA,8FAAA;;ACClE,iCAAe,CAACA,yDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs b/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs deleted file mode 100644 index 87183cd6..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs +++ /dev/null @@ -1,98 +0,0 @@ -import { defineComponent, h, useSSRContext } from 'vue'; -import __nuxt_component_0 from './TabsHeader-c9b56dab.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'vue/server-renderer'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const isTag = (slot, tag) => { - return slot.type && slot.type.tag && slot.type.tag === tag; -}; -const _sfc_main = defineComponent({ - data() { - return { - activeTabIndex: 0, - /** - * A simple number that increases on every changes - */ - counter: 0 - }; - }, - render() { - var _a, _b; - const slots = ((_b = (_a = this.$slots) == null ? void 0 : _a.default) == null ? void 0 : _b.call(_a)) || []; - const tabs = slots.filter((slot) => isTag(slot, "code-block") || isTag(slot, "code")).map((slot, index) => { - var _a2, _b2, _c; - return { - label: ((_a2 = slot == null ? void 0 : slot.props) == null ? void 0 : _a2.filename) || ((_b2 = slot == null ? void 0 : slot.props) == null ? void 0 : _b2.label) || `${index}`, - active: ((_c = slot == null ? void 0 : slot.props) == null ? void 0 : _c.active) || false, - component: slot - }; - }); - return h( - "div", - { - class: { - "code-group": true, - "first-tab": this.activeTabIndex === 0 - } - }, - [ - h(__nuxt_component_0, { - ref: "tabs-header", - activeTabIndex: this.activeTabIndex, - tabs, - "onUpdate:activeTabIndex": ($event) => this.activeTabIndex = $event - }), - h( - "div", - { - class: "code-group-content", - text: this.activeTabIndex - }, - // Map slots to content children - slots.map( - (slot, index) => { - var _a2, _b2; - return h( - "div", - { - // Current slot is displayed, others are hidden - style: { - display: index === this.activeTabIndex ? "block" : "none" - }, - class: { - "": !isTag(slot, "code") - } - }, - // Display direct children if not a ```code``` block - [ - isTag(slot, "code") ? slot : h( - "div", - { - class: { - "preview-canvas": true - } - }, - [((_b2 = (_a2 = slot.children) == null ? void 0 : _a2.default) == null ? void 0 : _b2.call(_a2)) || h("div")] - ) - ] - ); - } - ) - ) - ] - ); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const CodeGroup = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3e3370af"]]); - -export { CodeGroup as default }; -//# sourceMappingURL=CodeGroup-67aa2302.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map deleted file mode 100644 index ef7c467d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeGroup-67aa2302.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CodeGroup-67aa2302.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeGroup-67aa2302.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;AAOA,MAAM,KAAA,GAAQ,CAAC,IAAA,EAAM,GAAQ,KAAA;AAC3B,EAAA,OAAO,KAAK,IAAQ,IAAA,IAAA,CAAK,KAAK,GAAO,IAAA,IAAA,CAAK,KAAK,GAAQ,KAAA,GAAA,CAAA;AACzD,CAAA,CAAA;AACA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,IAAO,GAAA;AACL,IAAO,OAAA;AAAA,MACL,cAAgB,EAAA,CAAA;AAAA;AAAA;AAAA;AAAA,MAIhB,OAAS,EAAA,CAAA;AAAA,KACX,CAAA;AAAA,GACF;AAAA,EACA,MAAS,GAAA;AACP,IAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,IAAA,MAAM,KAAU,GAAA,CAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,IAAA,CAAK,WAAW,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,OAAA,KAAY,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,IAAK,CAAA,EAAE,MAAM,EAAC,CAAA;AAC3G,IAAA,MAAM,OAAO,KAAM,CAAA,MAAA,CAAO,CAAC,IAAA,KAAS,MAAM,IAAM,EAAA,YAAY,CAAK,IAAA,KAAA,CAAM,MAAM,MAAM,CAAC,EAAE,GAAI,CAAA,CAAC,MAAM,KAAU,KAAA;AACzG,MAAA,IAAI,KAAK,GAAK,EAAA,EAAA,CAAA;AACd,MAAO,OAAA;AAAA,QACL,KAAA,EAAA,CAAA,CAAS,MAAM,IAAQ,IAAA,IAAA,GAAO,SAAS,IAAK,CAAA,KAAA,KAAU,OAAO,KAAS,CAAA,GAAA,GAAA,CAAI,eAAe,GAAM,GAAA,IAAA,IAAQ,OAAO,KAAS,CAAA,GAAA,IAAA,CAAK,UAAU,IAAO,GAAA,KAAA,CAAA,GAAS,GAAI,CAAA,KAAA,CAAA,IAAU,CAAG,EAAA,KAAA,CAAA,CAAA;AAAA,QACvK,MAAA,EAAA,CAAA,CAAU,EAAK,GAAA,IAAA,IAAQ,IAAO,GAAA,KAAA,CAAA,GAAS,KAAK,KAAU,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,MAAW,KAAA,KAAA;AAAA,QACpF,SAAW,EAAA,IAAA;AAAA,OACb,CAAA;AAAA,KACD,CAAA,CAAA;AACD,IAAO,OAAA,CAAA;AAAA,MACL,KAAA;AAAA,MACA;AAAA,QACE,KAAO,EAAA;AAAA,UACL,YAAc,EAAA,IAAA;AAAA,UACd,WAAA,EAAa,KAAK,cAAmB,KAAA,CAAA;AAAA,SACvC;AAAA,OACF;AAAA,MACA;AAAA,QACE,EAAE,kBAAoB,EAAA;AAAA,UACpB,GAAK,EAAA,aAAA;AAAA,UACL,gBAAgB,IAAK,CAAA,cAAA;AAAA,UACrB,IAAA;AAAA,UACA,yBAA2B,EAAA,CAAC,MAAW,KAAA,IAAA,CAAK,cAAiB,GAAA,MAAA;AAAA,SAC9D,CAAA;AAAA,QACD,CAAA;AAAA,UACE,KAAA;AAAA,UACA;AAAA,YACE,KAAO,EAAA,oBAAA;AAAA,YACP,MAAM,IAAK,CAAA,cAAA;AAAA,WACb;AAAA;AAAA,UAEA,KAAM,CAAA,GAAA;AAAA,YACJ,CAAC,MAAM,KAAU,KAAA;AACf,cAAA,IAAI,GAAK,EAAA,GAAA,CAAA;AACT,cAAO,OAAA,CAAA;AAAA,gBACL,KAAA;AAAA,gBACA;AAAA;AAAA,kBAEE,KAAO,EAAA;AAAA,oBACL,OAAS,EAAA,KAAA,KAAU,IAAK,CAAA,cAAA,GAAiB,OAAU,GAAA,MAAA;AAAA,mBACrD;AAAA,kBACA,KAAO,EAAA;AAAA,oBACL,EAAI,EAAA,CAAC,KAAM,CAAA,IAAA,EAAM,MAAM,CAAA;AAAA,mBACzB;AAAA,iBACF;AAAA;AAAA,gBAEA;AAAA,kBACE,KAAM,CAAA,IAAA,EAAM,MAAM,CAAA,GAAI,IAAO,GAAA,CAAA;AAAA,oBAC3B,KAAA;AAAA,oBACA;AAAA,sBACE,KAAO,EAAA;AAAA,wBACL,gBAAkB,EAAA,IAAA;AAAA,uBACpB;AAAA,qBACF;AAAA,oBACA,GAAG,GAAO,GAAA,CAAA,GAAA,GAAM,IAAK,CAAA,QAAA,KAAa,OAAO,KAAS,CAAA,GAAA,GAAA,CAAI,OAAY,KAAA,IAAA,GAAO,SAAS,GAAI,CAAA,IAAA,CAAK,GAAG,CAAM,KAAA,CAAA,CAAE,KAAK,CAAC,CAAA;AAAA,mBAC9G;AAAA,iBACF;AAAA,eACF,CAAA;AAAA,aACF;AAAA,WACF;AAAA,SACF;AAAA,OACF;AAAA,KACF,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qEAAqE,CAAA,CAAA;AAClJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,SAAA,+BAAwC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs b/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs deleted file mode 100644 index 09298816..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const CodeGroup_vue_vue_type_style_index_0_scoped_3e3370af_transformed_true_lang = ".code-group[data-v-3e3370af]{border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-md);overflow:hidden}.code-group[data-v-3e3370af] .prose-code{border:none;border-radius:0;margin:0}.code-group[data-v-3e3370af] .filename{display:none}.code-group .preview-canvas[data-v-3e3370af]{padding:var(--space-4)}.code-group .preview-canvas[data-v-3e3370af]:has(.sandbox){padding:0}.code-group .preview-canvas[data-v-3e3370af]:has(.sandbox) .sandbox{border:0;border-radius:0}"; - -const CodeGroupStyles_0da0e60b = [CodeGroup_vue_vue_type_style_index_0_scoped_3e3370af_transformed_true_lang]; - -export { CodeGroupStyles_0da0e60b as default }; -//# sourceMappingURL=CodeGroup-styles.0da0e60b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map b/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map deleted file mode 100644 index be8f467b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CodeGroup-styles.0da0e60b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CodeGroup-styles.0da0e60b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeGroup-styles-1.mjs-0cd56e59.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CodeGroup-styles.0da0e60b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,8eAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs deleted file mode 100644 index 8b710339..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs +++ /dev/null @@ -1,143 +0,0 @@ -import { defineComponent, computed, resolveComponent, ref, h, useSSRContext, unref } from 'vue'; -import { u as useNuxtApp } from './app.config-832f5f68.mjs'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import Ellipsis from './Ellipsis-b69b027e.mjs'; -import ComponentPlaygroundData from './ComponentPlaygroundData-d25a0f8e.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; -import './TabsHeader-c9b56dab.mjs'; -import './ComponentPlaygroundProps-8f45f1a7.mjs'; -import './ProseH4-4f0da863.mjs'; -import './ProseCodeInline-960b9a43.mjs'; -import './Badge-5f9ab214.mjs'; -import './ContentSlot-deb25102.mjs'; -import './ProseP-a91aeff7.mjs'; -import './index-1624a23e.mjs'; -import './ComponentPlaygroundSlots-0dbd767a.mjs'; -import './ComponentPlaygroundTokens-548a0a2d.mjs'; - -async function useComponentMeta(componentName) { - useNuxtApp(); - const _componentName = unref(componentName); - { - const { data } = await useAsyncData( - `nuxt-component-meta${_componentName ? `-${_componentName}` : ""}`, - () => { - return $fetch(`/api/component-meta${_componentName ? `/${_componentName}` : ""}`); - } - ); - return computed(() => data.value); - } -} -const _sfc_main = defineComponent({ - props: { - component: { - type: String, - required: true - }, - props: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const as = computed(() => resolveComponent(props.component)); - const formProps = ref({ - ...props.props - }); - const componentData = await useComponentMeta(props.component); - return { - as, - formProps, - componentData - }; - }, - render(ctx) { - const componentSlots = Object.entries(this.$slots).reduce( - (acc, [key, slot]) => { - if (key.startsWith("component-")) { - const slotKey = key.replace("component-", ""); - acc[slotKey] = slot; - } - return acc; - }, - {} - ); - return h( - "div", - { - class: "component-playground" - }, - [ - h( - "div", - { - class: "component-playground-wrapper" - }, - [ - h( - Ellipsis, - { - class: "component-playground-ellipsis", - blur: "5vw", - height: "100%", - width: "100%" - } - ), - h( - ctx.as, - { - ...ctx.formProps, - class: "component-playground-component" - }, - { - ...componentSlots - } - ) - ] - ), - h( - ComponentPlaygroundData, - { - modelValue: ctx.formProps, - componentData: ctx.componentData, - "onUpdate:modelValue": (val) => ctx.formProps = val - } - ) - ] - ); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ComponentPlayground = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9ca9b996"]]); - -export { ComponentPlayground as default }; -//# sourceMappingURL=ComponentPlayground-c7ca07d7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map deleted file mode 100644 index 744629a8..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-c7ca07d7.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlayground-c7ca07d7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlayground-c7ca07d7.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs deleted file mode 100644 index d7acc311..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ComponentPlayground_vue_vue_type_style_index_0_scoped_9ca9b996_transformed_true_lang = ".component-playground[data-v-9ca9b996]{border:1px solid var(--color-gray-200);border-radius:var(--radii-lg);overflow:hidden}:root.dark .component-playground[data-v-9ca9b996]{border:1px solid var(--color-gray-800)}.component-playground .component-playground-wrapper[data-v-9ca9b996]{background:linear-gradient(330deg,var(--color-gray-200) 0,var(--color-gray-100) 100%);overflow:hidden;padding:var(--space-8);position:relative}:root.dark .component-playground .component-playground-wrapper[data-v-9ca9b996]{background:linear-gradient(330deg,var(--color-gray-900) 0,var(--color-gray-800) 100%)}.component-playground .component-playground-wrapper .component-playground-ellipsis[data-v-9ca9b996]{z-index:1}.component-playground .component-playground-wrapper .component-playground-component[data-v-9ca9b996]{z-index:50}"; - -const ComponentPlaygroundStyles_249b42e4 = [ComponentPlayground_vue_vue_type_style_index_0_scoped_9ca9b996_transformed_true_lang]; - -export { ComponentPlaygroundStyles_249b42e4 as default }; -//# sourceMappingURL=ComponentPlayground-styles.249b42e4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map deleted file mode 100644 index aa79c1f7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlayground-styles.249b42e4.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlayground-styles.249b42e4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlayground-styles-1.mjs-ec8aa521.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlayground-styles.249b42e4.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,oFAAuF,GAAA,+yBAAA;;ACC7F,2CAAe,CAACA,oFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs deleted file mode 100644 index 3eaab071..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs +++ /dev/null @@ -1,102 +0,0 @@ -import __nuxt_component_0 from './TabsHeader-c9b56dab.mjs'; -import __nuxt_component_1 from './ComponentPlaygroundProps-8f45f1a7.mjs'; -import _sfc_main$1 from './ComponentPlaygroundSlots-0dbd767a.mjs'; -import _sfc_main$2 from './ComponentPlaygroundTokens-548a0a2d.mjs'; -import { useSSRContext, defineComponent, ref, mergeProps, unref, isRef } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { a as useVModel } from './index-1624a23e.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import './ProseH4-4f0da863.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import './DocsAsideTree-136bd08b.mjs'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './ProseCodeInline-960b9a43.mjs'; -import './Badge-5f9ab214.mjs'; -import './ContentSlot-deb25102.mjs'; -import './ProseP-a91aeff7.mjs'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ComponentPlaygroundData", - __ssrInlineRender: true, - props: { - modelValue: { - type: Object, - required: false, - default: () => ({}) - }, - componentData: { - type: Object, - required: false, - default: () => ({}) - } - }, - emits: ["update:modelValue"], - setup(__props, { emit: emits }) { - const props = __props; - const formData = useVModel(props, "modelValue", emits); - const activeTabIndex = ref(0); - const tabs = [ - { - label: "Props" - }, - { - label: "Slots" - }, - { - label: "Design Tokens" - } - ]; - const updateTab = (i) => activeTabIndex.value = i; - return (_ctx, _push, _parent, _attrs) => { - const _component_TabsHeader = __nuxt_component_0; - const _component_ComponentPlaygroundProps = __nuxt_component_1; - const _component_ComponentPlaygroundSlots = _sfc_main$1; - const _component_ComponentPlaygroundTokens = _sfc_main$2; - _push(``); - _push(ssrRenderComponent(_component_TabsHeader, { - "active-tab-index": unref(activeTabIndex), - tabs, - "onUpdate:activeTabIndex": updateTab - }, null, _parent)); - if (unref(activeTabIndex) === 0) { - _push(ssrRenderComponent(_component_ComponentPlaygroundProps, { - modelValue: unref(formData), - "onUpdate:modelValue": ($event) => isRef(formData) ? formData.value = $event : null, - "component-data": __props.componentData - }, null, _parent)); - } else { - _push(``); - } - if (unref(activeTabIndex) === 1) { - _push(ssrRenderComponent(_component_ComponentPlaygroundSlots, { "component-data": __props.componentData }, null, _parent)); - } else { - _push(``); - } - if (unref(activeTabIndex) === 2) { - _push(ssrRenderComponent(_component_ComponentPlaygroundTokens, { "component-data": __props.componentData }, null, _parent)); - } else { - _push(``); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ComponentPlaygroundData = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-ff75821c"]]); - -export { ComponentPlaygroundData as default }; -//# sourceMappingURL=ComponentPlaygroundData-d25a0f8e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map deleted file mode 100644 index 02f746ce..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-d25a0f8e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlaygroundData-d25a0f8e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundData-d25a0f8e.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs deleted file mode 100644 index 0909ad46..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ComponentPlaygroundData_vue_vue_type_style_index_0_scoped_ff75821c_transformed_true_lang = ".component-playground-data .component-playground-data-section[data-v-ff75821c]{padding:var(--space-4)}:root.dark .component-playground-data .component-playground-data-section[data-v-ff75821c]{background-color:var(--color-gray-900)}"; - -const ComponentPlaygroundDataStyles_9bdce5c2 = [ComponentPlaygroundData_vue_vue_type_style_index_0_scoped_ff75821c_transformed_true_lang]; - -export { ComponentPlaygroundDataStyles_9bdce5c2 as default }; -//# sourceMappingURL=ComponentPlaygroundData-styles.9bdce5c2.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map deleted file mode 100644 index 8756ebf9..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlaygroundData-styles.9bdce5c2.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundData-styles-1.mjs-097afe24.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wFAA2F,GAAA,yOAAA;;ACCjG,+CAAe,CAACA,wFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs deleted file mode 100644 index cb0383ba..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs +++ /dev/null @@ -1,127 +0,0 @@ -import __nuxt_component_0 from './ProseH4-4f0da863.mjs'; -import __nuxt_component_1$1 from './ProseCodeInline-960b9a43.mjs'; -import __nuxt_component_2 from './Badge-5f9ab214.mjs'; -import __nuxt_component_3 from './ProseP-a91aeff7.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, unref, withCtx, createTextVNode, toDisplayString } from 'vue'; -import { ssrRenderAttrs, ssrRenderList, ssrRenderAttr, ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; -import { a as useVModel } from './index-1624a23e.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import './DocsAsideTree-136bd08b.mjs'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import './ContentSlot-deb25102.mjs'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ComponentPlaygroundProps", - __ssrInlineRender: true, - props: { - modelValue: { - type: Object, - required: true - }, - componentData: { - type: Object, - required: true - } - }, - emits: ["update:modelValue"], - setup(__props, { emit: emits }) { - const props = __props; - const formData = useVModel(props, "modelValue", emits); - const componentProps = computed(() => { - var _a, _b; - return (_b = (_a = props == null ? void 0 : props.componentData) == null ? void 0 : _a.meta) == null ? void 0 : _b.props; - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_ProseH4 = __nuxt_component_0; - const _component_ProseCodeInline = __nuxt_component_1$1; - const _component_Badge = __nuxt_component_2; - const _component_ProseP = __nuxt_component_3; - _push(``); - ssrRenderList(unref(componentProps), (prop) => { - _push(`
    `); - _push(ssrRenderComponent(_component_ProseH4, { - id: prop.name - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`${ssrInterpolate(prop.name)}`); - } else { - return [ - createTextVNode(toDisplayString(prop.name), 1) - ]; - } - }), - _: 2 - }, _parent)); - _push(``); - _push(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`${ssrInterpolate(prop.type)}`); - } else { - return [ - createTextVNode(toDisplayString(prop.type), 1) - ]; - } - }), - _: 2 - }, _parent)); - if (!prop.required) { - _push(ssrRenderComponent(_component_Badge, null, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(` Required `); - } else { - return [ - createTextVNode(" Required ") - ]; - } - }), - _: 2 - }, _parent)); - } else { - _push(``); - } - _push(`
    `); - if (prop.description) { - _push(ssrRenderComponent(_component_ProseP, null, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`${ssrInterpolate(prop.description)}`); - } else { - return [ - createTextVNode(toDisplayString(prop.description), 1) - ]; - } - }), - _: 2 - }, _parent)); - } else { - _push(``); - } - _push(``); - }); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-acf5a6ce"]]); - -export { __nuxt_component_1 as default }; -//# sourceMappingURL=ComponentPlaygroundProps-8f45f1a7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map deleted file mode 100644 index af5fa485..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlaygroundProps-8f45f1a7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundProps-8f45f1a7.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs deleted file mode 100644 index d44e4347..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ComponentPlaygroundProps_vue_vue_type_style_index_0_scoped_acf5a6ce_transformed_true_lang = ".prop-title[data-v-acf5a6ce]{align-items:flex-start;display:flex;flex-direction:column;justify-content:flex-start;width:100%}.prop-title[data-v-acf5a6ce],.prop-title h4[data-v-acf5a6ce]{margin-bottom:var(--space-4);margin-top:var(--space-4)}.prop-title h4[data-v-acf5a6ce]{font-size:var(--fontSize-2xl);font-weight:var(--fontWeight-black);line-height:1}@mq.md{.prop-title h4[data-v-acf5a6ce]{margin-bottom:var(--space-0);margin-top:var(--space-0)}}.prop-title span[data-v-acf5a6ce]{align-items:center;display:flex;gap:var(--space-4)}@mq.md{.prop-title[data-v-acf5a6ce]{flex-direction:row;justify-content:space-between}}input[data-v-acf5a6ce]{border:1px solid var(--color-gray-200);border-radius:var(--radii-sm);padding:var(--space-1) var(--space-2)}:root.dark input[data-v-acf5a6ce]{border:1px solid var(--color-gray-800)}"; - -const ComponentPlaygroundPropsStyles_82745445 = [ComponentPlaygroundProps_vue_vue_type_style_index_0_scoped_acf5a6ce_transformed_true_lang]; - -export { ComponentPlaygroundPropsStyles_82745445 as default }; -//# sourceMappingURL=ComponentPlaygroundProps-styles.82745445.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map deleted file mode 100644 index 00d93f73..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlaygroundProps-styles.82745445.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundProps-styles-1.mjs-8b10ca6b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundProps-styles.82745445.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yFAA4F,GAAA,wzBAAA;;ACClG,gDAAe,CAACA,yFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs deleted file mode 100644 index 5899e0be..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs +++ /dev/null @@ -1,27 +0,0 @@ -import { defineComponent, mergeProps, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ComponentPlaygroundSlots", - __ssrInlineRender: true, - props: { - componentData: { - type: Object, - required: true - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - _push(`
    ${ssrInterpolate(JSON.stringify(__props.componentData, null, 2))}
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ComponentPlaygroundSlots-0dbd767a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map deleted file mode 100644 index 9d5c7ac0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlaygroundSlots-0dbd767a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundSlots-0dbd767a.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,0BAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,UAAA,CAAW,EAAE,KAAO,EAAA,mCAAA,IAAuC,MAAM,CAAC,CAAU,CAAA,MAAA,EAAA,cAAA,CAAe,KAAK,SAAU,CAAA,OAAA,CAAQ,eAAe,IAAM,EAAA,CAAC,CAAC,CAAe,CAAA,YAAA,CAAA,CAAA,CAAA;AAAA,KACtL,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iFAAiF,CAAA,CAAA;AAC9J,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs deleted file mode 100644 index 1e66ef80..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs +++ /dev/null @@ -1,27 +0,0 @@ -import { defineComponent, mergeProps, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ComponentPlaygroundTokens", - __ssrInlineRender: true, - props: { - componentData: { - type: Object, - required: true - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - _push(`${ssrInterpolate(__props.componentData)}`); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ComponentPlaygroundTokens-548a0a2d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map deleted file mode 100644 index b89cd91b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ComponentPlaygroundTokens-548a0a2d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ComponentPlaygroundTokens-548a0a2d.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,2BAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,CAAO,IAAA,EAAA,cAAA,CAAe,UAAW,CAAA,EAAE,KAAO,EAAA,mCAAA,EAAuC,EAAA,MAAM,CAAC,CAAA,CAAA,CAAA,EAAK,cAAe,CAAA,OAAA,CAAQ,aAAa,CAAS,CAAA,MAAA,CAAA,CAAA,CAAA;AAAA,KAClJ,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,kFAAkF,CAAA,CAAA;AAC/J,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs b/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs deleted file mode 100644 index fe2d8aed..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs +++ /dev/null @@ -1,990 +0,0 @@ -import { inject, useSSRContext, ref, getCurrentInstance, computed, defineComponent, createVNode, resolveDynamicComponent, mergeProps, unref, withCtx, renderSlot, watch, onScopeDispose } from 'vue'; -import { ssrRenderVNode, ssrRenderSlot } from 'vue/server-renderer'; -import { nanoid } from 'nanoid'; -import { kebabCase } from 'scule'; -import { defu } from 'defu'; - -function set(object, paths, value, splitter = ".") { - var _a; - if (typeof paths === "string") { - paths = paths.split(splitter); - } - const limit = paths.length - 1; - for (let i = 0; i < limit; ++i) { - const key2 = paths[i]; - object = (_a = object[key2]) != null ? _a : object[key2] = {}; - } - const key = paths[limit]; - object[key] = value; -} -function get(object, paths, splitter = ".") { - var _a; - if (typeof paths === "string") { - paths = paths.split(splitter); - } - const limit = paths.length - 1; - for (let i = 0; i < limit; ++i) { - const key2 = paths[i]; - object = (_a = object[key2]) != null ? _a : object[key2] = {}; - } - const key = paths[limit]; - return object[key]; -} -function walkTokens(obj, cb, paths = []) { - let result = {}; - if (obj.value) { - result = cb(obj, result, paths); - } else { - for (const k in obj) { - if (obj[k] && typeof obj[k] === "object") { - result[k] = walkTokens(obj[k], cb, [...paths, k]); - } - } - } - return result; -} -function normalizeConfig(obj, mqKeys, removeSchemaKeys = false) { - let result = {}; - if (obj.value) { - result = obj; - } else { - for (const k in obj) { - if (k === "$schema") { - if (!removeSchemaKeys) { - result[k] = obj[k]; - } - continue; - } - if (k === "utils") { - result[k] = obj[k]; - continue; - } - if (obj[k] && (typeof obj[k] === "string" || typeof obj[k] === "number" || typeof obj[k] === "boolean" || typeof obj[k] === "symbol" || typeof obj[k] === "bigint")) { - result[k] = { value: obj[k] }; - } else if (obj[k] && typeof obj[k] === "object") { - const keys = Object.keys(obj[k]); - if (keys.includes("initial") && keys.some((key) => mqKeys.includes(key))) { - result[k] = { value: obj[k] }; - continue; - } - result[k] = normalizeConfig(obj[k], mqKeys, removeSchemaKeys); - } - } - } - return result; -} -const referencesRegex = new RegExp( - "\\{([^}]+)\\}", - "g" -); -const keyRegex = /{(.*)}/g; -const DARK = "@dark"; -const LIGHT = "@light"; -const INITIAL = "@initial"; -const responsiveMediaQueryRegex = /^(:|\.)/; -function createTokensHelper(theme = {}, options = {}) { - const defaultHelperOptions = { - key: "attributes.variable", - onNotFound: false, - ...options - }; - function $tokens(path = void 0, options2) { - if (!path) { - return unref(theme); - } - const $tokensOptions = { ...defaultHelperOptions, ...options2 }; - const { key, onNotFound } = $tokensOptions; - const token = get(unref(theme), path); - if (!token && typeof onNotFound === "function") { - onNotFound(path, $tokensOptions); - return; - } - return key ? token ? token[key] ? token[key] : get(token, key) : token : token; - } - return $tokens.bind(this); -} -function pathToVarName(path) { - if (Array.isArray(path)) { - path = path.join("-"); - } - if (path.charAt(0) === "{" && path.charAt(path.length - 1) === "}") { - path = path.substr(1, path.length - 2); - } - return `--${path.split(".").join("-")}`; -} -function resolveCssProperty(property, value, style, selectors, ctx, loc) { - const directive = resolveCustomDirectives(property, value, selectors, ctx, loc); - if (directive) { - return directive; - } - if (ctx.utils[property]) { - if (typeof ctx.utils[property] === "function") { - return ctx.utils[property](value); - } - return value ? ctx.utils[property] : {}; - } - value = castValues(property, value, ctx, loc); - return { - [property]: value - }; -} -function castValues(property, value, ctx, loc) { - if (Array.isArray(value) || typeof value === "string" || typeof value === "number") { - if (Array.isArray(value)) { - value = value.map((v) => castValue(property, v, ctx, loc)).join(","); - } else { - value = castValue(property, value, ctx, loc); - } - } - return value; -} -function castValue(property, value, ctx, loc) { - if (typeof value === "number") { - return value; - } - if (value.match(referencesRegex)) { - value = resolveReferences(property, value, ctx, loc); - } - if (value === "{}") { - return ""; - } - return value; -} -function resolveReferences(_, value, ctx, loc) { - if (!(typeof value === "string")) { - return value; - } - value = value.replace( - referencesRegex, - (_2, tokenPath) => { - const token = ctx.$tokens(tokenPath, { key: void 0, loc }); - const tokenValue = typeof token === "string" ? token : (token == null ? void 0 : token.variable) || (token == null ? void 0 : token.value); - if (!tokenValue) { - return `var(${pathToVarName(tokenPath)})`; - } - return tokenValue; - } - ); - return value; -} -function resolveCustomDirectives(property, value, selectors, ctx, loc) { - if (property.startsWith("@")) { - const resolveColorScheme = (scheme) => { - scheme = ctx.options.colorSchemeMode === "class" ? `:root.${scheme}` : `@media (prefers-color-scheme: ${scheme})`; - const isMedia = scheme.startsWith("@media"); - if (ctx == null ? void 0 : ctx.runtime) { - return { - "@media": { - [scheme]: value - } - }; - } - return { - [isMedia ? scheme : `${scheme} &`]: value - }; - }; - if (property === DARK) { - return resolveColorScheme("dark"); - } - if (property === LIGHT) { - return resolveColorScheme("light"); - } - if (property === INITIAL) { - const token = ctx.$tokens("media.initial", { key: "value", onNotFound: false, loc }); - return { - [`@media${token ? ` ${token}` : ""}`]: value - }; - } - const mediaQueries = ctx.$tokens("media", { key: void 0, loc }); - if (mediaQueries) { - const query = property.replace("@", ""); - if (mediaQueries[query]) { - return { - [`@media ${mediaQueries[query].value}`]: value - }; - } - } - return { - [property]: value - }; - } -} -const comma = /\s*,\s*(?![^()]*\))/; -const getResolvedSelectors = (parentSelectors, nestedSelectors) => parentSelectors.reduce( - (resolvedSelectors, parentSelector) => { - resolvedSelectors.push( - ...nestedSelectors.map( - (selector) => selector.includes("&") ? selector.replace( - /&/g, - /[ +>|~]/.test(parentSelector) && /&.*&/.test(selector) ? `:is(${parentSelector})` : parentSelector - ) : `${parentSelector} ${selector}` - ) - ); - return resolvedSelectors; - }, - [] -); -const { prototype: { toString } } = Object; -const stringify = (value, replacer = void 0) => { - const used = /* @__PURE__ */ new WeakSet(); - const write = (cssText, selectors, conditions, name, data, isAtRuleLike) => { - for (let i = 0; i < conditions.length; ++i) { - if (!used.has(conditions[i])) { - used.add(conditions[i]); - cssText += `${conditions[i]}{`; - } - } - if (selectors.length && !used.has(selectors)) { - used.add(selectors); - cssText += `${selectors}{`; - } - if (isAtRuleLike) { - name = `${name} `; - } else { - name = `${kebabCase(name)}:`; - } - cssText += `${name + String(data)};`; - return cssText; - }; - const parse = (style, selectors, conditions, prevName, prevData) => { - let cssText = ""; - for (const name in style) { - const isAtRuleLike = name.charCodeAt(0) === 64; - for (const data of isAtRuleLike && Array.isArray(style[name]) ? style[name] : [style[name]]) { - if (replacer && (name !== prevName || data !== prevData)) { - const next = replacer(name, data, style, selectors); - if (next !== null) { - cssText += typeof next === "object" && next ? parse(next, selectors, conditions, name, data) : next == null ? "" : next; - continue; - } - } - const isObjectLike = typeof data === "object" && data && data.toString === toString; - if (isObjectLike) { - if (used.has(selectors)) { - used.delete(selectors); - cssText += "}"; - } - const usedName = Object(name); - let nextSelectors; - if (isAtRuleLike) { - nextSelectors = selectors; - cssText += parse( - data, - nextSelectors, - conditions.concat(usedName) - ); - } else { - nextSelectors = selectors.length ? getResolvedSelectors(selectors, name.split(comma)) : name.split(comma); - cssText += parse( - data, - nextSelectors, - conditions - ); - } - if (used.has(usedName)) { - used.delete(usedName); - cssText += "}"; - } - if (used.has(nextSelectors)) { - used.delete(nextSelectors); - cssText += "}"; - } - } else { - cssText = write(cssText, selectors, conditions, name, data, isAtRuleLike); - } - } - } - return cssText; - }; - return parse(value, [], []); -}; -const HYDRATION_SELECTOR = ".phy[--]"; -function usePinceauRuntimeSheet($tokens, initialUtils = {}, colorSchemeMode, appId) { - const sheet = ref(); - const utils2 = ref(initialUtils); - const cache = {}; - const stringify$1 = (decl, loc) => stringify( - decl, - (property, value, style, selectors) => resolveCssProperty( - property, - value, - style, - selectors, - { $tokens, utils: utils2.value, options: { colorSchemeMode, runtime: true } }, - loc - ) - ); - function resolveStylesheet() { - const global = globalThis || window; - let style; - let hydratableSheet; - if (global && global.document) { - const doc = global.document; - hydratableSheet = doc.querySelector(`style#pinceau-runtime-hydratable${appId ? `-${appId}` : ""}`); - const styleNode = doc.createElement("style"); - styleNode.id = `pinceau-runtime${appId ? `-${appId}` : ""}`; - styleNode.type = "text/css"; - style = doc.head.appendChild(styleNode); - } - sheet.value = (style == null ? void 0 : style.sheet) || getSSRStylesheet(); - return hydratableSheet ? hydrateStylesheet(hydratableSheet) : void 0; - } - function hydrateStylesheet(el) { - var _a, _b; - const hydratableRules2 = {}; - for (const _rule of Object.entries(((_a = el == null ? void 0 : el.sheet) == null ? void 0 : _a.cssRules) || ((_b = sheet.value) == null ? void 0 : _b.cssRules) || {})) { - const [index, rule] = _rule; - const uids = resolveUid(rule); - if (!uids || !uids.uid) { - continue; - } - if (!hydratableRules2[uids.uid]) { - hydratableRules2[uids.uid] = {}; - } - const newIndex = sheet.value.insertRule(rule.cssText, Number(index)); - hydratableRules2[uids.uid][uids.type] = sheet.value.cssRules.item(newIndex); - } - if (el) { - el.remove(); - } - return hydratableRules2; - } - function toString2() { - if (!sheet.value) { - return ""; - } - return Object.entries(sheet.value.cssRules).reduce( - (acc, [, rule]) => { - acc += `${rule == null ? void 0 : rule.cssText} -` || ""; - return acc; - }, - "" - ); - } - function pushDeclaration(uid, type, declaration, previousRule, loc) { - if (!Object.keys(declaration).length) { - return; - } - const cssText = stringify$1( - { - "@media": { - // Mark inserted declaration with unique id and type of runtime style - [HYDRATION_SELECTOR]: { "--puid": `${uid}-${type}` }, - ...declaration - } - }, - loc - ); - if (!cssText) { - return; - } - if (previousRule) { - deleteRule(previousRule); - } - const ruleId = sheet.value.insertRule(cssText); - return sheet.value.cssRules[ruleId]; - } - function deleteRule(rule) { - const ruleIndex = Object.values(sheet.value.cssRules).indexOf(rule); - if (typeof ruleIndex === "undefined" || isNaN(ruleIndex)) { - return; - } - try { - sheet.value.deleteRule(ruleIndex); - } catch (e) { - } - } - const hydratableRules = resolveStylesheet(); - return { - stringify: stringify$1, - cache, - pushDeclaration, - deleteRule, - sheet, - toString: toString2, - hydratableRules - }; -} -function getSSRStylesheet() { - return { - cssRules: [], - insertRule(cssText, index = this.cssRules.length) { - this.cssRules.splice(index, 1, { cssText }); - return index; - }, - deleteRule(index) { - delete this.cssRules[index]; - } - }; -} -function resolveUid(rule) { - const uidRule = rule.cssRules && rule.cssRules.length ? Object.entries(rule == null ? void 0 : rule.cssRules).find(([_, rule2]) => rule2.selectorText === HYDRATION_SELECTOR) : void 0; - if (!uidRule) { - return; - } - const uidRegex = /--puid:(.*)?-(c|v|p)?/m; - const [, uid, type] = uidRule[1].cssText.match(uidRegex); - if (!uid) { - return; - } - return { uid, type }; -} -function usePinceauRuntimeIds(instance, classes, _) { - var _a, _b, _c; - let uid; - const el = (_a = instance == null ? void 0 : instance.vnode) == null ? void 0 : _a.el; - if (el && el.classList) { - el.classList.forEach( - (elClass) => { - if (uid) { - return; - } - if (elClass.startsWith("pc-")) { - uid = elClass.split("pc-")[1]; - } - } - ); - } else { - uid = nanoid(6); - } - const scopeId = (_c = (_b = instance == null ? void 0 : instance.vnode) == null ? void 0 : _b.type) == null ? void 0 : _c.__scopeId; - const ids = { - uid, - componentId: scopeId ? `[${scopeId}]` : "", - uniqueClassName: `pc-${uid}` - }; - classes.value.c = ids.uniqueClassName; - return computed(() => ids); -} -function isToken(token) { - return typeof token === "string" && keyRegex.test(token); -} -function scale(type, prop, scales, valueTransform) { - if (typeof prop === "object") { - return prop; - } - if (typeof prop === "string") { - const to_ret = {}; - if (isToken(prop)) { - to_ret.initial = prop; - return to_ret; - } - if (typeof scales === "string") { - to_ret.initial = `{${type}.${prop}.${scales}}`; - } - if (typeof scales === "object") { - Object.entries(scales).forEach( - ([mqId, scaleValue]) => { - if (typeof prop === "string") { - to_ret[mqId] = `{${type}.${prop}.${scaleValue}}`; - } - } - ); - } - return valueTransform ? Object.entries(to_ret).reduce( - (acc, [key, value]) => { - acc[key] = valueTransform(value); - return acc; - }, - {} - ) : to_ret; - } -} -const utils = { - isToken, - scale -}; -function usePinceauThemeSheet(initialTheme, tokensHelperConfig = {}) { - const sheet = ref(); - const theme = ref(initialTheme || {}); - tokensHelperConfig = Object.assign( - { - key: "variable" - }, - tokensHelperConfig || {} - ); - const $tokens = createTokensHelper( - theme, - tokensHelperConfig - ); - let cache = {}; - resolveStylesheet(); - function findThemeSheet(document2) { - var _a; - for (const sheet2 of document2.styleSheets) { - if ((_a = sheet2 == null ? void 0 : sheet2.ownerNode) == null ? void 0 : _a.textContent.includes("--pinceau-mq")) { - return sheet2.ownerNode; - } - } - } - function resolveStylesheet() { - var _a; - const global = globalThis || window; - if (global && global.document) { - let sheetElement = document.querySelector("#pinceau-theme"); - if (!sheetElement) { - sheetElement = findThemeSheet(document); - } - sheet.value = sheetElement == null ? void 0 : sheetElement.sheet; - if (sheet.value) { - hydrateStylesheet((_a = sheet.value) == null ? void 0 : _a.cssRules); - } - } - } - function hydrateStylesheet(cssRules) { - cache = {}; - Object.entries(cssRules || {}).forEach( - ([_, rule]) => { - var _a, _b; - if ((rule == null ? void 0 : rule.type) !== 4 && !((_a = rule == null ? void 0 : rule.cssText) == null ? void 0 : _a.includes("--pinceau-mq"))) { - return false; - } - let currentTheme = "initial"; - (_b = rule.cssText.match(/--([\w-]+)\s*:\s*(.+?);/gm)) == null ? void 0 : _b.forEach((match) => { - var _a2; - const [variable, value] = match.replace(";", "").split(/:\s(.*)/s); - if (variable === "--pinceau-mq") { - currentTheme = value; - if (!cache[value]) { - const ruleReference = (_a2 = Object.entries((rule == null ? void 0 : rule.cssRules) || {}).find(([_2, cssRule]) => cssRule == null ? void 0 : cssRule.cssText.includes(`--pinceau-mq: ${value}`))) == null ? void 0 : _a2[1]; - if (ruleReference) { - cache[value] = ruleReference; - } - } - return; - } - const path = [...variable.substring(2).split("-")]; - set(theme.value, path, getSetValue(path, value, variable, currentTheme)); - }); - } - ); - } - function updateTheme(value) { - var _a; - const mqKeys = Array.from(/* @__PURE__ */ new Set(["dark", "light", ...Object.keys((value == null ? void 0 : value.media) || {}), ...Object.keys(((_a = theme.value) == null ? void 0 : _a.media) || {})])); - const config = normalizeConfig(value || {}, mqKeys, true); - walkTokens(config, (token, _, paths) => updateToken(paths, token.value)); - } - function updateToken(path, value, mq = "initial") { - var _a; - if (typeof value === "object") { - Object.entries(value).forEach(([mq2, mqValue]) => updateToken(path, mqValue, mq2)); - return; - } - const varName = pathToVarName(path); - if (!(cache == null ? void 0 : cache[mq])) { - createMqRule(mq); - } - const resolvedValue = resolveReferences(void 0, value, { $tokens }); - set( - theme.value, - path, - getSetValue(path, resolvedValue, varName, mq) - ); - (_a = cache == null ? void 0 : cache[mq]) == null ? void 0 : _a.style.setProperty(varName, resolvedValue); - } - function reactiveToken(path) { - return computed( - { - get() { - return get(theme.value, `${path}.value`); - }, - set(v) { - updateToken(path, v); - } - } - ); - } - function getSetValue(path, value, variable, mq = "initial") { - const varRef = `var(${variable})`; - const setValue = { value, variable: varRef }; - const existingValue = get(theme.value, path); - if (existingValue) { - if (typeof (existingValue == null ? void 0 : existingValue.value) === "object") { - setValue.value = { ...existingValue.value, [mq]: value }; - } else { - setValue.value = { initial: existingValue.value, [mq]: value }; - } - } - return setValue; - } - function createMqRule(mq) { - var _a, _b, _c; - if (cache == null ? void 0 : cache[mq]) { - return cache == null ? void 0 : cache[mq]; - } - let mqValue; - if (mq === "dark" || mq === "light") { - mqValue = `:root.${mq}`; - } else { - mqValue = (_c = (_b = (_a = theme.value) == null ? void 0 : _a.media) == null ? void 0 : _b[mq]) == null ? void 0 : _c.value; - } - let css; - if (mqValue.match(responsiveMediaQueryRegex)) { - css = `@media { ${mqValue} { --pinceau-mq: ${mq}; } }`; - } else { - css = `@media ${mqValue} { :root { --pinceau-mq: ${mq}; } }`; - } - cache[mq] = sheet.value.cssRules.item(sheet.value.insertRule(css, sheet.value.cssRules.length)).cssRules[0]; - return cache[mq]; - } - return { - $tokens, - updateToken, - updateTheme, - reactiveToken, - resolveStylesheet, - theme - }; -} -function usePinceauComputedStyles(ids, computedStyles, sheet, loc) { - var _a, _b; - let rule = (_b = (_a = sheet.hydratableRules) == null ? void 0 : _a[ids.value.uid]) == null ? void 0 : _b.c; - watch( - computedStyles, - (newComputedStyles) => { - newComputedStyles = computedStylesToDeclaration(ids.value, newComputedStyles); - rule = sheet.pushDeclaration( - ids.value.uid, - "c", - newComputedStyles, - rule, - { ...loc, type: "c" } - ); - }, - { - immediate: !rule, - deep: true - } - ); - onScopeDispose(() => rule && sheet.deleteRule(rule)); -} -function computedStylesToDeclaration(ids, computedStyles) { - const declaration = {}; - const targetId = `.${ids.uniqueClassName}${ids.componentId}`; - if (computedStyles && Object.keys(computedStyles).length) { - declaration[targetId] = declaration[targetId] || {}; - for (const [varName, _value] of Object.entries(computedStyles)) { - const value = unref(_value); - if (varName === "css") { - declaration[targetId] = Object.assign(declaration[targetId], value); - continue; - } - if (typeof value === "object") { - for (const [mqId, mqPropValue] of Object.entries(value)) { - const _value2 = unref(mqPropValue); - if (!_value2) { - continue; - } - if (mqId === "initial") { - if (!declaration[targetId]) { - declaration[targetId] = {}; - } - if (!declaration[targetId]) { - declaration[targetId] = {}; - } - declaration[targetId][`--${varName}`] = _value2; - } - const mediaId = `@${mqId}`; - if (!declaration[mediaId]) { - declaration[mediaId] = {}; - } - if (!declaration[mediaId][targetId]) { - declaration[mediaId][targetId] = {}; - } - declaration[mediaId][targetId][`--${kebabCase(varName)}`] = _value2; - } - } else { - const _value2 = unref(value); - if (_value2) { - declaration[targetId][`--${kebabCase(varName)}`] = _value2; - } - } - } - } - return declaration; -} -const usePinceauVariants = (ids, variants, props, sheet, classes, loc) => { - var _a, _b; - let rule = (_b = (_a = sheet.hydratableRules) == null ? void 0 : _a[ids.value.uid]) == null ? void 0 : _b.v; - const variantsState = computed(() => variants && (variants == null ? void 0 : variants.value) ? resolveVariantsState(ids.value, props.value, variants.value) : {}); - const variantsClasses = ref([]); - watch( - variantsState, - ({ cacheId, variantsProps }) => { - let variantClass; - if (sheet.cache[cacheId]) { - const cachedRule = sheet.cache[cacheId]; - rule = cachedRule.rule; - variantClass = cachedRule.variantClass; - if (cachedRule == null ? void 0 : cachedRule.classes) { - variantsClasses.value = cachedRule.classes; - } - cachedRule.count++; - } else { - variantClass = `pv-${nanoid(6)}`; - const { declaration, classes: classes2 } = variantsToDeclaration(variantClass, ids.value, variants.value, variantsProps); - variantsClasses.value = classes2; - rule = sheet.pushDeclaration(ids.value.uid, "v", declaration, void 0, { ...loc, type: "v" }); - sheet.cache[cacheId] = { rule, variantClass, classes: classes2, count: 1 }; - } - classes.value.v = variantClass; - }, - { - immediate: true - } - ); - onScopeDispose( - () => { - var _a2; - const state = variantsState == null ? void 0 : variantsState.value; - const cachedRule = (_a2 = sheet.cache) == null ? void 0 : _a2[state.cacheId]; - if (cachedRule) { - cachedRule.count--; - if (cachedRule.count <= 0) { - sheet.deleteRule(cachedRule.rule); - delete sheet.cache[state.cacheId]; - } - } - } - ); - return { variantsClasses }; -}; -function variantsToDeclaration(variantClass, ids, variants, props) { - var _a, _b; - let classes = []; - const declaration = {}; - if (props && Object.keys(props).length) { - const targetId = `.${variantClass}`; - for (const [propName, propValue] of Object.entries(props)) { - if (typeof propValue === "object") { - for (const [mqId, mqPropValue] of Object.entries(propValue)) { - const _value = (mqPropValue == null ? void 0 : mqPropValue.toString()) || mqPropValue; - const variantValue = variants[propName][_value]; - if (!variantValue) { - continue; - } - if (!declaration[targetId]) { - declaration[targetId] = {}; - } - if (typeof variantValue === "string" || Array.isArray(variantValue) || (variantValue == null ? void 0 : variantValue.$class)) { - const classAttr = typeof variantValue === "string" || Array.isArray(variantValue) ? variantValue : variantValue.$class; - classes = [ - ...classes, - ...typeof classAttr === "string" ? classAttr.split(" ") : classAttr - ]; - delete variantValue.$class; - } - if (mqId === "initial") { - if (!declaration[targetId]) { - declaration[targetId] = {}; - } - declaration[targetId] = defu(declaration[targetId], variantValue); - } - const mediaId = `@${mqId}`; - if (!declaration[mediaId]) { - declaration[mediaId] = {}; - } - if (!declaration[mediaId][targetId]) { - declaration[mediaId][targetId] = {}; - } - declaration[mediaId][targetId] = defu(declaration[mediaId][targetId], variantValue); - } - } else { - const _value = ((_a = propValue == null ? void 0 : propValue.toString) == null ? void 0 : _a.call(propValue)) || propValue; - const variantValue = (_b = variants == null ? void 0 : variants[propName]) == null ? void 0 : _b[_value]; - if (!variantValue) { - continue; - } - if (!declaration[targetId]) { - declaration[targetId] = {}; - } - declaration[targetId] = defu(declaration[targetId], variantValue); - } - } - } - return { declaration, classes }; -} -function resolveVariantsState(ids, props, variants) { - if (!props || !variants) { - return {}; - } - let cacheId = ids.componentId; - const variantsProps = Object.entries(props).reduce( - (acc, [propName, propValue]) => { - if (!variants[propName]) { - return acc; - } - if (typeof propValue === "object") { - Object.entries(propValue).forEach(([key, value]) => cacheId += `${propName}:${key}:${value}|`); - } else { - cacheId += `${propName}:${propValue}|`; - } - acc[propName] = propValue; - return acc; - }, - {} - ); - return { cacheId, variantsProps }; -} -function usePinceauCssProp(ids, props, sheet, loc) { - var _a, _b; - let rule = (_b = (_a = sheet.hydratableRules) == null ? void 0 : _a[ids.value.uid]) == null ? void 0 : _b.p; - const css = computed(() => { - var _a2; - return (_a2 = props.value) == null ? void 0 : _a2.css; - }); - watch( - css, - (newCss) => { - newCss = transformCssPropToDeclaration(ids.value, newCss); - if (rule) { - sheet.deleteRule(rule); - } - rule = sheet.pushDeclaration( - ids.value.uid, - "p", - newCss, - void 0, - { ...loc, type: "c" } - ); - }, - { - immediate: !rule - } - ); - onScopeDispose(() => rule && sheet.deleteRule(rule)); -} -function transformCssPropToDeclaration(ids, css) { - const declaration = {}; - if (css) { - const targetId = `.${ids.uniqueClassName}${ids.componentId}`; - declaration[targetId] = Object.assign(declaration[targetId] || {}, css); - } - return declaration; -} -const defaultRuntimeOptions = { - theme: {}, - utils: {}, - tokensHelperConfig: {}, - multiApp: false, - colorSchemeMode: "media", - dev: false -}; -const plugin = { - install(app, options) { - options = Object.assign(defaultRuntimeOptions, options); - const { theme, tokensHelperConfig, dev, multiApp, colorSchemeMode, utils: utils2 } = options; - const themeSheet = usePinceauThemeSheet(theme); - if (dev && true) { - import('./debug-43adc91a.mjs').then(({ usePinceauRuntimeDebug }) => usePinceauRuntimeDebug(tokensHelperConfig)); - } - const multiAppId = multiApp ? nanoid(6) : void 0; - const runtimeSheet = usePinceauRuntimeSheet(themeSheet.$tokens, utils2, colorSchemeMode, multiAppId); - function usePinceauRuntime2(props, variants, computedStyles) { - const instance = getCurrentInstance(); - let loc; - if (dev && true) { - const { __file: file, __name: name } = instance.vnode.type; - loc = { file, name }; - } - const classes = ref({ - // Variants class - v: "", - // Unique class - c: "" - }); - const ids = usePinceauRuntimeIds(instance, classes); - if (computedStyles && (computedStyles == null ? void 0 : computedStyles.value) && Object.keys(computedStyles.value).length > 0) { - usePinceauComputedStyles(ids, computedStyles, runtimeSheet, loc); - } - let dynamicVariantClasses; - if (variants && (variants == null ? void 0 : variants.value) && Object.keys(variants.value).length > 0) { - const { variantsClasses } = usePinceauVariants(ids, variants, props, runtimeSheet, classes, loc); - dynamicVariantClasses = variantsClasses; - } - if (props.value.css && Object.keys(props.value.css).length > 0) { - usePinceauCssProp(ids, props, runtimeSheet, loc); - } - return { - $pinceau: computed(() => { - var _a; - return `${classes.value.v} ${classes.value.c} ${(_a = dynamicVariantClasses == null ? void 0 : dynamicVariantClasses.value) == null ? void 0 : _a.join(" ")}`; - }) - }; - } - app.config.globalProperties.$pinceauRuntime = usePinceauRuntime2; - app.config.globalProperties.$pinceauTheme = themeSheet; - app.config.globalProperties.$pinceauSsr = { get: () => runtimeSheet.toString() }; - app.provide("pinceauRuntime", usePinceauRuntime2); - app.provide("pinceauTheme", themeSheet); - } -}; -function usePinceauRuntime(props, variants, computedStyles) { - return inject("pinceauRuntime")(props, variants, computedStyles); -} -function usePinceauTheme() { - return inject("pinceauTheme"); -} -function computedStyle(defaultValue, required = false) { - return { - type: [String, Object], - default: defaultValue, - required - }; -} -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Container", - __ssrInlineRender: true, - props: { - as: { - type: String, - required: false, - default: "div" - }, - ...{ "padded": { "required": false, "type": [Boolean, Object], "default": true }, "fluid": { "required": false, "type": [Boolean, Object], "default": false } } - }, - setup(__props) { - const __$pProps = __props; - const __$pVariants = ref({ "padded": { "true": { "px": "{elements.container.padding.mobile}", "@xs": { "px": "{elements.container.padding.xs}" }, "@sm": { "px": "{elements.container.padding.sm}" }, "@md": { "px": "{elements.container.padding.md}" } } }, "fluid": { "true": {}, "false": { "maxWidth": "{elements.container.maxWidth}" } } }); - const { $pinceau } = usePinceauRuntime(computed(() => __$pProps), __$pVariants, void 0); - return (_ctx, _push, _parent, _attrs) => { - ssrRenderVNode(_push, createVNode(resolveDynamicComponent(__props.as), mergeProps({ - class: ["container", [unref($pinceau)]] - }, _attrs), { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true) - ]; - } - }), - _: 3 - }), _parent); - }; - } -}); -const _export_sfc = (sfc, props) => { - const target = sfc.__vccOpts || sfc; - for (const [key, val] of props) { - target[key] = val; - } - return target; -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Container.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-63a0deda"]]); -const Container = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_0 -}); - -export { Container as C, _export_sfc as _, __nuxt_component_0 as a, usePinceauRuntime as b, computedStyle as c, usePinceauTheme as d, plugin as p, utils as u }; -//# sourceMappingURL=Container-1291608c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map b/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map deleted file mode 100644 index fdb2b13d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Container-1291608c.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Container-1291608c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Container-1291608c.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs b/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs deleted file mode 100644 index caab6853..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs +++ /dev/null @@ -1,146 +0,0 @@ -import { f as useRoute } from './app.config-832f5f68.mjs'; -import { defineComponent, useSlots, h, useSSRContext } from 'vue'; -import { withTrailingSlash } from 'ufo'; -import { a as useContentHead } from '../server.mjs'; -import _sfc_main$2 from './ContentRenderer-06a7c657.mjs'; -import _sfc_main$1 from './ContentQuery-8668b0af.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; -import './ContentRendererMarkdown-bebf42c8.mjs'; -import 'property-information'; -import './asyncData-c43d4319.mjs'; - -const _sfc_main = defineComponent({ - name: "ContentDoc", - props: { - /** - * Renderer props - */ - /** - * The tag to use for the renderer element if it is used. - * @default 'div' - */ - tag: { - type: String, - required: false, - default: "div" - }, - /** - * Whether or not to render the excerpt. - * @default false - */ - excerpt: { - type: Boolean, - default: false - }, - /** - * Query props - */ - /** - * The path of the content to load from content source. - * @default useRoute().path - */ - path: { - type: String, - required: false, - default: void 0 - }, - /** - * A query builder params object to be passed to component. - */ - query: { - type: Object, - required: false, - default: void 0 - }, - /** - * Whether or not to map the document data to the `head` property. - */ - head: { - type: Boolean, - required: false, - default: true - } - }, - /** - * Document empty fallback - * @slot empty - */ - /** - * Document not found fallback - * @slot not-found - */ - render(ctx) { - const slots = useSlots(); - const { tag, excerpt, path, query, head } = ctx; - const contentQueryProps = { - ...query || {}, - path: path || (query == null ? void 0 : query.path) || withTrailingSlash(useRoute().path), - find: "one" - }; - const emptyNode = (slot, data) => h("pre", null, JSON.stringify({ message: "You should use slots with ", slot, data }, null, 2)); - return h( - _sfc_main$1, - contentQueryProps, - { - // Default slot - default: (slots == null ? void 0 : slots.default) ? ({ data, refresh, isPartial }) => { - var _a; - if (head) { - useContentHead(data); - } - return (_a = slots.default) == null ? void 0 : _a.call(slots, { doc: data, refresh, isPartial, excerpt, ...this.$attrs }); - } : ({ data }) => { - if (head) { - useContentHead(data); - } - return h( - _sfc_main$2, - { value: data, excerpt, tag, ...this.$attrs }, - // Forward local `empty` slots to ContentRenderer if it is used. - { empty: (bindings) => (slots == null ? void 0 : slots.empty) ? slots.empty(bindings) : emptyNode("default", data) } - ); - }, - // Empty slot - empty: (bindings) => { - var _a; - return ((_a = slots == null ? void 0 : slots.empty) == null ? void 0 : _a.call(slots, bindings)) || h("p", null, "Document is empty, overwrite this content with #empty slot in ."); - }, - // Not Found slot - "not-found": (bindings) => { - var _a; - return ((_a = slots == null ? void 0 : slots["not-found"]) == null ? void 0 : _a.call(slots, bindings)) || h("p", null, "Document not found, overwrite this content with #not-found slot in ."); - } - } - ); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ContentDoc-608dc79a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map deleted file mode 100644 index 4a609f6a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentDoc-608dc79a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentDoc-608dc79a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentDoc-608dc79a.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs b/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs deleted file mode 100644 index 96123777..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs +++ /dev/null @@ -1,95 +0,0 @@ -import { defineComponent, useSlots, h, useSSRContext } from 'vue'; -import _sfc_main$1 from './ContentQuery-8668b0af.mjs'; -import './asyncData-c43d4319.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const _sfc_main = defineComponent({ - name: "ContentList", - props: { - /** - * Query props - */ - /** - * The path of the content to load from content source. - * @default '/' - */ - path: { - type: String, - required: false, - default: void 0 - }, - /** - * A query builder params object to be passed to component. - */ - query: { - type: Object, - required: false, - default: void 0 - } - }, - /** - * Content empty fallback - * @slot empty - */ - /** - * Content not found fallback - * @slot not-found - */ - render(ctx) { - const slots = useSlots(); - const { path, query } = ctx; - const contentQueryProps = { - ...query || {}, - path: path || (query == null ? void 0 : query.path) || "/" - }; - const emptyNode = (slot, data) => h("pre", null, JSON.stringify({ message: "You should use slots with ", slot, data }, null, 2)); - return h( - _sfc_main$1, - contentQueryProps, - { - // Default slot - default: (slots == null ? void 0 : slots.default) ? ({ data, refresh, isPartial }) => slots == null ? void 0 : slots.default({ list: data, refresh, isPartial, ...this.$attrs }) : ({ data }) => emptyNode("default", data), - // Empty slot - empty: (bindings) => (slots == null ? void 0 : slots.empty) ? slots.empty(bindings) : emptyNode("default", bindings == null ? void 0 : bindings.data), - // Not Found slot - "not-found": (bindings) => { - var _a; - return (slots == null ? void 0 : slots["not-found"]) ? (_a = slots == null ? void 0 : slots["not-found"]) == null ? void 0 : _a.call(slots, bindings) : emptyNode("not-found", bindings == null ? void 0 : bindings.data); - } - } - ); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentList.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ContentList-b4b0de0d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map deleted file mode 100644 index dc3f3fbd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentList-b4b0de0d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentList-b4b0de0d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentList-b4b0de0d.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs b/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs deleted file mode 100644 index a0617813..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs +++ /dev/null @@ -1,1056 +0,0 @@ -import { u as useNuxtApp, _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { defineComponent, ref, onErrorCaptured, createElementBlock, h, computed, defineAsyncComponent, toRefs, useSlots, useSSRContext, mergeProps } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { u as useState, c as useContent } from './useDocus-928368c4.mjs'; -import { hash } from 'ohash'; -import { b as useHead, f as fetchContentNavigation } from '../server.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const _sfc_main$1 = { - __name: "welcome", - __ssrInlineRender: true, - props: { - appName: { - type: String, - default: "Nuxt" - }, - version: { - type: String, - default: "" - }, - title: { - type: String, - default: "Welcome to Nuxt!" - }, - readDocs: { - type: String, - default: "We highly recommend you take a look at the Nuxt documentation, whether you are new or have previous experience with the framework." - }, - followTwitter: { - type: String, - default: "Follow the Nuxt Twitter account to get latest news about releases, new modules, tutorials and tips." - }, - starGitHub: { - type: String, - default: "Nuxt is open source and the code is available on GitHub, feel free to star it, participate in discussions or dive into the source." - } - }, - setup(__props) { - const props = __props; - useHead({ - title: `${props.title}`, - script: [], - style: [ - { - children: `@property --gradient-angle{syntax:'';inherits:false;initial-value:180deg}@keyframes gradient-rotate{0%{--gradient-angle:0deg}100%{--gradient-angle:360deg}}*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p,h2,h3{margin:0}h1,h2,h3{font-size:inherit;font-weight:inherit}img{border-style:solid;max-width:100%;height:auto}svg,img{display:block;vertical-align:middle}ul{list-style:none;margin:0;padding:0}` - } - ] - }); - return (_ctx, _push, _parent, _attrs) => { - _push(`
    \xA9 2022-${ssrInterpolate(( new Date()).getFullYear())} Nuxt - MIT License
    `); - }; - } -}; -const _sfc_setup$1 = _sfc_main$1.setup; -_sfc_main$1.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/ui-templates/dist/templates/welcome.vue"); - return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; -}; -const welcome = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-a75d3b4d"]]); -const welcome$1 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: welcome -}); -const nuxtErrorBoundary = defineComponent({ - emits: { - error(_error) { - return true; - } - }, - setup(_props, { slots, emit }) { - const error = ref(null); - useNuxtApp(); - onErrorCaptured((err) => { - }); - return () => { - var _a, _b; - return error.value ? (_a = slots.error) == null ? void 0 : _a.call(slots, { error }) : (_b = slots.default) == null ? void 0 : _b.call(slots); - }; - } -}); -const nuxtErrorBoundary$1 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: nuxtErrorBoundary -}); -const devOnly = defineComponent({ - name: "DevOnly", - setup(_, props) { - return () => null; - } -}); -const devOnly$1 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: devOnly -}); -const serverPlaceholder = defineComponent({ - name: "ServerPlaceholder", - render() { - return createElementBlock("div"); - } -}); -const serverPlaceholder$1 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: serverPlaceholder -}); -const nuxtLoadingIndicator = defineComponent({ - name: "NuxtLoadingIndicator", - props: { - throttle: { - type: Number, - default: 200 - }, - duration: { - type: Number, - default: 2e3 - }, - height: { - type: Number, - default: 3 - }, - color: { - type: [String, Boolean], - default: "repeating-linear-gradient(to right,#00dc82 0%,#34cdfe 50%,#0047e1 100%)" - } - }, - setup(props, { slots }) { - const indicator = useLoadingIndicator({ - duration: props.duration, - throttle: props.throttle - }); - const nuxtApp = useNuxtApp(); - nuxtApp.hook("page:start", indicator.start); - nuxtApp.hook("page:finish", indicator.finish); - return () => h("div", { - class: "nuxt-loading-indicator", - style: { - position: "fixed", - top: 0, - right: 0, - left: 0, - pointerEvents: "none", - width: `${indicator.progress.value}%`, - height: `${props.height}px`, - opacity: indicator.isLoading.value ? 1 : 0, - background: props.color || void 0, - backgroundSize: `${100 / indicator.progress.value * 100}% auto`, - transition: "width 0.1s, height 0.4s, opacity 0.4s", - zIndex: 999999 - } - }, slots); - } -}); -function useLoadingIndicator(opts) { - const progress = ref(0); - const isLoading = ref(false); - computed(() => 1e4 / opts.duration); - let _timer = null; - let _throttle = null; - function start() { - clear(); - progress.value = 0; - if (opts.throttle && false) { - _throttle = setTimeout(() => { - isLoading.value = true; - }, opts.throttle); - } else { - isLoading.value = true; - } - } - function finish() { - progress.value = 100; - _hide(); - } - function clear() { - clearInterval(_timer); - clearTimeout(_throttle); - _timer = null; - _throttle = null; - } - function _hide() { - clear(); - } - return { - progress, - isLoading, - start, - finish, - clear - }; -} -const nuxtLoadingIndicator$1 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: nuxtLoadingIndicator -}); -const removeUndefinedProps = (props) => Object.fromEntries(Object.entries(props).filter(([, value]) => value !== void 0)); -const setupForUseMeta = (metaFactory, renderChild) => (props, ctx) => { - useHead(() => metaFactory({ ...removeUndefinedProps(props), ...ctx.attrs }, ctx)); - return () => { - var _a, _b; - return renderChild ? (_b = (_a = ctx.slots).default) == null ? void 0 : _b.call(_a) : null; - }; -}; -const globalProps = { - accesskey: String, - autocapitalize: String, - autofocus: { - type: Boolean, - default: void 0 - }, - class: [String, Object, Array], - contenteditable: { - type: Boolean, - default: void 0 - }, - contextmenu: String, - dir: String, - draggable: { - type: Boolean, - default: void 0 - }, - enterkeyhint: String, - exportparts: String, - hidden: { - type: Boolean, - default: void 0 - }, - id: String, - inputmode: String, - is: String, - itemid: String, - itemprop: String, - itemref: String, - itemscope: String, - itemtype: String, - lang: String, - nonce: String, - part: String, - slot: String, - spellcheck: { - type: Boolean, - default: void 0 - }, - style: String, - tabindex: String, - title: String, - translate: String -}; -const NoScript = defineComponent({ - name: "NoScript", - inheritAttrs: false, - props: { - ...globalProps, - title: String, - body: Boolean, - renderPriority: [String, Number] - }, - setup: setupForUseMeta((props, { slots }) => { - var _a; - const noscript = { ...props }; - const textContent = (((_a = slots.default) == null ? void 0 : _a.call(slots)) || []).filter(({ children }) => children).map(({ children }) => children).join(""); - if (textContent) { - noscript.children = textContent; - } - return { - noscript: [noscript] - }; - }) -}); -const Link = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Link", - inheritAttrs: false, - props: { - ...globalProps, - as: String, - crossorigin: String, - disabled: Boolean, - fetchpriority: String, - href: String, - hreflang: String, - imagesizes: String, - imagesrcset: String, - integrity: String, - media: String, - prefetch: { - type: Boolean, - default: void 0 - }, - referrerpolicy: String, - rel: String, - sizes: String, - title: String, - type: String, - /** @deprecated **/ - methods: String, - /** @deprecated **/ - target: String, - body: Boolean, - renderPriority: [String, Number] - }, - setup: setupForUseMeta((link) => ({ - link: [link] - })) -}); -const Base = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Base", - inheritAttrs: false, - props: { - ...globalProps, - href: String, - target: String - }, - setup: setupForUseMeta((base) => ({ - base - })) -}); -const Title = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Title", - inheritAttrs: false, - setup: setupForUseMeta((_, { slots }) => { - var _a, _b, _c; - const title = ((_c = (_b = (_a = slots.default) == null ? void 0 : _a.call(slots)) == null ? void 0 : _b[0]) == null ? void 0 : _c.children) || null; - return { - title - }; - }) -}); -const Meta = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Meta", - inheritAttrs: false, - props: { - ...globalProps, - charset: String, - content: String, - httpEquiv: String, - name: String, - body: Boolean, - renderPriority: [String, Number] - }, - setup: setupForUseMeta((props) => { - const meta = { ...props }; - if (meta.httpEquiv) { - meta["http-equiv"] = meta.httpEquiv; - delete meta.httpEquiv; - } - return { - meta: [meta] - }; - }) -}); -const Style = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Style", - inheritAttrs: false, - props: { - ...globalProps, - type: String, - media: String, - nonce: String, - title: String, - /** @deprecated **/ - scoped: { - type: Boolean, - default: void 0 - }, - body: Boolean, - renderPriority: [String, Number] - }, - setup: setupForUseMeta((props, { slots }) => { - var _a, _b, _c; - const style = { ...props }; - const textContent = (_c = (_b = (_a = slots.default) == null ? void 0 : _a.call(slots)) == null ? void 0 : _b[0]) == null ? void 0 : _c.children; - if (textContent) { - style.children = textContent; - } - return { - style: [style] - }; - }) -}); -const Head = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Head", - inheritAttrs: false, - setup: (_props, ctx) => () => { - var _a, _b; - return (_b = (_a = ctx.slots).default) == null ? void 0 : _b.call(_a); - } -}); -const Html = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Html", - inheritAttrs: false, - props: { - ...globalProps, - manifest: String, - version: String, - xmlns: String, - renderPriority: [String, Number] - }, - setup: setupForUseMeta((htmlAttrs) => ({ htmlAttrs }), true) -}); -const Body = defineComponent({ - // eslint-disable-next-line vue/no-reserved-component-names - name: "Body", - inheritAttrs: false, - props: { - ...globalProps, - renderPriority: [String, Number] - }, - setup: setupForUseMeta((bodyAttrs) => ({ bodyAttrs }), true) -}); -const components = /* @__PURE__ */ Object.freeze({ - __proto__: null, - Base, - Body, - Head, - Html, - Link, - Meta, - NoScript, - Style, - Title -}); -defineAsyncComponent(() => import( - './ExampleCard-95e9f743.mjs' - /* webpackChunkName: "components/example-card" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ExampleHero-8fe98ee8.mjs' - /* webpackChunkName: "components/example-hero" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ExampleIconCard-a87d1258.mjs' - /* webpackChunkName: "components/example-icon-card" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ExampleMultiselect-915c74fe.mjs' - /* webpackChunkName: "components/example-multiselect" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ExampleTheTitle-9f1c4a8d.mjs' - /* webpackChunkName: "components/example-the-title" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './HeroAnnouncement-a479df93.mjs' - /* webpackChunkName: "components/hero-announcement" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconMarkdown-092c828f.mjs' - /* webpackChunkName: "components/icon-markdown" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/logo" */ -).then(function(n) { - return n.L; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './MyButton-a7c11108.mjs' - /* webpackChunkName: "components/my-button" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './PropInspector-d4a70134.mjs' - /* webpackChunkName: "components/prop-inspector" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ReadMore-4e2f1622.mjs' - /* webpackChunkName: "components/read-more" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-footer" */ -).then(function(n) { - return n.o; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-header" */ -).then(function(n) { - return n.n; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-header-dialog" */ -).then(function(n) { - return n.g; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-header-logo" */ -).then(function(n) { - return n.h; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-header-navigation" */ -).then(function(n) { - return n.i; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-layout" */ -).then(function(n) { - return n.p; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-loading-bar" */ -).then(function(n) { - return n.A; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-search" */ -).then(function(n) { - return n.j; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/app-social-icons" */ -).then(function(n) { - return n.e; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocumentDrivenNotFound-4b73ea08.mjs' - /* webpackChunkName: "components/document-driven-not-found" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/theme-select" */ -).then(function(n) { - return n.T; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsAside-a41d5eb9.mjs' - /* webpackChunkName: "components/docs-aside" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsAsideTree-136bd08b.mjs' - /* webpackChunkName: "components/docs-aside-tree" */ -).then(function(n) { - return n.D; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsPageBottom-270eacfc.mjs' - /* webpackChunkName: "components/docs-page-bottom" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsPageLayout-4c2ead4a.mjs' - /* webpackChunkName: "components/docs-page-layout" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsPrevNext-7858c09b.mjs' - /* webpackChunkName: "components/docs-prev-next" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsToc-e4f6bd56.mjs' - /* webpackChunkName: "components/docs-toc" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsTocLinks-95d48629.mjs' - /* webpackChunkName: "components/docs-toc-links" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './EditOnLink-e55cd3a0.mjs' - /* webpackChunkName: "components/edit-on-link" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseA-86ef3985.mjs' - /* webpackChunkName: "components/prose-a" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseBlockquote-faf6e310.mjs' - /* webpackChunkName: "components/prose-blockquote" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseCode-94b7281d.mjs' - /* webpackChunkName: "components/prose-code" */ -).then(function(n) { - return n.a; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseCodeInline-960b9a43.mjs' - /* webpackChunkName: "components/prose-code-inline" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseEm-f52fc33d.mjs' - /* webpackChunkName: "components/prose-em" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseH1-81b8c44a.mjs' - /* webpackChunkName: "components/prose-h1" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseH2-abc0d7da.mjs' - /* webpackChunkName: "components/prose-h2" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseH3-6c54494a.mjs' - /* webpackChunkName: "components/prose-h3" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseH4-4f0da863.mjs' - /* webpackChunkName: "components/prose-h4" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseH5-0c6e8cd8.mjs' - /* webpackChunkName: "components/prose-h5" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseH6-cffb1b40.mjs' - /* webpackChunkName: "components/prose-h6" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseHr-fa0af264.mjs' - /* webpackChunkName: "components/prose-hr" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseImg-f3012414.mjs' - /* webpackChunkName: "components/prose-img" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseLi-948accef.mjs' - /* webpackChunkName: "components/prose-li" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseOl-b8e80875.mjs' - /* webpackChunkName: "components/prose-ol" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseP-a91aeff7.mjs' - /* webpackChunkName: "components/prose-p" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseStrong-246281a0.mjs' - /* webpackChunkName: "components/prose-strong" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseTable-425d227b.mjs' - /* webpackChunkName: "components/prose-table" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseTbody-f622755a.mjs' - /* webpackChunkName: "components/prose-tbody" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseTd-ce60dd42.mjs' - /* webpackChunkName: "components/prose-td" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseTh-8250ce9f.mjs' - /* webpackChunkName: "components/prose-th" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseThead-7ba76e48.mjs' - /* webpackChunkName: "components/prose-thead" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseTr-6559f7d8.mjs' - /* webpackChunkName: "components/prose-tr" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseUl-79ecc4c5.mjs' - /* webpackChunkName: "components/prose-ul" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ProseCode-94b7281d.mjs' - /* webpackChunkName: "components/prose-code-copy-button" */ -).then(function(n) { - return n.P; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Alert-2b29f746.mjs' - /* webpackChunkName: "components/alert" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Badge-5f9ab214.mjs' - /* webpackChunkName: "components/badge" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ButtonLink-df4791d5.mjs' - /* webpackChunkName: "components/button-link" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Callout-fc92c8b7.mjs' - /* webpackChunkName: "components/callout" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './CodeBlock-f6f4711b.mjs' - /* webpackChunkName: "components/code-block" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './CodeGroup-67aa2302.mjs' - /* webpackChunkName: "components/code-group" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Container-1291608c.mjs' - /* webpackChunkName: "components/container" */ -).then(function(n) { - return n.C; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './CopyButton-155eba98.mjs' - /* webpackChunkName: "components/copy-button" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Ellipsis-b69b027e.mjs' - /* webpackChunkName: "components/ellipsis" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './List-12ebf73c.mjs' - /* webpackChunkName: "components/list" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './NuxtImg-89991070.mjs' - /* webpackChunkName: "components/nuxt-img" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Props-c617d5b2.mjs' - /* webpackChunkName: "components/props" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Sandbox-3e5bdd00.mjs' - /* webpackChunkName: "components/sandbox" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './SourceLink-c27fde85.mjs' - /* webpackChunkName: "components/source-link" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './TabsHeader-c9b56dab.mjs' - /* webpackChunkName: "components/tabs-header" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Terminal-35e8f795.mjs' - /* webpackChunkName: "components/terminal" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './VideoPlayer-2b282302.mjs' - /* webpackChunkName: "components/video-player" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconCodeSandBox-289e2c7f.mjs' - /* webpackChunkName: "components/icon-code-sand-box" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconDocus-12d300be.mjs' - /* webpackChunkName: "components/icon-docus" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconNuxt-c11c3c9c.mjs' - /* webpackChunkName: "components/icon-nuxt" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconNuxtContent-f8fb6ffc.mjs' - /* webpackChunkName: "components/icon-nuxt-content" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconNuxtLabs-1b2b0005.mjs' - /* webpackChunkName: "components/icon-nuxt-labs" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconNuxtStudio-8ac5eaa5.mjs' - /* webpackChunkName: "components/icon-nuxt-studio" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconStackBlitz-def46545.mjs' - /* webpackChunkName: "components/icon-stack-blitz" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './IconVueTelescope-96109b9a.mjs' - /* webpackChunkName: "components/icon-vue-telescope" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './BlockHero-f586796f.mjs' - /* webpackChunkName: "components/block-hero" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Card-2052047f.mjs' - /* webpackChunkName: "components/card" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './CardGrid-160bcd85.mjs' - /* webpackChunkName: "components/card-grid" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './VoltaBoard-98820156.mjs' - /* webpackChunkName: "components/volta-board" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ComponentPlayground-c7ca07d7.mjs' - /* webpackChunkName: "components/component-playground" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ComponentPlaygroundData-d25a0f8e.mjs' - /* webpackChunkName: "components/component-playground-data" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ComponentPlaygroundProps-8f45f1a7.mjs' - /* webpackChunkName: "components/component-playground-props" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ComponentPlaygroundSlots-0dbd767a.mjs' - /* webpackChunkName: "components/component-playground-slots" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ComponentPlaygroundTokens-548a0a2d.mjs' - /* webpackChunkName: "components/component-playground-tokens" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './TokensPlayground-84b52014.mjs' - /* webpackChunkName: "components/tokens-playground" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentPreviewMode-97e009a4.mjs' - /* webpackChunkName: "components/content-preview-mode" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentDoc-608dc79a.mjs' - /* webpackChunkName: "components/content-doc" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentList-b4b0de0d.mjs' - /* webpackChunkName: "components/content-list" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return ContentNavigation; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentQuery-8668b0af.mjs' - /* webpackChunkName: "components/content-query" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentRenderer-06a7c657.mjs' - /* webpackChunkName: "components/content-renderer" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentRendererMarkdown-bebf42c8.mjs' - /* webpackChunkName: "components/content-renderer-markdown" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './ContentSlot-deb25102.mjs' - /* webpackChunkName: "components/content-slot" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocumentDrivenEmpty-8338ce9f.mjs' - /* webpackChunkName: "components/document-driven-empty" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './Markdown-1885a814.mjs' - /* webpackChunkName: "components/markdown" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return welcome$1; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './layout-88ff67c1.mjs' - /* webpackChunkName: "components/nuxt-layout" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return nuxtErrorBoundary$1; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/client-only" */ -).then(function(n) { - return n.k; -}).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return devOnly$1; -}).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return serverPlaceholder$1; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './app.config-832f5f68.mjs' - /* webpackChunkName: "components/nuxt-link" */ -).then(function(n) { - return n.m; -}).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return nuxtLoadingIndicator$1; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubRepository-8db11ede.mjs' - /* webpackChunkName: "components/github-repository" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubLink-f632fd3b.mjs' - /* webpackChunkName: "components/github-link" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubReadme-9e48e600.mjs' - /* webpackChunkName: "components/github-readme" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubReleases-2ab96fb8.mjs' - /* webpackChunkName: "components/github-releases" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubLastRelease-b4d6e912.mjs' - /* webpackChunkName: "components/github-last-release" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubRelease-140d3d2e.mjs' - /* webpackChunkName: "components/github-release" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubContributors-1aa0f22f.mjs' - /* webpackChunkName: "components/github-contributors" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubFileContributors-285e4522.mjs' - /* webpackChunkName: "components/github-file-contributors" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './GithubCommits-b7b81c66.mjs' - /* webpackChunkName: "components/github-commits" */ -).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/color-scheme" */ -).then(function(n) { - return n.m; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - './DocsAsideTree-136bd08b.mjs' - /* webpackChunkName: "components/icon" */ -).then(function(n) { - return n.I; -}).then((c) => c.default || c)); -defineAsyncComponent(() => import( - '../server.mjs' - /* webpackChunkName: "components/nuxt-page" */ -).then(function(n) { - return n.r; -}).then((c) => c.default || c)); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["NoScript"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Link"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Base"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Title"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Meta"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Style"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Head"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Html"])); -defineAsyncComponent(() => Promise.resolve().then(function() { - return components; -}).then((c) => c["Body"])); -const _sfc_main = defineComponent({ - name: "ContentNavigation", - props: { - /** - * A query to be passed to `fetchContentNavigation()`. - */ - query: { - type: Object, - required: false, - default: void 0 - } - }, - async setup(props) { - const { - query - } = toRefs(props); - const queryBuilder = computed(() => { - var _a; - if (typeof ((_a = query.value) == null ? void 0 : _a.params) === "function") { - return query.value.params(); - } - return query.value; - }); - if (!queryBuilder.value && useState("dd-navigation").value) { - const { navigation: navigation2 } = useContent(); - return { navigation: navigation2 }; - } - const { data: navigation } = await useAsyncData( - `content-navigation-${hash(queryBuilder.value)}`, - () => fetchContentNavigation(queryBuilder.value) - ); - return { navigation }; - }, - /** - * Navigation empty fallback - * @slot empty - */ - render(ctx) { - const slots = useSlots(); - const { navigation } = ctx; - const renderLink = (link) => h(__nuxt_component_0, { to: link._path }, () => link.title); - const renderLinks = (data, level) => h( - "ul", - level ? { "data-level": level } : null, - data.map((link) => { - if (link.children) { - return h("li", null, [renderLink(link), renderLinks(link.children, level + 1)]); - } - return h("li", null, renderLink(link)); - }) - ); - const defaultNode = (data) => renderLinks(data, 0); - return (slots == null ? void 0 : slots.default) ? slots.default({ navigation, ...this.$attrs }) : defaultNode(navigation); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ContentNavigation = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: _sfc_main -}); - -export { _sfc_main as default }; -//# sourceMappingURL=ContentNavigation-8bed293a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map deleted file mode 100644 index 22457c03..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentNavigation-8bed293a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentNavigation-8bed293a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentNavigation-8bed293a.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;AA+HA,MAAM,WAAc,GAAA;AAAA,EAClB,MAAQ,EAAA,SAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,IACA,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,kBAAA;AAAA,KACX;AAAA,IACA,QAAU,EAAA;AAAA,MACR,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,oIAAA;AAAA,KACX;AAAA,IACA,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,qGAAA;AAAA,KACX;AAAA,IACA,UAAY,EAAA;AAAA,MACV,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,oIAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAQ,OAAA,CAAA;AAAA,MACN,KAAA,EAAO,GAAG,KAAM,CAAA,KAAA,CAAA,CAAA;AAAA,MAChB,QAAQ,EAAC;AAAA,MACT,KAAO,EAAA;AAAA,QACL;AAAA,UACE,QAAU,EAAA,CAAA,ikCAAA,CAAA;AAAA,SACZ;AAAA,OACF;AAAA,KACD,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,UAAA,CAAW,EAAE,KAAA,EAAO,kKAAoK,EAAA,MAAM,CAAC,CAAA,CAAA,y1oFAAA,EAA01oF,gBAAmB,CAAA,IAAA,IAAA,EAAO,EAAA,WAAA,EAAa,CAA82N,CAAA,22NAAA,CAAA,CAAA,CAAA;AAAA,KAC582F,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,eAAe,WAAY,CAAA,KAAA,CAAA;AACjC,WAAY,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAClC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4DAA4D,CAAA,CAAA;AACzI,EAAA,OAAO,YAAe,GAAA,YAAA,CAAa,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AACnD,CAAA,CAAA;AACA,MAAM,OAAA,+BAAsC,WAAa,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC,CAAA,CAAA;AAC3F,MAAM,SAAA,0BAAmC,MAAO,CAAA;AAAA,EAC9C,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,OAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,oBAAoB,eAAgB,CAAA;AAAA,EACxC,KAAO,EAAA;AAAA,IACL,MAAM,MAAQ,EAAA;AACZ,MAAO,OAAA,IAAA,CAAA;AAAA,KACT;AAAA,GACF;AAAA,EACA,KAAM,CAAA,MAAA,EAAQ,EAAE,KAAA,EAAO,MAAQ,EAAA;AAC7B,IAAM,MAAA,KAAA,GAAQ,IAAI,IAAI,CAAA,CAAA;AACtB,IAAW,UAAA,EAAA,CAAA;AACX,IAAA,eAAA,CAAgB,CAAC,GAAQ,KAAA;AAAA,KACxB,CAAA,CAAA;AACD,IAAA,OAAO,MAAM;AACX,MAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,MAAO,OAAA,KAAA,CAAM,SAAS,EAAK,GAAA,KAAA,CAAM,UAAU,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,IAAK,CAAA,KAAA,EAAO,EAAE,KAAM,EAAC,KAAK,EAAK,GAAA,KAAA,CAAM,YAAY,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,CAAK,KAAK,CAAA,CAAA;AAAA,KAC9I,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AACD,MAAM,mBAAA,0BAA6C,MAAO,CAAA;AAAA,EACxD,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,iBAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,UAAU,eAAgB,CAAA;AAAA,EAC9B,IAAM,EAAA,SAAA;AAAA,EACN,KAAA,CAAM,GAAG,KAAO,EAAA;AACd,IAAA,OAAO,MAAM,IAAA,CAAA;AAAA,GACf;AACF,CAAC,CAAA,CAAA;AACD,MAAM,SAAA,0BAAmC,MAAO,CAAA;AAAA,EAC9C,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,OAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,oBAAoB,eAAgB,CAAA;AAAA,EACxC,IAAM,EAAA,mBAAA;AAAA,EACN,MAAS,GAAA;AACP,IAAA,OAAO,mBAAmB,KAAK,CAAA,CAAA;AAAA,GACjC;AACF,CAAC,CAAA,CAAA;AACD,MAAM,mBAAA,0BAA6C,MAAO,CAAA;AAAA,EACxD,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,iBAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,uBAAuB,eAAgB,CAAA;AAAA,EAC3C,IAAM,EAAA,sBAAA;AAAA,EACN,KAAO,EAAA;AAAA,IACL,QAAU,EAAA;AAAA,MACR,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,GAAA;AAAA,KACX;AAAA,IACA,QAAU,EAAA;AAAA,MACR,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,GAAA;AAAA,KACX;AAAA,IACA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,CAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAA,EAAM,CAAC,MAAA,EAAQ,OAAO,CAAA;AAAA,MACtB,OAAS,EAAA,yEAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,KAAM,CAAA,KAAA,EAAO,EAAE,KAAA,EAAS,EAAA;AACtB,IAAA,MAAM,YAAY,mBAAoB,CAAA;AAAA,MACpC,UAAU,KAAM,CAAA,QAAA;AAAA,MAChB,UAAU,KAAM,CAAA,QAAA;AAAA,KACjB,CAAA,CAAA;AACD,IAAA,MAAM,UAAU,UAAW,EAAA,CAAA;AAC3B,IAAQ,OAAA,CAAA,IAAA,CAAK,YAAc,EAAA,SAAA,CAAU,KAAK,CAAA,CAAA;AAC1C,IAAQ,OAAA,CAAA,IAAA,CAAK,aAAe,EAAA,SAAA,CAAU,MAAM,CAAA,CAAA;AAC5C,IAAO,OAAA,MAAM,EAAE,KAAO,EAAA;AAAA,MACpB,KAAO,EAAA,wBAAA;AAAA,MACP,KAAO,EAAA;AAAA,QACL,QAAU,EAAA,OAAA;AAAA,QACV,GAAK,EAAA,CAAA;AAAA,QACL,KAAO,EAAA,CAAA;AAAA,QACP,IAAM,EAAA,CAAA;AAAA,QACN,aAAe,EAAA,MAAA;AAAA,QACf,KAAA,EAAO,CAAG,EAAA,SAAA,CAAU,QAAS,CAAA,KAAA,CAAA,CAAA,CAAA;AAAA,QAC7B,MAAA,EAAQ,GAAG,KAAM,CAAA,MAAA,CAAA,EAAA,CAAA;AAAA,QACjB,OAAS,EAAA,SAAA,CAAU,SAAU,CAAA,KAAA,GAAQ,CAAI,GAAA,CAAA;AAAA,QACzC,UAAA,EAAY,MAAM,KAAS,IAAA,KAAA,CAAA;AAAA,QAC3B,cAAgB,EAAA,CAAA,EAAG,GAAM,GAAA,SAAA,CAAU,SAAS,KAAQ,GAAA,GAAA,CAAA,MAAA,CAAA;AAAA,QACpD,UAAY,EAAA,uCAAA;AAAA,QACZ,MAAQ,EAAA,MAAA;AAAA,OACV;AAAA,OACC,KAAK,CAAA,CAAA;AAAA,GACV;AACF,CAAC,CAAA,CAAA;AACD,SAAS,oBAAoB,IAAM,EAAA;AACjC,EAAM,MAAA,QAAA,GAAW,IAAI,CAAC,CAAA,CAAA;AACtB,EAAM,MAAA,SAAA,GAAY,IAAI,KAAK,CAAA,CAAA;AAC3B,EAAS,QAAA,CAAA,MAAM,GAAM,GAAA,IAAA,CAAK,QAAQ,CAAA,CAAA;AAClC,EAAA,IAAI,MAAS,GAAA,IAAA,CAAA;AACb,EAAA,IAAI,SAAY,GAAA,IAAA,CAAA;AAChB,EAAA,SAAS,KAAQ,GAAA;AACf,IAAM,KAAA,EAAA,CAAA;AACN,IAAA,QAAA,CAAS,KAAQ,GAAA,CAAA,CAAA;AACjB,IAAI,IAAA,IAAA,CAAK,YAAY,KAAO,EAAA;AAC1B,MAAA,SAAA,GAAY,WAAW,MAAM;AAC3B,QAAA,SAAA,CAAU,KAAQ,GAAA,IAAA,CAAA;AAAA,OACpB,EAAG,KAAK,QAAQ,CAAA,CAAA;AAAA,KACX,MAAA;AACL,MAAA,SAAA,CAAU,KAAQ,GAAA,IAAA,CAAA;AAAA,KACpB;AAAA,GACF;AACA,EAAA,SAAS,MAAS,GAAA;AAChB,IAAA,QAAA,CAAS,KAAQ,GAAA,GAAA,CAAA;AACjB,IAAM,KAAA,EAAA,CAAA;AAAA,GACR;AACA,EAAA,SAAS,KAAQ,GAAA;AACf,IAAA,aAAA,CAAc,MAAM,CAAA,CAAA;AACpB,IAAA,YAAA,CAAa,SAAS,CAAA,CAAA;AACtB,IAAS,MAAA,GAAA,IAAA,CAAA;AACT,IAAY,SAAA,GAAA,IAAA,CAAA;AAAA,GACd;AACA,EAAA,SAAS,KAAQ,GAAA;AACf,IAAM,KAAA,EAAA,CAAA;AAAA,GACR;AACA,EAAO,OAAA;AAAA,IACL,QAAA;AAAA,IACA,SAAA;AAAA,IACA,KAAA;AAAA,IACA,MAAA;AAAA,IACA,KAAA;AAAA,GACF,CAAA;AACF,CAAA;AACA,MAAM,sBAAA,0BAAgD,MAAO,CAAA;AAAA,EAC3D,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,oBAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,uBAAuB,CAAC,KAAA,KAAU,MAAO,CAAA,WAAA,CAAY,OAAO,OAAQ,CAAA,KAAK,CAAE,CAAA,MAAA,CAAO,CAAC,GAAG,KAAK,CAAM,KAAA,KAAA,KAAU,MAAM,CAAC,CAAA,CAAA;AACxH,MAAM,kBAAkB,CAAC,WAAA,EAAa,WAAgB,KAAA,CAAC,OAAO,GAAQ,KAAA;AACpE,EAAA,OAAA,CAAQ,MAAM,WAAA,CAAY,EAAE,GAAG,oBAAqB,CAAA,KAAK,CAAG,EAAA,GAAG,GAAI,CAAA,KAAA,EAAS,EAAA,GAAG,CAAC,CAAA,CAAA;AAChF,EAAA,OAAO,MAAM;AACX,IAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,IAAO,OAAA,WAAA,GAAA,CAAe,EAAM,GAAA,CAAA,EAAA,GAAK,GAAI,CAAA,KAAA,EAAO,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,IAAK,CAAA,EAAE,CAAI,GAAA,IAAA,CAAA;AAAA,GACxF,CAAA;AACF,CAAA,CAAA;AACA,MAAM,WAAc,GAAA;AAAA,EAClB,SAAW,EAAA,MAAA;AAAA,EACX,cAAgB,EAAA,MAAA;AAAA,EAChB,SAAW,EAAA;AAAA,IACT,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,KAAA,CAAA;AAAA,GACX;AAAA,EACA,KAAO,EAAA,CAAC,MAAQ,EAAA,MAAA,EAAQ,KAAK,CAAA;AAAA,EAC7B,eAAiB,EAAA;AAAA,IACf,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,KAAA,CAAA;AAAA,GACX;AAAA,EACA,WAAa,EAAA,MAAA;AAAA,EACb,GAAK,EAAA,MAAA;AAAA,EACL,SAAW,EAAA;AAAA,IACT,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,KAAA,CAAA;AAAA,GACX;AAAA,EACA,YAAc,EAAA,MAAA;AAAA,EACd,WAAa,EAAA,MAAA;AAAA,EACb,MAAQ,EAAA;AAAA,IACN,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,KAAA,CAAA;AAAA,GACX;AAAA,EACA,EAAI,EAAA,MAAA;AAAA,EACJ,SAAW,EAAA,MAAA;AAAA,EACX,EAAI,EAAA,MAAA;AAAA,EACJ,MAAQ,EAAA,MAAA;AAAA,EACR,QAAU,EAAA,MAAA;AAAA,EACV,OAAS,EAAA,MAAA;AAAA,EACT,SAAW,EAAA,MAAA;AAAA,EACX,QAAU,EAAA,MAAA;AAAA,EACV,IAAM,EAAA,MAAA;AAAA,EACN,KAAO,EAAA,MAAA;AAAA,EACP,IAAM,EAAA,MAAA;AAAA,EACN,IAAM,EAAA,MAAA;AAAA,EACN,UAAY,EAAA;AAAA,IACV,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,KAAA,CAAA;AAAA,GACX;AAAA,EACA,KAAO,EAAA,MAAA;AAAA,EACP,QAAU,EAAA,MAAA;AAAA,EACV,KAAO,EAAA,MAAA;AAAA,EACP,SAAW,EAAA,MAAA;AACb,CAAA,CAAA;AACA,MAAM,WAAW,eAAgB,CAAA;AAAA,EAC/B,IAAM,EAAA,UAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,KAAO,EAAA,MAAA;AAAA,IACP,IAAM,EAAA,OAAA;AAAA,IACN,cAAA,EAAgB,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,GACjC;AAAA,EACA,OAAO,eAAgB,CAAA,CAAC,KAAO,EAAA,EAAE,OAAY,KAAA;AAC3C,IAAI,IAAA,EAAA,CAAA;AACJ,IAAM,MAAA,QAAA,GAAW,EAAE,GAAG,KAAM,EAAA,CAAA;AAC5B,IAAM,MAAA,WAAA,GAAA,CAAA,CAAA,CAAiB,EAAK,GAAA,KAAA,CAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,IAAK,CAAA,KAAK,CAAM,KAAA,EAAI,EAAA,MAAA,CAAO,CAAC,EAAE,QAAS,EAAA,KAAM,QAAQ,CAAA,CAAE,GAAI,CAAA,CAAC,EAAE,QAAA,EAAe,KAAA,QAAQ,CAAE,CAAA,IAAA,CAAK,EAAE,CAAA,CAAA;AAC/J,IAAA,IAAI,WAAa,EAAA;AACf,MAAA,QAAA,CAAS,QAAW,GAAA,WAAA,CAAA;AAAA,KACtB;AACA,IAAO,OAAA;AAAA,MACL,QAAA,EAAU,CAAC,QAAQ,CAAA;AAAA,KACrB,CAAA;AAAA,GACD,CAAA;AACH,CAAC,CAAA,CAAA;AACD,MAAM,OAAO,eAAgB,CAAA;AAAA;AAAA,EAE3B,IAAM,EAAA,MAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,EAAI,EAAA,MAAA;AAAA,IACJ,WAAa,EAAA,MAAA;AAAA,IACb,QAAU,EAAA,OAAA;AAAA,IACV,aAAe,EAAA,MAAA;AAAA,IACf,IAAM,EAAA,MAAA;AAAA,IACN,QAAU,EAAA,MAAA;AAAA,IACV,UAAY,EAAA,MAAA;AAAA,IACZ,WAAa,EAAA,MAAA;AAAA,IACb,SAAW,EAAA,MAAA;AAAA,IACX,KAAO,EAAA,MAAA;AAAA,IACP,QAAU,EAAA;AAAA,MACR,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,IACA,cAAgB,EAAA,MAAA;AAAA,IAChB,GAAK,EAAA,MAAA;AAAA,IACL,KAAO,EAAA,MAAA;AAAA,IACP,KAAO,EAAA,MAAA;AAAA,IACP,IAAM,EAAA,MAAA;AAAA;AAAA,IAEN,OAAS,EAAA,MAAA;AAAA;AAAA,IAET,MAAQ,EAAA,MAAA;AAAA,IACR,IAAM,EAAA,OAAA;AAAA,IACN,cAAA,EAAgB,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,GACjC;AAAA,EACA,KAAA,EAAO,eAAgB,CAAA,CAAC,IAAU,MAAA;AAAA,IAChC,IAAA,EAAM,CAAC,IAAI,CAAA;AAAA,GACX,CAAA,CAAA;AACJ,CAAC,CAAA,CAAA;AACD,MAAM,OAAO,eAAgB,CAAA;AAAA;AAAA,EAE3B,IAAM,EAAA,MAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,IAAM,EAAA,MAAA;AAAA,IACN,MAAQ,EAAA,MAAA;AAAA,GACV;AAAA,EACA,KAAA,EAAO,eAAgB,CAAA,CAAC,IAAU,MAAA;AAAA,IAChC,IAAA;AAAA,GACA,CAAA,CAAA;AACJ,CAAC,CAAA,CAAA;AACD,MAAM,QAAQ,eAAgB,CAAA;AAAA;AAAA,EAE5B,IAAM,EAAA,OAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,OAAO,eAAgB,CAAA,CAAC,CAAG,EAAA,EAAE,OAAY,KAAA;AACvC,IAAA,IAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AACZ,IAAM,MAAA,KAAA,GAAA,CAAA,CAAU,MAAM,EAAM,GAAA,CAAA,EAAA,GAAK,MAAM,OAAY,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,IAAA,CAAK,KAAK,CAAM,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,CAAC,MAAM,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,QAAa,KAAA,IAAA,CAAA;AAChJ,IAAO,OAAA;AAAA,MACL,KAAA;AAAA,KACF,CAAA;AAAA,GACD,CAAA;AACH,CAAC,CAAA,CAAA;AACD,MAAM,OAAO,eAAgB,CAAA;AAAA;AAAA,EAE3B,IAAM,EAAA,MAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,OAAS,EAAA,MAAA;AAAA,IACT,OAAS,EAAA,MAAA;AAAA,IACT,SAAW,EAAA,MAAA;AAAA,IACX,IAAM,EAAA,MAAA;AAAA,IACN,IAAM,EAAA,OAAA;AAAA,IACN,cAAA,EAAgB,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,GACjC;AAAA,EACA,KAAA,EAAO,eAAgB,CAAA,CAAC,KAAU,KAAA;AAChC,IAAM,MAAA,IAAA,GAAO,EAAE,GAAG,KAAM,EAAA,CAAA;AACxB,IAAA,IAAI,KAAK,SAAW,EAAA;AAClB,MAAK,IAAA,CAAA,YAAY,IAAI,IAAK,CAAA,SAAA,CAAA;AAC1B,MAAA,OAAO,IAAK,CAAA,SAAA,CAAA;AAAA,KACd;AACA,IAAO,OAAA;AAAA,MACL,IAAA,EAAM,CAAC,IAAI,CAAA;AAAA,KACb,CAAA;AAAA,GACD,CAAA;AACH,CAAC,CAAA,CAAA;AACD,MAAM,QAAQ,eAAgB,CAAA;AAAA;AAAA,EAE5B,IAAM,EAAA,OAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,MAAA;AAAA,IACP,KAAO,EAAA,MAAA;AAAA,IACP,KAAO,EAAA,MAAA;AAAA;AAAA,IAEP,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,IACA,IAAM,EAAA,OAAA;AAAA,IACN,cAAA,EAAgB,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,GACjC;AAAA,EACA,OAAO,eAAgB,CAAA,CAAC,KAAO,EAAA,EAAE,OAAY,KAAA;AAC3C,IAAA,IAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AACZ,IAAM,MAAA,KAAA,GAAQ,EAAE,GAAG,KAAM,EAAA,CAAA;AACzB,IAAA,MAAM,eAAe,EAAM,GAAA,CAAA,EAAA,GAAA,CAAM,KAAK,KAAM,CAAA,OAAA,KAAY,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAK,CAAA,KAAM,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,CAAC,CAAM,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,QAAA,CAAA;AACxI,IAAA,IAAI,WAAa,EAAA;AACf,MAAA,KAAA,CAAM,QAAW,GAAA,WAAA,CAAA;AAAA,KACnB;AACA,IAAO,OAAA;AAAA,MACL,KAAA,EAAO,CAAC,KAAK,CAAA;AAAA,KACf,CAAA;AAAA,GACD,CAAA;AACH,CAAC,CAAA,CAAA;AACD,MAAM,OAAO,eAAgB,CAAA;AAAA;AAAA,EAE3B,IAAM,EAAA,MAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA,CAAC,MAAQ,EAAA,GAAA,KAAQ,MAAM;AAC5B,IAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,IAAQ,OAAA,CAAA,EAAA,GAAA,CAAM,KAAK,GAAI,CAAA,KAAA,EAAO,YAAY,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,CAAK,EAAE,CAAA,CAAA;AAAA,GACtE;AACF,CAAC,CAAA,CAAA;AACD,MAAM,OAAO,eAAgB,CAAA;AAAA;AAAA,EAE3B,IAAM,EAAA,MAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,QAAU,EAAA,MAAA;AAAA,IACV,OAAS,EAAA,MAAA;AAAA,IACT,KAAO,EAAA,MAAA;AAAA,IACP,cAAA,EAAgB,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,GACjC;AAAA,EACA,OAAO,eAAgB,CAAA,CAAC,eAAe,EAAE,SAAA,KAAc,IAAI,CAAA;AAC7D,CAAC,CAAA,CAAA;AACD,MAAM,OAAO,eAAgB,CAAA;AAAA;AAAA,EAE3B,IAAM,EAAA,MAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,GAAG,WAAA;AAAA,IACH,cAAA,EAAgB,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,GACjC;AAAA,EACA,OAAO,eAAgB,CAAA,CAAC,eAAe,EAAE,SAAA,KAAc,IAAI,CAAA;AAC7D,CAAC,CAAA,CAAA;AACD,MAAM,UAAA,0BAAoC,MAAO,CAAA;AAAA,EAC/C,SAAW,EAAA,IAAA;AAAA,EACX,IAAA;AAAA,EACA,IAAA;AAAA,EACA,IAAA;AAAA,EACA,IAAA;AAAA,EACA,IAAA;AAAA,EACA,IAAA;AAAA,EACA,QAAA;AAAA,EACA,KAAA;AAAA,EACA,KAAA;AACF,CAAC,CAAA,CAAA;AACD,oBAAA,CAAqB,MAAM;AAAA,EACzB,4BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,4BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,mCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,iCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,6BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,8BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,uCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,8BAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,+BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,+BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,6BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,6BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,uBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,uBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,4BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,sBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,sBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,qBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,sBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,4BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,6BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,+BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,+BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,iCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,qBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,oCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,0CAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,iCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,mCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,4BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,iBAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,6BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,gCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,wCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,4BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,oCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,yBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,SAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,uBAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,mBAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,SAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,mBAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,sBAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,iCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,2BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,6BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,+BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,kCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,8BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,mCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,uCAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,8BAAA;AAAA;AAEF,CAAA,CAAE,KAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,8BAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM;AAAA,EACzB,eAAA;AAAA;AAEF,CAAE,CAAA,IAAA,CAAK,SAAS,CAAG,EAAA;AACjB,EAAA,OAAO,CAAE,CAAA,CAAA,CAAA;AACX,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAC,CAAA,CAAA;AAC9B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,UAAU,CAAC,CAAC,CAAA,CAAA;AAC7B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,MAAM,CAAC,CAAC,CAAA,CAAA;AACzB,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,MAAM,CAAC,CAAC,CAAA,CAAA;AACzB,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAO,CAAC,CAAC,CAAA,CAAA;AAC1B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,MAAM,CAAC,CAAC,CAAA,CAAA;AACzB,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,OAAO,CAAC,CAAC,CAAA,CAAA;AAC1B,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,MAAM,CAAC,CAAC,CAAA,CAAA;AACzB,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,MAAM,CAAC,CAAC,CAAA,CAAA;AACzB,oBAAA,CAAqB,MAAM,OAAA,CAAQ,OAAQ,EAAA,CAAE,KAAK,WAAW;AAC3D,EAAO,OAAA,UAAA,CAAA;AACT,CAAC,EAAE,IAAK,CAAA,CAAC,MAAM,CAAE,CAAA,MAAM,CAAC,CAAC,CAAA,CAAA;AACzB,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,IAAM,EAAA,mBAAA;AAAA,EACN,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA,IAIL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA;AAAA,MACJ,KAAA;AAAA,KACF,GAAI,OAAO,KAAK,CAAA,CAAA;AAChB,IAAM,MAAA,YAAA,GAAe,SAAS,MAAM;AAClC,MAAI,IAAA,EAAA,CAAA;AACJ,MAAI,IAAA,QAAA,CAAS,KAAK,KAAM,CAAA,KAAA,KAAU,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,YAAY,UAAY,EAAA;AAC3E,QAAO,OAAA,KAAA,CAAM,MAAM,MAAO,EAAA,CAAA;AAAA,OAC5B;AACA,MAAA,OAAO,KAAM,CAAA,KAAA,CAAA;AAAA,KACd,CAAA,CAAA;AACD,IAAA,IAAI,CAAC,YAAa,CAAA,KAAA,IAAS,QAAS,CAAA,eAAe,EAAE,KAAO,EAAA;AAC1D,MAAA,MAAM,EAAE,UAAA,EAAY,WAAY,EAAA,GAAI,UAAW,EAAA,CAAA;AAC/C,MAAO,OAAA,EAAE,YAAY,WAAY,EAAA,CAAA;AAAA,KACnC;AACA,IAAA,MAAM,EAAE,IAAA,EAAM,UAAW,EAAA,GAAI,MAAM,YAAA;AAAA,MACjC,CAAA,mBAAA,EAAsB,IAAK,CAAA,YAAA,CAAa,KAAK,CAAA,CAAA,CAAA;AAAA,MAC7C,MAAM,sBAAuB,CAAA,YAAA,CAAa,KAAK,CAAA;AAAA,KACjD,CAAA;AACA,IAAA,OAAO,EAAE,UAAW,EAAA,CAAA;AAAA,GACtB;AAAA;AAAA;AAAA;AAAA;AAAA,EAKA,OAAO,GAAK,EAAA;AACV,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAM,MAAA,EAAE,YAAe,GAAA,GAAA,CAAA;AACvB,IAAA,MAAM,UAAa,GAAA,CAAC,IAAS,KAAA,CAAA,CAAE,kBAAoB,EAAA,EAAE,EAAI,EAAA,IAAA,CAAK,KAAM,EAAA,EAAG,MAAM,IAAA,CAAK,KAAK,CAAA,CAAA;AACvF,IAAM,MAAA,WAAA,GAAc,CAAC,IAAA,EAAM,KAAU,KAAA,CAAA;AAAA,MACnC,IAAA;AAAA,MACA,KAAQ,GAAA,EAAE,YAAc,EAAA,KAAA,EAAU,GAAA,IAAA;AAAA,MAClC,IAAA,CAAK,GAAI,CAAA,CAAC,IAAS,KAAA;AACjB,QAAA,IAAI,KAAK,QAAU,EAAA;AACjB,UAAA,OAAO,CAAE,CAAA,IAAA,EAAM,IAAM,EAAA,CAAC,UAAW,CAAA,IAAI,CAAG,EAAA,WAAA,CAAY,IAAK,CAAA,QAAA,EAAU,KAAQ,GAAA,CAAC,CAAC,CAAC,CAAA,CAAA;AAAA,SAChF;AACA,QAAA,OAAO,CAAE,CAAA,IAAA,EAAM,IAAM,EAAA,UAAA,CAAW,IAAI,CAAC,CAAA,CAAA;AAAA,OACtC,CAAA;AAAA,KACH,CAAA;AACA,IAAA,MAAM,WAAc,GAAA,CAAC,IAAS,KAAA,WAAA,CAAY,MAAM,CAAC,CAAA,CAAA;AACjD,IAAA,OAAA,CAAQ,KAAS,IAAA,IAAA,GAAO,KAAS,CAAA,GAAA,KAAA,CAAM,WAAW,KAAM,CAAA,OAAA,CAAQ,EAAE,UAAA,EAAY,GAAG,IAAK,CAAA,MAAA,EAAQ,CAAA,GAAI,YAAY,UAAU,CAAA,CAAA;AAAA,GAC1H;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,0EAA0E,CAAA,CAAA;AACvJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,iBAAA,0BAA2C,MAAO,CAAA;AAAA,EACtD,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,SAAA;AACX,CAAC,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs deleted file mode 100644 index 328fd698..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs +++ /dev/null @@ -1,80 +0,0 @@ -import { u as useNuxtApp } from './app.config-832f5f68.mjs'; -import { useSSRContext, defineComponent, ref, onUnmounted } from 'vue'; -import { ssrRenderAttrs, ssrRenderClass, ssrInterpolate } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ContentPreviewMode", - __ssrInlineRender: true, - props: { - previewToken: { - type: Object, - required: true - }, - apiURL: { - type: String, - required: true - }, - syncPreview: { - type: Function, - required: true - }, - requestPreviewSyncAPI: { - type: Function, - required: true - } - }, - setup(__props) { - const previewClasses = ["__nuxt_preview", "__preview_enabled"]; - useNuxtApp(); - const open = ref(true); - const refreshing = ref(false); - const previewReady = ref(false); - const error = ref(""); - onUnmounted(() => { - document.body.classList.remove(...previewClasses); - }); - return (_ctx, _push, _parent, _attrs) => { - _push(``); - if (open.value) { - _push(`
    `); - if (previewReady.value) { - _push(`Preview mode enabled`); - } else { - _push(``); - } - _push(`
    `); - } else { - _push(``); - } - if (open.value && !previewReady.value && !error.value) { - _push(`

    Initializing the preview...

    `); - } else { - _push(``); - } - if (error.value) { - _push(`

    ${ssrInterpolate(error.value)}

    `); - } else { - _push(``); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ContentPreviewMode = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-572e7d1a"]]); - -export { ContentPreviewMode as default }; -//# sourceMappingURL=ContentPreviewMode-97e009a4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map deleted file mode 100644 index 715d010f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-97e009a4.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentPreviewMode-97e009a4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-97e009a4.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs deleted file mode 100644 index 6839db40..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs +++ /dev/null @@ -1,8 +0,0 @@ -const ContentPreviewMode_vue_vue_type_style_index_0_lang = "body.__preview_enabled{padding-bottom:50px}"; - -const ContentPreviewMode_vue_vue_type_style_index_1_scoped_572e7d1a_lang = "#__nuxt_preview[data-v-572e7d1a]{align-items:center;-webkit-backdrop-filter:blur(20px);backdrop-filter:blur(20px);background:hsla(0,0%,100%,.3);border-top:1px solid #eee;bottom:-60px;color:#000;display:flex;font-family:Helvetica,sans-serif;font-size:16px;font-weight:500;gap:10px;height:50px;justify-content:center;left:0;position:fixed;right:0;transition:bottom .3s ease-in-out;z-index:10000}#__nuxt_preview.__preview_ready[data-v-572e7d1a]{bottom:0}#__preview_background[data-v-572e7d1a]{-webkit-backdrop-filter:blur(8px);backdrop-filter:blur(8px);background:hsla(0,0%,100%,.3);height:100vh;left:0;position:fixed;top:0;width:100vw;z-index:40}#__preview_loader[data-v-572e7d1a]{align-items:center;color:#000;display:flex;flex-direction:column;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Open Sans,Helvetica Neue,sans-serif;font-size:1.4rem;gap:8px;left:50%;position:fixed;top:50%;transform:translate(-50%,-50%);z-index:50}#__preview_loader p[data-v-572e7d1a]{margin:10px 0}.dark #__preview_background[data-v-572e7d1a],.dark-mode #__preview_background[data-v-572e7d1a]{background:rgba(0,0,0,.3)}.dark #__preview_loader[data-v-572e7d1a],.dark-mode #__preview_loader[data-v-572e7d1a]{color:#fff}.preview-loading-enter-active[data-v-572e7d1a],.preview-loading-leave-active[data-v-572e7d1a]{transition:opacity .4s}.preview-loading-enter[data-v-572e7d1a],.preview-loading-leave-to[data-v-572e7d1a]{opacity:0}#__preview_loading_icon[data-v-572e7d1a]{animation:spin-572e7d1a 1s linear infinite}.dark #__nuxt_preview[data-v-572e7d1a],.dark-mode #__nuxt_preview[data-v-572e7d1a]{background:rgba(0,0,0,.3);border-top:1px solid #111;color:#fff}#__nuxt_preview svg[data-v-572e7d1a]{color:#000;display:inline-block;height:30px;width:30px}.dark #__nuxt_preview svg[data-v-572e7d1a],.dark-mode #__nuxt_preview svg[data-v-572e7d1a]{color:#fff}button[data-v-572e7d1a]{background:transparent;border:1px solid rgba(0,0,0,.2);border-radius:3px;box-shadow:none;color:rgba(0,0,0,.8);cursor:pointer;display:inline-block;font-size:14px;font-weight:400;line-height:1rem;margin:0;padding:4px 10px;text-align:center;transition:none;width:auto}button[data-v-572e7d1a]:hover{border-color:rgba(0,0,0,.4);color:rgba(0,0,0,.9)}.dark button[data-v-572e7d1a],.dark-mode button[data-v-572e7d1a]{border-color:hsla(0,0%,100%,.2);color:#d3d3d3}.dark button[data-v-572e7d1a]:hover,.dark-mode button[data-v-572e7d1a]:hover{border-color:hsla(0,0%,100%,.4);color:#fff}#__nuxt_preview button[data-v-572e7d1a]:focus,#__nuxt_preview button[data-v-572e7d1a]:hover{background:rgba(0,0,0,.1)}#__nuxt_preview button[data-v-572e7d1a]:active{background:rgba(0,0,0,.2)}.dark #__nuxt_preview button[data-v-572e7d1a],.dark-mode #__nuxt_preview button[data-v-572e7d1a]{border:1px solid hsla(0,0%,100%,.2);color:hsla(0,0%,100%,.8)}.dark #__nuxt_preview button[data-v-572e7d1a]:hover,.dark-mode #__nuxt_preview button[data-v-572e7d1a]:focus{background:hsla(0,0%,100%,.1)}.dark #__nuxt_preview button[data-v-572e7d1a]:active,.dark-mode #__nuxt_preview button[data-v-572e7d1a]:active{background:hsla(0,0%,100%,.2)}#__nuxt_preview.__preview_refreshing button[data-v-572e7d1a],#__nuxt_preview.__preview_refreshing span[data-v-572e7d1a],#__nuxt_preview.__preview_refreshing svg[data-v-572e7d1a]{animation:nuxt_pulsate-572e7d1a 1s ease-out;animation-iteration-count:infinite;opacity:.5}@keyframes nuxt_pulsate-572e7d1a{0%{opacity:1}50%{opacity:.5}to{opacity:1}}@keyframes spin-572e7d1a{0%{transform:rotate(1turn)}to{transform:rotate(0deg)}}"; - -const ContentPreviewModeStyles_4b29600c = [ContentPreviewMode_vue_vue_type_style_index_0_lang, ContentPreviewMode_vue_vue_type_style_index_1_scoped_572e7d1a_lang]; - -export { ContentPreviewModeStyles_4b29600c as default }; -//# sourceMappingURL=ContentPreviewMode-styles.4b29600c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map deleted file mode 100644 index 9850b50b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentPreviewMode-styles.4b29600c.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentPreviewMode-styles.4b29600c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-styles-1.mjs-40f57a01.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-styles-2.mjs-04ad36f3.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentPreviewMode-styles.4b29600c.mjs"],"sourcesContent":null,"names":["style_0","style_1"],"mappings":"AAAA,MAAM,kDAAqD,GAAA,6CAAA;;ACA3D,MAAM,kEAAqE,GAAA,08GAAA;;ACE3E,0CAAe,CAACA,kDAAO,EAAEC,kEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs b/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs deleted file mode 100644 index 860fa3b2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs +++ /dev/null @@ -1,233 +0,0 @@ -import { defineComponent, toRefs, computed, watch, useSlots, useSSRContext, h } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { q as queryContent } from '../server.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const _sfc_main = defineComponent({ - name: "ContentQuery", - props: { - /** - * The path of the content to load from content source. - */ - path: { - type: String, - required: false, - default: void 0 - }, - /** - * Select a subset of fields - */ - only: { - type: Array, - required: false, - default: void 0 - }, - /** - * Remove a subset of fields - */ - without: { - type: Array, - required: false, - default: void 0 - }, - /** - * Filter results - */ - where: { - type: Object, - required: false, - default: void 0 - }, - /** - * Sort results - */ - sort: { - type: Object, - required: false, - default: void 0 - }, - /** - * Limit number of results - */ - limit: { - type: Number, - required: false, - default: void 0 - }, - /** - * Skip number of results - */ - skip: { - type: Number, - required: false, - default: void 0 - }, - /** - * Filter contents based on locale - */ - locale: { - type: String, - required: false, - default: void 0 - }, - /** - * A type of query to be made. - */ - find: { - type: String, - required: false, - default: void 0 - } - }, - async setup(props) { - const { - path, - only, - without, - where, - sort, - limit, - skip, - locale, - find - } = toRefs(props); - const isPartial = computed(() => { - var _a; - return (_a = path.value) == null ? void 0 : _a.includes("/_"); - }); - watch(() => props, () => refresh(), { deep: true }); - const { data, refresh } = await useAsyncData( - `content-query-${hash(props)}`, - () => { - let queryBuilder; - if (path.value) { - queryBuilder = queryContent(path.value); - } else { - queryBuilder = queryContent(); - } - if (only.value) { - queryBuilder = queryBuilder.only(only.value); - } - if (without.value) { - queryBuilder = queryBuilder.without(without.value); - } - if (where.value) { - queryBuilder = queryBuilder.where(where.value); - } - if (sort.value) { - queryBuilder = queryBuilder.sort(sort.value); - } - if (limit.value) { - queryBuilder = queryBuilder.limit(limit.value); - } - if (skip.value) { - queryBuilder = queryBuilder.skip(skip.value); - } - if (locale.value) { - queryBuilder = queryBuilder.where({ _locale: locale.value }); - } - if (find.value === "one") { - return queryBuilder.findOne(); - } - if (find.value === "surround") { - if (!path.value) { - console.warn("[Content] Surround queries requires `path` prop to be set."); - console.warn("[Content] Query without `path` will return regular `find()` results."); - return queryBuilder.find(); - } - return queryBuilder.findSurround(path.value); - } - return queryBuilder.find(); - } - ); - return { - isPartial, - data, - refresh - }; - }, - /** - * Content not found fallback - * @slot not-found - */ - render(ctx) { - var _a; - const slots = useSlots(); - const { - // Setup - data, - refresh, - isPartial, - // Props - path, - only, - without, - where, - sort, - limit, - skip, - locale, - find - } = ctx; - const props = { - path, - only, - without, - where, - sort, - limit, - skip, - locale, - find - }; - if (props.find === "one") { - if (!data && (slots == null ? void 0 : slots["not-found"])) { - return slots["not-found"]({ props, ...this.$attrs }); - } - if ((slots == null ? void 0 : slots.empty) && (data == null ? void 0 : data._type) === "markdown" && !((_a = data == null ? void 0 : data.body) == null ? void 0 : _a.children.length)) { - return slots.empty({ props, ...this.$attrs }); - } - } else if (!data || !data.length) { - if (slots == null ? void 0 : slots["not-found"]) { - return slots["not-found"]({ props, ...this.$attrs }); - } - } - if (slots == null ? void 0 : slots.default) { - return slots.default({ data, refresh, isPartial, props, ...this.$attrs }); - } - const emptyNode = (slot, data2) => h("pre", null, JSON.stringify({ message: "You should use slots with !", slot, data: data2 }, null, 2)); - return emptyNode("default", { data, props, isPartial }); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ContentQuery-8668b0af.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map deleted file mode 100644 index a0b8dc6c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentQuery-8668b0af.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentQuery-8668b0af.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentQuery-8668b0af.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs b/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs deleted file mode 100644 index cc848a99..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs +++ /dev/null @@ -1,95 +0,0 @@ -import { defineComponent, watch, useSlots, h, useSSRContext } from 'vue'; -import _sfc_main$1 from './ContentRendererMarkdown-bebf42c8.mjs'; -import 'destr'; -import 'scule'; -import 'property-information'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; - -const _sfc_main = defineComponent({ - name: "ContentRenderer", - props: { - /** - * The document to render. - */ - value: { - type: Object, - required: false, - default: () => ({}) - }, - /** - * Whether or not to render the excerpt. - * @default false - */ - excerpt: { - type: Boolean, - default: false - }, - /** - * The tag to use for the renderer element if it is used. - * @default 'div' - */ - tag: { - type: String, - default: "div" - } - }, - setup(props) { - watch( - () => props.excerpt, - (newExcerpt) => { - var _a, _b, _c; - if (newExcerpt && !((_a = props.value) == null ? void 0 : _a.excerpt)) { - console.warn(`No excerpt found for document content/${(_b = props == null ? void 0 : props.value) == null ? void 0 : _b._path}.${(_c = props == null ? void 0 : props.value) == null ? void 0 : _c._extension}!`); - console.warn("Make sure to use in your content if you want to use excerpt feature."); - } - }, - { - immediate: true - } - ); - }, - /** - * Content empty fallback - * @slot empty - */ - render(ctx) { - var _a, _b, _c, _d; - const slots = useSlots(); - const { value, excerpt, tag } = ctx; - if (!((_b = (_a = value == null ? void 0 : value.body) == null ? void 0 : _a.children) == null ? void 0 : _b.length) && (slots == null ? void 0 : slots.empty)) { - return slots.empty({ value, excerpt, tag, ...this.$attrs }); - } - if (slots == null ? void 0 : slots.default) { - return slots.default({ value, excerpt, tag, ...this.$attrs }); - } - if ((value == null ? void 0 : value._type) === "markdown" && ((_d = (_c = value == null ? void 0 : value.body) == null ? void 0 : _c.children) == null ? void 0 : _d.length)) { - return h( - _sfc_main$1, - { - value, - excerpt, - tag, - ...this.$attrs - } - ); - } - return h( - "pre", - null, - JSON.stringify({ message: "You should use slots with ", value, excerpt, tag }, null, 2) - ); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ContentRenderer-06a7c657.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map deleted file mode 100644 index 49e4c665..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentRenderer-06a7c657.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentRenderer-06a7c657.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentRenderer-06a7c657.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs b/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs deleted file mode 100644 index b81facab..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs +++ /dev/null @@ -1,422 +0,0 @@ -import { defineComponent, h, resolveComponent, Text, useSSRContext } from 'vue'; -import destr from 'destr'; -import { pascalCase } from 'scule'; -import { find, html } from 'property-information'; -import { b as useRuntimeConfig, f as useRoute } from './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; - -const htmlTags = [ - "a", - "abbr", - "address", - "area", - "article", - "aside", - "audio", - "b", - "base", - "bdi", - "bdo", - "blockquote", - "body", - "br", - "button", - "canvas", - "caption", - "cite", - "code", - "col", - "colgroup", - "data", - "datalist", - "dd", - "del", - "details", - "dfn", - "dialog", - "div", - "dl", - "dt", - "em", - "embed", - "fieldset", - "figcaption", - "figure", - "footer", - "form", - "h1", - "h2", - "h3", - "h4", - "h5", - "h6", - "head", - "header", - "hgroup", - "hr", - "html", - "i", - "iframe", - "img", - "input", - "ins", - "kbd", - "label", - "legend", - "li", - "link", - "main", - "map", - "mark", - "math", - "menu", - "menuitem", - "meta", - "meter", - "nav", - "noscript", - "object", - "ol", - "optgroup", - "option", - "output", - "p", - "param", - "picture", - "pre", - "progress", - "q", - "rb", - "rp", - "rt", - "rtc", - "ruby", - "s", - "samp", - "script", - "section", - "select", - "slot", - "small", - "source", - "span", - "strong", - "style", - "sub", - "summary", - "sup", - "svg", - "table", - "tbody", - "td", - "template", - "textarea", - "tfoot", - "th", - "thead", - "time", - "title", - "tr", - "track", - "u", - "ul", - "var", - "video", - "wbr" -]; -const DEFAULT_SLOT = "default"; -const rxOn = /^@|^v-on:/; -const rxBind = /^:|^v-bind:/; -const rxModel = /^v-model/; -const nativeInputs = ["select", "textarea", "input"]; -const _sfc_main = defineComponent({ - name: "ContentRendererMarkdown", - props: { - /** - * Content to render - */ - value: { - type: Object, - required: true - }, - /** - * Render only the excerpt - */ - excerpt: { - type: Boolean, - default: false - }, - /** - * Root tag to use for rendering - */ - tag: { - type: String, - default: "div" - }, - /** - * The map of custom components to use for rendering. - */ - components: { - type: Object, - default: () => ({}) - } - }, - async setup(props) { - var _a; - const { content: { tags = {} } } = useRuntimeConfig().public; - await resolveContentComponents(props.value.body, { - tags: { - ...tags, - ...((_a = props.value) == null ? void 0 : _a._components) || {}, - ...props.components - } - }); - return { tags }; - }, - render(ctx) { - var _a; - const { tags, tag, value, components } = ctx; - if (!value) { - return null; - } - let body = value.body || value; - if (ctx.excerpt && value.excerpt) { - body = value.excerpt; - } - const meta = { - ...value, - tags: { - ...tags, - ...(value == null ? void 0 : value._components) || {}, - ...components - } - }; - let component = meta.component || tag; - if (typeof meta.component === "object") { - component = meta.component.name; - } - component = resolveVueComponent(component); - return h( - component, - { ...(_a = meta.component) == null ? void 0 : _a.props, ...this.$attrs }, - renderSlots(body, h, meta, meta) - ); - } -}); -function renderNode(node, h2, documentMeta, parentScope = {}) { - var _a; - if (node.type === "text") { - return h2(Text, node.value); - } - if (node.tag === "script") { - return renderToText(node); - } - const originalTag = node.tag; - const renderTag = typeof ((_a = node.props) == null ? void 0 : _a.__ignoreMap) === "undefined" && documentMeta.tags[originalTag] || originalTag; - if (node.tag === "binding") { - return renderBinding(node, h2, documentMeta, parentScope); - } - const component = resolveVueComponent(renderTag); - if (typeof component === "object") { - component.tag = originalTag; - } - const props = propsToData(node, documentMeta); - return h2( - component, - props, - renderSlots(node, h2, documentMeta, { ...parentScope, ...props }) - ); -} -function renderToText(node) { - var _a, _b; - if (node.type === "text") { - return node.value; - } - if (!((_a = node.children) == null ? void 0 : _a.length)) { - return `<${node.tag}>`; - } - return `<${node.tag}>${((_b = node.children) == null ? void 0 : _b.map(renderToText).join("")) || ""}`; -} -function renderBinding(node, h2, documentMeta, parentScope = {}) { - var _a; - const data = { - ...parentScope, - $route: () => useRoute(), - $document: documentMeta, - $doc: documentMeta - }; - const splitter = /\.|\[(\d+)\]/; - const keys = (_a = node.props) == null ? void 0 : _a.value.trim().split(splitter).filter(Boolean); - const value = keys.reduce((data2, key) => { - if (key in data2) { - if (typeof data2[key] === "function") { - return data2[key](); - } else { - return data2[key]; - } - } - return {}; - }, data); - return h2(Text, value); -} -function renderSlots(node, h2, documentMeta, parentProps) { - const children = node.children || []; - const slotNodes = children.reduce((data, node2) => { - if (!isTemplate(node2)) { - data[DEFAULT_SLOT].push(node2); - return data; - } - const slotName = getSlotName(node2); - data[slotName] = data[slotName] || []; - data[slotName].push(...node2.children || []); - return data; - }, { - [DEFAULT_SLOT]: [] - }); - const slots = Object.entries(slotNodes).reduce((slots2, [name, children2]) => { - if (!children2.length) { - return slots2; - } - slots2[name] = () => { - const vNodes = children2.map((child) => renderNode(child, h2, documentMeta, parentProps)); - return mergeTextNodes(vNodes); - }; - return slots2; - }, {}); - return slots; -} -function propsToData(node, documentMeta) { - const { tag = "", props = {} } = node; - return Object.keys(props).reduce(function(data, key) { - if (key === "__ignoreMap") { - return data; - } - const value = props[key]; - if (rxModel.test(key) && !nativeInputs.includes(tag)) { - return propsToDataRxModel(key, value, data, documentMeta); - } - if (key === "v-bind") { - return propsToDataVBind(key, value, data, documentMeta); - } - if (rxOn.test(key)) { - return propsToDataRxOn(key, value, data, documentMeta); - } - if (rxBind.test(key)) { - return propsToDataRxBind(key, value, data, documentMeta); - } - const { attribute } = find(html, key); - if (Array.isArray(value) && value.every((v) => typeof v === "string")) { - data[attribute] = value.join(" "); - return data; - } - data[attribute] = value; - return data; - }, {}); -} -function propsToDataRxModel(key, value, data, documentMeta) { - const number = (d) => +d; - const trim = (d) => d.trim(); - const noop = (d) => d; - const mods = key.replace(rxModel, "").split(".").filter((d) => d).reduce((d, k) => { - d[k] = true; - return d; - }, {}); - const field = "value"; - const event = mods.lazy ? "change" : "input"; - const processor = mods.number ? number : mods.trim ? trim : noop; - data[field] = evalInContext(value, documentMeta); - data.on = data.on || {}; - data.on[event] = (e) => documentMeta[value] = processor(e); - return data; -} -function propsToDataVBind(_key, value, data, documentMeta) { - const val = evalInContext(value, documentMeta); - data = Object.assign(data, val); - return data; -} -function propsToDataRxOn(key, value, data, documentMeta) { - key = key.replace(rxOn, ""); - data.on = data.on || {}; - data.on[key] = () => evalInContext(value, documentMeta); - return data; -} -function propsToDataRxBind(key, value, data, documentMeta) { - key = key.replace(rxBind, ""); - data[key] = evalInContext(value, documentMeta); - return data; -} -const resolveVueComponent = (component) => { - if (!htmlTags.includes(component)) { - const componentFn = resolveComponent(pascalCase(component), false); - if (typeof componentFn === "object") { - return componentFn; - } - } - return component; -}; -function evalInContext(code, context) { - const result = code.split(".").reduce((o, k) => typeof o === "object" ? o[k] : void 0, context); - return typeof result === "undefined" ? destr(code) : result; -} -function getSlotName(node) { - let name = ""; - for (const propName of Object.keys(node.props || {})) { - if (!propName.startsWith("#") && !propName.startsWith("v-slot:")) { - continue; - } - name = propName.split(/[:#]/, 2)[1]; - break; - } - return name || DEFAULT_SLOT; -} -function isTemplate(node) { - return node.tag === "template"; -} -function mergeTextNodes(nodes) { - const mergedNodes = []; - for (const node of nodes) { - const previousNode = mergedNodes[mergedNodes.length - 1]; - if (node.type === Text && (previousNode == null ? void 0 : previousNode.type) === Text) { - previousNode.children = previousNode.children + node.children; - } else { - mergedNodes.push(node); - } - } - return mergedNodes; -} -async function resolveContentComponents(body, meta) { - const components = Array.from(new Set(loadComponents(body, meta))); - await Promise.all(components.map(async (c) => { - const resolvedComponent = resolveComponent(c); - if ((resolvedComponent == null ? void 0 : resolvedComponent.__asyncLoader) && !resolvedComponent.__asyncResolved) { - await resolvedComponent.__asyncLoader(); - } - })); - function loadComponents(node, documentMeta) { - var _a; - if (node.type === "text" || node.tag === "binding") { - return []; - } - const renderTag = typeof ((_a = node.props) == null ? void 0 : _a.__ignoreMap) === "undefined" && documentMeta.tags[node.tag] || node.tag; - const components2 = []; - if (node.type !== "root" && !htmlTags.includes(renderTag)) { - components2.push(renderTag); - } - for (const child of node.children || []) { - components2.push(...loadComponents(child, documentMeta)); - } - return components2; - } -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ContentRendererMarkdown-bebf42c8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map deleted file mode 100644 index c0922ae1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentRendererMarkdown-bebf42c8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentRendererMarkdown-bebf42c8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentRendererMarkdown-bebf42c8.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs b/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs deleted file mode 100644 index 0cfd1994..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs +++ /dev/null @@ -1,100 +0,0 @@ -import { defineComponent, getCurrentInstance, useSlots, computed, h, useSSRContext } from 'vue'; -import { u as useUnwrap } from './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = defineComponent({ - name: "ContentSlot", - functional: true, - props: { - /** - * A slot name or function - */ - use: { - type: Function, - default: void 0 - }, - /** - * Tags to unwrap separated by spaces - * Example: 'ul li' - */ - unwrap: { - type: [Boolean, String], - default: false - } - }, - setup(props) { - const { parent } = getCurrentInstance(); - const { between, default: fallbackSlot } = useSlots(); - const tags = computed(() => { - if (typeof props.unwrap === "string") { - return props.unwrap.split(" "); - } - return ["*"]; - }); - return { - fallbackSlot, - tags, - between, - parent - }; - }, - render({ use, unwrap, fallbackSlot, between, tags, parent }) { - var _a; - try { - let slot = use; - if (typeof use === "string") { - slot = (parent == null ? void 0 : parent.slots[use]) || ((_a = parent == null ? void 0 : parent.parent) == null ? void 0 : _a.slots[use]); - console.warn(`Please set :use="$slots.${use}" in component to enable reactivity`); - } - if (!slot) { - return fallbackSlot ? fallbackSlot() : h("div"); - } - if (!unwrap) { - return [slot()]; - } - const { flatUnwrap } = useUnwrap(); - const unwrapped = flatUnwrap(slot(), tags); - if (between) { - return unwrapped.flatMap( - (vnode, index) => index === 0 ? [vnode] : [between(), vnode] - ); - } - return unwrapped.reduce((acc, item) => { - if (typeof item.children === "string") { - if (typeof acc[acc.length - 1] === "string") { - acc[acc.length - 1] += item.children; - } else { - acc.push(item.children); - } - } else { - acc.push(item); - } - return acc; - }, []); - } catch (e) { - return h("div"); - } - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ContentSlot = _sfc_main; - -export { ContentSlot as default }; -//# sourceMappingURL=ContentSlot-deb25102.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map b/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map deleted file mode 100644 index ea19caf8..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ContentSlot-deb25102.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ContentSlot-deb25102.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ContentSlot-deb25102.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs b/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs deleted file mode 100644 index a853712f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs +++ /dev/null @@ -1,56 +0,0 @@ -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { defineComponent, ref, mergeProps, unref, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { u as useClipboard } from './index-1624a23e.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "CopyButton", - __ssrInlineRender: true, - props: { - content: { - type: String, - default: "" - } - }, - setup(__props) { - useClipboard(); - const state = ref("init"); - return (_ctx, _push, _parent, _attrs) => { - const _component_Icon = __nuxt_component_0$1; - _push(``); - if (unref(state) === "copied") { - _push(ssrRenderComponent(_component_Icon, { - name: "fa-check", - class: "h-4 w-4" - }, null, _parent)); - } else { - _push(ssrRenderComponent(_component_Icon, { - name: "fa-copy", - class: "h-4 w-4" - }, null, _parent)); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=CopyButton-155eba98.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map b/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map deleted file mode 100644 index 8cbb535e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/CopyButton-155eba98.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"CopyButton-155eba98.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/CopyButton-155eba98.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAa,YAAA,EAAA,CAAA;AACb,IAAM,MAAA,KAAA,GAAQ,IAAI,MAAM,CAAA,CAAA;AACxB,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,eAAkB,GAAAA,oBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,CAAA,OAAA,EAAU,eAAe,UAAW,CAAA,EAAE,OAAO,mIAAoI,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AACrM,MAAI,IAAA,KAAA,CAAM,KAAK,CAAA,KAAM,QAAU,EAAA;AAC7B,QAAA,KAAA,CAAM,mBAAmB,eAAiB,EAAA;AAAA,UACxC,IAAM,EAAA,UAAA;AAAA,UACN,KAAO,EAAA,SAAA;AAAA,SACT,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AAAA,OACZ,MAAA;AACL,QAAA,KAAA,CAAM,mBAAmB,eAAiB,EAAA;AAAA,UACxC,IAAM,EAAA,SAAA;AAAA,UACN,KAAO,EAAA,SAAA;AAAA,SACT,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AAAA,OACnB;AACA,MAAA,KAAA,CAAM,CAAW,SAAA,CAAA,CAAA,CAAA;AAAA,KACnB,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs b/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs deleted file mode 100644 index 1af7b207..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs +++ /dev/null @@ -1,68 +0,0 @@ -import { b as __nuxt_component_0, _ as __nuxt_component_0$1$1 } from './DocsAsideTree-136bd08b.mjs'; -import { _ as __nuxt_component_0$1 } from './app.config-832f5f68.mjs'; -import { b as useDocus } from './useDocus-928368c4.mjs'; -import { useSSRContext, defineComponent, unref, withCtx, createVNode } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ufo'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsAside", - __ssrInlineRender: true, - setup(__props) { - const { tree } = useDocus(); - return (_ctx, _push, _parent, _attrs) => { - var _a; - const _component_DocsAsideTree = __nuxt_component_0; - const _component_NuxtLink = __nuxt_component_0$1; - const _component_Icon = __nuxt_component_0$1$1; - _push(``); - if (((_a = unref(tree)) == null ? void 0 : _a.length) > 0) { - _push(ssrRenderComponent(_component_DocsAsideTree, { links: unref(tree) }, null, _parent)); - } else { - _push(ssrRenderComponent(_component_NuxtLink, { - to: "/", - class: "go-back-link" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(ssrRenderComponent(_component_Icon, { - name: "heroicons-outline:arrow-left", - class: "icon" - }, null, _parent2, _scopeId)); - _push2(`Go back`); - } else { - return [ - createVNode(_component_Icon, { - name: "heroicons-outline:arrow-left", - class: "icon" - }), - createVNode("span", { class: "text" }, "Go back") - ]; - } - }), - _: 1 - }, _parent)); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-4fc52927"]]); - -export { __nuxt_component_1 as default }; -//# sourceMappingURL=DocsAside-a41d5eb9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map deleted file mode 100644 index 534245b1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsAside-a41d5eb9.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsAside-a41d5eb9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAside-a41d5eb9.js"],"sourcesContent":null,"names":["__nuxt_component_0$2"],"mappings":";;;;;;;;;;;;;;;;AAgBA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,WAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,IAAK,EAAA,GAAI,QAAS,EAAA,CAAA;AAC1B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAI,IAAA,EAAA,CAAA;AACJ,MAAA,MAAM,wBAA2B,GAAA,kBAAA,CAAA;AACjC,MAAA,MAAM,mBAAsB,GAAA,oBAAA,CAAA;AAC5B,MAAA,MAAM,eAAkB,GAAAA,sBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACtD,MAAM,IAAA,CAAA,CAAA,EAAA,GAAK,MAAM,IAAI,CAAA,KAAM,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,UAAU,CAAG,EAAA;AACzD,QAAM,KAAA,CAAA,kBAAA,CAAmB,wBAA0B,EAAA,EAAE,KAAO,EAAA,KAAA,CAAM,IAAI,CAAE,EAAA,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AAAA,OACpF,MAAA;AACL,QAAA,KAAA,CAAM,mBAAmB,mBAAqB,EAAA;AAAA,UAC5C,EAAI,EAAA,GAAA;AAAA,UACJ,KAAO,EAAA,cAAA;AAAA,SACN,EAAA;AAAA,UACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,YAAA,IAAI,MAAQ,EAAA;AACV,cAAA,MAAA,CAAO,mBAAmB,eAAiB,EAAA;AAAA,gBACzC,IAAM,EAAA,8BAAA;AAAA,gBACN,KAAO,EAAA,MAAA;AAAA,eACN,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAC5B,cAAA,MAAA,CAAO,qCAAqC,QAAyB,CAAA,eAAA,CAAA,CAAA,CAAA;AAAA,aAChE,MAAA;AACL,cAAO,OAAA;AAAA,gBACL,YAAY,eAAiB,EAAA;AAAA,kBAC3B,IAAM,EAAA,8BAAA;AAAA,kBACN,KAAO,EAAA,MAAA;AAAA,iBACR,CAAA;AAAA,gBACD,YAAY,MAAQ,EAAA,EAAE,KAAO,EAAA,MAAA,IAAU,SAAS,CAAA;AAAA,eAClD,CAAA;AAAA,aACF;AAAA,WACD,CAAA;AAAA,UACD,CAAG,EAAA,CAAA;AAAA,SACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,OACb;AACA,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,+DAA+D,CAAA,CAAA;AAC5I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs b/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs deleted file mode 100644 index b0c62bf0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocsAside_vue_vue_type_style_index_0_scoped_4fc52927_transformed_true_lang = ".go-back-link[data-v-4fc52927]{align-items:center;color:var(--color-gray-500);cursor:pointer;display:flex;font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight)}.go-back-link[data-v-4fc52927]:hover{color:var(--color-gray-700)}.go-back-link .icon[data-v-4fc52927]{height:var(--space-4);width:var(--space-4)}.go-back-link .text[data-v-4fc52927]{margin-left:var(--space-2)}"; - -const DocsAsideStyles_764ece99 = [DocsAside_vue_vue_type_style_index_0_scoped_4fc52927_transformed_true_lang]; - -export { DocsAsideStyles_764ece99 as default }; -//# sourceMappingURL=DocsAside-styles.764ece99.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map deleted file mode 100644 index 2d62aa3a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsAside-styles.764ece99.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsAside-styles.764ece99.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAside-styles-1.mjs-5e01d86c.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAside-styles.764ece99.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,0EAA6E,GAAA,qYAAA;;ACCnF,iCAAe,CAACA,0EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs b/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs deleted file mode 100644 index a3e5dcea..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs +++ /dev/null @@ -1,350 +0,0 @@ -import { withBase } from 'ufo'; -import { b as useRuntimeConfig, e as useRequestEvent, u as useNuxtApp, f as useRoute, _ as __nuxt_component_0$2 } from './app.config-832f5f68.mjs'; -import { useSSRContext, defineComponent, ref, computed, watch, withAsyncContext, unref, mergeProps, createVNode, resolveDynamicComponent, withCtx, openBlock, createBlock, createCommentVNode, toDisplayString } from 'vue'; -import { a as useAppConfig, u as useState, b as useDocus } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderVNode, ssrInterpolate, ssrRenderList, ssrRenderClass } from 'vue/server-renderer'; -import { Icon as Icon$1 } from '@iconify/vue/dist/offline'; -import { loadIcon } from '@iconify/vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const TEXT_TAGS = ["p", "h1", "h2", "h3", "h4", "h5", "h6", "li"]; -function isTag(vnode, tag) { - if (vnode.type === tag) { - return true; - } - if (typeof vnode.type === "object" && vnode.type.tag === tag) { - return true; - } - if (vnode.tag === tag) { - return true; - } - return false; -} -function isText(vnode) { - return isTag(vnode, "text") || typeof vnode.children === "string"; -} -function nodeChildren(node) { - if (Array.isArray(node.children) || typeof node.children === "string") { - return node.children; - } - if (typeof node.children.default === "function") { - return node.children.default(); - } - return []; -} -function nodeTextContent(node) { - if (!node) { - return ""; - } - if (Array.isArray(node)) { - return node.map(nodeTextContent).join(""); - } - if (isText(node)) { - return node.children || node.value; - } - const children = nodeChildren(node); - if (Array.isArray(children)) { - return children.map(nodeTextContent).join(""); - } - return ""; -} -function unwrap(vnode, tags = ["p"]) { - if (Array.isArray(vnode)) { - return vnode.flatMap((node) => unwrap(node, tags)); - } - let result = vnode; - if (tags.some((tag) => tag === "*" || isTag(vnode, tag))) { - result = nodeChildren(vnode) || vnode; - if (!Array.isArray(result) && TEXT_TAGS.some((tag) => isTag(vnode, tag))) { - result = [result]; - } - } - return result; -} -function flatUnwrap(vnodes, tags = ["p"]) { - vnodes = Array.isArray(vnodes) ? vnodes : [vnodes]; - if (!tags.length) { - return vnodes; - } - return vnodes.flatMap((vnode) => flatUnwrap(unwrap(vnode, [tags[0]]), tags.slice(1))).filter((vnode) => !(isText(vnode) && nodeTextContent(vnode).trim() === "")); -} -const withContentBase = (url) => withBase(url, useRuntimeConfig().public.content.api.baseURL); -const useUnwrap = () => ({ - unwrap, - flatUnwrap -}); -const addPrerenderPath = (path) => { - const event = useRequestEvent(); - event.res.setHeader( - "x-nitro-prerender", - [ - event.res.getHeader("x-nitro-prerender"), - path - ].filter(Boolean).join(",") - ); -}; -const shouldUseClientDB = () => { - useRuntimeConfig().content; - { - return false; - } -}; -const _sfc_main$1 = /* @__PURE__ */ defineComponent({ - __name: "Icon", - __ssrInlineRender: true, - props: { - name: { - type: String, - required: true - }, - size: { - type: String, - default: "" - } - }, - async setup(__props) { - var _a; - let __temp, __restore; - const props = __props; - const nuxtApp = useNuxtApp(); - const appConfig = useAppConfig(); - ((_a = appConfig == null ? void 0 : appConfig.nuxtIcon) == null ? void 0 : _a.aliases) || {}; - const state = useState("icons", () => ({})); - const isFetching = ref(false); - const iconName = computed(() => { - var _a2; - return (((_a2 = appConfig == null ? void 0 : appConfig.nuxtIcon) == null ? void 0 : _a2.aliases) || {})[props.name] || props.name; - }); - const icon = computed(() => { - var _a2; - return (_a2 = state.value) == null ? void 0 : _a2[iconName.value]; - }); - const component = computed(() => nuxtApp.vueApp.component(iconName.value)); - const sSize = computed(() => { - var _a2; - const size = props.size || ((_a2 = appConfig.nuxtIcon) == null ? void 0 : _a2.size) || "1em"; - if (String(Number(size)) === size) { - return `${size}px`; - } - return size; - }); - const className = computed(() => { - var _a3; - var _a2; - return (_a3 = (_a2 = appConfig == null ? void 0 : appConfig.nuxtIcon) == null ? void 0 : _a2.class) != null ? _a3 : "icon"; - }); - async function loadIconComponent() { - var _a2; - if (component.value) { - return; - } - if (!((_a2 = state.value) == null ? void 0 : _a2[iconName.value])) { - isFetching.value = true; - state.value[iconName.value] = await loadIcon(iconName.value).catch(() => void 0); - isFetching.value = false; - } - } - watch(() => iconName.value, loadIconComponent); - !component.value && ([__temp, __restore] = withAsyncContext(() => loadIconComponent()), __temp = await __temp, __restore(), __temp); - return (_ctx, _push, _parent, _attrs) => { - if (unref(isFetching)) { - _push(``); - } else if (unref(icon)) { - _push(ssrRenderComponent(unref(Icon$1), mergeProps({ - icon: unref(icon), - class: unref(className), - width: unref(sSize), - height: unref(sSize) - }, _attrs), null, _parent)); - } else if (unref(component)) { - ssrRenderVNode(_push, createVNode(resolveDynamicComponent(unref(component)), mergeProps({ - class: unref(className), - width: unref(sSize), - height: unref(sSize) - }, _attrs), null), _parent); - } else { - _push(`${ssrInterpolate(__props.name)}`); - } - }; - } -}); -const _sfc_setup$1 = _sfc_main$1.setup; -_sfc_main$1.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/nuxt-icon/dist/runtime/Icon.vue"); - return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; -}; -const __nuxt_component_0$1 = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-28b5b508"]]); -const Icon = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_0$1 -}); -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsAsideTree", - __ssrInlineRender: true, - props: { - links: { - type: Array, - default: () => [] - }, - level: { - type: Number, - default: 0 - }, - max: { - type: Number, - default: null - }, - parent: { - type: Object, - default: null - } - }, - setup(__props) { - var _a; - const props = __props; - const route = useRoute(); - const { config } = useDocus(); - const collapsedMap = useState(`docus-docs-aside-collapse-map-${((_a = props.parent) == null ? void 0 : _a._path) || "/"}`, () => { - if (props.level === 0) { - return {}; - } - return props.links.filter((link) => !!link.children).reduce((map, link) => { - map[link._path] = true; - return map; - }, {}); - }); - const isActive = (link) => { - return route.path === link._path; - }; - const isCollapsed = (link) => { - var _a2, _b, _c, _d; - if (link.children) { - if (typeof collapsedMap.value[link._path] !== "undefined") { - return collapsedMap.value[link._path]; - } - if ((_a2 = link == null ? void 0 : link.aside) == null ? void 0 : _a2.collapsed) { - return link.aside.collapsed; - } - if (link == null ? void 0 : link.collapsed) { - return link == null ? void 0 : link.collapsed; - } - if ((_c = (_b = config == null ? void 0 : config.value) == null ? void 0 : _b.aside) == null ? void 0 : _c.collapsed) { - return (_d = config.value.aside) == null ? void 0 : _d.collapsed; - } - } - return false; - }; - const hasNesting = computed(() => props.links.some((link) => link.children)); - return (_ctx, _push, _parent, _attrs) => { - const _component_Icon = __nuxt_component_0$1; - const _component_NuxtLink = __nuxt_component_0$2; - const _component_DocsAsideTree = __nuxt_component_0; - _push(``); - ssrRenderList(__props.links, (link) => { - var _a2, _b, _c, _d, _e; - _push(`
  • 0 && link.children, - "bordered": __props.level > 0 || !unref(hasNesting), - "active": isActive(link) - })}" data-v-1b6cf603>`); - if (link.children) { - _push(``); - } else { - _push(ssrRenderComponent(_component_NuxtLink, { - to: link.redirect ? link.redirect : link._path, - class: ["link", { - "padded": __props.level > 0 || !unref(hasNesting), - "active": isActive(link) - }], - exact: link.exact - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - var _a3, _b2, _c2, _d2, _e2, _f; - if (_push2) { - _push2(``); - if (((_a3 = link == null ? void 0 : link.navigation) == null ? void 0 : _a3.icon) || link.icon) { - _push2(ssrRenderComponent(_component_Icon, { - name: ((_b2 = link == null ? void 0 : link.navigation) == null ? void 0 : _b2.icon) || link.icon, - class: "icon" - }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - _push2(`${ssrInterpolate(((_c2 = link == null ? void 0 : link.navigation) == null ? void 0 : _c2.title) || link.title || link._path)}`); - } else { - return [ - createVNode("span", { class: "content" }, [ - ((_d2 = link == null ? void 0 : link.navigation) == null ? void 0 : _d2.icon) || link.icon ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: ((_e2 = link == null ? void 0 : link.navigation) == null ? void 0 : _e2.icon) || link.icon, - class: "icon" - }, null, 8, ["name"])) : createCommentVNode("", true), - createVNode("span", null, toDisplayString(((_f = link == null ? void 0 : link.navigation) == null ? void 0 : _f.title) || link.title || link._path), 1) - ]) - ]; - } - }), - _: 2 - }, _parent)); - } - if (((_e = link.children) == null ? void 0 : _e.length) && (__props.max === null || __props.level + 1 < __props.max)) { - _push(ssrRenderComponent(_component_DocsAsideTree, { - style: !isCollapsed(link) ? null : { display: "none" }, - links: link.children, - level: __props.level + 1, - parent: link, - max: __props.max, - class: "recursive" - }, null, _parent)); - } else { - _push(``); - } - _push(`
  • `); - }); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsAsideTree.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1b6cf603"]]); -const DocsAsideTree = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_0 -}); - -export { DocsAsideTree as D, Icon as I, __nuxt_component_0$1 as _, addPrerenderPath as a, __nuxt_component_0 as b, shouldUseClientDB as s, useUnwrap as u, withContentBase as w }; -//# sourceMappingURL=DocsAsideTree-136bd08b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map deleted file mode 100644 index ebcb9bfd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsAsideTree-136bd08b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsAsideTree-136bd08b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsAsideTree-136bd08b.js"],"sourcesContent":null,"names":["_a"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs deleted file mode 100644 index 75783e2e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs +++ /dev/null @@ -1,88 +0,0 @@ -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import _sfc_main$1 from './EditOnLink-e55cd3a0.mjs'; -import __nuxt_component_2 from './ProseA-86ef3985.mjs'; -import { c as useContent, b as useDocus } from './useDocus-928368c4.mjs'; -import { useSSRContext, defineComponent, unref, mergeProps, withCtx, createVNode } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsPageBottom", - __ssrInlineRender: true, - setup(__props) { - const { page } = useContent(); - const { config } = useDocus(); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b, _c; - const _component_Icon = __nuxt_component_0$1; - const _component_EditOnLink = _sfc_main$1; - const _component_ProseA = __nuxt_component_2; - if (unref(page)) { - _push(``); - if ((_b = (_a = unref(config)) == null ? void 0 : _a.github) == null ? void 0 : _b.edit) { - _push(``); - } else { - _push(``); - } - if ((_c = unref(page)) == null ? void 0 : _c.mtime) { - _push(`Updated on ${ssrInterpolate(new Intl.DateTimeFormat("en-US").format(Date.parse(unref(page).mtime)))}`); - } else { - _push(``); - } - _push(``); - } else { - _push(``); - } - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_4 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c70c0152"]]); - -export { __nuxt_component_4 as default }; -//# sourceMappingURL=DocsPageBottom-270eacfc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map deleted file mode 100644 index dbc5df89..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-270eacfc.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsPageBottom-270eacfc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageBottom-270eacfc.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs deleted file mode 100644 index 2ac408c5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocsPageBottom_vue_vue_type_style_index_0_scoped_c70c0152_transformed_true_lang = ".docs-page-bottom[data-v-c70c0152]{align-items:center;color:var(--color-gray-500);display:flex;flex-direction:row;font-size:var(--fontSize-sm);gap:var(--space-4);justify-content:space-between;margin-top:var(--space-8)}:root.dark .docs-page-bottom[data-v-c70c0152]{color:var(--color-gray-400)}.docs-page-bottom .edit-link[data-v-c70c0152]{align-items:center;display:flex;flex:1;gap:var(--space-2)}"; - -const DocsPageBottomStyles_e97de530 = [DocsPageBottom_vue_vue_type_style_index_0_scoped_c70c0152_transformed_true_lang]; - -export { DocsPageBottomStyles_e97de530 as default }; -//# sourceMappingURL=DocsPageBottom-styles.e97de530.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map deleted file mode 100644 index ea7e401a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageBottom-styles.e97de530.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsPageBottom-styles.e97de530.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageBottom-styles-1.mjs-9133c53f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageBottom-styles.e97de530.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,8YAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs deleted file mode 100644 index f8b27b45..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs +++ /dev/null @@ -1,228 +0,0 @@ -import { _ as _export_sfc, a as __nuxt_component_0$1 } from './Container-1291608c.mjs'; -import __nuxt_component_1 from './DocsAside-a41d5eb9.mjs'; -import __nuxt_component_2 from './Alert-2b29f746.mjs'; -import __nuxt_component_1$1 from './ProseCodeInline-960b9a43.mjs'; -import __nuxt_component_4 from './DocsPageBottom-270eacfc.mjs'; -import __nuxt_component_5 from './DocsPrevNext-7858c09b.mjs'; -import { _ as __nuxt_component_0$1$1 } from './DocsAsideTree-136bd08b.mjs'; -import __nuxt_component_7 from './DocsToc-e4f6bd56.mjs'; -import { c as useContent, b as useDocus, u as useState } from './useDocus-928368c4.mjs'; -import { f as useRoute } from './app.config-832f5f68.mjs'; -import { useSSRContext, defineComponent, computed, ref, mergeProps, unref, withCtx, createTextVNode, toDisplayString, createVNode, openBlock, createBlock, createCommentVNode, renderSlot, Fragment } from 'vue'; -import { ssrRenderComponent, ssrRenderClass, ssrRenderSlot, ssrInterpolate } from 'vue/server-renderer'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import 'ufo'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './ContentSlot-deb25102.mjs'; -import './EditOnLink-e55cd3a0.mjs'; -import './ProseA-86ef3985.mjs'; -import './DocsTocLinks-95d48629.mjs'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsPageLayout", - __ssrInlineRender: true, - setup(__props) { - const { page, navigation } = useContent(); - const { config } = useDocus(); - const route = useRoute(); - const fallbackValue = (value, fallback = true) => { - var _a; - if (typeof ((_a = page.value) == null ? void 0 : _a[value]) !== "undefined") { - return page.value[value]; - } - return fallback; - }; - const hasBody = computed(() => { - var _a, _b, _c; - return !page.value || ((_c = (_b = (_a = page.value) == null ? void 0 : _a.body) == null ? void 0 : _b.children) == null ? void 0 : _c.length) > 0; - }); - const hasToc = computed(() => { - var _a, _b, _c, _d, _e; - return ((_a = page.value) == null ? void 0 : _a.toc) !== false && ((_e = (_d = (_c = (_b = page.value) == null ? void 0 : _b.body) == null ? void 0 : _c.toc) == null ? void 0 : _d.links) == null ? void 0 : _e.length) >= 2; - }); - const hasAside = computed(() => { - var _a, _b; - return ((_a = page.value) == null ? void 0 : _a.aside) !== false && ((_b = navigation.value) == null ? void 0 : _b.length) > 0; - }); - const bottom = computed(() => fallbackValue("bottom", true)); - const isOpen = ref(false); - const asideNav = ref(null); - const getParentPath = () => route.path.split("/").slice(0, 2).join("/"); - useState("asideScroll", () => { - var _a; - return { - parentPath: getParentPath(), - scrollTop: ((_a = asideNav.value) == null ? void 0 : _a.scrollTop) || 0 - }; - }); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b, _c, _d, _e, _f; - const _component_Container = __nuxt_component_0$1; - const _component_DocsAside = __nuxt_component_1; - const _component_Alert = __nuxt_component_2; - const _component_ProseCodeInline = __nuxt_component_1$1; - const _component_DocsPageBottom = __nuxt_component_4; - const _component_DocsPrevNext = __nuxt_component_5; - const _component_Icon = __nuxt_component_0$1$1; - const _component_DocsToc = __nuxt_component_7; - _push(ssrRenderComponent(_component_Container, mergeProps({ - fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.main) == null ? void 0 : _b.fluid, - padded: (_d = (_c = unref(config)) == null ? void 0 : _c.main) == null ? void 0 : _d.padded, - class: ["docs-page-content", { - fluid: (_f = (_e = unref(config)) == null ? void 0 : _e.main) == null ? void 0 : _f.fluid - }] - }, _attrs), { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - if (unref(hasAside)) { - _push2(``); - } else { - _push2(``); - } - _push2(`
    `); - if (unref(hasBody)) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - } else { - _push2(ssrRenderComponent(_component_Alert, { type: "info" }, { - default: withCtx((_2, _push3, _parent3, _scopeId2) => { - if (_push3) { - _push3(` Start writing in `); - _push3(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_3, _push4, _parent4, _scopeId3) => { - if (_push4) { - _push4(`content/${ssrInterpolate(unref(page)._file)}`); - } else { - return [ - createTextVNode("content/" + toDisplayString(unref(page)._file), 1) - ]; - } - }), - _: 1 - }, _parent3, _scopeId2)); - _push3(` to see this page taking shape. `); - } else { - return [ - createTextVNode(" Start writing in "), - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode("content/" + toDisplayString(unref(page)._file), 1) - ]), - _: 1 - }), - createTextVNode(" to see this page taking shape. ") - ]; - } - }), - _: 1 - }, _parent2, _scopeId)); - } - if (unref(hasBody) && unref(page) && unref(bottom)) { - _push2(``); - _push2(ssrRenderComponent(_component_DocsPageBottom, null, null, _parent2, _scopeId)); - _push2(ssrRenderComponent(_component_DocsPrevNext, null, null, _parent2, _scopeId)); - _push2(``); - } else { - _push2(``); - } - _push2(`
    `); - if (unref(hasToc)) { - _push2(`
    `); - _push2(ssrRenderComponent(_component_DocsToc, { - onMove: ($event) => isOpen.value = false - }, null, _parent2, _scopeId)); - _push2(`
    `); - } else { - _push2(``); - } - } else { - return [ - unref(hasAside) ? (openBlock(), createBlock("aside", { - key: 0, - ref_key: "asideNav", - ref: asideNav, - class: "aside-nav" - }, [ - createVNode(_component_DocsAside, { class: "app-aside" }) - ], 512)) : createCommentVNode("", true), - createVNode("article", { - class: ["page-body", { - "with-toc": unref(hasToc) - }] - }, [ - unref(hasBody) ? renderSlot(_ctx.$slots, "default", { key: 0 }, void 0, true) : (openBlock(), createBlock(_component_Alert, { - key: 1, - type: "info" - }, { - default: withCtx(() => [ - createTextVNode(" Start writing in "), - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode("content/" + toDisplayString(unref(page)._file), 1) - ]), - _: 1 - }), - createTextVNode(" to see this page taking shape. ") - ]), - _: 1 - })), - unref(hasBody) && unref(page) && unref(bottom) ? (openBlock(), createBlock(Fragment, { key: 2 }, [ - createVNode(_component_DocsPageBottom), - createVNode(_component_DocsPrevNext) - ], 64)) : createCommentVNode("", true) - ], 2), - unref(hasToc) ? (openBlock(), createBlock("div", { - key: 1, - class: "toc" - }, [ - createVNode("div", { class: "toc-wrapper" }, [ - createVNode("button", { - onClick: ($event) => isOpen.value = !unref(isOpen) - }, [ - createVNode("span", { class: "title" }, "Table of Contents"), - createVNode(_component_Icon, { - name: "heroicons-outline:chevron-right", - class: ["icon", [unref(isOpen) && "rotate"]] - }, null, 8, ["class"]) - ], 8, ["onClick"]), - createVNode("div", { - class: ["docs-toc-wrapper", [unref(isOpen) && "opened"]] - }, [ - createVNode(_component_DocsToc, { - onMove: ($event) => isOpen.value = false - }, null, 8, ["onMove"]) - ], 2) - ]) - ])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-64504251"]]); - -export { __nuxt_component_0 as default }; -//# sourceMappingURL=DocsPageLayout-4c2ead4a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map deleted file mode 100644 index 266ab92c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-4c2ead4a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsPageLayout-4c2ead4a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageLayout-4c2ead4a.js"],"sourcesContent":null,"names":["__nuxt_component_0$2"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs deleted file mode 100644 index 9981d947..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocsPageLayout_vue_vue_type_style_index_0_scoped_64504251_transformed_true_lang = ".docs-page-content[data-v-64504251]{display:flex;flex-direction:column-reverse;position:relative}@media (min-width:1024px){.docs-page-content[data-v-64504251]{display:grid;gap:var(--space-8);grid-template-columns:minmax(250px,250px) minmax(320px,1fr) minmax(250px,250px)}}.aside-nav[data-v-64504251]{display:none;overflow-y:auto}@media (min-width:1024px){.aside-nav[data-v-64504251]{align-self:flex-start;display:block;height:calc(100vh - var(--docus-header-height));padding-bottom:var(--space-8);padding-right:var(--space-8);padding-top:var(--space-8);position:sticky;top:var(--docus-header-height)}.fluid .aside-nav.aside-nav[data-v-64504251]{border-right:1px solid var(--elements-border-primary-static)}}.page-body[data-v-64504251]{display:flex;flex:1 1 0%;flex-direction:column;margin-left:auto;margin-right:auto;max-width:var(--docus-readableLine);padding-bottom:var(--space-8);padding-top:var(--space-8);position:relative;width:100%}.page-body.with-toc[data-v-64504251]{padding-top:var(--space-12)}@media (min-width:1024px){.page-body.with-toc[data-v-64504251]{padding-top:var(--space-8)}.page-body[data-v-64504251]{grid-column-start:2;margin-top:0}}.page-body[data-v-64504251] h1:not(.not-prose):first-child{font-size:var(--text-4xl-fontSize);line-height:var(--text-4xl-lineHeight);margin-top:0}@media (min-width:640px){.page-body[data-v-64504251] h1:not(.not-prose):first-child{font-size:var(--text-5xl-fontSize);line-height:var(--text-5xl-lineHeight)}}.page-body[data-v-64504251] h1:not(.not-prose)first-child+p{border-bottom:1px solid var(--elements-border-primary-static);color:var(--color-gray-500);margin-bottom:var(--space-8);margin-top:0;padding-bottom:var(--space-8)}@media (min-width:640px){.page-body[data-v-64504251] h1:not(.not-prose)first-child+p{font-size:var(--text-lg-fontSize);line-height:var(--text-lg-lineHeight)}}:root.dark .page-body[data-v-64504251] h1:not(.not-prose)first-child+p{color:var(--color-gray-400)}.page-body[data-v-64504251] h1:not(.not-prose)first-child+p a{color:var(--color-gray-700)}:root.dark .page-body[data-v-64504251] h1:not(.not-prose)first-child+p a{color:var(--color-gray-200)}.page-body[data-v-64504251] h1:not(.not-prose)first-child+p a:hover{border-color:var(--color-gray-700)}.page-body .docs-prev-next[data-v-64504251]{margin-top:var(--space-4)}.toc[data-v-64504251]{border-bottom:1px solid var(--elements-border-primary-static);display:flex;margin-left:calc(0px - var(--space-4));margin-right:calc(0px - var(--space-4));overflow:auto;position:sticky;top:var(--docus-header-height)}@media (min-width:640px){.toc[data-v-64504251]{margin-left:calc(0px - var(--space-6));margin-right:calc(0px - var(--space-6))}}@media (min-width:1024px){.toc[data-v-64504251]{align-self:flex-start;border-bottom:none;height:calc(100vh - var(--docus-header-height));margin-left:0;margin-right:0;max-height:none;padding:var(--space-8)}.fluid .toc.toc[data-v-64504251]{border-left:1px solid var(--elements-border-primary-static)}}.toc .toc-wrapper[data-v-64504251]{-webkit-backdrop-filter:var(--elements-backdrop-filter);backdrop-filter:var(--elements-backdrop-filter);background-color:var(--elements-backdrop-background);height:100%;width:100%}@media (min-width:1024px){.toc .toc-wrapper[data-v-64504251]{-webkit-backdrop-filter:none;backdrop-filter:none;background-color:transparent}}.toc .toc-wrapper button[data-v-64504251]{align-items:center;display:flex;height:100%;padding:var(--space-4);width:100%}@media (min-width:640px){.toc .toc-wrapper button[data-v-64504251]{padding-left:var(--space-6);padding-right:var(--space-6)}}@media (min-width:1024px){.toc .toc-wrapper button[data-v-64504251]{display:none}}.toc .toc-wrapper button .title[data-v-64504251]{font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-sm-lineHeight);margin-right:var(--space-1)}.toc .toc-wrapper button .icon[data-v-64504251]{height:var(--space-4);transition:transform .1s;width:var(--space-4)}.toc .toc-wrapper button .icon.rotate[data-v-64504251]{transform:rotate(90deg)}.toc .toc-wrapper .docs-toc-wrapper[data-v-64504251]{display:none;margin-bottom:var(--space-4)}.toc .toc-wrapper .docs-toc-wrapper.opened[data-v-64504251]{display:block;max-height:50vh;overflow:auto;padding-left:var(--space-4);padding-right:var(--space-4)}@media (min-width:640px){.toc .toc-wrapper .docs-toc-wrapper.opened[data-v-64504251]{padding-left:var(--space-6);padding-right:var(--space-6)}}@media (min-width:1024px){.toc .toc-wrapper .docs-toc-wrapper.opened[data-v-64504251]{max-height:none;padding-left:0;padding-right:0}.toc .toc-wrapper .docs-toc-wrapper[data-v-64504251]{display:block;margin-top:0}}"; - -const DocsPageLayoutStyles_1c5b6bba = [DocsPageLayout_vue_vue_type_style_index_0_scoped_64504251_transformed_true_lang]; - -export { DocsPageLayoutStyles_1c5b6bba as default }; -//# sourceMappingURL=DocsPageLayout-styles.1c5b6bba.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map deleted file mode 100644 index 07352425..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsPageLayout-styles.1c5b6bba.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageLayout-styles-1.mjs-97e31d67.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPageLayout-styles.1c5b6bba.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,wiJAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs deleted file mode 100644 index 5899b623..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs +++ /dev/null @@ -1,114 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { c as useContent, e as useContentHelpers } from './useDocus-928368c4.mjs'; -import { useSSRContext, defineComponent, unref, mergeProps, withCtx, createVNode, toDisplayString } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; -import { upperFirst } from 'scule'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsPrevNext", - __ssrInlineRender: true, - setup(__props) { - const { prev, next, navigation } = useContent(); - const { navDirFromPath } = useContentHelpers(); - const directory = (link) => { - const nav = navDirFromPath(link._path, navigation.value || []); - if (nav && nav[0]) { - return nav[0]._path; - } else { - const dirs = link.split("/"); - const directory2 = dirs.length > 1 ? dirs[dirs.length - 2] : ""; - return directory2.split("-").map(upperFirst).join(" "); - } - }; - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - if (unref(prev) || unref(next)) { - _push(``); - if (unref(prev)) { - _push(ssrRenderComponent(_component_NuxtLink, { - to: unref(prev)._path, - class: "prev" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(ssrRenderComponent(_component_Icon, { - name: "heroicons-outline:arrow-sm-left", - class: "icon" - }, null, _parent2, _scopeId)); - _push2(`
    ${ssrInterpolate(directory(unref(prev)._path))}${ssrInterpolate(unref(prev).title)}
    `); - } else { - return [ - createVNode(_component_Icon, { - name: "heroicons-outline:arrow-sm-left", - class: "icon" - }), - createVNode("div", { class: "wrapper" }, [ - createVNode("span", { class: "directory" }, toDisplayString(directory(unref(prev)._path)), 1), - createVNode("span", { class: "title" }, toDisplayString(unref(prev).title), 1) - ]) - ]; - } - }), - _: 1 - }, _parent)); - } else { - _push(``); - } - if (unref(next)) { - _push(ssrRenderComponent(_component_NuxtLink, { - to: unref(next)._path, - class: "next" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`
    ${ssrInterpolate(directory(unref(next)._path))}${ssrInterpolate(unref(next).title)}
    `); - _push2(ssrRenderComponent(_component_Icon, { - name: "heroicons-outline:arrow-sm-right", - class: "icon" - }, null, _parent2, _scopeId)); - } else { - return [ - createVNode("div", { class: "wrapper" }, [ - createVNode("span", { class: "directory" }, toDisplayString(directory(unref(next)._path)), 1), - createVNode("span", { class: "title" }, toDisplayString(unref(next).title), 1) - ]), - createVNode(_component_Icon, { - name: "heroicons-outline:arrow-sm-right", - class: "icon" - }) - ]; - } - }), - _: 1 - }, _parent)); - } else { - _push(``); - } - _push(``); - } else { - _push(``); - } - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c087c434"]]); - -export { __nuxt_component_5 as default }; -//# sourceMappingURL=DocsPrevNext-7858c09b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map deleted file mode 100644 index eb8abc32..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-7858c09b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsPrevNext-7858c09b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPrevNext-7858c09b.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs deleted file mode 100644 index 854ffa1f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocsPrevNext_vue_vue_type_style_index_0_scoped_c087c434_transformed_true_lang = ".docs-prev-next[data-v-c087c434]{display:flex;flex-direction:column;gap:var(--space-3);justify-content:space-between}@media (min-width:640px){.docs-prev-next[data-v-c087c434]{align-items:center;flex-direction:row}}.docs-prev-next a[data-v-c087c434]{border:1px solid var(--elements-border-primary-static);border-radius:var(--radii-md);min-width:0;padding:var(--space-3);position:relative}.docs-prev-next a[data-v-c087c434]:hover{background-color:var(--color-gray-50);border-color:var(--color-gray-50);color:var(--color-primary-500)}:root.dark .docs-prev-next a[data-v-c087c434]:hover{background-color:var(--color-gray-900);border-color:var(--color-gray-900)}.docs-prev-next a.prev[data-v-c087c434]{display:flex;gap:var(--space-3);text-align:left}.docs-prev-next a.prev .directory[data-v-c087c434]{color:var(--color-gray-500);display:block;font-size:var(--text-xs-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-xs-lineHeight);margin-bottom:var(--space-1);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:640px){.docs-prev-next a.prev .wrapper[data-v-c087c434]{align-items:flex-end}}.docs-prev-next a.next[data-v-c087c434]{display:flex;gap:var(--space-3);justify-content:flex-end;text-align:right}.docs-prev-next a.next .directory[data-v-c087c434]{color:var(--color-gray-500);display:block;font-size:var(--text-xs-fontSize);font-weight:var(--fontWeight-medium);line-height:var(--text-xs-lineHeight);margin-bottom:var(--space-1);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}@media (min-width:640px){.docs-prev-next a.next .wrapper[data-v-c087c434]{align-items:flex-start}}.docs-prev-next a .wrapper[data-v-c087c434]{display:flex;flex-direction:column}.docs-prev-next a .icon[data-v-c087c434]{align-self:flex-end;flex-shrink:0;height:var(--space-5);width:var(--space-5)}.docs-prev-next a .title[data-v-c087c434]{flex:1 1 0%;font-weight:var(--fontWeight-medium);line-height:var(--lead-5);overflow:hidden;text-overflow:ellipsis;white-space:nowrap}"; - -const DocsPrevNextStyles_23bc8fd8 = [DocsPrevNext_vue_vue_type_style_index_0_scoped_c087c434_transformed_true_lang]; - -export { DocsPrevNextStyles_23bc8fd8 as default }; -//# sourceMappingURL=DocsPrevNext-styles.23bc8fd8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map deleted file mode 100644 index 9f10daff..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsPrevNext-styles.23bc8fd8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPrevNext-styles-1.mjs-39de565c.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsPrevNext-styles.23bc8fd8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,6EAAgF,GAAA,q9DAAA;;ACCtF,oCAAe,CAACA,6EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs b/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs deleted file mode 100644 index 3bb2e3bc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs +++ /dev/null @@ -1,48 +0,0 @@ -import __nuxt_component_0 from './DocsTocLinks-95d48629.mjs'; -import { c as useContent } from './useDocus-928368c4.mjs'; -import { useSSRContext, defineComponent, mergeProps, unref } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsToc", - __ssrInlineRender: true, - emits: ["move"], - setup(__props, { emit }) { - const { toc } = useContent(); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b; - const _component_DocsTocLinks = __nuxt_component_0; - _push(``); - if ((_b = (_a = unref(toc)) == null ? void 0 : _a.links) == null ? void 0 : _b.length) { - _push(`
    Table of Contents
    `); - _push(ssrRenderComponent(_component_DocsTocLinks, { - links: unref(toc).links, - onMove: ($event) => emit("move") - }, null, _parent)); - _push(``); - } else { - _push(``); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_7 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d4e4405c"]]); - -export { __nuxt_component_7 as default }; -//# sourceMappingURL=DocsToc-e4f6bd56.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map deleted file mode 100644 index 940bce29..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsToc-e4f6bd56.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsToc-e4f6bd56.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsToc-e4f6bd56.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;AAcA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,SAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAA,EAAO,CAAC,MAAM,CAAA;AAAA,EACd,KAAM,CAAA,OAAA,EAAS,EAAE,IAAA,EAAQ,EAAA;AACvB,IAAM,MAAA,EAAE,GAAI,EAAA,GAAI,UAAW,EAAA,CAAA;AAC3B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,IAAI,EAAI,EAAA,EAAA,CAAA;AACR,MAAA,MAAM,uBAA0B,GAAA,kBAAA,CAAA;AAChC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,UAAW,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACzF,MAAA,IAAA,CAAK,EAAM,GAAA,CAAA,EAAA,GAAK,KAAM,CAAA,GAAG,CAAM,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAU,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,MAAQ,EAAA;AACrF,QAAA,KAAA,CAAM,CAA0G,wGAAA,CAAA,CAAA,CAAA;AAChH,QAAA,KAAA,CAAM,mBAAmB,uBAAyB,EAAA;AAAA,UAChD,KAAA,EAAO,KAAM,CAAA,GAAG,CAAE,CAAA,KAAA;AAAA,UAClB,MAAQ,EAAA,CAAC,MAAW,KAAA,IAAA,CAAK,MAAM,CAAA;AAAA,SACjC,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,QAAA,KAAA,CAAM,CAAU,QAAA,CAAA,CAAA,CAAA;AAAA,OACX,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,6DAA6D,CAAA,CAAA;AAC1I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs b/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs deleted file mode 100644 index b45a5eae..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocsToc_vue_vue_type_style_index_0_scoped_d4e4405c_transformed_true_lang = ".docs-toc[data-v-d4e4405c]{display:flex;flex-direction:column;gap:8px}.docs-toc .docs-toc-title[data-v-d4e4405c]{display:none}@media (min-width:1024px){.docs-toc .docs-toc-title[data-v-d4e4405c]{display:block;font-size:var(--text-sm-fontSize);font-weight:var(--fontWeight-semibold);line-height:var(--text-sm-lineHeight);overflow:hidden}}"; - -const DocsTocStyles_dfd8d9f4 = [DocsToc_vue_vue_type_style_index_0_scoped_d4e4405c_transformed_true_lang]; - -export { DocsTocStyles_dfd8d9f4 as default }; -//# sourceMappingURL=DocsToc-styles.dfd8d9f4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map deleted file mode 100644 index 11152191..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsToc-styles.dfd8d9f4.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsToc-styles.dfd8d9f4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsToc-styles-1.mjs-335ec0f3.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsToc-styles.dfd8d9f4.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,mVAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs deleted file mode 100644 index 4451e731..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { useSSRContext, defineComponent, mergeProps, unref, ref, watch } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import { g as useRouter } from './app.config-832f5f68.mjs'; -import { ssrRenderAttrs, ssrRenderList, ssrRenderClass, ssrRenderAttr, ssrInterpolate, ssrRenderComponent } from 'vue/server-renderer'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; - -const useScrollspy = () => { - const observer = ref(); - const visibleHeadings = ref([]); - const activeHeadings = ref([]); - const updateHeadings = (headings) => headings.forEach((heading) => { - observer.value.observe(heading); - }); - watch(visibleHeadings, (val, oldVal) => { - if (val.length === 0) { - activeHeadings.value = oldVal; - } else { - activeHeadings.value = val; - } - }, { deep: true }); - return { - visibleHeadings, - activeHeadings, - updateHeadings - }; -}; -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "DocsTocLinks", - __ssrInlineRender: true, - props: { - links: { - type: Array, - default: () => [] - } - }, - emits: ["move"], - setup(__props, { emit }) { - useRouter(); - const { activeHeadings, updateHeadings } = useScrollspy(); - return (_ctx, _push, _parent, _attrs) => { - const _component_DocsTocLinks = __nuxt_component_0; - _push(``); - ssrRenderList(__props.links, (link) => { - _push(`
  • ${ssrInterpolate(link.text)}`); - if (link.children) { - _push(ssrRenderComponent(_component_DocsTocLinks, { - links: link.children - }, null, _parent)); - } else { - _push(``); - } - _push(`
  • `); - }); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-8d68a659"]]); - -export { __nuxt_component_0 as default }; -//# sourceMappingURL=DocsTocLinks-95d48629.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map deleted file mode 100644 index 938bac71..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-95d48629.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsTocLinks-95d48629.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsTocLinks-95d48629.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs deleted file mode 100644 index 3fae4ff2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocsTocLinks_vue_vue_type_style_index_0_scoped_8d68a659_transformed_true_lang = ".docs-toc-links .depth-3[data-v-8d68a659]{padding-left:var(--space-3)}.docs-toc-links .depth-4[data-v-8d68a659]{padding-left:var(--space-6)}.docs-toc-links a[data-v-8d68a659]{color:var(--color-gray-500);display:block;font-size:var(--text-sm-fontSize);line-height:var(--text-sm-lineHeight);overflow:hidden;padding:var(--space-1) 0;text-overflow:ellipsis;white-space:nowrap}@media (min-width:1024px){.docs-toc-links a[data-v-8d68a659]{padding-right:var(--space-3)}}.docs-toc-links a[data-v-8d68a659]:not(.active):hover{color:var(--color-gray-900)}:root.dark .docs-toc-links a[data-v-8d68a659]:not(.active):hover{color:var(--color-gray-400)}.docs-toc-links a.active[data-v-8d68a659]{color:var(--color-primary-500)}"; - -const DocsTocLinksStyles_79413e66 = [DocsTocLinks_vue_vue_type_style_index_0_scoped_8d68a659_transformed_true_lang]; - -export { DocsTocLinksStyles_79413e66 as default }; -//# sourceMappingURL=DocsTocLinks-styles.79413e66.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map deleted file mode 100644 index 55055191..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocsTocLinks-styles.79413e66.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocsTocLinks-styles.79413e66.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsTocLinks-styles-1.mjs-fa1d1a93.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocsTocLinks-styles.79413e66.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,6EAAgF,GAAA,ysBAAA;;ACCtF,oCAAe,CAACA,6EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs deleted file mode 100644 index f7d93d99..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs +++ /dev/null @@ -1,26 +0,0 @@ -import { defineComponent, h, useSSRContext } from 'vue'; - -const _sfc_main = defineComponent({ - name: "DocumentDrivenEmpty", - props: { - value: { - type: Object, - required: true - } - }, - render({ value }) { - return h("div", void 0, [ - h("p", "Document is empty"), - h("p", `Add content to it by opening ${value._source}/${value._file} file.`) - ]); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=DocumentDrivenEmpty-8338ce9f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map deleted file mode 100644 index 2f9b0e1a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenEmpty-8338ce9f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocumentDrivenEmpty-8338ce9f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenEmpty-8338ce9f.js"],"sourcesContent":null,"names":[],"mappings":";;AACA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,IAAM,EAAA,qBAAA;AAAA,EACN,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAA,CAAO,EAAE,KAAA,EAAS,EAAA;AAChB,IAAO,OAAA,CAAA,CAAE,OAAO,KAAQ,CAAA,EAAA;AAAA,MACtB,CAAA,CAAE,KAAK,mBAAmB,CAAA;AAAA,MAC1B,EAAE,GAAK,EAAA,CAAA,6BAAA,EAAgC,KAAM,CAAA,OAAA,CAAA,CAAA,EAAW,MAAM,KAAa,CAAA,MAAA,CAAA,CAAA;AAAA,KAC5E,CAAA,CAAA;AAAA,GACH;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4EAA4E,CAAA,CAAA;AACzJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs deleted file mode 100644 index 76741bb0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs +++ /dev/null @@ -1,50 +0,0 @@ -import __nuxt_component_1 from './ButtonLink-df4791d5.mjs'; -import { useSSRContext, mergeProps, withCtx, createTextVNode } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import './DocsAsideTree-136bd08b.mjs'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import './ContentSlot-deb25102.mjs'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - const _component_ButtonLink = __nuxt_component_1; - _push(`

    404

    Not Found

    This is not the page you're looking for.

    `); - _push(ssrRenderComponent(_component_ButtonLink, { - href: "/", - size: "large", - variant: "primary" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(` Go back home `); - } else { - return [ - createTextVNode(" Go back home ") - ]; - } - }), - _: 1 - }, _parent)); - _push(`
    `); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-ab67d04f"]]); - -export { __nuxt_component_3 as default }; -//# sourceMappingURL=DocumentDrivenNotFound-4b73ea08.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map deleted file mode 100644 index 1086baef..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-4b73ea08.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocumentDrivenNotFound-4b73ea08.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenNotFound-4b73ea08.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;AAmBA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,qBAAwB,GAAA,kBAAA,CAAA;AAC9B,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,qCAAsC,EAAA,EAAG,MAAM,CAAC,CAAgT,CAAA,6SAAA,CAAA,CAAA,CAAA;AAChZ,EAAA,KAAA,CAAM,mBAAmB,qBAAuB,EAAA;AAAA,IAC9C,IAAM,EAAA,GAAA;AAAA,IACN,IAAM,EAAA,OAAA;AAAA,IACN,OAAS,EAAA,SAAA;AAAA,GACR,EAAA;AAAA,IACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,MAAA,IAAI,MAAQ,EAAA;AACV,QAAA,MAAA,CAAO,CAAgB,cAAA,CAAA,CAAA,CAAA;AAAA,OAClB,MAAA;AACL,QAAO,OAAA;AAAA,UACL,gBAAgB,gBAAgB,CAAA;AAAA,SAClC,CAAA;AAAA,OACF;AAAA,KACD,CAAA;AAAA,IACD,CAAG,EAAA,CAAA;AAAA,GACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,EAAA,KAAA,CAAM,CAA2B,yBAAA,CAAA,CAAA,CAAA;AACnC,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,2EAA2E,CAAA,CAAA;AACxJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs deleted file mode 100644 index fe3de70c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const DocumentDrivenNotFound_vue_vue_type_style_index_0_scoped_ab67d04f_transformed_true_lang = ".document-driven-not-found[data-v-ab67d04f]{display:flex;flex:1;padding:var(--space-16) var(--space-4)}@media (min-width:640px){.document-driven-not-found[data-v-ab67d04f]{padding:var(--space-24) var(--space-6)}}@media (min-width:768px){.document-driven-not-found[data-v-ab67d04f]{display:grid;place-items:center}}@media (min-width:1024px){.document-driven-not-found[data-v-ab67d04f]{padding-left:var(--space-8);padding-right:var(--space-8)}}.document-driven-not-found main[data-v-ab67d04f]{margin-left:auto;margin-right:auto;max-width:var(--size-full)}@media (min-width:640px){.document-driven-not-found main[data-v-ab67d04f]{display:flex;gap:var(--space-6)}}.document-driven-not-found main>p[data-v-ab67d04f]{color:var(--color-primary-500);font-size:var(--fontSize-4xl);font-weight:var(--fontWeight-bold);line-height:var(--lead-tight)}@media (min-width:640px){.document-driven-not-found main>p[data-v-ab67d04f]{font-size:var(--fontSize-5xl)}}.document-driven-not-found main .content .text-section[data-v-ab67d04f]{border:none}:root.dark .document-driven-not-found main .content .text-section[data-v-ab67d04f]{border-color:var(--color-gray-800)}@media (min-width:640px){.document-driven-not-found main .content .text-section[data-v-ab67d04f]{border-color:var(--color-gray-200);border-left-style:solid;border-left-width:1px;padding-left:var(--space-6)}}.document-driven-not-found main .content .text-section h1[data-v-ab67d04f]{color:var(--color-gray-900);font-size:var(--fontSize-4xl);font-weight:var(--fontWeight-extrabold);letter-spacing:var(--letterSpacing-tight)}:root.dark .document-driven-not-found main .content .text-section h1[data-v-ab67d04f]{color:var(--color-gray-200)}@media (min-width:640px){.document-driven-not-found main .content .text-section h1[data-v-ab67d04f]{font-size:var(--fontSize-5xl)}}.document-driven-not-found main .content .text-section p[data-v-ab67d04f]{color:var(--color-gray-700);font-size:var(--fontSize-xl);margin-top:var(--space-1)}:root.dark .document-driven-not-found main .content .text-section p[data-v-ab67d04f]{color:var(--color-gray-400)}.document-driven-not-found main .content .button-section[data-v-ab67d04f]{flex:none;gap:var(--space-3);margin-top:var(--space-10)}"; - -const DocumentDrivenNotFoundStyles_a8b03708 = [DocumentDrivenNotFound_vue_vue_type_style_index_0_scoped_ab67d04f_transformed_true_lang]; - -export { DocumentDrivenNotFoundStyles_a8b03708 as default }; -//# sourceMappingURL=DocumentDrivenNotFound-styles.a8b03708.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map b/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map deleted file mode 100644 index 9df1862b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"DocumentDrivenNotFound-styles.a8b03708.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenNotFound-styles-1.mjs-ed22cab7.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uFAA0F,GAAA,uqEAAA;;ACChG,8CAAe,CAACA,uFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs b/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs deleted file mode 100644 index abd20714..00000000 --- a/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs +++ /dev/null @@ -1,174 +0,0 @@ -import { defineComponent, computed, useSlots, useSSRContext } from 'vue'; -import { joinURL } from 'ufo'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; - -const _sfc_main = defineComponent({ - props: { - /** - * Repository owner. - */ - owner: { - type: String, - default: () => { - var _a, _b, _c; - return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.owner; - }, - required: false - }, - /** - * Repository name. - */ - repo: { - type: String, - default: () => { - var _a, _b, _c; - return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.repo; - }, - required: false - }, - /** - * The branch to use for the edit link. - */ - branch: { - type: String, - default: () => { - var _a, _b, _c; - return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.branch; - }, - required: false - }, - /** - * A base directory to append to the source path. - * - * Won't be used if `page` is set. - */ - dir: { - type: String, - default: () => { - var _a, _b, _c; - return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.dir; - }, - required: false - }, - /** - * Source file path. - * - * Won't be used if `page` is set. - */ - source: { - type: String, - required: false, - default: void 0 - }, - /** - * Use page from @nuxt/content. - */ - page: { - type: Object, - required: false, - default: void 0 - }, - /** - * Content directory (to be used with `page`) - */ - contentDir: { - type: String, - required: false, - default: () => { - var _a, _b, _c; - return ((_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.dir) || "content"; - } - }, - /** - * Send to an edit page or not. - */ - edit: { - type: Boolean, - required: false, - default: () => { - var _a, _b, _c; - return (_c = (_b = (_a = useAppConfig()) == null ? void 0 : _a.docus) == null ? void 0 : _b.github) == null ? void 0 : _c.edit; - } - } - }, - setup(props) { - if (!props.owner || !props.repo || !props.branch) { - throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`."); - } - const source = computed(() => { - var _a, _b; - let { repo, owner, branch, contentDir } = props; - let prefix = ""; - if ((_b = (_a = useAppConfig()) == null ? void 0 : _a.public) == null ? void 0 : _b.content) { - let source2; - const { sources } = useAppConfig().public.content; - for (const key in sources || []) { - if (props.page._id.startsWith(key)) { - source2 = sources[key]; - break; - } - } - if ((source2 == null ? void 0 : source2.driver) === "github") { - repo = source2.repo || props.repo || ""; - owner = source2.owner || props.owner || ""; - branch = source2.branch || props.branch || "main"; - contentDir = source2.dir || props.contentDir || ""; - prefix = source2.prefix || ""; - } - } - return { repo, owner, branch, contentDir, prefix }; - }); - const base = computed(() => joinURL("https://github.com", `${source.value.owner}/${source.value.repo}`)); - const path = computed(() => { - var _a; - const dirParts = []; - if ((_a = props == null ? void 0 : props.page) == null ? void 0 : _a._path) { - if (source.value.contentDir) { - dirParts.push(source.value.contentDir); - } - dirParts.push(props.page._file.substring(source.value.prefix.length)); - return dirParts; - } - if (props.dir) { - dirParts.push(props.dir); - } - if (props.source) { - dirParts.push(props.source); - } - return dirParts; - }); - const url = computed(() => { - var _a; - const parts = [base.value]; - if (props.edit) { - parts.push("edit"); - } else { - parts.push("tree"); - } - parts.push(((_a = source == null ? void 0 : source.value) == null ? void 0 : _a.branch) || "", ...path.value); - return parts.filter(Boolean).join("/"); - }); - return { - url - }; - }, - render(ctx) { - var _a; - const { url } = ctx; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { url }); - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=EditOnLink-e55cd3a0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map b/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map deleted file mode 100644 index 1e789f86..00000000 --- a/docs/.output/server/chunks/app/_nuxt/EditOnLink-e55cd3a0.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"EditOnLink-e55cd3a0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/EditOnLink-e55cd3a0.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs b/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs deleted file mode 100644 index 6d148c81..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs +++ /dev/null @@ -1,75 +0,0 @@ -import { useSSRContext, defineComponent, computed, ref, mergeProps, unref } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc, u as utils, b as usePinceauRuntime } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Ellipsis", - __ssrInlineRender: true, - props: { - width: { - type: String, - default: "10rem" - }, - height: { - type: String, - default: "10rem" - }, - zIndex: { - type: String, - default: "10" - }, - top: { - type: String, - default: "0" - }, - left: { - type: String, - default: "auto" - }, - right: { - type: String, - default: "auto" - }, - blur: { - type: String, - default: "50px" - }, - colors: { - type: Array, - default: () => ["rgba(0, 71, 225, 0.22)", "rgba(26, 214, 255, 0.22)", "rgba(0, 220, 130, 0.22)"] - } - }, - setup(__props) { - const __$pProps = __props; - const _cCN_top = computed(() => ((props = __$pProps, utils$1 = utils) => props.top)()); - const _eih_left = computed(() => ((props = __$pProps, utils$1 = utils) => props.left)()); - const _hvR_right = computed(() => ((props = __$pProps, utils$1 = utils) => props.right)()); - const _29W_zIndex = computed(() => ((props = __$pProps, utils$1 = utils) => props.zIndex)()); - const _X8m_maxWidth = computed(() => ((props = __$pProps, utils$1 = utils) => props.width)()); - const _UBM_height = computed(() => ((props = __$pProps, utils$1 = utils) => props.height)()); - const _gOh_filter = computed(() => ((props = __$pProps, utils$1 = utils) => `blur(${props.blur})`)()); - const _60h_background = computed(() => ((props = __$pProps, utils$1 = utils) => { - var _a, _b, _c; - return `linear-gradient(97.62deg, ${(_a = props == null ? void 0 : props.colors) == null ? void 0 : _a[0]} 2.27%, ${(_b = props == null ? void 0 : props.colors) == null ? void 0 : _b[1]} 50.88%, ${(_c = props == null ? void 0 : props.colors) == null ? void 0 : _c[2]} 98.48%)`; - })()); - const { $pinceau } = usePinceauRuntime(computed(() => __$pProps), void 0, ref({ _cCN_top, _eih_left, _hvR_right, _29W_zIndex, _X8m_maxWidth, _UBM_height, _gOh_filter, _60h_background })); - return (_ctx, _push, _parent, _attrs) => { - _push(`
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const Ellipsis = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-861d2ab7"]]); - -export { Ellipsis as default }; -//# sourceMappingURL=Ellipsis-b69b027e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map b/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map deleted file mode 100644 index aa4f0c89..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Ellipsis-b69b027e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Ellipsis-b69b027e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Ellipsis-b69b027e.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,OAAA;AAAA,KACX;AAAA,IACA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,OAAA;AAAA,KACX;AAAA,IACA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,IAAA;AAAA,KACX;AAAA,IACA,GAAK,EAAA;AAAA,MACH,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,GAAA;AAAA,KACX;AAAA,IACA,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,IACA,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,IACA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,KAAA;AAAA,MACN,OAAS,EAAA,MAAM,CAAC,wBAAA,EAA0B,4BAA4B,yBAAyB,CAAA;AAAA,KACjG;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,SAAY,GAAA,OAAA,CAAA;AAClB,IAAM,MAAA,QAAA,GAAW,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,WAAW,OAAU,GAAA,KAAA,KAAU,KAAM,CAAA,GAAA,GAAM,CAAA,CAAA;AACrF,IAAM,MAAA,SAAA,GAAY,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,WAAW,OAAU,GAAA,KAAA,KAAU,KAAM,CAAA,IAAA,GAAO,CAAA,CAAA;AACvF,IAAM,MAAA,UAAA,GAAa,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,WAAW,OAAU,GAAA,KAAA,KAAU,KAAM,CAAA,KAAA,GAAQ,CAAA,CAAA;AACzF,IAAM,MAAA,WAAA,GAAc,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,WAAW,OAAU,GAAA,KAAA,KAAU,KAAM,CAAA,MAAA,GAAS,CAAA,CAAA;AAC3F,IAAM,MAAA,aAAA,GAAgB,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,WAAW,OAAU,GAAA,KAAA,KAAU,KAAM,CAAA,KAAA,GAAQ,CAAA,CAAA;AAC5F,IAAM,MAAA,WAAA,GAAc,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,WAAW,OAAU,GAAA,KAAA,KAAU,KAAM,CAAA,MAAA,GAAS,CAAA,CAAA;AAC3F,IAAM,MAAA,WAAA,GAAc,QAAS,CAAA,MAAA,CAAO,CAAC,KAAA,GAAQ,SAAW,EAAA,OAAA,GAAU,KAAU,KAAA,CAAA,KAAA,EAAQ,KAAM,CAAA,IAAA,CAAA,CAAA,CAAA,GAAU,CAAA,CAAA;AACpG,IAAA,MAAM,kBAAkB,QAAS,CAAA,MAAA,CAAO,CAAC,KAAQ,GAAA,SAAA,EAAW,UAAU,KAAU,KAAA;AAC9E,MAAA,IAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AACZ,MAAA,OAAO,CAA8B,0BAAA,EAAA,CAAA,EAAA,GAAK,KAAS,IAAA,IAAA,GAAO,SAAS,KAAM,CAAA,MAAA,KAAW,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,CAAC,CAAa,CAAA,QAAA,EAAA,CAAA,EAAA,GAAK,SAAS,IAAO,GAAA,KAAA,CAAA,GAAS,KAAM,CAAA,MAAA,KAAW,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,CAAC,cAAc,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,KAAM,CAAA,MAAA,KAAW,IAAO,GAAA,KAAA,CAAA,GAAS,GAAG,CAAC,CAAA,CAAA,QAAA,CAAA,CAAA;AAAA,QACvQ,CAAA,CAAA;AACJ,IAAM,MAAA,EAAE,UAAa,GAAA,iBAAA,CAAkB,SAAS,MAAM,SAAS,GAAG,KAAQ,CAAA,EAAA,GAAA,CAAI,EAAE,QAAU,EAAA,SAAA,EAAW,YAAY,WAAa,EAAA,aAAA,EAAe,aAAa,WAAa,EAAA,eAAA,EAAiB,CAAC,CAAA,CAAA;AACzL,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,QACrC,OAAO,CAAC,UAAA,EAAY,CAAC,KAAM,CAAA,QAAQ,CAAC,CAAC,CAAA;AAAA,OACvC,EAAG,MAAM,CAAC,CAA2E,CAAA,wEAAA,CAAA,CAAA,CAAA;AAAA,KACvF,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs b/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs deleted file mode 100644 index 411c60af..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Ellipsis_vue_vue_type_style_index_0_scoped_861d2ab7_transformed_true_lang = ".ellipsis[data-v-861d2ab7]{filter:var(---g-oh-filter);height:var(---ubm-height);left:var(---eih-left);max-width:var(---x8m-max-width);pointer-events:none;position:absolute;right:var(---hv-r-right);top:var(---c-cn-top);width:-webkit-fill-available;z-index:var(---29w-z-index)}.ellipsis .ellipsis-item[data-v-861d2ab7]{background:var(---60h-background);height:100%;width:100%}"; - -const EllipsisStyles_3bef1bdd = [Ellipsis_vue_vue_type_style_index_0_scoped_861d2ab7_transformed_true_lang]; - -export { EllipsisStyles_3bef1bdd as default }; -//# sourceMappingURL=Ellipsis-styles.3bef1bdd.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map b/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map deleted file mode 100644 index 82e44f1d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Ellipsis-styles.3bef1bdd.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Ellipsis-styles.3bef1bdd.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Ellipsis-styles-1.mjs-f627832b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Ellipsis-styles.3bef1bdd.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,wXAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs deleted file mode 100644 index a7a738b4..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleCard.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ExampleCard = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { ExampleCard as default }; -//# sourceMappingURL=ExampleCard-95e9f743.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map deleted file mode 100644 index 527a4d74..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleCard-95e9f743.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ExampleCard-95e9f743.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleCard-95e9f743.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,gEAAiE,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/H,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAChB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4CAA4C,CAAA,CAAA;AACzH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,WAAA,+BAA0C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs deleted file mode 100644 index b085e1c7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs +++ /dev/null @@ -1,25 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(`

    `); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(`

    `); - ssrRenderSlot(_ctx.$slots, "description", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleHero.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ExampleHero = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { ExampleHero as default }; -//# sourceMappingURL=ExampleHero-8fe98ee8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map deleted file mode 100644 index 608545a3..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleHero-8fe98ee8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ExampleHero-8fe98ee8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleHero-8fe98ee8.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,QAAA,EAAW,cAAe,CAAA,MAAM,CAAyB,CAAA,sBAAA,CAAA,CAAA,CAAA;AAC/D,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACb,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,aAAA,EAAe,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAClE,EAAA,KAAA,CAAM,CAAY,UAAA,CAAA,CAAA,CAAA;AACpB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4CAA4C,CAAA,CAAA;AACzH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,WAAA,+BAA0C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs deleted file mode 100644 index 92c6bfbd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs +++ /dev/null @@ -1,37 +0,0 @@ -import { mergeProps, createVNode, resolveDynamicComponent, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrRenderVNode, ssrInterpolate } from 'vue/server-renderer'; - -const _sfc_main = { - __name: "ExampleIconCard", - __ssrInlineRender: true, - props: { - title: { - type: String, - default: "Default title" - }, - description: { - type: String, - default: "Default description" - }, - icon: { - type: String, - default: "IconMarkdown" - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - _push(``); - ssrRenderVNode(_push, createVNode(resolveDynamicComponent(__props.icon), { class: "w-20 h-20" }, null), _parent); - _push(`

    ${ssrInterpolate(__props.title)}

    ${ssrInterpolate(__props.description)}

    `); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleIconCard.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ExampleIconCard-a87d1258.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map deleted file mode 100644 index 9728be8a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleIconCard-a87d1258.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ExampleIconCard-a87d1258.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleIconCard-a87d1258.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,iBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,eAAA;AAAA,KACX;AAAA,IACA,WAAa,EAAA;AAAA,MACX,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,qBAAA;AAAA,KACX;AAAA,IACA,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,cAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,gEAAiE,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AAC/H,MAAA,cAAA,CAAe,KAAO,EAAA,WAAA,CAAY,uBAAwB,CAAA,OAAA,CAAQ,IAAI,CAAA,EAAG,EAAE,KAAA,EAAO,WAAY,EAAA,EAAG,IAAI,CAAA,EAAG,OAAO,CAAA,CAAA;AAC/G,MAAM,KAAA,CAAA,CAAA,wCAAA,EAA2C,eAAe,OAAQ,CAAA,KAAK,YAAY,cAAe,CAAA,OAAA,CAAQ,WAAW,CAAa,CAAA,UAAA,CAAA,CAAA,CAAA;AAAA,KAC1I,CAAA;AAAA,GACF;AACF,EAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,gDAAgD,CAAA,CAAA;AAC7H,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs deleted file mode 100644 index 17cada19..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs +++ /dev/null @@ -1,33 +0,0 @@ -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = { - props: { - options: { - type: [Array, String], - default: () => [] - } - }, - data() { - return { - value: null - }; - } -}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $options) { - _push(`Not working on content v2 docs!`); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleMultiselect.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ExampleMultiselect = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { ExampleMultiselect as default }; -//# sourceMappingURL=ExampleMultiselect-915c74fe.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map deleted file mode 100644 index a01d18d0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleMultiselect-915c74fe.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ExampleMultiselect-915c74fe.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleMultiselect-915c74fe.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,SAAY,GAAA;AAAA,EAChB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAA,EAAM,CAAC,KAAA,EAAO,MAAM,CAAA;AAAA,MACpB,OAAA,EAAS,MAAM,EAAC;AAAA,KAClB;AAAA,GACF;AAAA,EACA,IAAO,GAAA;AACL,IAAO,OAAA;AAAA,MACL,KAAO,EAAA,IAAA;AAAA,KACT,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,SAAS,cAAA,CAAe,MAAM,KAAO,EAAA,OAAA,EAAS,QAAQ,MAAQ,EAAA,MAAA,EAAQ,OAAO,QAAU,EAAA;AACrF,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,cAAe,CAAA,MAAM,CAAyC,CAAA,sCAAA,CAAA,CAAA,CAAA;AAC7E,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mDAAmD,CAAA,CAAA;AAChI,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs b/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs deleted file mode 100644 index c81d32d0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs +++ /dev/null @@ -1,37 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - const _component_ContentSlot = ContentSlot; - _push(``); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.default, - unwrap: "p" - }, null, _parent)); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Example/ExampleTheTitle.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ExampleTheTitle = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { ExampleTheTitle as default }; -//# sourceMappingURL=ExampleTheTitle-9f1c4a8d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map deleted file mode 100644 index 3e8a9543..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ExampleTheTitle-9f1c4a8d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ExampleTheTitle-9f1c4a8d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ExampleTheTitle-9f1c4a8d.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,eAAe,UAAW,CAAA,EAAE,OAAO,UAAW,EAAA,EAAG,MAAM,CAAC,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AACxE,EAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,IAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,IACjB,MAAQ,EAAA,GAAA;AAAA,GACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,gDAAgD,CAAA,CAAA;AAC7H,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,eAAA,+BAA8C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs b/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs deleted file mode 100644 index d18f9e86..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs +++ /dev/null @@ -1,55 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubCommits = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchCommits } = useGithub(); - const { data: commits, pending, refresh } = await useAsyncData(`github-commits-${hash(props.query)}`, () => fetchCommits(props.query)); - return { - commits, - pending, - refresh - }; - }, - render({ commits, pending, refresh }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { commits, pending, refresh }); - } -}); - -export { GithubCommits as default }; -//# sourceMappingURL=GithubCommits-b7b81c66.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map deleted file mode 100644 index 5efdcf4b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubCommits-b7b81c66.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubCommits-b7b81c66.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubCommits-b7b81c66.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,gBAAgB,eAAgB,CAAA;AAAA,EACpC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,YAAa,EAAA,GAAI,SAAU,EAAA,CAAA;AACnC,IAAA,MAAM,EAAE,IAAM,EAAA,OAAA,EAAS,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAkB,eAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,YAAa,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AACrI,IAAO,OAAA;AAAA,MACL,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAW,EAAA;AACpC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACtH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs b/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs deleted file mode 100644 index 0acbacae..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs +++ /dev/null @@ -1,55 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubContributors = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchContributors } = useGithub(); - const { data: contributors, refresh, pending } = await useAsyncData(`github-contributors-${hash(props.query)}`, () => fetchContributors(props.query)); - return { - contributors, - refresh, - pending - }; - }, - render({ contributors, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { contributors, refresh, pending }); - } -}); - -export { GithubContributors as default }; -//# sourceMappingURL=GithubContributors-1aa0f22f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map deleted file mode 100644 index 7b4fd916..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubContributors-1aa0f22f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubContributors-1aa0f22f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubContributors-1aa0f22f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,qBAAqB,eAAgB,CAAA;AAAA,EACzC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,iBAAkB,EAAA,GAAI,SAAU,EAAA,CAAA;AACxC,IAAA,MAAM,EAAE,IAAM,EAAA,YAAA,EAAc,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAuB,oBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,iBAAkB,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AACpJ,IAAO,OAAA;AAAA,MACL,YAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAW,EAAA;AACzC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GAC3H;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs b/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs deleted file mode 100644 index 6b8bdf16..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs +++ /dev/null @@ -1,61 +0,0 @@ -import { defineComponent, toRef, watch, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubFileContributors = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const source = toRef(props.query, "source"); - const { fetchFileContributors } = useGithub(); - watch(source, () => { - if (refresh) { - refresh(); - } - }); - const { data: contributors, refresh, pending } = await useAsyncData(`github-file-contributors-${hash(props.query)}`, () => fetchFileContributors(props.query)); - return { - contributors, - refresh, - pending - }; - }, - render({ contributors, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { contributors, refresh, pending }); - } -}); - -export { GithubFileContributors as default }; -//# sourceMappingURL=GithubFileContributors-285e4522.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map deleted file mode 100644 index dcdb6d00..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubFileContributors-285e4522.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubFileContributors-285e4522.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubFileContributors-285e4522.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,yBAAyB,eAAgB,CAAA;AAAA,EAC7C,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAA,MAAM,MAAS,GAAA,KAAA,CAAM,KAAM,CAAA,KAAA,EAAO,QAAQ,CAAA,CAAA;AAC1C,IAAM,MAAA,EAAE,qBAAsB,EAAA,GAAI,SAAU,EAAA,CAAA;AAC5C,IAAA,KAAA,CAAM,QAAQ,MAAM;AAClB,MAAA,IAAI,OAAS,EAAA;AACX,QAAQ,OAAA,EAAA,CAAA;AAAA,OACV;AAAA,KACD,CAAA,CAAA;AACD,IAAA,MAAM,EAAE,IAAM,EAAA,YAAA,EAAc,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAA4B,yBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,qBAAsB,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AAC7J,IAAO,OAAA;AAAA,MACL,YAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAW,EAAA;AACzC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,YAAc,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GAC3H;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs b/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs deleted file mode 100644 index 20bfb05a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs +++ /dev/null @@ -1,59 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubLastRelease = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchLastRelease } = useGithub(); - const { - data: release, - refresh, - pending - } = await useAsyncData(`github-last-release-${hash(props.query)}`, () => fetchLastRelease(props.query)); - return { - release, - refresh, - pending - }; - }, - render({ release, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { release, refresh, pending }); - } -}); - -export { GithubLastRelease as default }; -//# sourceMappingURL=GithubLastRelease-b4d6e912.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map deleted file mode 100644 index 98563ba1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubLastRelease-b4d6e912.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubLastRelease-b4d6e912.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubLastRelease-b4d6e912.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,oBAAoB,eAAgB,CAAA;AAAA,EACxC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,gBAAiB,EAAA,GAAI,SAAU,EAAA,CAAA;AACvC,IAAM,MAAA;AAAA,MACJ,IAAM,EAAA,OAAA;AAAA,MACN,OAAA;AAAA,MACA,OAAA;AAAA,KACE,GAAA,MAAM,YAAa,CAAA,CAAA,oBAAA,EAAuB,IAAK,CAAA,KAAA,CAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,gBAAA,CAAiB,KAAM,CAAA,KAAK,CAAC,CAAA,CAAA;AACtG,IAAO,OAAA;AAAA,MACL,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAW,EAAA;AACpC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACtH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs b/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs deleted file mode 100644 index f782f6dc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs +++ /dev/null @@ -1,132 +0,0 @@ -import { b as useRuntimeConfig } from './app.config-832f5f68.mjs'; -import { defineComponent, computed, useSlots } from 'vue'; -import { joinURL } from 'ufo'; -import 'hookable'; -import 'unctx'; -import 'h3'; - -const GithubLink = defineComponent({ - props: { - owner: { - type: String, - default: () => { - var _a, _b; - return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.owner; - }, - required: false - }, - repo: { - type: String, - default: () => { - var _a, _b; - return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.repo; - }, - required: false - }, - branch: { - type: String, - default: () => { - var _a, _b; - return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.branch; - }, - required: false - }, - dir: { - type: String, - default: () => { - var _a, _b; - return (_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.github) == null ? void 0 : _b.dir; - }, - required: false - }, - source: { - type: String, - required: false, - default: void 0 - }, - page: { - type: Object, - required: false, - default: void 0 - }, - contentDir: { - type: String, - required: false, - default: "content" - }, - edit: { - type: Boolean, - required: false, - default: true - } - }, - setup(props) { - if (!props.owner || !props.repo || !props.branch) { - throw new Error("If you want to use `GithubLink` component, you must specify: `owner`, `repo` and `branch`."); - } - const source = computed(() => { - var _a, _b; - let { repo, owner, branch, contentDir } = props; - let prefix = ""; - if ((_b = (_a = useRuntimeConfig()) == null ? void 0 : _a.public) == null ? void 0 : _b.content) { - let source2; - const { sources } = useRuntimeConfig().public.content; - for (const key in sources || []) { - if (props.page._id.startsWith(key)) { - source2 = sources[key]; - break; - } - } - if ((source2 == null ? void 0 : source2.driver) === "github") { - repo = source2.repo || props.repo || ""; - owner = source2.owner || props.owner || ""; - branch = source2.branch || props.branch || "main"; - contentDir = source2.dir || props.contentDir || ""; - prefix = source2.prefix || ""; - } - } - return { repo, owner, branch, contentDir, prefix }; - }); - const base = computed(() => joinURL("https://github.com", `${source.value.owner}/${source.value.repo}`)); - const path = computed(() => { - var _a; - const dirParts = []; - if ((_a = props == null ? void 0 : props.page) == null ? void 0 : _a._path) { - if (source.value.contentDir) { - dirParts.push(source.value.contentDir); - } - dirParts.push(props.page._file.substring(source.value.prefix.length)); - return dirParts; - } - if (props.dir) { - dirParts.push(props.dir); - } - if (props.source) { - dirParts.push(props.source); - } - return dirParts; - }); - const url = computed(() => { - const parts = [base.value]; - if (props.edit) { - parts.push("edit"); - } else { - parts.push("tree"); - } - parts.push(source.value.branch, ...path.value); - return parts.filter(Boolean).join("/"); - }); - return { - url - }; - }, - render(ctx) { - var _a; - const { url } = ctx; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { url }); - } -}); - -export { GithubLink as default }; -//# sourceMappingURL=GithubLink-f632fd3b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map deleted file mode 100644 index 0d307bcb..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubLink-f632fd3b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubLink-f632fd3b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubLink-f632fd3b.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs b/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs deleted file mode 100644 index 2b56bf96..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs +++ /dev/null @@ -1,55 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubReadme = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchReadme } = useGithub(); - const { data: readme, refresh, pending } = await useAsyncData(`github-readme-${hash(props.query)}`, () => fetchReadme(props.query)); - return { - readme, - refresh, - pending - }; - }, - render({ readme, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { readme, refresh, pending }); - } -}); - -export { GithubReadme as default }; -//# sourceMappingURL=GithubReadme-9e48e600.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map deleted file mode 100644 index 8f60a8a5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubReadme-9e48e600.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubReadme-9e48e600.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubReadme-9e48e600.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,eAAe,eAAgB,CAAA;AAAA,EACnC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,WAAY,EAAA,GAAI,SAAU,EAAA,CAAA;AAClC,IAAA,MAAM,EAAE,IAAM,EAAA,MAAA,EAAQ,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAiB,cAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,WAAY,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AAClI,IAAO,OAAA;AAAA,MACL,MAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,MAAQ,EAAA,OAAA,EAAS,SAAW,EAAA;AACnC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,MAAQ,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACrH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs b/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs deleted file mode 100644 index f870da95..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs +++ /dev/null @@ -1,62 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubRelease = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchRelease } = useGithub(); - if (!props.query.tag) { - return; - } - const { - data: release, - refresh, - pending - } = await useAsyncData(`github-release-${hash(props.query)}`, () => fetchRelease(props.query)); - return { - release, - refresh, - pending - }; - }, - render({ release, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { release, refresh, pending }); - } -}); - -export { GithubRelease as default }; -//# sourceMappingURL=GithubRelease-140d3d2e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map deleted file mode 100644 index 9b4090ad..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubRelease-140d3d2e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubRelease-140d3d2e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubRelease-140d3d2e.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,gBAAgB,eAAgB,CAAA;AAAA,EACpC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,YAAa,EAAA,GAAI,SAAU,EAAA,CAAA;AACnC,IAAI,IAAA,CAAC,KAAM,CAAA,KAAA,CAAM,GAAK,EAAA;AACpB,MAAA,OAAA;AAAA,KACF;AACA,IAAM,MAAA;AAAA,MACJ,IAAM,EAAA,OAAA;AAAA,MACN,OAAA;AAAA,MACA,OAAA;AAAA,KACE,GAAA,MAAM,YAAa,CAAA,CAAA,eAAA,EAAkB,IAAK,CAAA,KAAA,CAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,YAAA,CAAa,KAAM,CAAA,KAAK,CAAC,CAAA,CAAA;AAC7F,IAAO,OAAA;AAAA,MACL,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAW,EAAA;AACpC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,OAAS,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACtH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs b/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs deleted file mode 100644 index b1e46eda..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs +++ /dev/null @@ -1,55 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubReleases = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchReleases } = useGithub(); - const { data: releases, refresh, pending } = await useAsyncData(`github-releases-${hash(props.query)}`, () => fetchReleases(props.query)); - return { - releases, - refresh, - pending - }; - }, - render({ releases, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { releases, refresh, pending }); - } -}); - -export { GithubReleases as default }; -//# sourceMappingURL=GithubReleases-2ab96fb8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map deleted file mode 100644 index 3bdb4aa4..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubReleases-2ab96fb8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubReleases-2ab96fb8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubReleases-2ab96fb8.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,iBAAiB,eAAgB,CAAA;AAAA,EACrC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,aAAc,EAAA,GAAI,SAAU,EAAA,CAAA;AACpC,IAAA,MAAM,EAAE,IAAM,EAAA,QAAA,EAAU,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAmB,gBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,aAAc,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AACxI,IAAO,OAAA;AAAA,MACL,QAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,QAAU,EAAA,OAAA,EAAS,SAAW,EAAA;AACrC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,QAAU,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACvH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs b/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs deleted file mode 100644 index b2682fe6..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs +++ /dev/null @@ -1,55 +0,0 @@ -import { defineComponent, useSlots } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { hash } from 'ohash'; -import { u as useGithub } from './useGithub-94614457.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const GithubRepository = defineComponent({ - props: { - query: { - type: Object, - required: false, - default: () => ({}) - } - }, - async setup(props) { - const { fetchRepository } = useGithub(); - const { data: repository, refresh, pending } = await useAsyncData(`github-repository-${hash(props.query)}`, () => fetchRepository(props.query)); - return { - repository, - refresh, - pending - }; - }, - render({ repository, refresh, pending }) { - var _a; - const slots = useSlots(); - return (_a = slots == null ? void 0 : slots.default) == null ? void 0 : _a.call(slots, { repository, refresh, pending }); - } -}); - -export { GithubRepository as default }; -//# sourceMappingURL=GithubRepository-8db11ede.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map b/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map deleted file mode 100644 index ceebe90c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/GithubRepository-8db11ede.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"GithubRepository-8db11ede.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/GithubRepository-8db11ede.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AA6BA,MAAM,mBAAmB,eAAgB,CAAA;AAAA,EACvC,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,KAAA;AAAA,MACV,OAAA,EAAS,OAAO,EAAC,CAAA;AAAA,KACnB;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAM,MAAA,EAAE,eAAgB,EAAA,GAAI,SAAU,EAAA,CAAA;AACtC,IAAA,MAAM,EAAE,IAAM,EAAA,UAAA,EAAY,OAAS,EAAA,OAAA,KAAY,MAAM,YAAA,CAAa,CAAqB,kBAAA,EAAA,IAAA,CAAK,MAAM,KAAK,CAAA,CAAA,CAAA,EAAK,MAAM,eAAgB,CAAA,KAAA,CAAM,KAAK,CAAC,CAAA,CAAA;AAC9I,IAAO,OAAA;AAAA,MACL,UAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAO,CAAA,EAAE,UAAY,EAAA,OAAA,EAAS,SAAW,EAAA;AACvC,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,OAAA,CAAQ,EAAK,GAAA,KAAA,IAAS,IAAO,GAAA,KAAA,CAAA,GAAS,MAAM,OAAY,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,KAAO,EAAA,EAAE,UAAY,EAAA,OAAA,EAAS,SAAS,CAAA,CAAA;AAAA,GACzH;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs deleted file mode 100644 index dfb62dfc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs +++ /dev/null @@ -1,69 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, mergeProps, withCtx, createVNode, toDisplayString } from 'vue'; -import { ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = { - __name: "HeroAnnouncement", - __ssrInlineRender: true, - props: { - to: { - type: String, - default: "" - }, - label: { - type: String, - default: "" - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ - to: __props.to, - class: "link" - }, _attrs), { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(ssrRenderComponent(_component_Icon, { - name: "heroicons-solid:sparkles", - class: "icon" - }, null, _parent2, _scopeId)); - _push2(`${ssrInterpolate(__props.label)}`); - } else { - return [ - createVNode(_component_Icon, { - name: "heroicons-solid:sparkles", - class: "icon" - }), - createVNode("span", null, toDisplayString(__props.label), 1) - ]; - } - }), - _: 1 - }, _parent)); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/HeroAnnouncement.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const HeroAnnouncement = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d15db3c4"]]); - -export { HeroAnnouncement as default }; -//# sourceMappingURL=HeroAnnouncement-a479df93.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map deleted file mode 100644 index 63911bfa..00000000 --- a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-a479df93.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"HeroAnnouncement-a479df93.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/HeroAnnouncement-a479df93.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;AAiBA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,kBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,EAAI,EAAA;AAAA,MACF,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,mBAAsB,GAAA,kBAAA,CAAA;AAC5B,MAAA,MAAM,eAAkB,GAAA,oBAAA,CAAA;AACxB,MAAM,KAAA,CAAA,kBAAA,CAAmB,qBAAqB,UAAW,CAAA;AAAA,QACvD,IAAI,OAAQ,CAAA,EAAA;AAAA,QACZ,KAAO,EAAA,MAAA;AAAA,OACT,EAAG,MAAM,CAAG,EAAA;AAAA,QACV,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAA,MAAA,CAAO,mBAAmB,eAAiB,EAAA;AAAA,cACzC,IAAM,EAAA,0BAAA;AAAA,cACN,KAAO,EAAA,MAAA;AAAA,aACN,EAAA,IAAA,EAAM,QAAU,EAAA,QAAQ,CAAC,CAAA,CAAA;AAC5B,YAAA,MAAA,CAAO,CAAwB,qBAAA,EAAA,QAAA,CAAA,CAAA,EAAY,cAAe,CAAA,OAAA,CAAQ,KAAK,CAAU,CAAA,OAAA,CAAA,CAAA,CAAA;AAAA,WAC5E,MAAA;AACL,YAAO,OAAA;AAAA,cACL,YAAY,eAAiB,EAAA;AAAA,gBAC3B,IAAM,EAAA,0BAAA;AAAA,gBACN,KAAO,EAAA,MAAA;AAAA,eACR,CAAA;AAAA,cACD,YAAY,MAAQ,EAAA,IAAA,EAAM,gBAAgB,OAAQ,CAAA,KAAK,GAAG,CAAC,CAAA;AAAA,aAC7D,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yCAAyC,CAAA,CAAA;AACtH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,gBAAA,+BAA+C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs deleted file mode 100644 index 6377589c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const HeroAnnouncement_vue_vue_type_style_index_0_scoped_d15db3c4_transformed_true_lang = ".link[data-v-d15db3c4]{align-items:center;background-color:var(--color-primary-100);border-color:var(--color-primary-400);border-radius:var(--radii-md);border-style:solid;border-width:var(--borderWidth-sm);color:var(--color-primary-900);display:inline-flex;gap:var(--space-1);justify-content:center;margin-bottom:var(--space-4);padding:var(--space-2) var(--space-4)}:root.dark .link[data-v-d15db3c4]{background-color:transparent;border-color:var(--color-primary-700);color:var(--color-primary-100)}.link[data-v-d15db3c4]:hover{background-color:var(--color-primary-200)}:root.dark .link[data-v-d15db3c4]:hover{background-color:var(--color-primary-900)}.link span[data-v-d15db3c4]{font-size:var(--fontSize-sm);font-weight:var(--fontWeight-medium)}.link .icon[data-v-d15db3c4]{height:var(--space-4);width:var(--space-4)}"; - -const HeroAnnouncementStyles_a73a7723 = [HeroAnnouncement_vue_vue_type_style_index_0_scoped_d15db3c4_transformed_true_lang]; - -export { HeroAnnouncementStyles_a73a7723 as default }; -//# sourceMappingURL=HeroAnnouncement-styles.a73a7723.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map b/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map deleted file mode 100644 index a97ca88f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/HeroAnnouncement-styles.a73a7723.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"HeroAnnouncement-styles.a73a7723.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/HeroAnnouncement-styles-1.mjs-3adaab88.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/HeroAnnouncement-styles.a73a7723.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,iFAAoF,GAAA,mzBAAA;;ACC1F,wCAAe,CAACA,iFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs b/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs deleted file mode 100644 index 6160342d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs +++ /dev/null @@ -1,25 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconCodeSandBox = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconCodeSandBox as default }; -//# sourceMappingURL=IconCodeSandBox-289e2c7f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map deleted file mode 100644 index ca8f8e0a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconCodeSandBox-289e2c7f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconCodeSandBox-289e2c7f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconCodeSandBox-289e2c7f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,aAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAA0L,CAAA,uLAAA,CAAA,CAAA,CAAA;AACtM,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yEAAyE,CAAA,CAAA;AACtJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,eAAA,+BAA8C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs b/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs deleted file mode 100644 index 180d8d0e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs +++ /dev/null @@ -1,25 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconDocus = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconDocus as default }; -//# sourceMappingURL=IconDocus-12d300be.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map deleted file mode 100644 index a674cd89..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconDocus-12d300be.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconDocus-12d300be.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconDocus-12d300be.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,WAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAA6iB,CAAA,0iBAAA,CAAA,CAAA,CAAA;AACzjB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,SAAA,+BAAwC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs b/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs deleted file mode 100644 index e9e8f9a2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs +++ /dev/null @@ -1,26 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/IconMarkdown.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconMarkdown = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconMarkdown as default }; -//# sourceMappingURL=IconMarkdown-092c828f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map deleted file mode 100644 index c484462b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconMarkdown-092c828f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconMarkdown-092c828f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconMarkdown-092c828f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,WAAA;AAAA,IACT,MAAQ,EAAA,IAAA;AAAA,IACR,IAAM,EAAA,cAAA;AAAA,GACR,EAAG,MAAM,CAAC,CAA6T,CAAA,0TAAA,CAAA,CAAA,CAAA;AACzU,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qCAAqC,CAAA,CAAA;AAClH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,YAAA,+BAA2C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs deleted file mode 100644 index 6cf69a14..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs +++ /dev/null @@ -1,24 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconNuxt = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconNuxt as default }; -//# sourceMappingURL=IconNuxt-c11c3c9c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map deleted file mode 100644 index 19bb664e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxt-c11c3c9c.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconNuxt-c11c3c9c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxt-c11c3c9c.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm7B,CAAA,g7BAAA,CAAA,CAAA,CAAA;AAC/7B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,kEAAkE,CAAA,CAAA;AAC/I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs deleted file mode 100644 index 861d482c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs +++ /dev/null @@ -1,24 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconNuxtContent = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconNuxtContent as default }; -//# sourceMappingURL=IconNuxtContent-f8fb6ffc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map deleted file mode 100644 index 38601d1d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtContent-f8fb6ffc.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconNuxtContent-f8fb6ffc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtContent-f8fb6ffc.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm7B,CAAA,g7BAAA,CAAA,CAAA,CAAA;AAC/7B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yEAAyE,CAAA,CAAA;AACtJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,eAAA,+BAA8C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs deleted file mode 100644 index c292e69a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs +++ /dev/null @@ -1,24 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconNuxtLabs = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconNuxtLabs as default }; -//# sourceMappingURL=IconNuxtLabs-1b2b0005.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map deleted file mode 100644 index ec34ff75..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtLabs-1b2b0005.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconNuxtLabs-1b2b0005.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtLabs-1b2b0005.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm7B,CAAA,g7BAAA,CAAA,CAAA,CAAA;AAC/7B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,YAAA,+BAA2C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs deleted file mode 100644 index af4312d5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs +++ /dev/null @@ -1,24 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconNuxtStudio = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-9e7e743f"]]); - -export { IconNuxtStudio as default }; -//# sourceMappingURL=IconNuxtStudio-8ac5eaa5.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map deleted file mode 100644 index 4c99c7e1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-8ac5eaa5.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconNuxtStudio-8ac5eaa5.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtStudio-8ac5eaa5.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,KAAO,EAAA,4BAAA;AAAA,IACP,OAAS,EAAA,aAAA;AAAA,GACX,EAAG,MAAM,CAAC,CAAm9B,CAAA,g9BAAA,CAAA,CAAA,CAAA;AAC/9B,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,wEAAwE,CAAA,CAAA;AACrJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,cAAiC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs deleted file mode 100644 index c7b06287..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const IconNuxtStudio_vue_vue_type_style_index_0_scoped_9e7e743f_transformed_true_lang = "svg[data-v-9e7e743f]{fill:var(--color-black)}:root.dark svg[data-v-9e7e743f]{fill:var(--color-white)}"; - -const IconNuxtStudioStyles_d164db17 = [IconNuxtStudio_vue_vue_type_style_index_0_scoped_9e7e743f_transformed_true_lang]; - -export { IconNuxtStudioStyles_d164db17 as default }; -//# sourceMappingURL=IconNuxtStudio-styles.d164db17.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map deleted file mode 100644 index 2c6f8c19..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconNuxtStudio-styles.d164db17.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconNuxtStudio-styles.d164db17.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtStudio-styles-1.mjs-f768f8ec.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconNuxtStudio-styles.d164db17.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,+EAAkF,GAAA,uGAAA;;ACCxF,sCAAe,CAACA,+EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs b/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs deleted file mode 100644 index 5ed812ed..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs +++ /dev/null @@ -1,25 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconStackBlitz = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconStackBlitz as default }; -//# sourceMappingURL=IconStackBlitz-def46545.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map deleted file mode 100644 index 492e08bd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconStackBlitz-def46545.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconStackBlitz-def46545.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconStackBlitz-def46545.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,WAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAAuH,CAAA,oHAAA,CAAA,CAAA,CAAA;AACnI,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,wEAAwE,CAAA,CAAA;AACrJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,cAAA,+BAA6C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs b/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs deleted file mode 100644 index e342ab8b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs +++ /dev/null @@ -1,25 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const IconVueTelescope = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { IconVueTelescope as default }; -//# sourceMappingURL=IconVueTelescope-96109b9a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map b/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map deleted file mode 100644 index de09a07b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/IconVueTelescope-96109b9a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"IconVueTelescope-96109b9a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/IconVueTelescope-96109b9a.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA;AAAA,IACrC,OAAS,EAAA,aAAA;AAAA,IACT,IAAM,EAAA,MAAA;AAAA,IACN,KAAO,EAAA,4BAAA;AAAA,GACT,EAAG,MAAM,CAAC,CAA8b,CAAA,2bAAA,CAAA,CAAA,CAAA;AAC1c,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,0EAA0E,CAAA,CAAA;AACvJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,gBAAA,+BAA+C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs b/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs deleted file mode 100644 index b94d9d6a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs +++ /dev/null @@ -1,72 +0,0 @@ -import { u as useUnwrap, _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { defineComponent, useSlots, computed, h, useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const iconTypeMap = { - primary: "heroicons-outline:check", - info: "heroicons-outline:information-circle", - success: "heroicons-outline:check-circle", - warning: "heroicons-outline:exclamation", - danger: "heroicons-outline:exclamation-circle" -}; -const _sfc_main = defineComponent({ - props: { - /** - * Used to override the default type icon, check out the - * icons available - */ - icon: { - type: String, - default: null - }, - /** - * Type of list - */ - type: { - type: String, - default: "primary", - validator: (value) => ["primary", "info", "success", "warning", "danger"].includes(value) - } - }, - setup(props) { - const slots = useSlots(); - const { flatUnwrap, unwrap } = useUnwrap(); - const iconName = computed(() => props.icon || iconTypeMap[props.type]); - return () => { - var _a; - const items = flatUnwrap((_a = slots.default && slots.default()) != null ? _a : [], ["ul"]).map((li) => unwrap(li, ["li"])); - return h( - "ul", - items.map( - (item) => h("li", [ - h("span", { class: `list-icon ${props.type}` }, h(__nuxt_component_0$1, { name: iconName.value, class: "icon" })), - h("span", h(ContentSlot, { use: () => item })) - ]) - ) - ); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/List.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const List = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-f4e70c29"]]); - -export { List as default }; -//# sourceMappingURL=List-12ebf73c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map b/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map deleted file mode 100644 index 70c7ad6e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/List-12ebf73c.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"List-12ebf73c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/List-12ebf73c.js"],"sourcesContent":null,"names":["__nuxt_component_0"],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,WAAc,GAAA;AAAA,EAClB,OAAS,EAAA,yBAAA;AAAA,EACT,IAAM,EAAA,sCAAA;AAAA,EACN,OAAS,EAAA,gCAAA;AAAA,EACT,OAAS,EAAA,+BAAA;AAAA,EACT,MAAQ,EAAA,sCAAA;AACV,CAAA,CAAA;AACA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,KAAO,EAAA;AAAA;AAAA;AAAA;AAAA;AAAA,IAKL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,IAAA;AAAA,KACX;AAAA;AAAA;AAAA;AAAA,IAIA,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,SAAA;AAAA,MACT,SAAA,EAAW,CAAC,KAAA,KAAU,CAAC,SAAA,EAAW,MAAQ,EAAA,SAAA,EAAW,SAAW,EAAA,QAAQ,CAAE,CAAA,QAAA,CAAS,KAAK,CAAA;AAAA,KAC1F;AAAA,GACF;AAAA,EACA,MAAM,KAAO,EAAA;AACX,IAAA,MAAM,QAAQ,QAAS,EAAA,CAAA;AACvB,IAAA,MAAM,EAAE,UAAA,EAAY,MAAO,EAAA,GAAI,SAAU,EAAA,CAAA;AACzC,IAAM,MAAA,QAAA,GAAW,SAAS,MAAM,KAAA,CAAM,QAAQ,WAAY,CAAA,KAAA,CAAM,IAAI,CAAC,CAAA,CAAA;AACrE,IAAA,OAAO,MAAM;AA/CjB,MAAA,IAAA,EAAA,CAAA;AAgDM,MAAM,MAAA,KAAA,GAAQ,YAAY,EAAM,GAAA,KAAA,CAAA,OAAA,IAAW,MAAM,OAAQ,EAAA,KAA/B,IAAqC,GAAA,EAAA,GAAA,EAAI,EAAA,CAAC,IAAI,CAAC,CAAA,CAAE,IAAI,CAAC,EAAA,KAAO,OAAO,EAAI,EAAA,CAAC,IAAI,CAAC,CAAC,CAAA,CAAA;AACzG,MAAO,OAAA,CAAA;AAAA,QACL,IAAA;AAAA,QACA,KAAM,CAAA,GAAA;AAAA,UACJ,CAAC,IAAS,KAAA,CAAA,CAAE,IAAM,EAAA;AAAA,YAChB,EAAE,MAAQ,EAAA,EAAE,KAAO,EAAA,CAAA,UAAA,EAAa,MAAM,IAAO,CAAA,CAAA,EAAA,EAAG,CAAE,CAAAA,oBAAA,EAAoB,EAAE,IAAM,EAAA,QAAA,CAAS,OAAO,KAAO,EAAA,MAAA,EAAQ,CAAC,CAAA;AAAA,YAC9G,CAAA,CAAE,QAAQ,CAAE,CAAA,WAAA,EAAa,EAAE,GAAK,EAAA,MAAM,IAAK,EAAC,CAAC,CAAA;AAAA,WAC9C,CAAA;AAAA,SACH;AAAA,OACF,CAAA;AAAA,KACF,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,gEAAgE,CAAA,CAAA;AAC7I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,IAAA,+BAAmC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs b/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs deleted file mode 100644 index a9b8aad1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const List_vue_vue_type_style_index_0_scoped_f4e70c29_transformed_true_lang = "li[data-v-f4e70c29]{align-items:center;display:flex;margin-bottom:var(--space-3)}li .list-icon[data-v-f4e70c29]{flex-shrink:0;margin-right:var(--space-3)}li .list-icon.primary[data-v-f4e70c29]{color:var(--elements-state-primary-color-primary)}li .list-icon.info[data-v-f4e70c29]{color:var(--elements-state-info-color-primary)}li .list-icon.success[data-v-f4e70c29]{color:var(--elements-state-success-color-primary)}li .list-icon.warning[data-v-f4e70c29]{color:var(--elements-state-warning-color-primary)}li .list-icon.danger[data-v-f4e70c29]{color:var(--elements-state-danger-color-primary)}li .list-icon .icon[data-v-f4e70c29]{height:var(--space-6);width:var(--space-6)}"; - -const ListStyles_ff61b956 = [List_vue_vue_type_style_index_0_scoped_f4e70c29_transformed_true_lang]; - -export { ListStyles_ff61b956 as default }; -//# sourceMappingURL=List-styles.ff61b956.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map b/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map deleted file mode 100644 index 0e5c51fe..00000000 --- a/docs/.output/server/chunks/app/_nuxt/List-styles.ff61b956.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"List-styles.ff61b956.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/List-styles-1.mjs-e0119ac4.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/List-styles.ff61b956.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,qEAAwE,GAAA,iqBAAA;;ACC9E,4BAAe,CAACA,qEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs b/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs deleted file mode 100644 index 8549542f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs +++ /dev/null @@ -1,46 +0,0 @@ -import { defineComponent, getCurrentInstance, useSlots, computed, useSSRContext } from 'vue'; -import ContentSlot from './ContentSlot-deb25102.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = defineComponent({ - name: "Markdown", - extends: ContentSlot, - setup(props) { - const { parent } = getCurrentInstance(); - const { between, default: fallbackSlot } = useSlots(); - const tags = computed(() => { - if (typeof props.unwrap === "string") { - return props.unwrap.split(" "); - } - return ["*"]; - }); - return { - fallbackSlot, - tags, - between, - parent - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/components/Markdown.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=Markdown-1885a814.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map b/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map deleted file mode 100644 index 27016b37..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Markdown-1885a814.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Markdown-1885a814.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Markdown-1885a814.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAiBA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,IAAM,EAAA,UAAA;AAAA,EACN,OAAS,EAAA,WAAA;AAAA,EACT,MAAM,KAAO,EAAA;AACX,IAAM,MAAA,EAAE,MAAO,EAAA,GAAI,kBAAmB,EAAA,CAAA;AACtC,IAAA,MAAM,EAAE,OAAA,EAAS,OAAS,EAAA,YAAA,KAAiB,QAAS,EAAA,CAAA;AACpD,IAAM,MAAA,IAAA,GAAO,SAAS,MAAM;AAC1B,MAAI,IAAA,OAAO,KAAM,CAAA,MAAA,KAAW,QAAU,EAAA;AACpC,QAAO,OAAA,KAAA,CAAM,MAAO,CAAA,KAAA,CAAM,GAAG,CAAA,CAAA;AAAA,OAC/B;AACA,MAAA,OAAO,CAAC,GAAG,CAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AACD,IAAO,OAAA;AAAA,MACL,YAAA;AAAA,MACA,IAAA;AAAA,MACA,OAAA;AAAA,MACA,MAAA;AAAA,KACF,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iEAAiE,CAAA,CAAA;AAC9I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs b/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs deleted file mode 100644 index 597cbcb3..00000000 --- a/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs +++ /dev/null @@ -1,48 +0,0 @@ -import ContentSlot from './ContentSlot-deb25102.mjs'; -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = { - __name: "MyButton", - __ssrInlineRender: true, - props: { - type: { - type: String, - default: "info" - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_ContentSlot = ContentSlot; - _push(``); - _push(ssrRenderComponent(_component_ContentSlot, { - use: _ctx.$slots.default, - unwrap: "p" - }, null, _parent)); - _push(``); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/MyButton.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const MyButton = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-14e24467"]]); - -export { MyButton as default }; -//# sourceMappingURL=MyButton-a7c11108.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map b/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map deleted file mode 100644 index 4f650c0f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/MyButton-a7c11108.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"MyButton-a7c11108.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/MyButton-a7c11108.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;AAkBA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,sBAAyB,GAAA,WAAA,CAAA;AAC/B,MAAM,KAAA,CAAA,CAAA,OAAA,EAAU,cAAe,CAAA,UAAA,CAAW,EAAE,KAAA,EAAO,QAAQ,IAAK,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC9F,MAAA,KAAA,CAAM,mBAAmB,sBAAwB,EAAA;AAAA,QAC/C,GAAA,EAAK,KAAK,MAAO,CAAA,OAAA;AAAA,QACjB,MAAQ,EAAA,GAAA;AAAA,OACV,EAAG,IAAM,EAAA,OAAO,CAAC,CAAA,CAAA;AACjB,MAAA,KAAA,CAAM,CAAW,SAAA,CAAA,CAAA,CAAA;AAAA,KACnB,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,iCAAiC,CAAA,CAAA;AAC9G,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs b/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs deleted file mode 100644 index f7f425cf..00000000 --- a/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const MyButton_vue_vue_type_style_index_0_scoped_14e24467_transformed_true_lang = "button[data-v-14e24467]{border-radius:4px;color:#000;padding:.5rem}.info[data-v-14e24467]{background-color:blue}.warning[data-v-14e24467]{background-color:orange}.success[data-v-14e24467]{background-color:#d1fae5;border:1px solid #34d399}"; - -const MyButtonStyles_0da530f8 = [MyButton_vue_vue_type_style_index_0_scoped_14e24467_transformed_true_lang]; - -export { MyButtonStyles_0da530f8 as default }; -//# sourceMappingURL=MyButton-styles.0da530f8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map b/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map deleted file mode 100644 index c418c4ab..00000000 --- a/docs/.output/server/chunks/app/_nuxt/MyButton-styles.0da530f8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"MyButton-styles.0da530f8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/MyButton-styles-1.mjs-41dd010f.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/MyButton-styles.0da530f8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,gPAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs b/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs deleted file mode 100644 index 86b2213c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs +++ /dev/null @@ -1,63 +0,0 @@ -import { defineComponent, computed, h, useSSRContext } from 'vue'; -import { b as useRuntimeConfig } from './app.config-832f5f68.mjs'; -import { withBase } from 'ufo'; -import 'hookable'; -import 'unctx'; -import 'h3'; - -const _sfc_main = defineComponent({ - props: { - src: { - type: [String, Object], - default: null - } - }, - setup(props) { - const srcWithBase = (src) => { - if (src && src.startsWith("/") && !src.startsWith("//")) { - return withBase(src, useRuntimeConfig().app.baseURL); - } - return src; - }; - const imgSrc = computed(() => { - let src = props.src; - try { - src = JSON.parse(src); - } catch (e) { - src = props.src; - } - if (typeof src === "string") { - return srcWithBase(props.src); - } - return { - light: srcWithBase(src.light), - dark: srcWithBase(src.dark) - }; - }); - return { - imgSrc - }; - }, - render({ imgSrc }) { - if (typeof imgSrc === "string") { - return h("img", { src: imgSrc, ...this.$attrs }); - } - const nodes = []; - if (imgSrc.light) { - nodes.push(h("img", { src: imgSrc.light, class: ["dark-img"], ...this.$attrs })); - } - if (imgSrc.dark) { - nodes.push(h("img", { src: imgSrc.dark, class: ["light-img"], ...this.$attrs })); - } - return nodes; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=NuxtImg-89991070.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map b/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map deleted file mode 100644 index eec91386..00000000 --- a/docs/.output/server/chunks/app/_nuxt/NuxtImg-89991070.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"NuxtImg-89991070.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/NuxtImg-89991070.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,eAAgB,CAAA;AAAA,EAChC,KAAO,EAAA;AAAA,IACL,GAAK,EAAA;AAAA,MACH,IAAA,EAAM,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,MACrB,OAAS,EAAA,IAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,KAAO,EAAA;AACX,IAAM,MAAA,WAAA,GAAc,CAAC,GAAQ,KAAA;AAC3B,MAAI,IAAA,GAAA,IAAO,IAAI,UAAW,CAAA,GAAG,KAAK,CAAC,GAAA,CAAI,UAAW,CAAA,IAAI,CAAG,EAAA;AACvD,QAAA,OAAO,QAAS,CAAA,GAAA,EAAK,gBAAiB,EAAA,CAAE,IAAI,OAAO,CAAA,CAAA;AAAA,OACrD;AACA,MAAO,OAAA,GAAA,CAAA;AAAA,KACT,CAAA;AACA,IAAM,MAAA,MAAA,GAAS,SAAS,MAAM;AAC5B,MAAA,IAAI,MAAM,KAAM,CAAA,GAAA,CAAA;AAChB,MAAI,IAAA;AACF,QAAM,GAAA,GAAA,IAAA,CAAK,MAAM,GAAG,CAAA,CAAA;AAAA,eACb,CAAP,EAAA;AACA,QAAA,GAAA,GAAM,KAAM,CAAA,GAAA,CAAA;AAAA,OACd;AACA,MAAI,IAAA,OAAO,QAAQ,QAAU,EAAA;AAC3B,QAAO,OAAA,WAAA,CAAY,MAAM,GAAG,CAAA,CAAA;AAAA,OAC9B;AACA,MAAO,OAAA;AAAA,QACL,KAAA,EAAO,WAAY,CAAA,GAAA,CAAI,KAAK,CAAA;AAAA,QAC5B,IAAA,EAAM,WAAY,CAAA,GAAA,CAAI,IAAI,CAAA;AAAA,OAC5B,CAAA;AAAA,KACD,CAAA,CAAA;AACD,IAAO,OAAA;AAAA,MACL,MAAA;AAAA,KACF,CAAA;AAAA,GACF;AAAA,EACA,MAAA,CAAO,EAAE,MAAA,EAAU,EAAA;AACjB,IAAI,IAAA,OAAO,WAAW,QAAU,EAAA;AAC9B,MAAO,OAAA,CAAA,CAAE,OAAO,EAAE,GAAA,EAAK,QAAQ,GAAG,IAAA,CAAK,QAAQ,CAAA,CAAA;AAAA,KACjD;AACA,IAAA,MAAM,QAAQ,EAAC,CAAA;AACf,IAAA,IAAI,OAAO,KAAO,EAAA;AAChB,MAAA,KAAA,CAAM,IAAK,CAAA,CAAA,CAAE,KAAO,EAAA,EAAE,KAAK,MAAO,CAAA,KAAA,EAAO,KAAO,EAAA,CAAC,UAAU,CAAG,EAAA,GAAG,IAAK,CAAA,MAAA,EAAQ,CAAC,CAAA,CAAA;AAAA,KACjF;AACA,IAAA,IAAI,OAAO,IAAM,EAAA;AACf,MAAA,KAAA,CAAM,IAAK,CAAA,CAAA,CAAE,KAAO,EAAA,EAAE,KAAK,MAAO,CAAA,IAAA,EAAM,KAAO,EAAA,CAAC,WAAW,CAAG,EAAA,GAAG,IAAK,CAAA,MAAA,EAAQ,CAAC,CAAA,CAAA;AAAA,KACjF;AACA,IAAO,OAAA,KAAA,CAAA;AAAA,GACT;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs b/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs deleted file mode 100644 index 201edc83..00000000 --- a/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs +++ /dev/null @@ -1,32 +0,0 @@ -import { useSSRContext, computed, unref } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = { - __name: "PropInspector", - __ssrInlineRender: true, - props: ["prop"], - setup(__props) { - const props = __props; - const propType = computed(() => Array.isArray(props.prop) ? "array" : typeof props.prop); - return (_ctx, _push, _parent, _attrs) => { - _push(`Type: ${ssrInterpolate(unref(propType))} -Value: -${ssrInterpolate(__props.prop)} - `); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/PropInspector.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const PropInspector = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d8c04239"]]); - -export { PropInspector as default }; -//# sourceMappingURL=PropInspector-d4a70134.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map b/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map deleted file mode 100644 index b3bc08cc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/PropInspector-d4a70134.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"PropInspector-d4a70134.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/PropInspector-d4a70134.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,eAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAA,EAAO,CAAC,MAAM,CAAA;AAAA,EACd,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAM,MAAA,QAAA,GAAW,QAAS,CAAA,MAAM,KAAM,CAAA,OAAA,CAAQ,KAAM,CAAA,IAAI,CAAI,GAAA,OAAA,GAAU,OAAO,KAAA,CAAM,IAAI,CAAA,CAAA;AACvF,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,MAAM,2BAA2B,cAAe,CAAA,KAAA,CAAM,QAAQ,CAAC,CAAA,CAAA;AAAA;AAAA,EAE/F,cAAA,CAAe,QAAQ,IAAI,CAAA,CAAA;AAAA,QACpB,CAAA,CAAA,CAAA;AAAA,KACL,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sCAAsC,CAAA,CAAA;AACnH,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,aAAA,+BAA4C,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs b/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs deleted file mode 100644 index e6555c42..00000000 --- a/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const PropInspector_vue_vue_type_style_index_0_scoped_d8c04239_transformed_true_lang = "pre[data-v-d8c04239]{border-radius:4px;padding:1rem 1rem 0}"; - -const PropInspectorStyles_ad1f0c4f = [PropInspector_vue_vue_type_style_index_0_scoped_d8c04239_transformed_true_lang]; - -export { PropInspectorStyles_ad1f0c4f as default }; -//# sourceMappingURL=PropInspector-styles.ad1f0c4f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map b/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map deleted file mode 100644 index 8eb57ea8..00000000 --- a/docs/.output/server/chunks/app/_nuxt/PropInspector-styles.ad1f0c4f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"PropInspector-styles.ad1f0c4f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/PropInspector-styles-1.mjs-f58a2c8d.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/PropInspector-styles.ad1f0c4f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,8EAAiF,GAAA,6DAAA;;ACCvF,qCAAe,CAACA,8EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs b/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs deleted file mode 100644 index 221b7eb2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs +++ /dev/null @@ -1,850 +0,0 @@ -import __nuxt_component_0 from './ProseTable-425d227b.mjs'; -import __nuxt_component_1 from './ProseThead-7ba76e48.mjs'; -import __nuxt_component_2 from './ProseTr-6559f7d8.mjs'; -import __nuxt_component_3 from './ProseTh-8250ce9f.mjs'; -import __nuxt_component_4 from './ProseTbody-f622755a.mjs'; -import __nuxt_component_5 from './ProseTd-ce60dd42.mjs'; -import __nuxt_component_1$1 from './ProseCodeInline-960b9a43.mjs'; -import { defineComponent, computed, useSSRContext, withCtx, createTextVNode, createVNode, openBlock, createBlock, createCommentVNode, toDisplayString, Fragment, renderList } from 'vue'; -import { u as useAsyncData } from './asyncData-c43d4319.mjs'; -import { kebabCase } from 'scule'; -import { ssrRenderComponent, ssrRenderList, ssrInterpolate } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'defu'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import '../../nitro/config.mjs'; - -const _sfc_main = defineComponent({ - props: { - of: { - type: String, - default: void 0 - }, - /** - * Toggle required column. - */ - required: { - type: Boolean, - default: void 0 - }, - /** - * Toggle values column. - */ - values: { - type: Boolean, - default: void 0 - }, - /** - * Toggle description column. - */ - description: { - type: Boolean, - default: void 0 - }, - /** - * Toglle default column. - */ - default: { - type: Boolean, - default: void 0 - } - }, - async setup(props) { - const query = `/api/component-meta/${kebabCase(props.of)}`; - const { data: meta } = await useAsyncData(props.of, () => $fetch(query), "$oSoCJtWFoC"); - const properties = computed(() => meta.value.props.filter((prop) => { - var _a; - return !((_a = prop.tags) == null ? void 0 : _a.ignore.includes(prop)); - })); - const showRequired = computed(() => { - var _a; - if (props.required !== void 0) { - return props.required; - } - return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.required !== void 0); - }); - const showValues = computed(() => { - var _a; - if (props.values !== void 0) { - return props.values; - } - return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.values); - }); - const showDescription = computed(() => { - var _a; - if (props.description !== void 0) { - return props.description; - } - return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.description); - }); - const showDefault = computed(() => { - var _a; - if (props.default !== void 0) { - return props.default; - } - return (_a = properties.value) == null ? void 0 : _a.find((prop) => prop.default); - }); - return { - meta, - properties, - showRequired, - showValues, - showDescription, - showDefault - }; - } -}); -function _sfc_ssrRender(_ctx, _push, _parent, _attrs, $props, $setup, $data, $options) { - var _a, _b, _c; - const _component_ProseTable = __nuxt_component_0; - const _component_ProseThead = __nuxt_component_1; - const _component_ProseTr = __nuxt_component_2; - const _component_ProseTh = __nuxt_component_3; - const _component_ProseTbody = __nuxt_component_4; - const _component_ProseTd = __nuxt_component_5; - const _component_ProseCodeInline = __nuxt_component_1$1; - if (_ctx.meta && ((_a = _ctx.meta) == null ? void 0 : _a.props) && ((_c = (_b = _ctx.meta) == null ? void 0 : _b.props) == null ? void 0 : _c.length)) { - _push(ssrRenderComponent(_component_ProseTable, _attrs, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(ssrRenderComponent(_component_ProseThead, null, { - default: withCtx((_2, _push3, _parent3, _scopeId2) => { - if (_push3) { - _push3(ssrRenderComponent(_component_ProseTr, null, { - default: withCtx((_3, _push4, _parent4, _scopeId3) => { - if (_push4) { - _push4(ssrRenderComponent(_component_ProseTh, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(`Prop`); - } else { - return [ - createTextVNode("Prop") - ]; - } - }), - _: 1 - }, _parent4, _scopeId3)); - _push4(ssrRenderComponent(_component_ProseTh, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(`Type`); - } else { - return [ - createTextVNode("Type") - ]; - } - }), - _: 1 - }, _parent4, _scopeId3)); - if (_ctx.showRequired) { - _push4(ssrRenderComponent(_component_ProseTh, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(` Required `); - } else { - return [ - createTextVNode(" Required ") - ]; - } - }), - _: 1 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - if (_ctx.showDefault) { - _push4(ssrRenderComponent(_component_ProseTh, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(` Default `); - } else { - return [ - createTextVNode(" Default ") - ]; - } - }), - _: 1 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - if (_ctx.showValues) { - _push4(ssrRenderComponent(_component_ProseTh, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(` Values `); - } else { - return [ - createTextVNode(" Values ") - ]; - } - }), - _: 1 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - if (_ctx.showDescription) { - _push4(ssrRenderComponent(_component_ProseTh, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(` Description `); - } else { - return [ - createTextVNode(" Description ") - ]; - } - }), - _: 1 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - } else { - return [ - createVNode(_component_ProseTh, null, { - default: withCtx(() => [ - createTextVNode("Prop") - ]), - _: 1 - }), - createVNode(_component_ProseTh, null, { - default: withCtx(() => [ - createTextVNode("Type") - ]), - _: 1 - }), - _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTh, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(" Required ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTh, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" Default ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showValues ? (openBlock(), createBlock(_component_ProseTh, { key: 2 }, { - default: withCtx(() => [ - createTextVNode(" Values ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTh, { key: 3 }, { - default: withCtx(() => [ - createTextVNode(" Description ") - ]), - _: 1 - })) : createCommentVNode("", true) - ]; - } - }), - _: 1 - }, _parent3, _scopeId2)); - } else { - return [ - createVNode(_component_ProseTr, null, { - default: withCtx(() => [ - createVNode(_component_ProseTh, null, { - default: withCtx(() => [ - createTextVNode("Prop") - ]), - _: 1 - }), - createVNode(_component_ProseTh, null, { - default: withCtx(() => [ - createTextVNode("Type") - ]), - _: 1 - }), - _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTh, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(" Required ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTh, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" Default ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showValues ? (openBlock(), createBlock(_component_ProseTh, { key: 2 }, { - default: withCtx(() => [ - createTextVNode(" Values ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTh, { key: 3 }, { - default: withCtx(() => [ - createTextVNode(" Description ") - ]), - _: 1 - })) : createCommentVNode("", true) - ]), - _: 1 - }) - ]; - } - }), - _: 1 - }, _parent2, _scopeId)); - _push2(ssrRenderComponent(_component_ProseTbody, null, { - default: withCtx((_2, _push3, _parent3, _scopeId2) => { - if (_push3) { - _push3(``); - ssrRenderList(_ctx.properties, (prop) => { - _push3(ssrRenderComponent(_component_ProseTr, { - key: prop.name - }, { - default: withCtx((_3, _push4, _parent4, _scopeId3) => { - if (_push4) { - _push4(ssrRenderComponent(_component_ProseTd, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(`${ssrInterpolate((prop == null ? void 0 : prop.name) || "?")}`); - } else { - return [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } else { - return [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) - ]), - _: 2 - }, 1024) - ]; - } - }), - _: 2 - }, _parent4, _scopeId3)); - _push4(ssrRenderComponent(_component_ProseTd, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(`${ssrInterpolate((prop == null ? void 0 : prop.type) || "?")}`); - } else { - return [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } else { - return [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) - ]), - _: 2 - }, 1024) - ]; - } - }), - _: 2 - }, _parent4, _scopeId3)); - if (_ctx.showRequired) { - _push4(ssrRenderComponent(_component_ProseTd, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(`${ssrInterpolate(prop.required === "?" ? "?" : prop.required ? "Yes" : "No")}`); - } else { - return [ - createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } else { - return [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) - ]), - _: 2 - }, 1024) - ]; - } - }), - _: 2 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - if (_ctx.showDefault) { - _push4(ssrRenderComponent(_component_ProseTd, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - if (prop.default) { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(`${ssrInterpolate((prop == null ? void 0 : prop.default) || "?")}`); - } else { - return [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } else { - _push5(``); - } - } else { - return [ - prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]; - } - }), - _: 2 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - if (_ctx.showValues) { - _push4(ssrRenderComponent(_component_ProseTd, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - if (prop.values) { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(`${ssrInterpolate((prop == null ? void 0 : prop.values) || "?")}`); - } else { - return [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } else { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(` - `); - } else { - return [ - createTextVNode(" - ") - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } - } else { - return [ - prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) - ]), - _: 2 - }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" - ") - ]), - _: 1 - })) - ]; - } - }), - _: 2 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - if (_ctx.showDescription) { - _push4(ssrRenderComponent(_component_ProseTd, null, { - default: withCtx((_4, _push5, _parent5, _scopeId4) => { - if (_push5) { - _push5(ssrRenderComponent(_component_ProseCodeInline, null, { - default: withCtx((_5, _push6, _parent6, _scopeId5) => { - if (_push6) { - _push6(`${ssrInterpolate(prop.description)}`); - } else { - return [ - createTextVNode(toDisplayString(prop.description), 1) - ]; - } - }), - _: 2 - }, _parent5, _scopeId4)); - } else { - return [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.description), 1) - ]), - _: 2 - }, 1024) - ]; - } - }), - _: 2 - }, _parent4, _scopeId3)); - } else { - _push4(``); - } - } else { - return [ - createVNode(_component_ProseTd, null, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024), - createVNode(_component_ProseTd, null, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024), - _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTd, { key: 0 }, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTd, { key: 1 }, { - default: withCtx(() => [ - prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showValues ? (openBlock(), createBlock(_component_ProseTd, { key: 2 }, { - default: withCtx(() => [ - prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) - ]), - _: 2 - }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" - ") - ]), - _: 1 - })) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTd, { key: 3 }, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.description), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]; - } - }), - _: 2 - }, _parent3, _scopeId2)); - }); - _push3(``); - } else { - return [ - (openBlock(true), createBlock(Fragment, null, renderList(_ctx.properties, (prop) => { - return openBlock(), createBlock(_component_ProseTr, { - key: prop.name - }, { - default: withCtx(() => [ - createVNode(_component_ProseTd, null, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024), - createVNode(_component_ProseTd, null, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024), - _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTd, { key: 0 }, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTd, { key: 1 }, { - default: withCtx(() => [ - prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showValues ? (openBlock(), createBlock(_component_ProseTd, { key: 2 }, { - default: withCtx(() => [ - prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) - ]), - _: 2 - }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" - ") - ]), - _: 1 - })) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTd, { key: 3 }, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.description), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]), - _: 2 - }, 1024); - }), 128)) - ]; - } - }), - _: 1 - }, _parent2, _scopeId)); - } else { - return [ - createVNode(_component_ProseThead, null, { - default: withCtx(() => [ - createVNode(_component_ProseTr, null, { - default: withCtx(() => [ - createVNode(_component_ProseTh, null, { - default: withCtx(() => [ - createTextVNode("Prop") - ]), - _: 1 - }), - createVNode(_component_ProseTh, null, { - default: withCtx(() => [ - createTextVNode("Type") - ]), - _: 1 - }), - _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTh, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(" Required ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTh, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" Default ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showValues ? (openBlock(), createBlock(_component_ProseTh, { key: 2 }, { - default: withCtx(() => [ - createTextVNode(" Values ") - ]), - _: 1 - })) : createCommentVNode("", true), - _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTh, { key: 3 }, { - default: withCtx(() => [ - createTextVNode(" Description ") - ]), - _: 1 - })) : createCommentVNode("", true) - ]), - _: 1 - }) - ]), - _: 1 - }), - createVNode(_component_ProseTbody, null, { - default: withCtx(() => [ - (openBlock(true), createBlock(Fragment, null, renderList(_ctx.properties, (prop) => { - return openBlock(), createBlock(_component_ProseTr, { - key: prop.name - }, { - default: withCtx(() => [ - createVNode(_component_ProseTd, null, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.name) || "?"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024), - createVNode(_component_ProseTd, null, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.type) || "?"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024), - _ctx.showRequired ? (openBlock(), createBlock(_component_ProseTd, { key: 0 }, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.required === "?" ? "?" : prop.required ? "Yes" : "No"), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showDefault ? (openBlock(), createBlock(_component_ProseTd, { key: 1 }, { - default: withCtx(() => [ - prop.default ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.default) || "?"), 1) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showValues ? (openBlock(), createBlock(_component_ProseTd, { key: 2 }, { - default: withCtx(() => [ - prop.values ? (openBlock(), createBlock(_component_ProseCodeInline, { key: 0 }, { - default: withCtx(() => [ - createTextVNode(toDisplayString((prop == null ? void 0 : prop.values) || "?"), 1) - ]), - _: 2 - }, 1024)) : (openBlock(), createBlock(_component_ProseCodeInline, { key: 1 }, { - default: withCtx(() => [ - createTextVNode(" - ") - ]), - _: 1 - })) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true), - _ctx.showDescription ? (openBlock(), createBlock(_component_ProseTd, { key: 3 }, { - default: withCtx(() => [ - createVNode(_component_ProseCodeInline, null, { - default: withCtx(() => [ - createTextVNode(toDisplayString(prop.description), 1) - ]), - _: 2 - }, 1024) - ]), - _: 2 - }, 1024)) : createCommentVNode("", true) - ]), - _: 2 - }, 1024); - }), 128)) - ]), - _: 1 - }) - ]; - } - }), - _: 1 - }, _parent)); - } else { - _push(``); - } -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Props.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const Props = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { Props as default }; -//# sourceMappingURL=Props-c617d5b2.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map b/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map deleted file mode 100644 index 34e07d74..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Props-c617d5b2.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Props-c617d5b2.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Props-c617d5b2.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs b/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs deleted file mode 100644 index 683f9cfc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs +++ /dev/null @@ -1,64 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { useSSRContext, defineComponent, mergeProps, withCtx, renderSlot } from 'vue'; -import { ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseA", - __ssrInlineRender: true, - props: { - href: { - type: String, - default: "" - }, - blank: { - type: Boolean, - default: false - }, - /** - * `true` if `href` points to a static file - */ - static: { - type: Boolean, - default: false - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ - to: __props.href, - blank: __props.blank, - static: __props.static - }, _attrs), { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true) - ]; - } - }), - _: 3 - }, _parent)); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseA.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-9cebe7e3"]]); - -export { __nuxt_component_2 as default }; -//# sourceMappingURL=ProseA-86ef3985.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map deleted file mode 100644 index 68f05091..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseA-86ef3985.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseA-86ef3985.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseA-86ef3985.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;AAYA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,QAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA;AAAA;AAAA;AAAA,IAIA,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,OAAA;AAAA,MACN,OAAS,EAAA,KAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,mBAAsB,GAAA,kBAAA,CAAA;AAC5B,MAAM,KAAA,CAAA,kBAAA,CAAmB,qBAAqB,UAAW,CAAA;AAAA,QACvD,IAAI,OAAQ,CAAA,IAAA;AAAA,QACZ,OAAO,OAAQ,CAAA,KAAA;AAAA,QACf,QAAQ,OAAQ,CAAA,MAAA;AAAA,OAClB,EAAG,MAAM,CAAG,EAAA;AAAA,QACV,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,WACrE,MAAA;AACL,YAAO,OAAA;AAAA,cACL,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,aACrD,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs b/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs deleted file mode 100644 index a44f5bef..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseA_vue_vue_type_style_index_0_scoped_9cebe7e3_transformed_true_lang = "a[data-v-9cebe7e3]{border-bottom:var(--prose-a-border-width) var(--prose-a-border-style-static) var(--prose-a-border-color-static);color:var(--prose-a-color-static);font-family:var(--typography-font-body);font-weight:var(--prose-a-fontWeight);padding-bottom:var(--prose-a-border-distance);-webkit-text-decoration:var(--prose-a-textDecoration);text-decoration:var(--prose-a-textDecoration)}a[data-v-9cebe7e3]:hover{border-color:var(--prose-a-border-color-hover);border-style:var(--prose-a-border-style-hover);color:var(--prose-a-color-hover)}a[data-v-9cebe7e3]:has(img){border-width:0}a[data-v-9cebe7e3]:has(code){border-bottom:var(--prose-a-hasCode-borderBottom)}a[data-v-9cebe7e3]:has(code) code{border-color:var(--prose-a-code-border-color-static);border-style:var(--prose-a-code-border-style);border-width:var(--prose-a-code-border-width);color:var(--prose-a-code-color-static)}a[data-v-9cebe7e3]:has(code):hover{border-bottom:var(--prose-a-hasCode-borderBottom)}a[data-v-9cebe7e3]:has(code):hover code{background-color:var(--prose-a-code-background-hover);border-color:var(--prose-a-code-border-color-hover);color:var(--prose-a-code-color-hover)}"; - -const ProseAStyles_ac6b0f84 = [ProseA_vue_vue_type_style_index_0_scoped_9cebe7e3_transformed_true_lang]; - -export { ProseAStyles_ac6b0f84 as default }; -//# sourceMappingURL=ProseA-styles.ac6b0f84.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map deleted file mode 100644 index 659cf328..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseA-styles.ac6b0f84.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseA-styles.ac6b0f84.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseA-styles-1.mjs-21dc01b5.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseA-styles.ac6b0f84.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uEAA0E,GAAA,goCAAA;;ACChF,8BAAe,CAACA,uEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs deleted file mode 100644 index a563116b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseBlockquote = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-dce1efe8"]]); - -export { ProseBlockquote as default }; -//# sourceMappingURL=ProseBlockquote-faf6e310.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map deleted file mode 100644 index 2503a404..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-faf6e310.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseBlockquote-faf6e310.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseBlockquote-faf6e310.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,WAAA,EAAc,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC7D,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAe,aAAA,CAAA,CAAA,CAAA;AACvB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4EAA4E,CAAA,CAAA;AACzJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,eAAkC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs deleted file mode 100644 index a2bf17bc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseBlockquote_vue_vue_type_style_index_0_scoped_dce1efe8_transformed_true_lang = 'blockquote[data-v-dce1efe8]{border-left:var(--prose-blockquote-border-width) var(--prose-blockquote-border-style) var(--prose-blockquote-border-color);color:var(--prose-blockquote-color);font-family:var(--typography-font-body);margin:var(--prose-blockquote-margin);padding:var(--prose-blockquote-padding);quotes:var(--prose-blockquote-quotes)}blockquote p[data-v-dce1efe8]:first-of-type:before,blockquote p[data-v-dce1efe8]:last-of-type:after{content:""}'; - -const ProseBlockquoteStyles_c0f9c45a = [ProseBlockquote_vue_vue_type_style_index_0_scoped_dce1efe8_transformed_true_lang]; - -export { ProseBlockquoteStyles_c0f9c45a as default }; -//# sourceMappingURL=ProseBlockquote-styles.c0f9c45a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map deleted file mode 100644 index 93eda488..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseBlockquote-styles.c0f9c45a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseBlockquote-styles-1.mjs-80ef6d31.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseBlockquote-styles.c0f9c45a.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,gFAAmF,GAAA,wcAAA;;ACCzF,uCAAe,CAACA,gFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs b/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs deleted file mode 100644 index 9338229f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs +++ /dev/null @@ -1,124 +0,0 @@ -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, ref, mergeProps, unref } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrInterpolate, ssrRenderSlot } from 'vue/server-renderer'; -import { u as useClipboard } from './index-1624a23e.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main$1 = /* @__PURE__ */ defineComponent({ - __name: "ProseCodeCopyButton", - __ssrInlineRender: true, - props: { - content: { - type: String, - default: "" - }, - show: { - type: Boolean, - default: false - } - }, - setup(__props) { - useClipboard(); - const { prose } = useAppConfig(); - const state = ref("init"); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b; - const _component_Icon = __nuxt_component_0$1; - _push(`Copy to clipboard`); - if (state.value === "copied") { - _push(ssrRenderComponent(_component_Icon, { - name: (_a = unref(prose).copyButton) == null ? void 0 : _a.iconCopied, - size: "18", - class: "copied" - }, null, _parent)); - } else { - _push(ssrRenderComponent(_component_Icon, { - name: (_b = unref(prose).copyButton) == null ? void 0 : _b.iconCopy, - size: "18" - }, null, _parent)); - } - _push(``); - }; - } -}); -const _sfc_setup$1 = _sfc_main$1.setup; -_sfc_main$1.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue"); - return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["__scopeId", "data-v-5fa3121e"]]); -const ProseCodeCopyButton = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_0 -}); -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseCode", - __ssrInlineRender: true, - props: { - code: { - type: String, - default: "" - }, - language: { - type: String, - default: null - }, - filename: { - type: String, - default: null - }, - highlights: { - type: Array, - default: () => [] - } - }, - setup(__props) { - const hovered = ref(false); - return (_ctx, _push, _parent, _attrs) => { - const _component_ProseCodeCopyButton = __nuxt_component_0; - _push(``); - if (__props.filename) { - _push(`${ssrInterpolate(__props.filename)}`); - } else { - _push(``); - } - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(ssrRenderComponent(_component_ProseCodeCopyButton, { - show: hovered.value, - content: __props.code, - class: "copy-button" - }, null, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseCode.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseCode = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-0f086f28"]]); -const ProseCode$1 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: ProseCode -}); - -export { ProseCodeCopyButton as P, ProseCode$1 as a }; -//# sourceMappingURL=ProseCode-94b7281d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map deleted file mode 100644 index 1e8d78fe..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseCode-94b7281d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseCode-94b7281d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCode-94b7281d.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs deleted file mode 100644 index 3cfd0a62..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-924acf67"]]); - -export { __nuxt_component_1 as default }; -//# sourceMappingURL=ProseCodeInline-960b9a43.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map deleted file mode 100644 index e7c6f885..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-960b9a43.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseCodeInline-960b9a43.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCodeInline-960b9a43.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,KAAA,EAAQ,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACvD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AACjB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,4EAA4E,CAAA,CAAA;AACzJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs deleted file mode 100644 index 23716c5b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseCodeInline_vue_vue_type_style_index_0_scoped_924acf67_transformed_true_lang = "code[data-v-924acf67]{background-color:var(--prose-code-inline-backgroundColor);border-radius:var(--prose-code-inline-borderRadius);color:var(--prose-code-inline-color);font-family:var(--typography-font-code);font-size:var(--prose-code-inline-fontSize);font-weight:var(--prose-code-inline-fontWeight);padding:var(--prose-code-inline-padding)}tbody code[data-v-924acf67]{font-size:var(--prose-tbody-code-inline-fontSize)}h1 a code[data-v-924acf67],h2 a code[data-v-924acf67],h3 a code[data-v-924acf67],h4 a code[data-v-924acf67],h5 a code[data-v-924acf67],h6 a code[data-v-924acf67]{border-radius:var(--prose-code-inline-borderRadius);color:inherit;font-size:.777777em;padding:.15em .5em}"; - -const ProseCodeInlineStyles_4873b751 = [ProseCodeInline_vue_vue_type_style_index_0_scoped_924acf67_transformed_true_lang]; - -export { ProseCodeInlineStyles_4873b751 as default }; -//# sourceMappingURL=ProseCodeInline-styles.4873b751.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map deleted file mode 100644 index 78172a74..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseCodeInline-styles.4873b751.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseCodeInline-styles.4873b751.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCodeInline-styles-1.mjs-f7e763e2.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseCodeInline-styles.4873b751.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,gFAAmF,GAAA,irBAAA;;ACCzF,uCAAe,CAACA,gFAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs b/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs deleted file mode 100644 index f8ac05cb..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseEm.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseEm = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-b3b2ffd9"]]); - -export { ProseEm as default }; -//# sourceMappingURL=ProseEm-f52fc33d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map deleted file mode 100644 index f97f6c8b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseEm-f52fc33d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseEm-f52fc33d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseEm-f52fc33d.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs b/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs deleted file mode 100644 index 8e429082..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseEm_vue_vue_type_style_index_0_scoped_b3b2ffd9_transformed_true_lang = "em[data-v-b3b2ffd9]{font-family:var(--typography-font-body);font-style:italic}"; - -const ProseEmStyles_0ce5f2c8 = [ProseEm_vue_vue_type_style_index_0_scoped_b3b2ffd9_transformed_true_lang]; - -export { ProseEmStyles_0ce5f2c8 as default }; -//# sourceMappingURL=ProseEm-styles.0ce5f2c8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map deleted file mode 100644 index 1fefbb62..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseEm-styles.0ce5f2c8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseEm-styles.0ce5f2c8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseEm-styles-1.mjs-c24c0eb6.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseEm-styles.0ce5f2c8.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,gFAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs deleted file mode 100644 index d919d656..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseH1", - __ssrInlineRender: true, - props: { - id: null - }, - setup(__props) { - const { prose } = useAppConfig(); - const hasIcon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h1) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - const icon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h1) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - _push(``); - _push(ssrRenderComponent(_component_NuxtLink, { - href: `#${__props.id}` - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - if (unref(hasIcon)) { - _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true), - unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: unref(icon) - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH1.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseH1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d187dd3d"]]); - -export { ProseH1 as default }; -//# sourceMappingURL=ProseH1-81b8c44a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map deleted file mode 100644 index 5c9c2724..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH1-81b8c44a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH1-81b8c44a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH1-81b8c44a.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs deleted file mode 100644 index 62f26b79..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseH1_vue_vue_type_style_index_0_scoped_d187dd3d_transformed_true_lang = "h1[data-v-d187dd3d]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h1-fontSize);font-weight:var(--prose-h1-fontWeight);letter-spacing:var(--prose-h1-letterSpacing);line-height:var(--prose-h1-lineHeight);margin:var(--prose-h1-margin)}h1[data-v-d187dd3d] .icon{display:inline-block;height:var(--prose-h1-iconSize);margin-left:12px;opacity:0;transition:opacity .1s;width:var(--prose-h1-iconSize)}h1 a[data-v-d187dd3d]:hover .icon{opacity:1}"; - -const ProseH1Styles_086fd4ea = [ProseH1_vue_vue_type_style_index_0_scoped_d187dd3d_transformed_true_lang]; - -export { ProseH1Styles_086fd4ea as default }; -//# sourceMappingURL=ProseH1-styles.086fd4ea.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map deleted file mode 100644 index 154b92fb..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH1-styles.086fd4ea.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH1-styles.086fd4ea.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH1-styles-1.mjs-87bf3693.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH1-styles.086fd4ea.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs deleted file mode 100644 index 24131295..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseH2", - __ssrInlineRender: true, - props: { - id: null - }, - setup(__props) { - const { prose } = useAppConfig(); - const hasIcon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h2) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - const icon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h2) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - _push(``); - _push(ssrRenderComponent(_component_NuxtLink, { - href: `#${__props.id}` - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - if (unref(hasIcon)) { - _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true), - unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: unref(icon) - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH2.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseH2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-273f00cc"]]); - -export { ProseH2 as default }; -//# sourceMappingURL=ProseH2-abc0d7da.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map deleted file mode 100644 index 8d1fe1f2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH2-abc0d7da.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH2-abc0d7da.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH2-abc0d7da.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs deleted file mode 100644 index ed6b4032..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseH2_vue_vue_type_style_index_0_scoped_273f00cc_transformed_true_lang = "h2[data-v-273f00cc]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h2-fontSize);font-weight:var(--prose-h2-fontWeight);letter-spacing:var(--prose-h2-letterSpacing);line-height:var(--prose-h2-lineHeight);margin:var(--prose-h2-margin)}h2[data-v-273f00cc] .icon{display:inline-block;height:var(--prose-h2-iconSize);margin-left:12px;opacity:0;transition:opacity .1s;width:var(--prose-h2-iconSize)}h2 a[data-v-273f00cc]:hover .icon{opacity:1}"; - -const ProseH2Styles_8ba56a52 = [ProseH2_vue_vue_type_style_index_0_scoped_273f00cc_transformed_true_lang]; - -export { ProseH2Styles_8ba56a52 as default }; -//# sourceMappingURL=ProseH2-styles.8ba56a52.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map deleted file mode 100644 index 1c3c1f94..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH2-styles.8ba56a52.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH2-styles.8ba56a52.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH2-styles-1.mjs-514a1e54.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH2-styles.8ba56a52.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs deleted file mode 100644 index 17c7f45b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseH3", - __ssrInlineRender: true, - props: { - id: null - }, - setup(__props) { - const { prose } = useAppConfig(); - const hasIcon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h3) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - const icon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h3) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - _push(``); - _push(ssrRenderComponent(_component_NuxtLink, { - href: `#${__props.id}` - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - if (unref(hasIcon)) { - _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true), - unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: unref(icon) - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH3.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseH3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-c013d38e"]]); - -export { ProseH3 as default }; -//# sourceMappingURL=ProseH3-6c54494a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map deleted file mode 100644 index 41f54b45..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH3-6c54494a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH3-6c54494a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH3-6c54494a.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs deleted file mode 100644 index 4434557b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseH3_vue_vue_type_style_index_0_scoped_c013d38e_transformed_true_lang = "h3[data-v-c013d38e]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h3-fontSize);font-weight:var(--prose-h3-fontWeight);letter-spacing:var(--prose-h3-letterSpacing);line-height:var(--prose-h3-lineHeight);margin:var(--prose-h3-margin)}h3[data-v-c013d38e] .icon{display:inline-block;height:var(--prose-h3-iconSize);margin-left:12px;opacity:0;transition:opacity .1s;width:var(--prose-h3-iconSize)}h3 a[data-v-c013d38e]:hover .icon{opacity:1}"; - -const ProseH3Styles_492ea689 = [ProseH3_vue_vue_type_style_index_0_scoped_c013d38e_transformed_true_lang]; - -export { ProseH3Styles_492ea689 as default }; -//# sourceMappingURL=ProseH3-styles.492ea689.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map deleted file mode 100644 index 73771b54..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH3-styles.492ea689.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH3-styles.492ea689.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH3-styles-1.mjs-b7666313.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH3-styles.492ea689.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs deleted file mode 100644 index 3116b6a0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { _ as __nuxt_component_0$1 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseH4", - __ssrInlineRender: true, - props: { - id: null - }, - setup(__props) { - const { prose } = useAppConfig(); - const hasIcon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h4) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - const icon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h4) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0$1; - const _component_Icon = __nuxt_component_0$1$1; - _push(``); - _push(ssrRenderComponent(_component_NuxtLink, { - href: `#${__props.id}` - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - if (unref(hasIcon)) { - _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true), - unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: unref(icon) - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH4.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-1e5a0afd"]]); - -export { __nuxt_component_0 as default }; -//# sourceMappingURL=ProseH4-4f0da863.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map deleted file mode 100644 index c00a12df..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH4-4f0da863.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH4-4f0da863.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH4-4f0da863.js"],"sourcesContent":null,"names":["__nuxt_component_0$2"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs deleted file mode 100644 index 870fcf1a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseH4_vue_vue_type_style_index_0_scoped_1e5a0afd_transformed_true_lang = "h4[data-v-1e5a0afd]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h4-fontSize);font-weight:var(--prose-h4-fontWeight);letter-spacing:var(--prose-h4-letterSpacing);line-height:var(--prose-h4-lineHeight);margin:var(--prose-h4-margin)}h4[data-v-1e5a0afd] .icon{display:inline-block;height:var(--prose-h4-iconSize);margin-left:10px;opacity:0;transition:opacity .1s;width:var(--prose-h4-iconSize)}h4 a[data-v-1e5a0afd]:hover .icon{opacity:1}"; - -const ProseH4Styles_68f135ad = [ProseH4_vue_vue_type_style_index_0_scoped_1e5a0afd_transformed_true_lang]; - -export { ProseH4Styles_68f135ad as default }; -//# sourceMappingURL=ProseH4-styles.68f135ad.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map deleted file mode 100644 index 36371b61..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH4-styles.68f135ad.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH4-styles.68f135ad.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH4-styles-1.mjs-446a06e4.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH4-styles.68f135ad.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,udAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs deleted file mode 100644 index d1163c65..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseH5", - __ssrInlineRender: true, - props: { - id: null - }, - setup(__props) { - const { prose } = useAppConfig(); - const hasIcon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h5) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - const icon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h5) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - _push(``); - _push(ssrRenderComponent(_component_NuxtLink, { - href: `#${__props.id}` - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - if (unref(hasIcon)) { - _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true), - unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: unref(icon) - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH5.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseH5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-35e434df"]]); - -export { ProseH5 as default }; -//# sourceMappingURL=ProseH5-0c6e8cd8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map deleted file mode 100644 index 9418a8e7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH5-0c6e8cd8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH5-0c6e8cd8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH5-0c6e8cd8.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs deleted file mode 100644 index ddf05f86..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseH5_vue_vue_type_style_index_0_scoped_35e434df_transformed_true_lang = "h5[data-v-35e434df]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h5-fontSize);font-weight:var(--prose-h5-fontWeight);line-height:var(--prose-h5-lineHeight);margin:var(--prose-h5-margin)}h5[data-v-35e434df] .icon{display:inline-block;height:var(--prose-h5-iconSize);margin-left:8px;opacity:0;transition:opacity .1s;width:var(--prose-h5-iconSize)}h5 a[data-v-35e434df]:hover .icon{opacity:1}"; - -const ProseH5Styles_c63d0e8d = [ProseH5_vue_vue_type_style_index_0_scoped_35e434df_transformed_true_lang]; - -export { ProseH5Styles_c63d0e8d as default }; -//# sourceMappingURL=ProseH5-styles.c63d0e8d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map deleted file mode 100644 index 0208f372..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH5-styles.c63d0e8d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH5-styles.c63d0e8d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH5-styles-1.mjs-e81297f4.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH5-styles.c63d0e8d.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,yaAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs deleted file mode 100644 index bfdf918e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs +++ /dev/null @@ -1,73 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, withCtx, unref, renderSlot, openBlock, createBlock, createCommentVNode } from 'vue'; -import { a as useAppConfig } from './useDocus-928368c4.mjs'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseH6", - __ssrInlineRender: true, - props: { - id: null - }, - setup(__props) { - const { prose } = useAppConfig(); - const hasIcon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h6) == null ? void 0 : _a.icon) && ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - const icon = computed(() => { - var _a, _b; - return ((_a = prose == null ? void 0 : prose.h6) == null ? void 0 : _a.icon) || ((_b = prose == null ? void 0 : prose.headings) == null ? void 0 : _b.icon); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1; - _push(``); - _push(ssrRenderComponent(_component_NuxtLink, { - href: `#${__props.id}` - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - if (unref(hasIcon)) { - _push2(ssrRenderComponent(_component_Icon, { name: unref(icon) }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true), - unref(hasIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: unref(icon) - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseH6.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseH6 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-dfc5fb9b"]]); - -export { ProseH6 as default }; -//# sourceMappingURL=ProseH6-cffb1b40.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map deleted file mode 100644 index 96dc3b4a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH6-cffb1b40.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH6-cffb1b40.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH6-cffb1b40.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs b/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs deleted file mode 100644 index 21e1784b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseH6_vue_vue_type_style_index_0_scoped_dfc5fb9b_transformed_true_lang = "h6[data-v-dfc5fb9b]{display:block;font-family:var(--typography-font-display);font-size:var(--prose-h6-fontSize);font-weight:var(--prose-h6-fontWeight);line-height:var(--prose-h6-lineHeight);margin:var(--prose-h6-margin)}h6[data-v-dfc5fb9b] .icon{display:inline-block;height:var(--prose-h6-iconSize);margin-left:8px;opacity:0;transition:opacity .1s;width:var(--prose-h6-iconSize)}h6 a[data-v-dfc5fb9b]:hover .icon{opacity:1}"; - -const ProseH6Styles_92c4d496 = [ProseH6_vue_vue_type_style_index_0_scoped_dfc5fb9b_transformed_true_lang]; - -export { ProseH6Styles_92c4d496 as default }; -//# sourceMappingURL=ProseH6-styles.92c4d496.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map deleted file mode 100644 index 61bfd278..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseH6-styles.92c4d496.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseH6-styles.92c4d496.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH6-styles-1.mjs-fb05331a.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseH6-styles.92c4d496.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,yaAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs b/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs deleted file mode 100644 index 8e61f0d2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs +++ /dev/null @@ -1,21 +0,0 @@ -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseHr.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseHr = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-89dedb08"]]); - -export { ProseHr as default }; -//# sourceMappingURL=ProseHr-fa0af264.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map deleted file mode 100644 index e6ba3629..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseHr-fa0af264.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseHr-fa0af264.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseHr-fa0af264.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACvD,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs b/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs deleted file mode 100644 index 26a3b60a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseHr_vue_vue_type_style_index_0_scoped_89dedb08_transformed_true_lang = "hr[data-v-89dedb08]{border-top:var(--prose-hr-width) var(--prose-hr-style) var(--prose-hr-color);margin:var(--prose-hr-margin)}"; - -const ProseHrStyles_22aa3717 = [ProseHr_vue_vue_type_style_index_0_scoped_89dedb08_transformed_true_lang]; - -export { ProseHrStyles_22aa3717 as default }; -//# sourceMappingURL=ProseHr-styles.22aa3717.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map deleted file mode 100644 index e6517b34..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseHr-styles.22aa3717.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseHr-styles.22aa3717.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseHr-styles-1.mjs-5b9817c2.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseHr-styles.22aa3717.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,iIAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs b/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs deleted file mode 100644 index ac7a3a70..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs +++ /dev/null @@ -1,62 +0,0 @@ -import { b as useRuntimeConfig } from './app.config-832f5f68.mjs'; -import { useSSRContext, defineComponent, computed, mergeProps, unref } from 'vue'; -import { withBase } from 'ufo'; -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ProseImg", - __ssrInlineRender: true, - props: { - src: { - type: String, - default: "" - }, - alt: { - type: String, - default: "" - }, - width: { - type: [String, Number], - default: void 0 - }, - height: { - type: [String, Number], - default: void 0 - } - }, - setup(__props) { - const props = __props; - const refinedSrc = computed(() => { - var _a; - if (((_a = props.src) == null ? void 0 : _a.startsWith("/")) && !props.src.startsWith("//")) { - return withBase(props.src, useRuntimeConfig().app.baseURL); - } - return props.src; - }); - return (_ctx, _push, _parent, _attrs) => { - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseImg.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseImg = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-2ef15301"]]); - -export { ProseImg as default }; -//# sourceMappingURL=ProseImg-f3012414.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map deleted file mode 100644 index 9b1f8d4b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseImg-f3012414.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseImg-f3012414.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseImg-f3012414.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;AAYA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,GAAK,EAAA;AAAA,MACH,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,GAAK,EAAA;AAAA,MACH,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,KAAO,EAAA;AAAA,MACL,IAAA,EAAM,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,MACrB,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,IACA,MAAQ,EAAA;AAAA,MACN,IAAA,EAAM,CAAC,MAAA,EAAQ,MAAM,CAAA;AAAA,MACrB,OAAS,EAAA,KAAA,CAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAM,MAAA,UAAA,GAAa,SAAS,MAAM;AAChC,MAAI,IAAA,EAAA,CAAA;AACJ,MAAA,IAAA,CAAA,CAAM,EAAK,GAAA,KAAA,CAAM,GAAQ,KAAA,IAAA,GAAO,SAAS,EAAG,CAAA,UAAA,CAAW,GAAG,CAAA,KAAM,CAAC,KAAA,CAAM,GAAI,CAAA,UAAA,CAAW,IAAI,CAAG,EAAA;AAC3F,QAAA,OAAO,SAAS,KAAM,CAAA,GAAA,EAAK,gBAAiB,EAAA,CAAE,IAAI,OAAO,CAAA,CAAA;AAAA,OAC3D;AACA,MAAA,OAAO,KAAM,CAAA,GAAA,CAAA;AAAA,KACd,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,CAAO,IAAA,EAAA,cAAA,CAAe,UAAW,CAAA,IAAA,CAAK,MAAQ,EAAA;AAAA,QAClD,GAAA,EAAK,MAAM,UAAU,CAAA;AAAA,QACrB,KAAK,OAAQ,CAAA,GAAA;AAAA,QACb,OAAO,OAAQ,CAAA,KAAA;AAAA,QACf,QAAQ,OAAQ,CAAA,MAAA;AAAA,OAClB,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAAA,KAChC,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qEAAqE,CAAA,CAAA;AAClJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs deleted file mode 100644 index 8574fb09..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseImg_vue_vue_type_style_index_0_scoped_2ef15301_transformed_true_lang = "img[data-v-2ef15301]{margin:var(--prose-img-margin)}"; - -const ProseImgStyles_cfb4616f = [ProseImg_vue_vue_type_style_index_0_scoped_2ef15301_transformed_true_lang]; - -export { ProseImgStyles_cfb4616f as default }; -//# sourceMappingURL=ProseImg-styles.cfb4616f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map deleted file mode 100644 index dd1dfee0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseImg-styles.cfb4616f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseImg-styles.cfb4616f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseImg-styles-1.mjs-00994691.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseImg-styles.cfb4616f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,sDAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs b/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs deleted file mode 100644 index 582e27ed..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseLi.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseLi = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-4c2f5fb9"]]); - -export { ProseLi as default }; -//# sourceMappingURL=ProseLi-948accef.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map deleted file mode 100644 index 3cd7e31c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseLi-948accef.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseLi-948accef.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseLi-948accef.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs b/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs deleted file mode 100644 index dd0f8e7f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseLi_vue_vue_type_style_index_0_scoped_4c2f5fb9_transformed_true_lang = "li[data-v-4c2f5fb9]{font-family:var(--typography-font-body);list-style-position:var(--prose-li-listStylePosition);margin:var(--prose-li-margin)}"; - -const ProseLiStyles_29062533 = [ProseLi_vue_vue_type_style_index_0_scoped_4c2f5fb9_transformed_true_lang]; - -export { ProseLiStyles_29062533 as default }; -//# sourceMappingURL=ProseLi-styles.29062533.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map deleted file mode 100644 index 2455faf9..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseLi-styles.29062533.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseLi-styles.29062533.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseLi-styles-1.mjs-7ea1110e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseLi-styles.29062533.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,kJAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs b/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs deleted file mode 100644 index 5feeae03..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseOl.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseOl = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-3f2b1bed"]]); - -export { ProseOl as default }; -//# sourceMappingURL=ProseOl-b8e80875.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map deleted file mode 100644 index 37f13de3..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseOl-b8e80875.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseOl-b8e80875.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseOl-b8e80875.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs b/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs deleted file mode 100644 index 9be040b5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseOl_vue_vue_type_style_index_0_scoped_3f2b1bed_transformed_true_lang = "ol[data-v-3f2b1bed]{font-family:var(--typography-font-body);list-style-type:var(--prose-ol-listStyleType);margin:var(--prose-ol-margin);padding:var(--prose-ol-padding)}ol[data-v-3f2b1bed]> li::marker{color:var(--prose-ol-li-markerColor)}ol[data-v-3f2b1bed]> li ol,ol[data-v-3f2b1bed]> li ul{margin:0}"; - -const ProseOlStyles_c085ed74 = [ProseOl_vue_vue_type_style_index_0_scoped_3f2b1bed_transformed_true_lang]; - -export { ProseOlStyles_c085ed74 as default }; -//# sourceMappingURL=ProseOl-styles.c085ed74.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map deleted file mode 100644 index c7cba289..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseOl-styles.c085ed74.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseOl-styles.c085ed74.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseOl-styles-1.mjs-f1c4f1aa.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseOl-styles.c085ed74.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,8SAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs b/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs deleted file mode 100644 index d6211043..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(`

    `); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseP.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-9dc9c102"]]); - -export { __nuxt_component_3 as default }; -//# sourceMappingURL=ProseP-a91aeff7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map deleted file mode 100644 index eed9a6f6..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseP-a91aeff7.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseP-a91aeff7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseP-a91aeff7.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,EAAA,EAAK,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACpD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAM,IAAA,CAAA,CAAA,CAAA;AACd,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,mEAAmE,CAAA,CAAA;AAChJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs b/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs deleted file mode 100644 index 25ba3893..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseP_vue_vue_type_style_index_0_scoped_9dc9c102_transformed_true_lang = 'p[data-v-9dc9c102]{font-family:var(--typography-font-body);font-size:var(--prose-p-fontSize);line-height:var(--prose-p-lineHeight);margin:var(--prose-p-margin)}p[data-v-9dc9c102] br{content:"";display:block;margin:var(--prose-p-br-margin)}'; - -const ProsePStyles_b304bfc7 = [ProseP_vue_vue_type_style_index_0_scoped_9dc9c102_transformed_true_lang]; - -export { ProsePStyles_b304bfc7 as default }; -//# sourceMappingURL=ProseP-styles.b304bfc7.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map deleted file mode 100644 index 98376743..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseP-styles.b304bfc7.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseP-styles.b304bfc7.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseP-styles-1.mjs-7f654e4b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseP-styles.b304bfc7.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uEAA0E,GAAA,iPAAA;;ACChF,8BAAe,CAACA,uEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs b/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs deleted file mode 100644 index 88c8666c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseStrong = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-84b57b07"]]); - -export { ProseStrong as default }; -//# sourceMappingURL=ProseStrong-246281a0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map deleted file mode 100644 index 4cf7b889..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseStrong-246281a0.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseStrong-246281a0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseStrong-246281a0.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,OAAA,EAAU,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACzD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAW,SAAA,CAAA,CAAA,CAAA;AACnB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,wEAAwE,CAAA,CAAA;AACrJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,WAA8B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs deleted file mode 100644 index 051ecdb7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseStrong_vue_vue_type_style_index_0_scoped_84b57b07_transformed_true_lang = "strong[data-v-84b57b07]{font-family:var(--typography-font-body);font-weight:var(--prose-strong-fontWeight)}"; - -const ProseStrongStyles_ec17e85f = [ProseStrong_vue_vue_type_style_index_0_scoped_84b57b07_transformed_true_lang]; - -export { ProseStrongStyles_ec17e85f as default }; -//# sourceMappingURL=ProseStrong-styles.ec17e85f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map deleted file mode 100644 index c0ca0dfd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseStrong-styles.ec17e85f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseStrong-styles.ec17e85f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseStrong-styles-1.mjs-63398faa.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseStrong-styles.ec17e85f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,4EAA+E,GAAA,6GAAA;;ACCrF,mCAAe,CAACA,4EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs deleted file mode 100644 index 71b7d190..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { useSSRContext, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(`
    `); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTable.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-78f198db"]]); - -export { __nuxt_component_0 as default }; -//# sourceMappingURL=ProseTable-425d227b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map deleted file mode 100644 index f48830ec..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTable-425d227b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTable-425d227b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTable-425d227b.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,eAAgB,EAAA,EAAG,MAAM,CAAC,CAA2C,CAAA,wCAAA,CAAA,CAAA,CAAA;AACrH,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAgB,cAAA,CAAA,CAAA,CAAA;AACxB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uEAAuE,CAAA,CAAA;AACpJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs deleted file mode 100644 index 5357a82f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseTable_vue_vue_type_style_index_0_scoped_78f198db_transformed_true_lang = ".table-wrapper[data-v-78f198db]{margin:var(--prose-table-margin);max-width:100%;overflow-x:auto}table[data-v-78f198db]{font-family:var(--typography-font-body);font-size:var(--prose-table-fontSize);line-height:var(--prose-table-lineHeight);table-layout:auto;text-align:var(--prose-table-textAlign);width:100%}table[data-v-78f198db] code{white-space:nowrap}"; - -const ProseTableStyles_b377f50f = [ProseTable_vue_vue_type_style_index_0_scoped_78f198db_transformed_true_lang]; - -export { ProseTableStyles_b377f50f as default }; -//# sourceMappingURL=ProseTable-styles.b377f50f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map deleted file mode 100644 index 100ab5f0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTable-styles.b377f50f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTable-styles.b377f50f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTable-styles-1.mjs-2569cc7e.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTable-styles.b377f50f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,qWAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs deleted file mode 100644 index 4754fdab..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_4 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { __nuxt_component_4 as default }; -//# sourceMappingURL=ProseTbody-f622755a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map deleted file mode 100644 index 608f4a4a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTbody-f622755a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTbody-f622755a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTbody-f622755a.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,MAAA,EAAS,cAAe,CAAA,MAAM,CAAI,CAAA,CAAA,CAAA,CAAA,CAAA;AACxC,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAU,QAAA,CAAA,CAAA,CAAA;AAClB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uEAAuE,CAAA,CAAA;AACpJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs deleted file mode 100644 index ba64c21e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTd.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_5 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-281e7d4a"]]); - -export { __nuxt_component_5 as default }; -//# sourceMappingURL=ProseTd-ce60dd42.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map deleted file mode 100644 index 9a707a82..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTd-ce60dd42.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTd-ce60dd42.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTd-ce60dd42.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs deleted file mode 100644 index d1cf25fb..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseTd_vue_vue_type_style_index_0_scoped_281e7d4a_transformed_true_lang = "tbody td[data-v-281e7d4a]{font-family:var(--typography-font-body);padding:var(--prose-tbody-td-padding)}tbody td[data-v-281e7d4a]:first-child{padding-left:0}tbody td[data-v-281e7d4a]:last-child{padding-right:0}"; - -const ProseTdStyles_2b89033a = [ProseTd_vue_vue_type_style_index_0_scoped_281e7d4a_transformed_true_lang]; - -export { ProseTdStyles_2b89033a as default }; -//# sourceMappingURL=ProseTd-styles.2b89033a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map deleted file mode 100644 index 359cae0c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTd-styles.2b89033a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTd-styles.2b89033a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTd-styles-1.mjs-7e5a80a0.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTd-styles.2b89033a.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,oNAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs deleted file mode 100644 index 16bfe484..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTh.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-269b758d"]]); - -export { __nuxt_component_3 as default }; -//# sourceMappingURL=ProseTh-8250ce9f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map deleted file mode 100644 index 0d8725bc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTh-8250ce9f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTh-8250ce9f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTh-8250ce9f.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs deleted file mode 100644 index 24776316..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseTh_vue_vue_type_style_index_0_scoped_269b758d_transformed_true_lang = "th[data-v-269b758d]{color:var(--prose-th-color);font-family:var(--typography-font-display);font-weight:var(--prose-th-fontWeight);padding:var(--prose-th-padding)}th[data-v-269b758d]:first-child{padding-left:0}th[data-v-269b758d]:last-child{padding-right:0}"; - -const ProseThStyles_9ccb956b = [ProseTh_vue_vue_type_style_index_0_scoped_269b758d_transformed_true_lang]; - -export { ProseThStyles_9ccb956b as default }; -//# sourceMappingURL=ProseTh-styles.9ccb956b.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map deleted file mode 100644 index 8e83cf2d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTh-styles.9ccb956b.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTh-styles.9ccb956b.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTh-styles-1.mjs-5817f014.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTh-styles.9ccb956b.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,kQAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs b/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs deleted file mode 100644 index a05c6908..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseThead.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_1 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-81e7d1ab"]]); - -export { __nuxt_component_1 as default }; -//# sourceMappingURL=ProseThead-7ba76e48.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map deleted file mode 100644 index 7696a6c9..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseThead-7ba76e48.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseThead-7ba76e48.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseThead-7ba76e48.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,MAAA,EAAS,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACxD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAU,QAAA,CAAA,CAAA,CAAA;AAClB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uEAAuE,CAAA,CAAA;AACpJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs b/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs deleted file mode 100644 index 0e78f0ca..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseThead_vue_vue_type_style_index_0_scoped_81e7d1ab_transformed_true_lang = "thead[data-v-81e7d1ab]{border-color:var(--prose-thead-border-color);border-bottom-color:var(--prose-thead-borderBottom-color);border-style:var(--prose-thead-border-style);border-bottom-style:var(--prose-thead-borderBottom-style);border-width:var(--prose-thead-border-width);border-bottom:var(--prose-thead-borderBottom-width);font-family:var(--typography-font-display)}"; - -const ProseTheadStyles_319de3db = [ProseThead_vue_vue_type_style_index_0_scoped_81e7d1ab_transformed_true_lang]; - -export { ProseTheadStyles_319de3db as default }; -//# sourceMappingURL=ProseThead-styles.319de3db.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map deleted file mode 100644 index b9fee9e7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseThead-styles.319de3db.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseThead-styles.319de3db.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseThead-styles-1.mjs-ef3c8ba8.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseThead-styles.319de3db.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,mXAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs deleted file mode 100644 index da92dbfe..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseTr.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-759aaa1b"]]); - -export { __nuxt_component_2 as default }; -//# sourceMappingURL=ProseTr-6559f7d8.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map deleted file mode 100644 index 1847239a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTr-6559f7d8.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTr-6559f7d8.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTr-6559f7d8.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,kBAAqC,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs b/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs deleted file mode 100644 index 5cac703b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseTr_vue_vue_type_style_index_0_scoped_759aaa1b_transformed_true_lang = "tbody tr[data-v-759aaa1b]{border-bottom:var(--prose-tbody-tr-borderBottom-width) var(--prose-tbody-tr-borderBottom-style) var(--prose-tbody-tr-borderBottom-color)}"; - -const ProseTrStyles_755e9793 = [ProseTr_vue_vue_type_style_index_0_scoped_759aaa1b_transformed_true_lang]; - -export { ProseTrStyles_755e9793 as default }; -//# sourceMappingURL=ProseTr-styles.755e9793.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map deleted file mode 100644 index 19db25a5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseTr-styles.755e9793.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseTr-styles.755e9793.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTr-styles-1.mjs-a1b9d693.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseTr-styles.755e9793.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,qKAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs b/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs deleted file mode 100644 index b422f577..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs +++ /dev/null @@ -1,23 +0,0 @@ -import { ssrRenderAttrs, ssrRenderSlot } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/typography/components/global/ProseUl.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const ProseUl = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-bb83f3b0"]]); - -export { ProseUl as default }; -//# sourceMappingURL=ProseUl-79ecc4c5.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map deleted file mode 100644 index 0a662af7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseUl-79ecc4c5.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseUl-79ecc4c5.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseUl-79ecc4c5.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,GAAA,EAAM,cAAe,CAAA,MAAM,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACrD,EAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,SAAA,EAAW,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC9D,EAAA,KAAA,CAAM,CAAO,KAAA,CAAA,CAAA,CAAA;AACf,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,OAA0B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs b/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs deleted file mode 100644 index a3d2efff..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ProseUl_vue_vue_type_style_index_0_scoped_bb83f3b0_transformed_true_lang = "ul[data-v-bb83f3b0]{font-family:var(--typography-font-body);list-style-type:var(--prose-ul-listStyleType);margin:var(--prose-ul-margin);padding:var(--prose-ul-padding)}ul[data-v-bb83f3b0]> li::marker{color:var(--prose-ul-li-markerColor)}ul[data-v-bb83f3b0]> li ol,ul[data-v-bb83f3b0]> li ul{margin:0}"; - -const ProseUlStyles_2d31952c = [ProseUl_vue_vue_type_style_index_0_scoped_bb83f3b0_transformed_true_lang]; - -export { ProseUlStyles_2d31952c as default }; -//# sourceMappingURL=ProseUl-styles.2d31952c.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map b/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map deleted file mode 100644 index 966f41d7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ProseUl-styles.2d31952c.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ProseUl-styles.2d31952c.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseUl-styles-1.mjs-d75b8b12.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ProseUl-styles.2d31952c.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,8SAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs b/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs deleted file mode 100644 index 93f6611a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs +++ /dev/null @@ -1,86 +0,0 @@ -import __nuxt_component_2 from './Alert-2b29f746.mjs'; -import { _ as __nuxt_component_0$1 } from './DocsAsideTree-136bd08b.mjs'; -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { defineComponent, computed, withCtx, unref, createTextVNode, toDisplayString, createVNode, useSSRContext } from 'vue'; -import { ssrRenderComponent, ssrInterpolate } from 'vue/server-renderer'; -import { splitByCase, upperFirst } from 'scule'; -import './ContentSlot-deb25102.mjs'; -import 'ufo'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "ReadMore", - __ssrInlineRender: true, - props: { - link: { - type: String, - required: true - }, - title: { - type: String, - required: false, - default: void 0 - } - }, - setup(__props) { - const props = __props; - const createTitle = (title, link) => title || link.split("/").filter(Boolean).map((part) => splitByCase(part).map((p) => upperFirst(p)).join(" ")).join(" > ").replace("Api", "API"); - const computedTitle = computed(() => createTitle(props.title, props.link)); - return (_ctx, _push, _parent, _attrs) => { - const _component_Alert = __nuxt_component_2; - const _component_Icon = __nuxt_component_0$1; - const _component_NuxtLink = __nuxt_component_0; - _push(ssrRenderComponent(_component_Alert, _attrs, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(ssrRenderComponent(_component_Icon, { name: "heroicons-outline:window" }, null, _parent2, _scopeId)); - _push2(` Read more in `); - _push2(ssrRenderComponent(_component_NuxtLink, { to: __props.link }, { - default: withCtx((_2, _push3, _parent3, _scopeId2) => { - if (_push3) { - _push3(`${ssrInterpolate(unref(computedTitle))}`); - } else { - return [ - createTextVNode(toDisplayString(unref(computedTitle)), 1) - ]; - } - }), - _: 1 - }, _parent2, _scopeId)); - _push2(`. `); - } else { - return [ - createVNode(_component_Icon, { name: "heroicons-outline:window" }), - createTextVNode(" Read more in "), - createVNode(_component_NuxtLink, { to: __props.link }, { - default: withCtx(() => [ - createTextVNode(toDisplayString(unref(computedTitle)), 1) - ]), - _: 1 - }, 8, ["to"]), - createTextVNode(". ") - ]; - } - }), - _: 1 - }, _parent)); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/ReadMore.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=ReadMore-4e2f1622.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map b/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map deleted file mode 100644 index 650e1837..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ReadMore-4e2f1622.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ReadMore-4e2f1622.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ReadMore-4e2f1622.js"],"sourcesContent":null,"names":["__nuxt_component_0","__nuxt_component_0$1"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs b/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs deleted file mode 100644 index ce620005..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs +++ /dev/null @@ -1,111 +0,0 @@ -import __nuxt_component_0 from './TabsHeader-c9b56dab.mjs'; -import { u as useColorMode } from '../server.mjs'; -import { useSSRContext, defineComponent, ref, computed, mergeProps, unref } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderAttr } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import 'ofetch'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import '../../nitro/config.mjs'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Sandbox", - __ssrInlineRender: true, - props: { - src: { - type: String, - default: "" - }, - repo: { - type: String, - default: "" - }, - branch: { - type: String, - default: "" - }, - dir: { - type: String, - default: "" - }, - file: { - type: String, - default: "app.vue" - } - }, - setup(__props) { - const props = __props; - const colorMode = useColorMode(); - const providers = { - CodeSandBox: () => `https://codesandbox.io/embed/github/${props.repo}/tree/${props.branch}/${props.dir}?hidenavigation=1&theme=${colorMode.value}`, - StackBlitz: () => `https://stackblitz.com/github/${props.repo}/tree/${props.branch}/${props.dir}?embed=1&file=${props.file}&theme=${colorMode.value}` - }; - const providersTabs = Object.keys(providers).map((p) => ({ label: p })); - const activeTabIndex = ref(-1); - const tabs = ref(); - const url = ref(""); - const provider = ref(""); - const changeProvider = (value) => { - provider.value = value; - url.value = props.src || providers[provider.value](); - localStorage.setItem("docus_sandbox", value); - }; - computed(() => { - var _a; - return (_a = url.value) == null ? void 0 : _a.replace("?embed=1&", "?").replace("/embed/", "/s/"); - }); - const updateTab = (i) => { - activeTabIndex.value = i; - changeProvider(providersTabs[i].label); - }; - return (_ctx, _push, _parent, _attrs) => { - const _component_TabsHeader = __nuxt_component_0; - _push(``); - if (!__props.src) { - _push(ssrRenderComponent(_component_TabsHeader, { - ref_key: "tabs", - ref: tabs, - "active-tab-index": unref(activeTabIndex), - tabs: unref(providersTabs), - "onUpdate:activeTabIndex": updateTab - }, null, _parent)); - } else { - _push(``); - } - if (unref(url)) { - _push(``); - } else { - _push(`Loading Sandbox...`); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const Sandbox = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-90b7615f"]]); - -export { Sandbox as default }; -//# sourceMappingURL=Sandbox-3e5bdd00.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map b/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map deleted file mode 100644 index 835f7ab1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Sandbox-3e5bdd00.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Sandbox-3e5bdd00.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Sandbox-3e5bdd00.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs b/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs deleted file mode 100644 index 037b3c34..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Sandbox_vue_vue_type_style_index_0_scoped_90b7615f_transformed_true_lang = ".sandbox[data-v-90b7615f]{--sandbox-height:700px;background:var(--elements-surface-background-base);border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-md);font-size:var(--text-3xl-fontSize);height:700px;height:var(--sandbox-height);line-height:var(--text-3xl-lineHeight)}.sandbox[data-v-90b7615f],.sandbox iframe[data-v-90b7615f]{overflow:hidden;width:100%}.sandbox iframe[data-v-90b7615f]{height:100%}"; - -const SandboxStyles_b322716f = [Sandbox_vue_vue_type_style_index_0_scoped_90b7615f_transformed_true_lang]; - -export { SandboxStyles_b322716f as default }; -//# sourceMappingURL=Sandbox-styles.b322716f.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map b/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map deleted file mode 100644 index 689a9f11..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Sandbox-styles.b322716f.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Sandbox-styles.b322716f.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Sandbox-styles-1.mjs-62335cd0.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Sandbox-styles.b322716f.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wEAA2E,GAAA,obAAA;;ACCjF,+BAAe,CAACA,wEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs b/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs deleted file mode 100644 index e4abd226..00000000 --- a/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs +++ /dev/null @@ -1,33 +0,0 @@ -import __nuxt_component_3 from './ProseP-a91aeff7.mjs'; -import { defineComponent, useSSRContext } from 'vue'; -import { ssrRenderComponent } from 'vue/server-renderer'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "SourceLink", - __ssrInlineRender: true, - props: { - source: { - type: String, - required: true - } - }, - setup(__props) { - return (_ctx, _push, _parent, _attrs) => { - const _component_ProseP = __nuxt_component_3; - _push(ssrRenderComponent(_component_ProseP, _attrs, null, _parent)); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=SourceLink-c27fde85.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map b/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map deleted file mode 100644 index 6fadd509..00000000 --- a/docs/.output/server/chunks/app/_nuxt/SourceLink-c27fde85.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"SourceLink-c27fde85.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/SourceLink-c27fde85.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;AAOA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,MAAQ,EAAA;AAAA,MACN,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,MAAM,iBAAoB,GAAA,kBAAA,CAAA;AAC1B,MAAA,KAAA,CAAM,kBAAmB,CAAA,iBAAA,EAAmB,MAAQ,EAAA,IAAA,EAAM,OAAO,CAAC,CAAA,CAAA;AAAA,KACpE,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs b/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs deleted file mode 100644 index 93acf368..00000000 --- a/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs +++ /dev/null @@ -1,72 +0,0 @@ -import { useSSRContext, defineComponent, ref, watch, mergeProps } from 'vue'; -import { ssrRenderAttrs, ssrRenderList, ssrRenderClass, ssrInterpolate, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "TabsHeader", - __ssrInlineRender: true, - props: { - tabs: { - type: Array, - required: true - }, - activeTabIndex: { - type: Number, - required: true - } - }, - emits: ["update:activeTabIndex"], - setup(__props, { emit }) { - const props = __props; - const tabsRef = ref(); - const highlightUnderline = ref(); - const updateHighlightUnderlinePosition = (activeTab) => { - if (!activeTab) { - return; - } - highlightUnderline.value.style.left = `${activeTab.offsetLeft}px`; - highlightUnderline.value.style.width = `${activeTab.clientWidth}px`; - }; - watch( - tabsRef, - (newVal) => { - if (!newVal) { - return; - } - setTimeout(() => { - updateHighlightUnderlinePosition(tabsRef.value.children[props.activeTabIndex]); - }, 50); - }, - { - immediate: true - } - ); - return (_ctx, _push, _parent, _attrs) => { - _push(``); - if (__props.tabs) { - _push(`
    `); - ssrRenderList(__props.tabs, ({ label }, i) => { - _push(``); - }); - _push(`
    `); - } else { - _push(``); - } - ssrRenderSlot(_ctx.$slots, "footer", {}, null, _push, _parent); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-fa060d5c"]]); - -export { __nuxt_component_0 as default }; -//# sourceMappingURL=TabsHeader-c9b56dab.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map b/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map deleted file mode 100644 index 0460c49e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/TabsHeader-c9b56dab.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"TabsHeader-c9b56dab.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TabsHeader-c9b56dab.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,KAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,IACA,cAAgB,EAAA;AAAA,MACd,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,KAAA,EAAO,CAAC,uBAAuB,CAAA;AAAA,EAC/B,KAAM,CAAA,OAAA,EAAS,EAAE,IAAA,EAAQ,EAAA;AACvB,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAA,MAAM,UAAU,GAAI,EAAA,CAAA;AACpB,IAAA,MAAM,qBAAqB,GAAI,EAAA,CAAA;AAC/B,IAAM,MAAA,gCAAA,GAAmC,CAAC,SAAc,KAAA;AACtD,MAAA,IAAI,CAAC,SAAW,EAAA;AACd,QAAA,OAAA;AAAA,OACF;AACA,MAAA,kBAAA,CAAmB,KAAM,CAAA,KAAA,CAAM,IAAO,GAAA,CAAA,EAAG,SAAU,CAAA,UAAA,CAAA,EAAA,CAAA,CAAA;AACnD,MAAA,kBAAA,CAAmB,KAAM,CAAA,KAAA,CAAM,KAAQ,GAAA,CAAA,EAAG,SAAU,CAAA,WAAA,CAAA,EAAA,CAAA,CAAA;AAAA,KACtD,CAAA;AACA,IAAA,KAAA;AAAA,MACE,OAAA;AAAA,MACA,CAAC,MAAW,KAAA;AACV,QAAA,IAAI,CAAC,MAAQ,EAAA;AACX,UAAA,OAAA;AAAA,SACF;AACA,QAAA,UAAA,CAAW,MAAM;AACf,UAAA,gCAAA,CAAiC,OAAQ,CAAA,KAAA,CAAM,QAAS,CAAA,KAAA,CAAM,cAAc,CAAC,CAAA,CAAA;AAAA,WAC5E,EAAE,CAAA,CAAA;AAAA,OACP;AAAA,MACA;AAAA,QACE,SAAW,EAAA,IAAA;AAAA,OACb;AAAA,KACF,CAAA;AACA,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,aAAc,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC5F,MAAA,IAAI,QAAQ,IAAM,EAAA;AAChB,QAAA,KAAA,CAAM,CAA4C,0CAAA,CAAA,CAAA,CAAA;AAClD,QAAA,aAAA,CAAc,QAAQ,IAAM,EAAA,CAAC,EAAE,KAAA,IAAS,CAAM,KAAA;AAC5C,UAAA,KAAA,CAAM,CAAkB,eAAA,EAAA,cAAA,CAAe,CAAC,OAAA,CAAQ,cAAmB,KAAA,CAAA,GAAI,QAAW,GAAA,YAAY,CAAC,CAAA,CAAA,kBAAA,EAAsB,cAAe,CAAA,KAAK,CAAY,CAAA,SAAA,CAAA,CAAA,CAAA;AAAA,SACtJ,CAAA,CAAA;AACD,QAAA,KAAA,CAAM,CAAkH,gHAAA,CAAA,CAAA,CAAA;AAAA,OACnH,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,aAAA,CAAc,KAAK,MAAQ,EAAA,QAAA,EAAU,EAAI,EAAA,IAAA,EAAM,OAAO,OAAO,CAAA,CAAA;AAC7D,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,sEAAsE,CAAA,CAAA;AACnJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs b/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs deleted file mode 100644 index 90639aeb..00000000 --- a/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const TabsHeader_vue_vue_type_style_index_0_scoped_fa060d5c_transformed_true_lang = ".tabs-header[data-v-fa060d5c]{background:var(--color-gray-200);color:var(--color-red-700);position:relative}:root.dark .tabs-header[data-v-fa060d5c]{background:var(--color-gray-800);color:var(--color-red-500)}.tabs-header .tabs[data-v-fa060d5c]{display:flex;overflow-x:auto;padding-left:var(--space-2);padding-right:var(--space-2);position:relative;z-index:0}.tabs-header .tabs button[data-v-fa060d5c]{font-family:var(--font-mono);font-size:var(--text-sm-fontSize);letter-spacing:var(--letterSpacing-tight);line-height:var(--text-sm-lineHeight);padding:var(--space-rem-625) var(--space-4);position:relative;transition:color .1s,background .1s;-webkit-user-select:none;-moz-user-select:none;user-select:none}.tabs-header .tabs button.not-active[data-v-fa060d5c]{color:var(--color-gray-700)}.tabs-header .tabs button.not-active[data-v-fa060d5c]:hover{background:var(--color-gray-300);color:var(--color-gray-800)}:root.dark .tabs-header .tabs button.not-active[data-v-fa060d5c]{color:var(--color-gray-200)}:root.dark .tabs-header .tabs button.not-active[data-v-fa060d5c]:hover{background:var(--color-gray-700);color:var(--color-gray-200)}.tabs-header .tabs button.active[data-v-fa060d5c]{color:var(--color-gray-500)}:root.dark .tabs-header .tabs button.active[data-v-fa060d5c]{color:var(--color-gray-300)}.tabs-header .tabs .highlight-underline[data-v-fa060d5c]{height:100%;position:absolute;top:0;transition:left .15s,width .15s;z-index:-1}.tabs-header .tabs .highlight-underline .tab[data-v-fa060d5c]{background-color:var(--color-gray-100);display:flex;height:100%;width:100%}:root.dark .tabs-header .tabs .highlight-underline .tab[data-v-fa060d5c]{background-color:var(--color-gray-900)}"; - -const TabsHeaderStyles_06000801 = [TabsHeader_vue_vue_type_style_index_0_scoped_fa060d5c_transformed_true_lang]; - -export { TabsHeaderStyles_06000801 as default }; -//# sourceMappingURL=TabsHeader-styles.06000801.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map b/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map deleted file mode 100644 index 27616b12..00000000 --- a/docs/.output/server/chunks/app/_nuxt/TabsHeader-styles.06000801.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"TabsHeader-styles.06000801.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TabsHeader-styles-1.mjs-4be63dff.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TabsHeader-styles.06000801.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2EAA8E,GAAA,ypDAAA;;ACCpF,kCAAe,CAACA,2EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs b/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs deleted file mode 100644 index 61db6f15..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs +++ /dev/null @@ -1,47 +0,0 @@ -import { useSSRContext, defineComponent, ref, mergeProps, unref } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; -import { u as useClipboard } from './index-1624a23e.mjs'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "Terminal", - __ssrInlineRender: true, - props: { - content: { - type: String, - required: true - } - }, - setup(__props) { - useClipboard(); - const state = ref("init"); - return (_ctx, _push, _parent, _attrs) => { - _push(``); - if (unref(state) === "copied") { - _push(`
    Copied!
    `); - } else { - _push(``); - } - _push(`
    Bash
    $${ssrInterpolate(__props.content)}
    `); - if (unref(state) !== "copied") { - _push(`
    Click to copy
    `); - } else { - _push(``); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/Terminal.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-d84ad68b"]]); - -export { __nuxt_component_2 as default }; -//# sourceMappingURL=Terminal-35e8f795.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map b/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map deleted file mode 100644 index 78438112..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Terminal-35e8f795.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Terminal-35e8f795.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Terminal-35e8f795.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;AAOA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,UAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAa,YAAA,EAAA,CAAA;AACb,IAAM,MAAA,KAAA,GAAQ,IAAI,MAAM,CAAA,CAAA;AACxB,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,UAAW,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AACzF,MAAI,IAAA,KAAA,CAAM,KAAK,CAAA,KAAM,QAAU,EAAA;AAC7B,QAAA,KAAA,CAAM,CAAyI,uIAAA,CAAA,CAAA,CAAA;AAAA,OAC1I,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,KAAA,CAAM,CAA8U,2UAAA,EAAA,cAAA,CAAe,OAAQ,CAAA,OAAO,CAAgB,CAAA,aAAA,CAAA,CAAA,CAAA;AAClY,MAAI,IAAA,KAAA,CAAM,KAAK,CAAA,KAAM,QAAU,EAAA;AAC7B,QAAA,KAAA,CAAM,CAA2D,yDAAA,CAAA,CAAA,CAAA;AAAA,OAC5D,MAAA;AACL,QAAA,KAAA,CAAM,CAAS,OAAA,CAAA,CAAA,CAAA;AAAA,OACjB;AACA,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,kBAAA,+BAAiD,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs b/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs deleted file mode 100644 index e3a38354..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const Terminal_vue_vue_type_style_index_0_scoped_d84ad68b_transformed_true_lang = ".terminal[data-v-d84ad68b]{background:var(--elements-surface-background-base);border:1px solid var(--elements-border-secondary-static);border-radius:var(--radii-lg);cursor:pointer;display:flex;flex-direction:column;height:var(--space-64);overflow:hidden;position:relative;width:100%}.terminal .copied[data-v-d84ad68b]{align-items:center;display:flex;justify-content:center;z-index:10}.terminal .copied[data-v-d84ad68b],.terminal .copied .scrim[data-v-d84ad68b]{height:100%;left:0;position:absolute;top:0;width:100%}.terminal .copied .scrim[data-v-d84ad68b]{background:var(--color-gray-500);opacity:.75}:root.dark .terminal .copied .scrim[data-v-d84ad68b]{background:var(--color-gray-900)}.terminal .copied .content[data-v-d84ad68b]{color:var(--color-gray-100);font-size:var(--fontSize-lg);font-weight:var(--fontWeight-semibold);z-index:10}.terminal .header[data-v-d84ad68b]{align-items:center;border-bottom:1px solid var(--elements-border-secondary-static);display:flex;height:var(--space-12);position:relative;width:100%}.terminal .header .controls[data-v-d84ad68b]{display:flex;margin-left:var(--space-4)}.terminal .header .controls div[data-v-d84ad68b]:first-child{background:var(--color-red-400);border-radius:var(--radii-full);height:var(--space-3);width:var(--space-3)}.terminal .header .controls div[data-v-d84ad68b]:nth-child(2){background:var(--color-yellow-400)}.terminal .header .controls div[data-v-d84ad68b]:nth-child(2),.terminal .header .controls div[data-v-d84ad68b]:nth-child(3){border-radius:var(--radii-full);height:var(--space-3);margin-left:var(--space-2);width:var(--space-3)}.terminal .header .controls div[data-v-d84ad68b]:nth-child(3){background:var(--color-green-400)}.terminal .header .title[data-v-d84ad68b]{align-items:center;display:flex;font-family:var(--font-mono);font-weight:var(--fontWeight-semibold);height:100%;justify-content:center;left:0;position:absolute;top:0;width:100%}.terminal .window[data-v-d84ad68b]{display:flex;flex:1 1 0%;font-family:var(--font-mono);font-size:var(--text-sm-fontSize);padding:var(--space-4)}.terminal .window .sign[data-v-d84ad68b]{display:inline-block;font-weight:var(--fontWeight-bold);margin-right:var(--space-2);-webkit-user-select:none;-moz-user-select:none;user-select:none}.terminal .window .content[data-v-d84ad68b]{display:inline-block}.terminal .prompt[data-v-d84ad68b]{font-weight:var(--fontWeight-semibold);opacity:0;padding-bottom:var(--space-2);padding-top:var(--space-2);text-align:center}.terminal:hover .prompt[data-v-d84ad68b]{opacity:1}"; - -const TerminalStyles_a4b76b2e = [Terminal_vue_vue_type_style_index_0_scoped_d84ad68b_transformed_true_lang]; - -export { TerminalStyles_a4b76b2e as default }; -//# sourceMappingURL=Terminal-styles.a4b76b2e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map b/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map deleted file mode 100644 index 368d34ea..00000000 --- a/docs/.output/server/chunks/app/_nuxt/Terminal-styles.a4b76b2e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"Terminal-styles.a4b76b2e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Terminal-styles-1.mjs-3b670618.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/Terminal-styles.a4b76b2e.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,69EAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs b/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs deleted file mode 100644 index e15543d2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const ThemeSelect_vue_vue_type_style_index_0_scoped_4a6c39b0_transformed_true_lang = "button[data-v-4a6c39b0]{color:var(--color-gray-500);display:flex;padding:var(--space-4)}:root.dark button[data-v-4a6c39b0]{color:var(--color-gray-400)}button[data-v-4a6c39b0]:hover{color:var(--color-gray-700)}:root.dark button[data-v-4a6c39b0]:hover{color:var(--color-gray-200)}"; - -const ThemeSelectStyles_d47092b1 = [ThemeSelect_vue_vue_type_style_index_0_scoped_4a6c39b0_transformed_true_lang]; - -export { ThemeSelectStyles_d47092b1 as default }; -//# sourceMappingURL=ThemeSelect-styles.d47092b1.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map b/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map deleted file mode 100644 index 002ccbc6..00000000 --- a/docs/.output/server/chunks/app/_nuxt/ThemeSelect-styles.d47092b1.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"ThemeSelect-styles.d47092b1.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ThemeSelect-styles-1.mjs-cb8d88fe.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/ThemeSelect-styles.d47092b1.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,4EAA+E,GAAA,wRAAA;;ACCrF,mCAAe,CAACA,4EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs b/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs deleted file mode 100644 index 672ed15d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs +++ /dev/null @@ -1,26 +0,0 @@ -import { defineComponent, unref, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; -import { d as usePinceauTheme } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "TokensPlayground", - __ssrInlineRender: true, - setup(__props) { - const { theme } = usePinceauTheme(); - return (_ctx, _push, _parent, _attrs) => { - _push(`
    ${ssrInterpolate(JSON.stringify(unref(theme), null, 2))}
    `); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=TokensPlayground-84b52014.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map b/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map deleted file mode 100644 index 30a67395..00000000 --- a/docs/.output/server/chunks/app/_nuxt/TokensPlayground-84b52014.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"TokensPlayground-84b52014.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/TokensPlayground-84b52014.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,kBAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,KAAM,EAAA,GAAI,eAAgB,EAAA,CAAA;AAClC,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,CAAO,IAAA,EAAA,cAAA,CAAe,MAAM,CAAA,CAAA,MAAA,EAAU,cAAe,CAAA,IAAA,CAAK,SAAU,CAAA,KAAA,CAAM,KAAK,CAAA,EAAG,IAAM,EAAA,CAAC,CAAC,CAAe,CAAA,YAAA,CAAA,CAAA,CAAA;AAAA,KACjH,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AACD,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,yEAAyE,CAAA,CAAA;AACtJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs deleted file mode 100644 index 2b1af00f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs +++ /dev/null @@ -1,108 +0,0 @@ -import _sfc_main$1 from './NuxtImg-89991070.mjs'; -import { useSSRContext, defineComponent, computed, ref, mergeProps, unref } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderAttr, ssrRenderList, ssrIncludeBooleanAttr } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "VideoPlayer", - __ssrInlineRender: true, - props: { - poster: { - type: String, - default: "" - }, - src: { - type: String, - default: "" - }, - sources: { - type: Array, - default: () => [] - }, - autoplay: { - type: Boolean, - default: false - } - }, - setup(__props) { - const props = __props; - const provider = computed(() => { - if (props.src && props.src.includes("youtube.com/watch")) { - const match = props.src.match(/\?v=([^&]*)/); - return { - name: "youtube", - src: `https://www.youtube-nocookie.com/embed/${(match == null ? void 0 : match[1]) || ""}?autoplay=1`, - poster: props.poster || `https://i3.ytimg.com/vi/${(match == null ? void 0 : match[1]) || ""}/hqdefault.jpg` - }; - } - }); - const loaded = ref(false); - if (!props.src && !props.sources.length) { - throw new Error("VideoPlayer: you need to provide either `src` or `sources` props"); - } - const src = computed(() => { - var _a, _b; - return props.src || ((_b = (_a = props.sources) == null ? void 0 : _a[0]) == null ? void 0 : _b.src) || false; - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtImg = _sfc_main$1; - _push(``); - if (unref(provider) ? unref(provider).poster : __props.poster) { - _push(ssrRenderComponent(_component_NuxtImg, { - src: unref(provider) ? unref(provider).poster : __props.poster - }, null, _parent)); - } else { - _push(``); - } - if (unref(loaded)) { - _push(`
    `); - if (!unref(provider)) { - _push(``); - if (unref(src)) { - _push(``); - } else { - _push(``); - } - _push(``); - ssrRenderList(__props.sources, (source) => { - _push(``); - }); - _push(``); - } else if (unref(provider).name === "youtube") { - _push(``); - } else { - _push(``); - } - _push(`
    `); - } else { - _push(``); - } - if (!unref(loaded)) { - _push(`
    `); - } else { - _push(``); - } - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const VideoPlayer = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-3c798ec4"]]); - -export { VideoPlayer as default }; -//# sourceMappingURL=VideoPlayer-2b282302.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map deleted file mode 100644 index 84b39fe7..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-2b282302.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"VideoPlayer-2b282302.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VideoPlayer-2b282302.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs deleted file mode 100644 index b3aa728e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const VideoPlayer_vue_vue_type_style_index_0_scoped_3c798ec4_transformed_true_lang = `.video-player[data-v-3c798ec4]{background:var(--color-gray-900);border-radius:var(--radii-lg);display:inline-block;margin-bottom:var(--space-8);margin-top:var(--space-8);overflow:hidden;position:relative}.video-player .loaded[data-v-3c798ec4]{height:100%;left:0;position:absolute;top:0;width:100%}.video-player video[data-v-3c798ec4]{width:100%}.video-player iframe[data-v-3c798ec4]{height:100%;width:100%}.video-player .play-button[data-v-3c798ec4]{cursor:pointer;height:100%;left:0;position:absolute;top:0;width:100%}.video-player .play-button button[data-v-3c798ec4]{background-color:transparent;background-image:url('data:image/svg+xml;utf8,');background-position:50%;background-repeat:no-repeat;filter:grayscale(100%);height:var(--space-24);left:50%;position:absolute;top:50%;transform:translate3d(-50%,-50%,0);transition:filter .1s cubic-bezier(0,0,.2,1);width:var(--space-24);z-index:1}.video-player .play-button:hover button[data-v-3c798ec4]{filter:none}`; - -const VideoPlayerStyles_956d04fb = [VideoPlayer_vue_vue_type_style_index_0_scoped_3c798ec4_transformed_true_lang]; - -export { VideoPlayerStyles_956d04fb as default }; -//# sourceMappingURL=VideoPlayer-styles.956d04fb.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map b/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map deleted file mode 100644 index ed515408..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VideoPlayer-styles.956d04fb.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"VideoPlayer-styles.956d04fb.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VideoPlayer-styles-1.mjs-277ef9d5.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VideoPlayer-styles.956d04fb.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,4EAA+E,GAAA,CAAA,66CAAA,CAAA;;ACCrF,mCAAe,CAACA,4EAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs deleted file mode 100644 index fdee42c3..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs +++ /dev/null @@ -1,32 +0,0 @@ -import { defineComponent, computed, mergeProps, unref, useSSRContext } from 'vue'; -import { ssrRenderAttrs } from 'vue/server-renderer'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "VoltaBoard", - __ssrInlineRender: true, - props: { - token: { - type: String, - required: true - } - }, - setup(__props) { - const props = __props; - const src = computed(() => `https://volta.net/embed/${props.token}`); - return (_ctx, _push, _parent, _attrs) => { - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=VoltaBoard-98820156.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map deleted file mode 100644 index 4ca9d48c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-98820156.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"VoltaBoard-98820156.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VoltaBoard-98820156.js"],"sourcesContent":null,"names":[],"mappings":";;;AAEA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,YAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,KAAO,EAAA;AAAA,MACL,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAA,MAAM,GAAM,GAAA,QAAA,CAAS,MAAM,CAAA,wBAAA,EAA2B,MAAM,KAAO,CAAA,CAAA,CAAA,CAAA;AACnE,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAM,KAAA,CAAA,CAAA,OAAA,EAAU,eAAe,UAAW,CAAA;AAAA,QACxC,GAAA,EAAK,MAAM,GAAG,CAAA;AAAA,QACd,KAAO,EAAA,QAAA;AAAA,OACT,EAAG,MAAM,CAAC,CAAa,CAAA,UAAA,CAAA,CAAA,CAAA;AAAA,KACzB,CAAA;AAAA,GACF;AACF,CAAC,EAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,oEAAoE,CAAA,CAAA;AACjJ,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs deleted file mode 100644 index 44c54ee2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const VoltaBoard_vue_vue_type_style_index_0_transformed_true_lang = "iframe{background-color:var(--elements-state-primary-backgroundColor-primary)!important;border-color:var(--elements-state-primary-borderColor-primary)!important;border-radius:var(--radii-md);color:var(--elements-state-primary-color-primary)!important;min-height:66.66667vh;width:var(--size-full)}iframe :deep(p code){background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}iframe :deep(code){background-color:var(--elements-state-primary-backgroundColor-secondary)!important;color:var(--elements-state-primary-color-primary)!important}iframe :deep(a code){border-color:var(--elements-state-primary-borderColor-primary)!important}iframe :deep(a){border-color:currentColor}iframe :deep(a) code{background-color:var(--elements-state-primary-backgroundColor-primary)!important}iframe :deep(a):hover{border-color:currentColor!important;color:var(--elements-state-primary-color-secondary)!important}iframe :deep(a):hover code{background-color:var(--elements-state-primary-backgroundColor-secondary)!important;border-color:var(--elements-state-primary-borderColor-secondary)!important;color:var(--elements-state-primary-color-secondary)!important}"; - -const VoltaBoardStyles_0de509eb = [VoltaBoard_vue_vue_type_style_index_0_transformed_true_lang]; - -export { VoltaBoardStyles_0de509eb as default }; -//# sourceMappingURL=VoltaBoard-styles.0de509eb.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map b/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map deleted file mode 100644 index 8777f517..00000000 --- a/docs/.output/server/chunks/app/_nuxt/VoltaBoard-styles.0de509eb.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"VoltaBoard-styles.0de509eb.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VoltaBoard-styles-1.mjs-467cd62b.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/VoltaBoard-styles.0de509eb.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,2DAA8D,GAAA,+sCAAA;;ACCpE,kCAAe,CAACA,2DAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs b/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs deleted file mode 100644 index d788aa4c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs +++ /dev/null @@ -1,530 +0,0 @@ -import { reactive, getCurrentInstance, inject, defineComponent, computed, ref, h, resolveComponent } from 'vue'; -import { createHooks } from 'hookable'; -import { getContext } from 'unctx'; -import { hasProtocol, parseURL, joinURL } from 'ufo'; -import { sendRedirect } from 'h3'; - -const nuxtAppCtx = getContext("nuxt-app"); -const NuxtPluginIndicator = "__nuxt_plugin"; -function createNuxtApp(options) { - let hydratingCount = 0; - const nuxtApp = { - provide: void 0, - globalName: "nuxt", - payload: reactive({ - data: {}, - state: {}, - _errors: {}, - ...{ serverRendered: true } - }), - static: { - data: {} - }, - isHydrating: false, - deferHydration() { - if (!nuxtApp.isHydrating) { - return () => { - }; - } - hydratingCount++; - let called = false; - return () => { - if (called) { - return; - } - called = true; - hydratingCount--; - if (hydratingCount === 0) { - nuxtApp.isHydrating = false; - return nuxtApp.callHook("app:suspense:resolve"); - } - }; - }, - _asyncDataPromises: {}, - _asyncData: {}, - ...options - }; - nuxtApp.hooks = createHooks(); - nuxtApp.hook = nuxtApp.hooks.hook; - nuxtApp.callHook = nuxtApp.hooks.callHook; - nuxtApp.provide = (name, value) => { - const $name = "$" + name; - defineGetter(nuxtApp, $name, value); - defineGetter(nuxtApp.vueApp.config.globalProperties, $name, value); - }; - defineGetter(nuxtApp.vueApp, "$nuxt", nuxtApp); - defineGetter(nuxtApp.vueApp.config.globalProperties, "$nuxt", nuxtApp); - { - if (nuxtApp.ssrContext) { - nuxtApp.ssrContext.nuxt = nuxtApp; - } - nuxtApp.ssrContext = nuxtApp.ssrContext || {}; - if (nuxtApp.ssrContext.payload) { - Object.assign(nuxtApp.payload, nuxtApp.ssrContext.payload); - } - nuxtApp.ssrContext.payload = nuxtApp.payload; - nuxtApp.payload.config = { - public: options.ssrContext.runtimeConfig.public, - app: options.ssrContext.runtimeConfig.app - }; - } - const runtimeConfig = options.ssrContext.runtimeConfig; - const compatibilityConfig = new Proxy(runtimeConfig, { - get(target, prop) { - var _a; - if (prop === "public") { - return target.public; - } - return (_a = target[prop]) != null ? _a : target.public[prop]; - }, - set(target, prop, value) { - { - return false; - } - } - }); - nuxtApp.provide("config", compatibilityConfig); - return nuxtApp; -} -async function applyPlugin(nuxtApp, plugin) { - if (typeof plugin !== "function") { - return; - } - const { provide } = await callWithNuxt(nuxtApp, plugin, [nuxtApp]) || {}; - if (provide && typeof provide === "object") { - for (const key in provide) { - nuxtApp.provide(key, provide[key]); - } - } -} -async function applyPlugins(nuxtApp, plugins) { - for (const plugin of plugins) { - await applyPlugin(nuxtApp, plugin); - } -} -function normalizePlugins(_plugins) { - const plugins = _plugins.map((plugin) => { - if (typeof plugin !== "function") { - return null; - } - if (plugin.length > 1) { - return (nuxtApp) => plugin(nuxtApp, nuxtApp.provide); - } - return plugin; - }).filter(Boolean); - return plugins; -} -function defineNuxtPlugin(plugin) { - plugin[NuxtPluginIndicator] = true; - return plugin; -} -function callWithNuxt(nuxt, setup, args) { - const fn = () => args ? setup(...args) : setup(); - { - return nuxtAppCtx.callAsync(nuxt, fn); - } -} -function useNuxtApp() { - const nuxtAppInstance = nuxtAppCtx.tryUse(); - if (!nuxtAppInstance) { - const vm = getCurrentInstance(); - if (!vm) { - throw new Error("nuxt instance unavailable"); - } - return vm.appContext.app.$nuxt; - } - return nuxtAppInstance; -} -function useRuntimeConfig() { - return useNuxtApp().$config; -} -function defineGetter(obj, key, val) { - Object.defineProperty(obj, key, { get: () => val }); -} -function defineAppConfig(config) { - return config; -} -function useRequestEvent(nuxtApp = useNuxtApp()) { - var _a; - return (_a = nuxtApp.ssrContext) == null ? void 0 : _a.event; -} -function setResponseStatus(code, message) { - const event = useRequestEvent(); - if (event) { - event.node.res.statusCode = code; - if (message) { - event.node.res.statusMessage = message; - } - } -} -const useRouter = () => { - var _a; - return (_a = useNuxtApp()) == null ? void 0 : _a.$router; -}; -const useRoute = () => { - if (getCurrentInstance()) { - return inject("_route", useNuxtApp()._route); - } - return useNuxtApp()._route; -}; -const defineNuxtRouteMiddleware = (middleware) => middleware; -const addRouteMiddleware = (name, middleware, options = {}) => { - const nuxtApp = useNuxtApp(); - if (options.global || typeof name === "function") { - nuxtApp._middleware.global.push(typeof name === "function" ? name : middleware); - } else { - nuxtApp._middleware.named[name] = middleware; - } -}; -const isProcessingMiddleware = () => { - try { - if (useNuxtApp()._processingMiddleware) { - return true; - } - } catch { - return true; - } - return false; -}; -const navigateTo = (to, options) => { - if (!to) { - to = "/"; - } - const toPath = typeof to === "string" ? to : to.path || "/"; - const isExternal = hasProtocol(toPath, true); - if (isExternal && !(options == null ? void 0 : options.external)) { - throw new Error("Navigating to external URL is not allowed by default. Use `nagivateTo (url, { external: true })`."); - } - if (isExternal && parseURL(toPath).protocol === "script:") { - throw new Error("Cannot navigate to an URL with script protocol."); - } - const router = useRouter(); - { - const nuxtApp = useNuxtApp(); - if (nuxtApp.ssrContext && nuxtApp.ssrContext.event) { - if (isProcessingMiddleware() && !isExternal) { - setResponseStatus((options == null ? void 0 : options.redirectCode) || 302); - return to; - } - const redirectLocation = isExternal ? toPath : joinURL(useRuntimeConfig().app.baseURL, router.resolve(to).fullPath || "/"); - return nuxtApp.callHook("app:redirected").then(() => sendRedirect(nuxtApp.ssrContext.event, redirectLocation, (options == null ? void 0 : options.redirectCode) || 302)); - } - } - if (isExternal) { - if (options == null ? void 0 : options.replace) { - location.replace(toPath); - } else { - location.href = toPath; - } - return Promise.resolve(); - } - return (options == null ? void 0 : options.replace) ? router.replace(to) : router.push(to); -}; -const firstNonUndefined = (...args) => args.find((arg) => arg !== void 0); -const DEFAULT_EXTERNAL_REL_ATTRIBUTE = "noopener noreferrer"; -function defineNuxtLink(options) { - const componentName = options.componentName || "NuxtLink"; - return defineComponent({ - name: componentName, - props: { - // Routing - to: { - type: [String, Object], - default: void 0, - required: false - }, - href: { - type: [String, Object], - default: void 0, - required: false - }, - // Attributes - target: { - type: String, - default: void 0, - required: false - }, - rel: { - type: String, - default: void 0, - required: false - }, - noRel: { - type: Boolean, - default: void 0, - required: false - }, - // Prefetching - prefetch: { - type: Boolean, - default: void 0, - required: false - }, - noPrefetch: { - type: Boolean, - default: void 0, - required: false - }, - // Styling - activeClass: { - type: String, - default: void 0, - required: false - }, - exactActiveClass: { - type: String, - default: void 0, - required: false - }, - prefetchedClass: { - type: String, - default: void 0, - required: false - }, - // Vue Router's `` additional props - replace: { - type: Boolean, - default: void 0, - required: false - }, - ariaCurrentValue: { - type: String, - default: void 0, - required: false - }, - // Edge cases handling - external: { - type: Boolean, - default: void 0, - required: false - }, - // Slot API - custom: { - type: Boolean, - default: void 0, - required: false - } - }, - setup(props, { slots }) { - const router = useRouter(); - const to = computed(() => { - return props.to || props.href || ""; - }); - const isExternal = computed(() => { - if (props.external) { - return true; - } - if (props.target && props.target !== "_self") { - return true; - } - if (typeof to.value === "object") { - return false; - } - return to.value === "" || hasProtocol(to.value, true); - }); - const prefetched = ref(false); - const el = void 0; - return () => { - var _a2; - var _a, _b; - if (!isExternal.value) { - return h( - resolveComponent("RouterLink"), - { - ref: void 0, - to: to.value, - ...prefetched.value && !props.custom ? { class: props.prefetchedClass || options.prefetchedClass } : {}, - activeClass: props.activeClass || options.activeClass, - exactActiveClass: props.exactActiveClass || options.exactActiveClass, - replace: props.replace, - ariaCurrentValue: props.ariaCurrentValue, - custom: props.custom - }, - slots.default - ); - } - const href = typeof to.value === "object" ? (_a2 = (_a = router.resolve(to.value)) == null ? void 0 : _a.href) != null ? _a2 : null : to.value || null; - const target = props.target || null; - const rel = props.noRel ? null : firstNonUndefined(props.rel, options.externalRelAttribute, href ? DEFAULT_EXTERNAL_REL_ATTRIBUTE : "") || null; - const navigate = () => navigateTo(href, { replace: props.replace }); - if (props.custom) { - if (!slots.default) { - return null; - } - return slots.default({ - href, - navigate, - route: router.resolve(href), - rel, - target, - isExternal: isExternal.value, - isActive: false, - isExactActive: false - }); - } - return h("a", { ref: el, href, rel, target }, (_b = slots.default) == null ? void 0 : _b.call(slots)); - }; - } - }); -} -const __nuxt_component_0 = defineNuxtLink({ componentName: "NuxtLink" }); -const nuxtLink = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_0, - defineNuxtLink -}); -function isObject(value) { - return value !== null && typeof value === "object"; -} -function _defu(baseObject, defaults, namespace = ".", merger) { - if (!isObject(defaults)) { - return _defu(baseObject, {}, namespace, merger); - } - const object = Object.assign({}, defaults); - for (const key in baseObject) { - if (key === "__proto__" || key === "constructor") { - continue; - } - const value = baseObject[key]; - if (value === null || value === void 0) { - continue; - } - if (merger && merger(object, key, value, namespace)) { - continue; - } - if (Array.isArray(value) && Array.isArray(object[key])) { - object[key] = [...value, ...object[key]]; - } else if (isObject(value) && isObject(object[key])) { - object[key] = _defu( - value, - object[key], - (namespace ? `${namespace}.` : "") + key.toString(), - merger - ); - } else { - object[key] = value; - } - } - return object; -} -function createDefu(merger) { - return (...arguments_) => ( - // eslint-disable-next-line unicorn/no-array-reduce - arguments_.reduce((p, c) => _defu(p, c, "", merger), {}) - ); -} -const defuFn = createDefu((object, key, currentValue) => { - if (typeof object[key] !== "undefined" && typeof currentValue === "function") { - object[key] = currentValue(object[key]); - return true; - } -}); -const cfg0 = defineAppConfig({ - github: { - owner: "realdecoy", - repo: "frontier", - branch: "main" - }, - docus: { - title: "Frontier", - description: "Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.", - image: "https://content.nuxtjs.org/preview.png", - url: "https://realdecoy.com", - socials: { - github: "realdecoy/frontier" - }, - github: { - dir: "", - root: "", - edit: true, - releases: true, - owner: "realdecoy", - repo: "frontier", - branch: "main" - }, - cover: { - src: "/cover.jpg", - alt: "Tooling maded easy for developers" - }, - aside: { - level: 1 - }, - layout: { - fluid: true - }, - header: { - logo: "Logo" - }, - footer: { - iconLinks: [ - { - label: "Realdecoy", - href: "https://realdecoy.com", - icon: "IconNuxt" - } - ] - } - } -}); -const cfg1 = defineAppConfig({ - docus: { - title: "Docus", - description: "The best place to start your documentation.", - image: "https://user-images.githubusercontent.com/904724/185365452-87b7ca7b-6030-4813-a2db-5e65c785bf88.png", - socials: { - twitter: "", - github: "", - facebook: "", - instagram: "", - youtube: "", - medium: "" - }, - layout: "default", - header: { - title: "", - logo: false, - showLinkIcon: false, - fluid: false, - exclude: [] - }, - aside: { - level: 0, - collapsed: false, - exclude: [] - }, - footer: { - credits: { - icon: "IconDocus", - text: "Powered by Docus", - href: "https://docus.dev" - }, - textLinks: [], - iconLinks: [], - fluid: false - }, - github: { - dir: void 0, - branch: void 0, - repo: void 0, - owner: void 0, - edit: false - } - } -}); -const cfg2 = defineAppConfig({ - prose: { - copyButton: { - iconCopy: "ph:copy", - iconCopied: "ph:check" - }, - headings: { - icon: "ph:link" - } - } -}); -const cfg3 = defineAppConfig({}); -const inlineConfig = {}; -const __appConfig = defuFn(cfg0, cfg1, cfg2, cfg3, inlineConfig); - -export { __nuxt_component_0 as _, defineNuxtRouteMiddleware as a, useRuntimeConfig as b, callWithNuxt as c, defineNuxtPlugin as d, useRequestEvent as e, useRoute as f, useRouter as g, addRouteMiddleware as h, normalizePlugins as i, createNuxtApp as j, applyPlugins as k, __appConfig as l, nuxtLink as m, navigateTo as n, useNuxtApp as u }; -//# sourceMappingURL=app.config-832f5f68.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map b/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map deleted file mode 100644 index a9cc0009..00000000 --- a/docs/.output/server/chunks/app/_nuxt/app.config-832f5f68.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"app.config-832f5f68.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/app.config-832f5f68.js"],"sourcesContent":null,"names":["_a"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs b/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs deleted file mode 100644 index 0f9afbde..00000000 --- a/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs +++ /dev/null @@ -1,116 +0,0 @@ -import { ref, getCurrentInstance, onServerPrefetch, unref } from 'vue'; -import { u as useNuxtApp } from './app.config-832f5f68.mjs'; -import { c as createError } from '../server.mjs'; - -const getDefault = () => null; -function useAsyncData(...args) { - var _a2, _b, _c, _d, _e, _f; - var _a; - const autoKey = typeof args[args.length - 1] === "string" ? args.pop() : void 0; - if (typeof args[0] !== "string") { - args.unshift(autoKey); - } - let [key, handler, options = {}] = args; - if (typeof key !== "string") { - throw new TypeError("[nuxt] [asyncData] key must be a string."); - } - if (typeof handler !== "function") { - throw new TypeError("[nuxt] [asyncData] handler must be a function."); - } - options.server = (_a2 = options.server) != null ? _a2 : true; - options.default = (_b = options.default) != null ? _b : getDefault; - options.lazy = (_c = options.lazy) != null ? _c : false; - options.immediate = (_d = options.immediate) != null ? _d : true; - const nuxt = useNuxtApp(); - const getCachedData = () => nuxt.isHydrating ? nuxt.payload.data[key] : nuxt.static.data[key]; - const hasCachedData = () => getCachedData() !== void 0; - if (!nuxt._asyncData[key]) { - nuxt._asyncData[key] = { - data: ref((_f = (_e = getCachedData()) != null ? _e : (_a = options.default) == null ? void 0 : _a.call(options)) != null ? _f : null), - pending: ref(!hasCachedData()), - error: ref(nuxt.payload._errors[key] ? createError(nuxt.payload._errors[key]) : null) - }; - } - const asyncData = { ...nuxt._asyncData[key] }; - asyncData.refresh = asyncData.execute = (opts = {}) => { - if (nuxt._asyncDataPromises[key]) { - if (opts.dedupe === false) { - return nuxt._asyncDataPromises[key]; - } - nuxt._asyncDataPromises[key].cancelled = true; - } - if (opts._initial && hasCachedData()) { - return getCachedData(); - } - asyncData.pending.value = true; - const promise = new Promise( - (resolve, reject) => { - try { - resolve(handler(nuxt)); - } catch (err) { - reject(err); - } - } - ).then((result) => { - if (promise.cancelled) { - return nuxt._asyncDataPromises[key]; - } - if (options.transform) { - result = options.transform(result); - } - if (options.pick) { - result = pick(result, options.pick); - } - asyncData.data.value = result; - asyncData.error.value = null; - }).catch((error) => { - var _a3; - var _a22; - if (promise.cancelled) { - return nuxt._asyncDataPromises[key]; - } - asyncData.error.value = error; - asyncData.data.value = unref((_a3 = (_a22 = options.default) == null ? void 0 : _a22.call(options)) != null ? _a3 : null); - }).finally(() => { - if (promise.cancelled) { - return; - } - asyncData.pending.value = false; - nuxt.payload.data[key] = asyncData.data.value; - if (asyncData.error.value) { - nuxt.payload._errors[key] = createError(asyncData.error.value); - } - delete nuxt._asyncDataPromises[key]; - }); - nuxt._asyncDataPromises[key] = promise; - return nuxt._asyncDataPromises[key]; - }; - const initialFetch = () => asyncData.refresh({ _initial: true }); - const fetchOnServer = options.server !== false && nuxt.payload.serverRendered; - if (fetchOnServer && options.immediate) { - const promise = initialFetch(); - if (getCurrentInstance()) { - onServerPrefetch(() => promise); - } else { - nuxt.hook("app:created", () => promise); - } - } - const asyncDataPromise = Promise.resolve(nuxt._asyncDataPromises[key]).then(() => asyncData); - Object.assign(asyncDataPromise, asyncData); - return asyncDataPromise; -} -async function refreshNuxtData(keys) { - { - return Promise.resolve(); - } -} -function pick(obj, keys) { - const newObj = {}; - for (const key of keys) { - newObj[key] = obj[key]; - } - return newObj; -} - -export { refreshNuxtData as r, useAsyncData as u }; -//# sourceMappingURL=asyncData-c43d4319.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map b/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map deleted file mode 100644 index da576285..00000000 --- a/docs/.output/server/chunks/app/_nuxt/asyncData-c43d4319.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"asyncData-c43d4319.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/asyncData-c43d4319.js"],"sourcesContent":null,"names":["_a","_a2"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs b/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs deleted file mode 100644 index 5abf6206..00000000 --- a/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs +++ /dev/null @@ -1,355 +0,0 @@ -import memory from 'unstorage/drivers/memory'; -import { prefixStorage, createStorage } from 'unstorage'; -import { u as useNuxtApp, b as useRuntimeConfig } from './app.config-832f5f68.mjs'; -import { withBase } from 'ufo'; -import { u as useCookie, c as createQuery, g as get, a as assertArray, e as ensureArray, s as sortList, b as apply, w as withoutKeys, d as withKeys } from './query-dd064fd9.mjs'; -import { pascalCase } from 'scule'; -import 'vue'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import 'cookie-es'; -import 'destr'; -import 'ohash'; - -function createMatch(opts = {}) { - const operators = createOperators(match, opts.operators); - function match(item, conditions) { - if (typeof conditions !== "object" || conditions instanceof RegExp) { - return operators.$eq(item, conditions); - } - return Object.keys(conditions || {}).every((key) => { - const condition = conditions[key]; - if (key.startsWith("$") && operators[key]) { - const fn = operators[key]; - return typeof fn === "function" ? fn(item, condition) : false; - } - return match(get(item, key), condition); - }); - } - return match; -} -function createOperators(match, operators = {}) { - return { - $match: (item, condition) => match(item, condition), - /** - * Match if item equals condition - **/ - $eq: (item, condition) => condition instanceof RegExp ? condition.test(item) : item === condition, - /** - * Match if item not equals condition - **/ - $ne: (item, condition) => condition instanceof RegExp ? !condition.test(item) : item !== condition, - /** - * Match is condition is false - **/ - $not: (item, condition) => !match(item, condition), - /** - * Match only if all of nested conditions are true - **/ - $and: (item, condition) => { - assertArray(condition, "$and requires an array as condition"); - return condition.every((cond) => match(item, cond)); - }, - /** - * Match if any of nested conditions is true - **/ - $or: (item, condition) => { - assertArray(condition, "$or requires an array as condition"); - return condition.some((cond) => match(item, cond)); - }, - /** - * Match if item is in condition array - **/ - $in: (item, condition) => ensureArray(condition).some( - (cond) => Array.isArray(item) ? match(item, { $contains: cond }) : match(item, cond) - ), - /** - * Match if item contains every condition or math every rule in condition array - **/ - $contains: (item, condition) => { - item = Array.isArray(item) ? item : String(item); - return ensureArray(condition).every((i) => item.includes(i)); - }, - /** - * Ignore case contains - **/ - $icontains: (item, condition) => { - if (typeof condition !== "string") { - throw new TypeError("$icontains requires a string, use $contains instead"); - } - item = String(item).toLocaleLowerCase(); - return ensureArray(condition).every((i) => item.includes(i.toLocaleLowerCase())); - }, - /** - * Match if item contains at least one rule from condition array - */ - $containsAny: (item, condition) => { - assertArray(condition, "$containsAny requires an array as condition"); - item = Array.isArray(item) ? item : String(item); - return condition.some((i) => item.includes(i)); - }, - /** - * Check key existence - */ - $exists: (item, condition) => condition ? typeof item !== "undefined" : typeof item === "undefined", - /** - * Match if type of item equals condition - */ - $type: (item, condition) => typeof item === String(condition), - /** - * Provides regular expression capabilities for pattern matching strings. - */ - $regex: (item, condition) => { - if (!(condition instanceof RegExp)) { - const matched = String(condition).match(/\/(.*)\/([dgimsuy]*)$/); - condition = matched ? new RegExp(matched[1], matched[2] || "") : new RegExp(condition); - } - return condition.test(String(item || "")); - }, - /** - * Check if item is less than condition - */ - $lt: (item, condition) => { - return item < condition; - }, - /** - * Check if item is less than or equal to condition - */ - $lte: (item, condition) => { - return item <= condition; - }, - /** - * Check if item is greater than condition - */ - $gt: (item, condition) => { - return item > condition; - }, - /** - * Check if item is greater than or equal to condition - */ - $gte: (item, condition) => { - return item >= condition; - }, - ...operators || {} - }; -} -function createPipelineFetcher(getContentsList) { - const match = createMatch(); - const surround = (data, { query, before, after }) => { - const matchQuery = typeof query === "string" ? { _path: query } : query; - const index = data.findIndex((item) => match(item, matchQuery)); - before = before || 1; - after = after || 1; - const slice = new Array(before + after).fill(null, 0); - return index === -1 ? slice : slice.map((_, i) => data[index - before + i + Number(i >= before)] || null); - }; - const pipelines = [ - // Conditions - (data, params) => data.filter((item) => ensureArray(params.where).every((matchQuery) => match(item, matchQuery))), - // Sort data - (data, params) => ensureArray(params.sort).forEach((options) => sortList(data, options)), - // Surround logic - (data, params) => params.surround ? surround(data, params.surround) : data, - // Skip first items - (data, params) => params.skip ? data.slice(params.skip) : data, - // Pick first items - (data, params) => params.limit ? data.slice(0, params.limit) : data, - // Remove unwanted fields - (data, params) => apply(withoutKeys(params.without))(data), - // Select only wanted fields - (data, params) => apply(withKeys(params.only))(data) - ]; - return async (query) => { - const data = await getContentsList(); - const params = query.params(); - const filteredData = pipelines.reduce(($data, pipe) => pipe($data, params) || $data, data); - if (params.first) { - return filteredData[0]; - } - return filteredData; - }; -} -const generateTitle = (path) => path.split(/[\s-]/g).map(pascalCase).join(" "); -function createNav(contents, configs) { - const { navigation } = useRuntimeConfig().content; - const pickNavigationFields = (content) => ({ - ...pick(["title", ...navigation.fields])(content), - ...isObject(content == null ? void 0 : content.navigation) ? content.navigation : {} - }); - const nav = contents.sort((a, b) => a._path.localeCompare(b._path)).reduce((nav2, content) => { - const parts = content._path.substring(1).split("/"); - const idParts = content._id.split(":").slice(1); - const isIndex = !!idParts[idParts.length - 1].match(/([1-9][0-9]*\.)?index.md/g); - const getNavItem = (content2) => ({ - title: content2.title, - _path: content2._path, - _file: content2._file, - children: [], - ...pickNavigationFields(content2), - ...content2._draft ? { _draft: true } : {} - }); - const navItem = getNavItem(content); - if (isIndex) { - const dirConfig = configs[navItem._path]; - if (typeof (dirConfig == null ? void 0 : dirConfig.navigation) !== "undefined" && !(dirConfig == null ? void 0 : dirConfig.navigation)) { - return nav2; - } - if (content._path !== "/") { - const indexItem = getNavItem(content); - navItem.children.push(indexItem); - } - Object.assign( - navItem, - pickNavigationFields(dirConfig) - ); - } - if (parts.length === 1) { - nav2.push(navItem); - return nav2; - } - const siblings = parts.slice(0, -1).reduce((nodes, part, i) => { - const currentPathPart = "/" + parts.slice(0, i + 1).join("/"); - const conf = configs[currentPathPart]; - if (typeof (conf == null ? void 0 : conf.navigation) !== "undefined" && !conf.navigation) { - return []; - } - let parent = nodes.find((n) => n._path === currentPathPart); - if (!parent) { - parent = { - title: generateTitle(part), - _path: currentPathPart, - _file: content._file, - children: [], - ...pickNavigationFields(conf) - }; - nodes.push(parent); - } - return parent.children; - }, nav2); - siblings.push(navItem); - return nav2; - }, []); - return sortAndClear(nav); -} -const collator = new Intl.Collator(void 0, { numeric: true, sensitivity: "base" }); -function sortAndClear(nav) { - const sorted = nav.sort((a, b) => collator.compare(a._file, b._file)); - for (const item of sorted) { - if (item.children.length) { - sortAndClear(item.children); - } else { - delete item.children; - } - delete item._file; - } - return nav; -} -function pick(keys) { - return (obj) => { - obj = obj || {}; - if (keys && keys.length) { - return keys.filter((key) => typeof obj[key] !== "undefined").reduce((newObj, key) => Object.assign(newObj, { [key]: obj[key] }), {}); - } - return obj; - }; -} -function isObject(obj) { - return Object.prototype.toString.call(obj) === "[object Object]"; -} -const withContentBase = (url) => withBase(url, useRuntimeConfig().public.content.api.baseURL); -const contentStorage = prefixStorage(createStorage({ driver: memory() }), "@content"); -const getPreview = () => { - return useCookie("previewToken").value; -}; -function createDB(storage) { - async function getItems() { - const keys = new Set(await storage.getKeys("cache:")); - const previewToken = getPreview(); - if (previewToken) { - const previewMeta = await storage.getItem(`${previewToken}$`).then((data) => data || {}); - if (previewMeta.ignoreBuiltContents) { - keys.clear(); - } - const previewKeys = await storage.getKeys(`${previewToken}:`); - const previewContents = await Promise.all(previewKeys.map((key) => storage.getItem(key))); - for (const pItem of previewContents) { - keys.delete(`cache:${pItem._id}`); - if (!pItem.__deleted) { - keys.add(`${previewToken}:${pItem._id}`); - } - } - } - const items = await Promise.all(Array.from(keys).map((key) => storage.getItem(key))); - return items; - } - return { - storage, - fetch: createPipelineFetcher(getItems), - query: (query) => createQuery(createPipelineFetcher(getItems), query) - }; -} -let contentDatabase = null; -let contentDatabaseInitPromise = null; -async function useContentDatabase() { - if (contentDatabaseInitPromise) { - await contentDatabaseInitPromise; - } else if (!contentDatabase) { - contentDatabaseInitPromise = initContentDatabase(); - contentDatabase = await contentDatabaseInitPromise; - } - return contentDatabase; -} -async function initContentDatabase() { - const nuxtApp = useNuxtApp(); - const { content } = useRuntimeConfig().public; - const _contentDatabase = createDB(contentStorage); - const integrity = await _contentDatabase.storage.getItem("integrity"); - if (content.integrity !== +(integrity || 0)) { - const { contents, navigation } = await $fetch(withContentBase(content.integrity ? `cache.${content.integrity}.json` : "cache.json")); - await Promise.all( - contents.map((content2) => _contentDatabase.storage.setItem(`cache:${content2._id}`, content2)) - ); - await _contentDatabase.storage.setItem("navigation", navigation); - await _contentDatabase.storage.setItem("integrity", content.integrity); - } - await nuxtApp.callHook("content:storage", _contentDatabase.storage); - return _contentDatabase; -} -async function generateNavigation(query) { - const db = await useContentDatabase(); - if (!getPreview() && Object.keys(query || {}).length === 0) { - return db.storage.getItem("navigation"); - } - const contents = await db.query(query).where({ - /** - * Partial contents are not included in the navigation - * A partial content is a content that has `_` prefix in its path - */ - _partial: false, - /** - * Exclude any pages which have opted out of navigation via frontmatter. - */ - navigation: { - $ne: false - } - }).find(); - const dirConfigs = await db.query().where({ _path: /\/_dir$/i, _partial: true }).find(); - const configs = dirConfigs.reduce((configs2, conf) => { - var _a; - if (((_a = conf.title) == null ? void 0 : _a.toLowerCase()) === "dir") { - conf.title = void 0; - } - const key = conf._path.split("/").slice(0, -1).join("/") || "/"; - configs2[key] = { - ...conf, - // Extract meta from body. (non MD files) - ...conf.body - }; - return configs2; - }, {}); - return createNav(contents, configs); -} - -export { contentStorage, createDB, generateNavigation, getPreview, useContentDatabase }; -//# sourceMappingURL=client-db-fd379c8e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map b/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map deleted file mode 100644 index 887cc55c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/client-db-fd379c8e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"client-db-fd379c8e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/client-db-fd379c8e.js"],"sourcesContent":null,"names":["memoryDriver"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs b/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs deleted file mode 100644 index 7af83100..00000000 --- a/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs +++ /dev/null @@ -1,44 +0,0 @@ -import { nextTick } from 'vue'; - -function usePinceauRuntimeDebug(tokensHelperConfig) { - let nextTickGroup = []; - let nextTickCalled = false; - const TOKEN_NOT_FOUND_MESSAGE = (path, options) => { - const { loc } = options; - const message = [ - `\u{1F511} ${path}` - ]; - if (loc == null ? void 0 : loc.file) { - message.push(""); - message.push(`\u{1F517} ${loc.file}`); - } - if (loc == null ? void 0 : loc.type) { - message.push(""); - message.push(`\u2753 Missing token inside a ${loc.type === "v" ? "variant" : "computed style or CSS prop"}.`); - } - nextTickGroup.push(message.join("\n")); - if (!nextTickCalled) { - nextTick(() => { - const title = "\u{1F58C}\uFE0F Pinceau `runtime` encountered some errors!"; - { - console.log(title); - } - nextTickGroup.forEach((m) => { - { - console.log("\n"); - } - console.log(m); - { - console.log("\n"); - } - }); - console.log("\u203C\uFE0F This warning will be hidden from production and can be disabled using `dev: false` option."); - }); - nextTickCalled = true; - } - }; - tokensHelperConfig.onNotFound = TOKEN_NOT_FOUND_MESSAGE; -} - -export { usePinceauRuntimeDebug }; -//# sourceMappingURL=debug-43adc91a.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map b/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map deleted file mode 100644 index c79d0e9c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/debug-43adc91a.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"debug-43adc91a.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/debug-43adc91a.js"],"sourcesContent":null,"names":[],"mappings":";;AACA,SAAS,uBAAuB,kBAAoB,EAAA;AAClD,EAAA,IAAI,gBAAgB,EAAC,CAAA;AACrB,EAAA,IAAI,cAAiB,GAAA,KAAA,CAAA;AACrB,EAAM,MAAA,uBAAA,GAA0B,CAAC,IAAA,EAAM,OAAY,KAAA;AACjD,IAAM,MAAA,EAAE,KAAQ,GAAA,OAAA,CAAA;AAChB,IAAA,MAAM,OAAU,GAAA;AAAA,MACd,CAAM,UAAA,EAAA,IAAA,CAAA,CAAA;AAAA,KACR,CAAA;AACA,IAAA,IAAI,GAAO,IAAA,IAAA,GAAO,KAAS,CAAA,GAAA,GAAA,CAAI,IAAM,EAAA;AACnC,MAAA,OAAA,CAAQ,KAAK,EAAE,CAAA,CAAA;AACf,MAAQ,OAAA,CAAA,IAAA,CAAK,CAAM,UAAA,EAAA,GAAA,CAAI,IAAM,CAAA,CAAA,CAAA,CAAA;AAAA,KAC/B;AACA,IAAA,IAAI,GAAO,IAAA,IAAA,GAAO,KAAS,CAAA,GAAA,GAAA,CAAI,IAAM,EAAA;AACnC,MAAA,OAAA,CAAQ,KAAK,EAAE,CAAA,CAAA;AACf,MAAA,OAAA,CAAQ,KAAK,CAA4B,8BAAA,EAAA,GAAA,CAAI,IAAS,KAAA,GAAA,GAAM,YAAY,4BAA+B,CAAA,CAAA,CAAA,CAAA,CAAA;AAAA,KACzG;AACA,IAAA,aAAA,CAAc,IAAK,CAAA,OAAA,CAAQ,IAAK,CAAA,IAAI,CAAC,CAAA,CAAA;AACrC,IAAA,IAAI,CAAC,cAAgB,EAAA;AACnB,MAAA,QAAA,CAAS,MAAM;AACb,QAAA,MAAM,KAAQ,GAAA,4DAAA,CAAA;AACd,QAAA;AACE,UAAA,OAAA,CAAQ,IAAI,KAAK,CAAA,CAAA;AAAA,SACnB;AACA,QAAc,aAAA,CAAA,OAAA,CAAQ,CAAC,CAAM,KAAA;AAC3B,UAAA;AACE,YAAA,OAAA,CAAQ,IAAI,IAAI,CAAA,CAAA;AAAA,WAClB;AACA,UAAA,OAAA,CAAQ,IAAI,CAAC,CAAA,CAAA;AACb,UAAA;AACE,YAAA,OAAA,CAAQ,IAAI,IAAI,CAAA,CAAA;AAAA,WAClB;AAAA,SACD,CAAA,CAAA;AACD,QAAA,OAAA,CAAQ,IAAI,yGAA+F,CAAA,CAAA;AAAA,OAC5G,CAAA,CAAA;AACD,MAAiB,cAAA,GAAA,IAAA,CAAA;AAAA,KACnB;AAAA,GACF,CAAA;AACA,EAAA,kBAAA,CAAmB,UAAa,GAAA,uBAAA,CAAA;AAClC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs b/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs deleted file mode 100644 index 9d271ee1..00000000 --- a/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs +++ /dev/null @@ -1,53 +0,0 @@ -import __nuxt_component_0 from './DocsPageLayout-4c2ead4a.mjs'; -import { useSSRContext, withCtx, renderSlot } from 'vue'; -import { ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import './DocsAside-a41d5eb9.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import 'ufo'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'h3'; -import './useDocus-928368c4.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import './Alert-2b29f746.mjs'; -import './ContentSlot-deb25102.mjs'; -import './ProseCodeInline-960b9a43.mjs'; -import './DocsPageBottom-270eacfc.mjs'; -import './EditOnLink-e55cd3a0.mjs'; -import './ProseA-86ef3985.mjs'; -import './DocsPrevNext-7858c09b.mjs'; -import './DocsToc-e4f6bd56.mjs'; -import './DocsTocLinks-95d48629.mjs'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - const _component_DocsPageLayout = __nuxt_component_0; - _push(ssrRenderComponent(_component_DocsPageLayout, _attrs, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - } else { - return [ - renderSlot(_ctx.$slots, "default") - ]; - } - }), - _: 3 - }, _parent)); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/layouts/default.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const _default = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { _default as default }; -//# sourceMappingURL=default-cafbf0bc.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map b/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map deleted file mode 100644 index 38639484..00000000 --- a/docs/.output/server/chunks/app/_nuxt/default-cafbf0bc.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"default-cafbf0bc.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/default-cafbf0bc.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,yBAA4B,GAAA,kBAAA,CAAA;AAClC,EAAM,KAAA,CAAA,kBAAA,CAAmB,2BAA2B,MAAQ,EAAA;AAAA,IAC1D,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,MAAA,IAAI,MAAQ,EAAA;AACV,QAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,OACrE,MAAA;AACL,QAAO,OAAA;AAAA,UACL,UAAA,CAAW,IAAK,CAAA,MAAA,EAAQ,SAAS,CAAA;AAAA,SACnC,CAAA;AAAA,OACF;AAAA,KACD,CAAA;AAAA,IACD,CAAG,EAAA,CAAA;AAAA,GACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACb,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,qDAAqD,CAAA,CAAA;AAClI,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs b/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs deleted file mode 100644 index d87fc7a2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs +++ /dev/null @@ -1,35 +0,0 @@ -import { _ as _export_sfc, a as __nuxt_component_0 } from './Container-1291608c.mjs'; -import { useSSRContext, mergeProps, withCtx, renderSlot } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - const _component_Container = __nuxt_component_0; - _push(``); - _push(ssrRenderComponent(_component_Container, null, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - } else { - return [ - renderSlot(_ctx.$slots, "default", {}, void 0, true) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("layouts/docs-page.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const docsPage = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender], ["__scopeId", "data-v-52761a33"]]); - -export { docsPage as default }; -//# sourceMappingURL=docs-page-75eace63.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map b/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map deleted file mode 100644 index 5f618858..00000000 --- a/docs/.output/server/chunks/app/_nuxt/docs-page-75eace63.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"docs-page-75eace63.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/docs-page-75eace63.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAOA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAA,MAAM,oBAAuB,GAAA,kBAAA,CAAA;AAC7B,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,WAAY,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC1F,EAAM,KAAA,CAAA,kBAAA,CAAmB,sBAAsB,IAAM,EAAA;AAAA,IACnD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,MAAA,IAAI,MAAQ,EAAA;AACV,QAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAAA,OACrE,MAAA;AACL,QAAO,OAAA;AAAA,UACL,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,SACrD,CAAA;AAAA,OACF;AAAA,KACD,CAAA;AAAA,IACD,CAAG,EAAA,CAAA;AAAA,GACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,EAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAChB,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,uBAAuB,CAAA,CAAA;AACpG,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACA,MAAM,QAA2B,mBAAA,WAAA,CAAY,SAAW,EAAA,CAAC,CAAC,WAAA,EAAa,cAAc,CAAA,EAAG,CAAC,WAAA,EAAa,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs b/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs deleted file mode 100644 index 2b61a96f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const docsPage_vue_vue_type_style_index_0_scoped_52761a33_transformed_true_lang = ".docs-page[data-v-52761a33]{padding:40px 0}"; - -const docsPageStyles_bb658b38 = [docsPage_vue_vue_type_style_index_0_scoped_52761a33_transformed_true_lang]; - -export { docsPageStyles_bb658b38 as default }; -//# sourceMappingURL=docs-page-styles.bb658b38.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map b/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map deleted file mode 100644 index 820b95a9..00000000 --- a/docs/.output/server/chunks/app/_nuxt/docs-page-styles.bb658b38.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"docs-page-styles.bb658b38.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/docs-page-styles-1.mjs-a9d66d58.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/docs-page-styles.bb658b38.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,yEAA4E,GAAA,6CAAA;;ACClF,gCAAe,CAACA,yEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs b/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs deleted file mode 100644 index ffa05ebd..00000000 --- a/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs +++ /dev/null @@ -1,104 +0,0 @@ -import __nuxt_component_0 from './layout-88ff67c1.mjs'; -import _sfc_main$1 from './ContentRenderer-06a7c657.mjs'; -import _sfc_main$2 from './DocumentDrivenEmpty-8338ce9f.mjs'; -import __nuxt_component_3 from './DocumentDrivenNotFound-4b73ea08.mjs'; -import { c as useContent } from './useDocus-928368c4.mjs'; -import { a as useContentHead } from '../server.mjs'; -import { e as useRequestEvent } from './app.config-832f5f68.mjs'; -import { defineComponent, mergeProps, unref, withCtx, createVNode, openBlock, createBlock, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent } from 'vue/server-renderer'; -import 'vue-router'; -import './ContentRendererMarkdown-bebf42c8.mjs'; -import 'destr'; -import 'scule'; -import 'property-information'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import './ButtonLink-df4791d5.mjs'; -import './DocsAsideTree-136bd08b.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'defu'; -import './ContentSlot-deb25102.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import '../../nitro/config.mjs'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "document-driven", - __ssrInlineRender: true, - setup(__props) { - const { page, layout } = useContent(); - if (!page.value && true) { - const event = useRequestEvent(); - event.res.statusCode = 404; - } - useContentHead(page); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLayout = __nuxt_component_0; - const _component_ContentRenderer = _sfc_main$1; - const _component_DocumentDrivenEmpty = _sfc_main$2; - const _component_DocumentDrivenNotFound = __nuxt_component_3; - _push(``); - _push(ssrRenderComponent(_component_NuxtLayout, { - name: unref(layout) || "default" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - if (unref(page)) { - _push2(ssrRenderComponent(_component_ContentRenderer, { - key: unref(page)._id, - value: unref(page) - }, { - empty: withCtx(({ value }, _push3, _parent3, _scopeId2) => { - if (_push3) { - _push3(ssrRenderComponent(_component_DocumentDrivenEmpty, { value }, null, _parent3, _scopeId2)); - } else { - return [ - createVNode(_component_DocumentDrivenEmpty, { value }, null, 8, ["value"]) - ]; - } - }), - _: 1 - }, _parent2, _scopeId)); - } else { - _push2(ssrRenderComponent(_component_DocumentDrivenNotFound, null, null, _parent2, _scopeId)); - } - } else { - return [ - unref(page) ? (openBlock(), createBlock(_component_ContentRenderer, { - key: unref(page)._id, - value: unref(page) - }, { - empty: withCtx(({ value }) => [ - createVNode(_component_DocumentDrivenEmpty, { value }, null, 8, ["value"]) - ]), - _: 1 - }, 8, ["value"])) : (openBlock(), createBlock(_component_DocumentDrivenNotFound, { key: 1 })) - ]; - } - }), - _: 1 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/content/dist/runtime/pages/document-driven.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; - -export { _sfc_main as default }; -//# sourceMappingURL=document-driven-27005915.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map b/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map deleted file mode 100644 index b0d9cc5e..00000000 --- a/docs/.output/server/chunks/app/_nuxt/document-driven-27005915.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"document-driven-27005915.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/document-driven-27005915.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs b/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs deleted file mode 100644 index 2085c44c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs +++ /dev/null @@ -1,21 +0,0 @@ -import { ssrRenderAttrs } from 'vue/server-renderer'; -import { useSSRContext } from 'vue'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; - -const _sfc_main = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const empty = /* @__PURE__ */ _export_sfc(_sfc_main, [["ssrRender", _sfc_ssrRender]]); - -export { empty as default }; -//# sourceMappingURL=empty-446a838e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map b/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map deleted file mode 100644 index 20dd8c72..00000000 --- a/docs/.output/server/chunks/app/_nuxt/empty-446a838e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"empty-446a838e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/empty-446a838e.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;AAMA,MAAM,YAAY,EAAC,CAAA;AACnB,SAAS,cAAe,CAAA,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAQ,EAAA;AACpD,EAAM,KAAA,CAAA,CAAA,IAAA,EAAO,cAAe,CAAA,MAAM,CAAU,CAAA,OAAA,CAAA,CAAA,CAAA;AAC9C,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,0DAA0D,CAAA,CAAA;AACvI,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,KAAA,+BAAoC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,cAAc,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs b/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs deleted file mode 100644 index bca68a14..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs +++ /dev/null @@ -1,99 +0,0 @@ -import { _ as __nuxt_component_0 } from './app.config-832f5f68.mjs'; -import { b as useHead } from '../server.mjs'; -import { mergeProps, withCtx, createTextVNode, toDisplayString, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate, ssrRenderComponent } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const _sfc_main = { - __name: "error-404", - __ssrInlineRender: true, - props: { - appName: { - type: String, - default: "Nuxt" - }, - version: { - type: String, - default: "" - }, - statusCode: { - type: Number, - default: 404 - }, - statusMessage: { - type: String, - default: "Not Found" - }, - description: { - type: String, - default: "Sorry, the page you are looking for could not be found." - }, - backHome: { - type: String, - default: "Go back home" - } - }, - setup(__props) { - const props = __props; - useHead({ - title: `${props.statusCode} - ${props.statusMessage} | ${props.appName}`, - script: [], - style: [ - { - children: `*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}a{color:inherit;text-decoration:inherit}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}` - } - ] - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0; - _push(`

    ${ssrInterpolate(__props.statusCode)}

    ${ssrInterpolate(__props.description)}

    `); - _push(ssrRenderComponent(_component_NuxtLink, { - to: "/", - class: "gradient-border text-md sm:text-xl py-2 px-4 sm:py-3 sm:px-6 cursor-pointer" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`${ssrInterpolate(__props.backHome)}`); - } else { - return [ - createTextVNode(toDisplayString(__props.backHome), 1) - ]; - } - }), - _: 1 - }, _parent)); - _push(`
    `); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/ui-templates/dist/templates/error-404.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const error404 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-30d2164e"]]); - -export { error404 as default }; -//# sourceMappingURL=error-404-6d0186e4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map deleted file mode 100644 index 67c68319..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-404-6d0186e4.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"error-404-6d0186e4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-404-6d0186e4.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs b/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs deleted file mode 100644 index bba47a26..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const error404_vue_vue_type_style_index_0_scoped_30d2164e_lang = '.spotlight[data-v-30d2164e]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);bottom:-30vh;filter:blur(20vh);height:40vh}.gradient-border[data-v-30d2164e]{-webkit-backdrop-filter:blur(10px);backdrop-filter:blur(10px);border-radius:.5rem;position:relative}@media (prefers-color-scheme:light){.gradient-border[data-v-30d2164e]{background-color:hsla(0,0%,100%,.3)}.gradient-border[data-v-30d2164e]:before{background:linear-gradient(90deg,#e2e2e2,#e2e2e2 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}@media (prefers-color-scheme:dark){html:not(.light) .gradient-border[data-v-30d2164e]{background-color:hsla(0,0%,8%,.3)}html:not(.light) .gradient-border[data-v-30d2164e]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82 50%,#36e4da 75%,#0047e1)}}html.dark .gradient-border[data-v-30d2164e]{background-color:hsla(0,0%,8%,.3)}html.dark .gradient-border[data-v-30d2164e]:before{background:linear-gradient(90deg,#303030,#303030 25%,#00dc82 50%,#36e4da 75%,#0047e1)}.gradient-border[data-v-30d2164e]:before{background-size:400% auto;border-radius:.5rem;bottom:0;content:"";left:0;-webkit-mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);mask:linear-gradient(#fff 0 0) content-box,linear-gradient(#fff 0 0);-webkit-mask-composite:xor;mask-composite:exclude;opacity:.5;padding:2px;position:absolute;right:0;top:0;transition:background-position .3s ease-in-out,opacity .2s ease-in-out;width:100%}.gradient-border[data-v-30d2164e]:hover:before{background-position:-50% 0;opacity:1}.bg-white[data-v-30d2164e]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.cursor-pointer[data-v-30d2164e]{cursor:pointer}.flex[data-v-30d2164e]{display:flex}.grid[data-v-30d2164e]{display:grid}.place-content-center[data-v-30d2164e]{place-content:center}.items-center[data-v-30d2164e]{align-items:center}.justify-center[data-v-30d2164e]{justify-content:center}.font-sans[data-v-30d2164e]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-30d2164e]{font-weight:500}.font-light[data-v-30d2164e]{font-weight:300}.text-8xl[data-v-30d2164e]{font-size:6rem;line-height:1}.text-xl[data-v-30d2164e]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-30d2164e]{line-height:1.25}.mb-8[data-v-30d2164e]{margin-bottom:2rem}.mb-16[data-v-30d2164e]{margin-bottom:4rem}.max-w-520px[data-v-30d2164e]{max-width:520px}.min-h-screen[data-v-30d2164e]{min-height:100vh}.overflow-hidden[data-v-30d2164e]{overflow:hidden}.px-8[data-v-30d2164e]{padding-left:2rem;padding-right:2rem}.py-2[data-v-30d2164e]{padding-bottom:.5rem;padding-top:.5rem}.px-4[data-v-30d2164e]{padding-left:1rem;padding-right:1rem}.fixed[data-v-30d2164e]{position:fixed}.left-0[data-v-30d2164e]{left:0}.right-0[data-v-30d2164e]{right:0}.text-center[data-v-30d2164e]{text-align:center}.text-black[data-v-30d2164e]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-30d2164e]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-30d2164e]{width:100%}.z-10[data-v-30d2164e]{z-index:10}.z-20[data-v-30d2164e]{z-index:20}@media (min-width:640px){.sm\\:text-4xl[data-v-30d2164e]{font-size:2.25rem;line-height:2.5rem}.sm\\:text-xl[data-v-30d2164e]{font-size:1.25rem;line-height:1.75rem}.sm\\:text-10xl[data-v-30d2164e]{font-size:10rem;line-height:1}.sm\\:px-0[data-v-30d2164e]{padding-left:0;padding-right:0}.sm\\:py-3[data-v-30d2164e]{padding-bottom:.75rem;padding-top:.75rem}.sm\\:px-6[data-v-30d2164e]{padding-left:1.5rem;padding-right:1.5rem}}@media (prefers-color-scheme:dark){html:not(.light) .dark\\:bg-black[data-v-30d2164e]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\\:text-white[data-v-30d2164e]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\\:bg-black[data-v-30d2164e]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\\:text-white[data-v-30d2164e]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}'; - -const error404Styles_1b6f35f0 = [error404_vue_vue_type_style_index_0_scoped_30d2164e_lang]; - -export { error404Styles_1b6f35f0 as default }; -//# sourceMappingURL=error-404-styles.1b6f35f0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map deleted file mode 100644 index 3b2c9a0b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-404-styles.1b6f35f0.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"error-404-styles.1b6f35f0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-404-styles-1.mjs-e75e7e19.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-404-styles.1b6f35f0.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wDAA2D,GAAA,sqIAAA;;ACCjE,gCAAe,CAACA,wDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs b/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs deleted file mode 100644 index be4e3421..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs +++ /dev/null @@ -1,78 +0,0 @@ -import { b as useHead } from '../server.mjs'; -import { mergeProps, useSSRContext } from 'vue'; -import { ssrRenderAttrs, ssrInterpolate } from 'vue/server-renderer'; -import { _ as _export_sfc } from './Container-1291608c.mjs'; -import 'ofetch'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const _sfc_main = { - __name: "error-500", - __ssrInlineRender: true, - props: { - appName: { - type: String, - default: "Nuxt" - }, - version: { - type: String, - default: "" - }, - statusCode: { - type: Number, - default: 500 - }, - statusMessage: { - type: String, - default: "Server error" - }, - description: { - type: String, - default: "This page is temporarily unavailable." - } - }, - setup(__props) { - const props = __props; - useHead({ - title: `${props.statusCode} - ${props.statusMessage} | ${props.appName}`, - script: [], - style: [ - { - children: `*,:before,:after{-webkit-box-sizing:border-box;box-sizing:border-box;border-width:0;border-style:solid;border-color:#e0e0e0}*{--tw-ring-inset:var(--tw-empty, );--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgba(14, 165, 233, .5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000}:root{-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{margin:0;font-family:inherit;line-height:inherit}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,"Apple Color Emoji","Segoe UI Emoji",Segoe UI Symbol,"Noto Color Emoji";line-height:1.5}h1,p{margin:0}h1{font-size:inherit;font-weight:inherit}` - } - ] - }); - return (_ctx, _push, _parent, _attrs) => { - _push(`

    ${ssrInterpolate(__props.statusCode)}

    ${ssrInterpolate(__props.description)}

    `); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt/ui-templates/dist/templates/error-500.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const error500 = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-32388612"]]); - -export { error500 as default }; -//# sourceMappingURL=error-500-6ca426c2.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map deleted file mode 100644 index 7095cec9..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-500-6ca426c2.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"error-500-6ca426c2.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-500-6ca426c2.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA4BA,MAAM,SAAY,GAAA;AAAA,EAChB,MAAQ,EAAA,WAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,MAAA;AAAA,KACX;AAAA,IACA,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,EAAA;AAAA,KACX;AAAA,IACA,UAAY,EAAA;AAAA,MACV,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,GAAA;AAAA,KACX;AAAA,IACA,aAAe,EAAA;AAAA,MACb,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,cAAA;AAAA,KACX;AAAA,IACA,WAAa,EAAA;AAAA,MACX,IAAM,EAAA,MAAA;AAAA,MACN,OAAS,EAAA,uCAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,MAAM,OAAS,EAAA;AACb,IAAA,MAAM,KAAQ,GAAA,OAAA,CAAA;AACd,IAAQ,OAAA,CAAA;AAAA,MACN,OAAO,CAAG,EAAA,KAAA,CAAM,UAAgB,CAAA,GAAA,EAAA,KAAA,CAAM,mBAAmB,KAAM,CAAA,OAAA,CAAA,CAAA;AAAA,MAC/D,QAAQ,EAAC;AAAA,MACT,KAAO,EAAA;AAAA,QACL;AAAA,UACE,QAAU,EAAA,CAAA,uuBAAA,CAAA;AAAA,SACZ;AAAA,OACF;AAAA,KACD,CAAA,CAAA;AACD,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAA,KAAA,CAAM,OAAO,cAAe,CAAA,UAAA,CAAW,EAAE,KAAA,EAAO,kIAAoI,EAAA,MAAM,CAAC,CAAA,CAAA,6NAAA,EAAiO,eAAe,OAAQ,CAAA,UAAU,oGAAoG,cAAe,CAAA,OAAA,CAAQ,WAAW,CAAmB,CAAA,gBAAA,CAAA,CAAA,CAAA;AAAA,KACxlB,CAAA;AAAA,GACF;AACF,CAAA,CAAA;AACA,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,8DAA8D,CAAA,CAAA;AAC3I,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,QAAA,+BAAuC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs b/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs deleted file mode 100644 index ceff43c8..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const error500_vue_vue_type_style_index_0_scoped_32388612_lang = ".spotlight[data-v-32388612]{background:linear-gradient(45deg,#00dc82,#36e4da 50%,#0047e1);filter:blur(20vh)}.bg-white[data-v-32388612]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.grid[data-v-32388612]{display:grid}.place-content-center[data-v-32388612]{place-content:center}.font-sans[data-v-32388612]{font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-medium[data-v-32388612]{font-weight:500}.font-light[data-v-32388612]{font-weight:300}.h-1\\/2[data-v-32388612]{height:50%}.text-8xl[data-v-32388612]{font-size:6rem;line-height:1}.text-xl[data-v-32388612]{font-size:1.25rem;line-height:1.75rem}.leading-tight[data-v-32388612]{line-height:1.25}.mb-8[data-v-32388612]{margin-bottom:2rem}.mb-16[data-v-32388612]{margin-bottom:4rem}.max-w-520px[data-v-32388612]{max-width:520px}.min-h-screen[data-v-32388612]{min-height:100vh}.overflow-hidden[data-v-32388612]{overflow:hidden}.px-8[data-v-32388612]{padding-left:2rem;padding-right:2rem}.fixed[data-v-32388612]{position:fixed}.left-0[data-v-32388612]{left:0}.right-0[data-v-32388612]{right:0}.-bottom-1\\/2[data-v-32388612]{bottom:-50%}.text-center[data-v-32388612]{text-align:center}.text-black[data-v-32388612]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-32388612]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}@media (min-width:640px){.sm\\:text-4xl[data-v-32388612]{font-size:2.25rem;line-height:2.5rem}.sm\\:text-10xl[data-v-32388612]{font-size:10rem;line-height:1}.sm\\:px-0[data-v-32388612]{padding-left:0;padding-right:0}}@media (prefers-color-scheme:dark){html:not(.light) .dark\\:bg-black[data-v-32388612]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\\:text-white[data-v-32388612]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\\:bg-black[data-v-32388612]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\\:text-white[data-v-32388612]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}"; - -const error500Styles_17df0758 = [error500_vue_vue_type_style_index_0_scoped_32388612_lang]; - -export { error500Styles_17df0758 as default }; -//# sourceMappingURL=error-500-styles.17df0758.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map deleted file mode 100644 index 13530dab..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-500-styles.17df0758.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"error-500-styles.17df0758.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-500-styles-1.mjs-85164be6.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-500-styles.17df0758.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,wDAA2D,GAAA,4wEAAA;;ACCjE,gCAAe,CAACA,wDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs b/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs deleted file mode 100644 index a1910f05..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs +++ /dev/null @@ -1,42 +0,0 @@ -import { useSSRContext, defineAsyncComponent, unref, mergeProps } from 'vue'; -import { ssrRenderComponent } from 'vue/server-renderer'; - -const _sfc_main = { - __name: "nuxt-error-page", - __ssrInlineRender: true, - props: { - error: Object - }, - setup(__props) { - var _a; - const { error } = __props; - (error.stack || "").split("\n").splice(1).map((line) => { - const text = line.replace("webpack:/", "").replace(".vue", ".js").trim(); - return { - text, - internal: line.includes("node_modules") && !line.includes(".cache") || line.includes("internal") || line.includes("new Promise") - }; - }).map((i) => `${i.text}`).join("\n"); - const statusCode = Number(error.statusCode || 500); - const is404 = statusCode === 404; - const statusMessage = (_a = error.statusMessage) != null ? _a : is404 ? "Page Not Found" : "Internal Server Error"; - const description = error.message || error.toString(); - const stack = void 0; - const _Error404 = defineAsyncComponent(() => import('./error-404-6d0186e4.mjs').then((r) => r.default || r)); - const _Error = defineAsyncComponent(() => import('./error-500-6ca426c2.mjs').then((r) => r.default || r)); - const ErrorTemplate = is404 ? _Error404 : _Error; - return (_ctx, _push, _parent, _attrs) => { - _push(ssrRenderComponent(unref(ErrorTemplate), mergeProps({ statusCode: unref(statusCode), statusMessage: unref(statusMessage), description: unref(description), stack: unref(stack) }, _attrs), null, _parent)); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/nuxt/dist/app/components/nuxt-error-page.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const _sfc_main$1 = _sfc_main; - -export { _sfc_main$1 as default }; -//# sourceMappingURL=error-component-969bdc5d.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map b/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map deleted file mode 100644 index 0ab70c7b..00000000 --- a/docs/.output/server/chunks/app/_nuxt/error-component-969bdc5d.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"error-component-969bdc5d.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/error-component-969bdc5d.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs b/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs deleted file mode 100644 index 1690b40f..00000000 --- a/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs +++ /dev/null @@ -1,281 +0,0 @@ -import { computed, ref, readonly, watch, getCurrentInstance, unref, getCurrentScope, onScopeDispose, nextTick } from 'vue'; - -const isClient = false; -const isDef = (val) => typeof val !== "undefined"; -const isFunction = (val) => typeof val === "function"; -const isString = (val) => typeof val === "string"; -const noop = () => { -}; -function resolveUnref(r) { - return typeof r === "function" ? r() : unref(r); -} -function identity(arg) { - return arg; -} -function tryOnScopeDispose(fn) { - if (getCurrentScope()) { - onScopeDispose(fn); - return true; - } - return false; -} -function tryOnMounted(fn, sync = true) { - if (getCurrentInstance()) - ; - else if (sync) - fn(); - else - nextTick(fn); -} -function useTimeoutFn(cb, interval, options = {}) { - const { - immediate = true - } = options; - const isPending = ref(false); - let timer = null; - function clear() { - if (timer) { - clearTimeout(timer); - timer = null; - } - } - function stop() { - isPending.value = false; - clear(); - } - function start(...args) { - clear(); - isPending.value = true; - timer = setTimeout(() => { - isPending.value = false; - timer = null; - cb(...args); - }, resolveUnref(interval)); - } - if (immediate) { - isPending.value = true; - } - tryOnScopeDispose(stop); - return { - isPending: readonly(isPending), - start, - stop - }; -} -function unrefElement(elRef) { - var _a; - const plain = resolveUnref(elRef); - return (_a = plain == null ? void 0 : plain.$el) != null ? _a : plain; -} -const defaultWindow = void 0; -const defaultNavigator = isClient ? window.navigator : void 0; -function useEventListener(...args) { - let target; - let events; - let listeners; - let options; - if (isString(args[0]) || Array.isArray(args[0])) { - [events, listeners, options] = args; - target = defaultWindow; - } else { - [target, events, listeners, options] = args; - } - if (!target) - return noop; - if (!Array.isArray(events)) - events = [events]; - if (!Array.isArray(listeners)) - listeners = [listeners]; - const cleanups = []; - const cleanup = () => { - cleanups.forEach((fn) => fn()); - cleanups.length = 0; - }; - const register = (el, event, listener) => { - el.addEventListener(event, listener, options); - return () => el.removeEventListener(event, listener, options); - }; - const stopWatch = watch(() => unrefElement(target), (el) => { - cleanup(); - if (!el) - return; - cleanups.push(...events.flatMap((event) => { - return listeners.map((listener) => register(el, event, listener)); - })); - }, { immediate: true, flush: "post" }); - const stop = () => { - stopWatch(); - cleanup(); - }; - tryOnScopeDispose(stop); - return stop; -} -function useSupported(callback, sync = false) { - const isSupported = ref(); - const update = () => isSupported.value = Boolean(callback()); - update(); - tryOnMounted(update, sync); - return isSupported; -} -function useClipboard(options = {}) { - const { - navigator = defaultNavigator, - read = false, - source, - copiedDuring = 1500, - legacy = false - } = options; - const events = ["copy", "cut"]; - const isClipboardApiSupported = useSupported(() => navigator && "clipboard" in navigator); - const isSupported = computed(() => isClipboardApiSupported.value || legacy); - const text = ref(""); - const copied = ref(false); - const timeout = useTimeoutFn(() => copied.value = false, copiedDuring); - function updateText() { - if (isClipboardApiSupported.value) { - navigator.clipboard.readText().then((value) => { - text.value = value; - }); - } else { - text.value = legacyRead(); - } - } - if (isSupported.value && read) { - for (const event of events) - useEventListener(event, updateText); - } - async function copy(value = resolveUnref(source)) { - if (isSupported.value && value != null) { - if (isClipboardApiSupported.value) - await navigator.clipboard.writeText(value); - else - legacyCopy(value); - text.value = value; - copied.value = true; - timeout.start(); - } - } - function legacyCopy(value) { - const ta = document.createElement("textarea"); - ta.value = value != null ? value : ""; - ta.style.position = "absolute"; - ta.style.opacity = "0"; - document.body.appendChild(ta); - ta.select(); - document.execCommand("copy"); - ta.remove(); - } - function legacyRead() { - var _a, _b, _c; - return (_c = (_b = (_a = document == null ? void 0 : document.getSelection) == null ? void 0 : _a.call(document)) == null ? void 0 : _b.toString()) != null ? _c : ""; - } - return { - isSupported, - text, - copied, - copy - }; -} -function cloneFnJSON(source) { - return JSON.parse(JSON.stringify(source)); -} -const _global = typeof globalThis !== "undefined" ? globalThis : typeof global !== "undefined" ? global : typeof self !== "undefined" ? self : {}; -const globalKey = "__vueuse_ssr_handlers__"; -_global[globalKey] = _global[globalKey] || {}; -_global[globalKey]; -var SwipeDirection; -(function(SwipeDirection2) { - SwipeDirection2["UP"] = "UP"; - SwipeDirection2["RIGHT"] = "RIGHT"; - SwipeDirection2["DOWN"] = "DOWN"; - SwipeDirection2["LEFT"] = "LEFT"; - SwipeDirection2["NONE"] = "NONE"; -})(SwipeDirection || (SwipeDirection = {})); -var __defProp = Object.defineProperty; -var __getOwnPropSymbols = Object.getOwnPropertySymbols; -var __hasOwnProp = Object.prototype.hasOwnProperty; -var __propIsEnum = Object.prototype.propertyIsEnumerable; -var __defNormalProp = (obj, key, value) => key in obj ? __defProp(obj, key, { enumerable: true, configurable: true, writable: true, value }) : obj[key] = value; -var __spreadValues = (a, b) => { - for (var prop in b || (b = {})) - if (__hasOwnProp.call(b, prop)) - __defNormalProp(a, prop, b[prop]); - if (__getOwnPropSymbols) - for (var prop of __getOwnPropSymbols(b)) { - if (__propIsEnum.call(b, prop)) - __defNormalProp(a, prop, b[prop]); - } - return a; -}; -const _TransitionPresets = { - easeInSine: [0.12, 0, 0.39, 0], - easeOutSine: [0.61, 1, 0.88, 1], - easeInOutSine: [0.37, 0, 0.63, 1], - easeInQuad: [0.11, 0, 0.5, 0], - easeOutQuad: [0.5, 1, 0.89, 1], - easeInOutQuad: [0.45, 0, 0.55, 1], - easeInCubic: [0.32, 0, 0.67, 0], - easeOutCubic: [0.33, 1, 0.68, 1], - easeInOutCubic: [0.65, 0, 0.35, 1], - easeInQuart: [0.5, 0, 0.75, 0], - easeOutQuart: [0.25, 1, 0.5, 1], - easeInOutQuart: [0.76, 0, 0.24, 1], - easeInQuint: [0.64, 0, 0.78, 0], - easeOutQuint: [0.22, 1, 0.36, 1], - easeInOutQuint: [0.83, 0, 0.17, 1], - easeInExpo: [0.7, 0, 0.84, 0], - easeOutExpo: [0.16, 1, 0.3, 1], - easeInOutExpo: [0.87, 0, 0.13, 1], - easeInCirc: [0.55, 0, 1, 0.45], - easeOutCirc: [0, 0.55, 0.45, 1], - easeInOutCirc: [0.85, 0, 0.15, 1], - easeInBack: [0.36, 0, 0.66, -0.56], - easeOutBack: [0.34, 1.56, 0.64, 1], - easeInOutBack: [0.68, -0.6, 0.32, 1.6] -}; -__spreadValues({ - linear: identity -}, _TransitionPresets); -function useVModel(props, key, emit, options = {}) { - var _a, _b, _c; - const { - clone = false, - passive = false, - eventName, - deep = false, - defaultValue - } = options; - const vm = getCurrentInstance(); - const _emit = emit || (vm == null ? void 0 : vm.emit) || ((_a = vm == null ? void 0 : vm.$emit) == null ? void 0 : _a.bind(vm)) || ((_c = (_b = vm == null ? void 0 : vm.proxy) == null ? void 0 : _b.$emit) == null ? void 0 : _c.bind(vm == null ? void 0 : vm.proxy)); - let event = eventName; - if (!key) { - { - key = "modelValue"; - } - } - event = eventName || event || `update:${key.toString()}`; - const cloneFn = (val) => !clone ? val : isFunction(clone) ? clone(val) : cloneFnJSON(val); - const getValue = () => isDef(props[key]) ? cloneFn(props[key]) : defaultValue; - if (passive) { - const initialValue = getValue(); - const proxy = ref(initialValue); - watch(() => props[key], (v) => proxy.value = cloneFn(v)); - watch(proxy, (v) => { - if (v !== props[key] || deep) - _emit(event, v); - }, { deep }); - return proxy; - } else { - return computed({ - get() { - return getValue(); - }, - set(value) { - _emit(event, value); - } - }); - } -} - -export { useVModel as a, useClipboard as u }; -//# sourceMappingURL=index-1624a23e.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map b/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map deleted file mode 100644 index e192897d..00000000 --- a/docs/.output/server/chunks/app/_nuxt/index-1624a23e.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index-1624a23e.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/index-1624a23e.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs b/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs deleted file mode 100644 index d9a76ce8..00000000 --- a/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs +++ /dev/null @@ -1,59 +0,0 @@ -import { defineComponent, createBlock, Teleport, h } from 'vue'; -import { c as createError } from '../server.mjs'; -import 'ofetch'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; - -const components_islands = {}; -const islandComponents = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: components_islands -}); -const islandRenderer = defineComponent({ - props: { - context: { - type: Object, - required: true - } - }, - async setup(props) { - var _a; - const component = islandComponents[props.context.name]; - if (!component) { - throw createError({ - statusCode: 404, - statusMessage: `Island component not found: ${JSON.stringify(component)}` - }); - } - if (typeof component === "object") { - await ((_a = component.__asyncLoader) == null ? void 0 : _a.call(component)); - } - return () => [ - createBlock(Teleport, { to: "nuxt-island" }, [h(component || "span", props.context.props)]) - ]; - } -}); - -export { islandRenderer as default }; -//# sourceMappingURL=island-renderer-862b92a0.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map b/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map deleted file mode 100644 index f43112cc..00000000 --- a/docs/.output/server/chunks/app/_nuxt/island-renderer-862b92a0.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"island-renderer-862b92a0.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/island-renderer-862b92a0.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,MAAM,qBAAqB,EAAC,CAAA;AAC5B,MAAM,gBAAA,0BAA0C,MAAO,CAAA;AAAA,EACrD,SAAW,EAAA,IAAA;AAAA,EACX,OAAS,EAAA,kBAAA;AACX,CAAC,CAAA,CAAA;AACD,MAAM,iBAAiB,eAAgB,CAAA;AAAA,EACrC,KAAO,EAAA;AAAA,IACL,OAAS,EAAA;AAAA,MACP,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,IAAA;AAAA,KACZ;AAAA,GACF;AAAA,EACA,MAAM,MAAM,KAAO,EAAA;AACjB,IAAI,IAAA,EAAA,CAAA;AACJ,IAAA,MAAM,SAAY,GAAA,gBAAA,CAAiB,KAAM,CAAA,OAAA,CAAQ,IAAI,CAAA,CAAA;AACrD,IAAA,IAAI,CAAC,SAAW,EAAA;AACd,MAAA,MAAM,WAAY,CAAA;AAAA,QAChB,UAAY,EAAA,GAAA;AAAA,QACZ,aAAe,EAAA,CAAA,4BAAA,EAA+B,IAAK,CAAA,SAAA,CAAU,SAAS,CAAA,CAAA,CAAA;AAAA,OACvE,CAAA,CAAA;AAAA,KACH;AACA,IAAI,IAAA,OAAO,cAAc,QAAU,EAAA;AACjC,MAAA,OAAA,CAAQ,KAAK,SAAU,CAAA,aAAA,KAAkB,OAAO,KAAS,CAAA,GAAA,EAAA,CAAG,KAAK,SAAS,CAAA,CAAA,CAAA;AAAA,KAC5E;AACA,IAAA,OAAO,MAAM;AAAA,MACX,WAAY,CAAA,QAAA,EAAU,EAAE,EAAA,EAAI,eAAiB,EAAA,CAAC,CAAE,CAAA,SAAA,IAAa,MAAQ,EAAA,KAAA,CAAM,OAAQ,CAAA,KAAK,CAAC,CAAC,CAAA;AAAA,KAC5F,CAAA;AAAA,GACF;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs b/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs deleted file mode 100644 index ecf279a2..00000000 --- a/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs +++ /dev/null @@ -1,75 +0,0 @@ -import { defineComponent, h, inject, computed, unref, Transition } from 'vue'; -import { l as layouts, d as appLayoutTransition, _ as _wrapIf } from '../server.mjs'; -import { f as useRoute } from './app.config-832f5f68.mjs'; -import { useRoute as useRoute$1 } from 'vue-router'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'unctx'; -import 'h3'; -import 'ufo'; -import './useDocus-928368c4.mjs'; -import 'ohash'; -import './query-dd064fd9.mjs'; -import 'cookie-es'; -import 'destr'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import 'hookable'; -import '../../nitro/config.mjs'; - -const LayoutLoader = defineComponent({ - name: "LayoutLoader", - inheritAttrs: false, - props: { - name: String, - ...{} - }, - async setup(props, context) { - const LayoutComponent = await layouts[props.name]().then((r) => r.default || r); - return () => { - return h(LayoutComponent, context.attrs, context.slots); - }; - } -}); -const __nuxt_component_0 = defineComponent({ - name: "NuxtLayout", - inheritAttrs: false, - props: { - name: { - type: [String, Boolean, Object], - default: null - } - }, - setup(props, context) { - const injectedRoute = inject("_route"); - const route = injectedRoute === useRoute() ? useRoute$1() : injectedRoute; - const layout = computed(() => { - var _a, _b; - return (_b = (_a = unref(props.name)) != null ? _a : route.meta.layout) != null ? _b : "default"; - }); - return () => { - var _a; - const hasLayout = layout.value && layout.value in layouts; - const transitionProps = (_a = route.meta.layoutTransition) != null ? _a : appLayoutTransition; - return _wrapIf(Transition, hasLayout && transitionProps, { - default: () => _wrapIf(LayoutLoader, hasLayout && { - key: layout.value, - name: layout.value, - ...{}, - ...context.attrs - }, context.slots).default() - }).default(); - }; - } -}); - -export { __nuxt_component_0 as default }; -//# sourceMappingURL=layout-88ff67c1.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map b/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map deleted file mode 100644 index 82096981..00000000 --- a/docs/.output/server/chunks/app/_nuxt/layout-88ff67c1.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"layout-88ff67c1.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/layout-88ff67c1.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;AA2BA,MAAM,eAAe,eAAgB,CAAA;AAAA,EACnC,IAAM,EAAA,cAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,IAAM,EAAA,MAAA;AAAA,IACN,GAAG,EAAC;AAAA,GACN;AAAA,EACA,MAAM,KAAM,CAAA,KAAA,EAAO,OAAS,EAAA;AAC1B,IAAA,MAAM,eAAkB,GAAA,MAAM,OAAQ,CAAA,KAAA,CAAM,IAAI,CAAA,EAAI,CAAA,IAAA,CAAK,CAAC,CAAA,KAAM,CAAE,CAAA,OAAA,IAAW,CAAC,CAAA,CAAA;AAC9E,IAAA,OAAO,MAAM;AACX,MAAA,OAAO,CAAE,CAAA,eAAA,EAAiB,OAAQ,CAAA,KAAA,EAAO,QAAQ,KAAK,CAAA,CAAA;AAAA,KACxD,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AACD,MAAM,qBAAqB,eAAgB,CAAA;AAAA,EACzC,IAAM,EAAA,YAAA;AAAA,EACN,YAAc,EAAA,KAAA;AAAA,EACd,KAAO,EAAA;AAAA,IACL,IAAM,EAAA;AAAA,MACJ,IAAM,EAAA,CAAC,MAAQ,EAAA,OAAA,EAAS,MAAM,CAAA;AAAA,MAC9B,OAAS,EAAA,IAAA;AAAA,KACX;AAAA,GACF;AAAA,EACA,KAAA,CAAM,OAAO,OAAS,EAAA;AACpB,IAAM,MAAA,aAAA,GAAgB,OAAO,QAAQ,CAAA,CAAA;AACrC,IAAA,MAAM,KAAQ,GAAA,aAAA,KAAkB,QAAS,EAAA,GAAI,YAAe,GAAA,aAAA,CAAA;AAC5D,IAAM,MAAA,MAAA,GAAS,SAAS,MAAG;AArD/B,MAAA,IAAA,EAAA,EAAA,EAAA,CAAA;AAqDkC,MAAA,OAAA,CAAA,EAAA,GAAA,CAAA,EAAA,GAAA,KAAA,CAAM,MAAM,IAAI,CAAA,KAAhB,YAAqB,KAAM,CAAA,IAAA,CAAK,WAAhC,IAA0C,GAAA,EAAA,GAAA,SAAA,CAAA;AAAA,KAAS,CAAA,CAAA;AACjF,IAAA,OAAO,MAAM;AAtDjB,MAAA,IAAA,EAAA,CAAA;AAuDM,MAAA,MAAM,SAAY,GAAA,MAAA,CAAO,KAAS,IAAA,MAAA,CAAO,KAAS,IAAA,OAAA,CAAA;AAClD,MAAA,MAAM,eAAkB,GAAA,CAAA,EAAA,GAAA,KAAA,CAAM,IAAK,CAAA,gBAAA,KAAX,IAA+B,GAAA,EAAA,GAAA,mBAAA,CAAA;AACvD,MAAO,OAAA,OAAA,CAAQ,UAAY,EAAA,SAAA,IAAa,eAAiB,EAAA;AAAA,QACvD,OAAS,EAAA,MAAM,OAAQ,CAAA,YAAA,EAAc,SAAa,IAAA;AAAA,UAChD,KAAK,MAAO,CAAA,KAAA;AAAA,UACZ,MAAM,MAAO,CAAA,KAAA;AAAA,UACb,GAAG,EAAC;AAAA,UACJ,GAAG,OAAQ,CAAA,KAAA;AAAA,SACV,EAAA,OAAA,CAAQ,KAAK,CAAA,CAAE,OAAQ,EAAA;AAAA,OAC3B,EAAE,OAAQ,EAAA,CAAA;AAAA,KACb,CAAA;AAAA,GACF;AACF,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs b/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs deleted file mode 100644 index 47a392e3..00000000 --- a/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs +++ /dev/null @@ -1,55 +0,0 @@ -import { _ as _export_sfc, a as __nuxt_component_0 } from './Container-1291608c.mjs'; -import { b as useDocus } from './useDocus-928368c4.mjs'; -import { useSSRContext, defineComponent, mergeProps, unref, withCtx, createVNode, renderSlot } from 'vue'; -import { ssrRenderAttrs, ssrRenderComponent, ssrRenderSlot } from 'vue/server-renderer'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import './app.config-832f5f68.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; - -const _sfc_main = /* @__PURE__ */ defineComponent({ - __name: "page", - __ssrInlineRender: true, - setup(__props) { - const { config } = useDocus(); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b, _c, _d; - const _component_Container = __nuxt_component_0; - _push(``); - _push(ssrRenderComponent(_component_Container, { - fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.main) == null ? void 0 : _b.fluid, - padded: (_d = (_c = unref(config)) == null ? void 0 : _c.main) == null ? void 0 : _d.padded - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`
    `); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push2, _parent2, _scopeId); - _push2(`
    `); - } else { - return [ - createVNode("article", null, [ - renderSlot(_ctx.$slots, "default", {}, void 0, true) - ]) - ]; - } - }), - _: 3 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/layouts/page.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -const page = /* @__PURE__ */ _export_sfc(_sfc_main, [["__scopeId", "data-v-415bdc86"]]); - -export { page as default }; -//# sourceMappingURL=page-26ac7e13.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map b/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map deleted file mode 100644 index e782b088..00000000 --- a/docs/.output/server/chunks/app/_nuxt/page-26ac7e13.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"page-26ac7e13.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/page-26ac7e13.js"],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;AAaA,MAAM,4BAA4C,eAAA,CAAA;AAAA,EAChD,MAAQ,EAAA,MAAA;AAAA,EACR,iBAAmB,EAAA,IAAA;AAAA,EACnB,MAAM,OAAS,EAAA;AACb,IAAM,MAAA,EAAE,MAAO,EAAA,GAAI,QAAS,EAAA,CAAA;AAC5B,IAAA,OAAO,CAAC,IAAA,EAAM,KAAO,EAAA,OAAA,EAAS,MAAW,KAAA;AACvC,MAAI,IAAA,EAAA,EAAI,IAAI,EAAI,EAAA,EAAA,CAAA;AAChB,MAAA,MAAM,oBAAuB,GAAA,kBAAA,CAAA;AAC7B,MAAM,KAAA,CAAA,CAAA,IAAA,EAAO,eAAe,UAAW,CAAA,EAAE,OAAO,aAAc,EAAA,EAAG,MAAM,CAAC,CAAoB,CAAA,iBAAA,CAAA,CAAA,CAAA;AAC5F,MAAA,KAAA,CAAM,mBAAmB,oBAAsB,EAAA;AAAA,QAC7C,KAAQ,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,KAAA;AAAA,QACpF,MAAS,EAAA,CAAA,EAAA,GAAA,CAAM,EAAK,GAAA,KAAA,CAAM,MAAM,CAAA,KAAM,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,KAAS,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,MAAA;AAAA,OACpF,EAAA;AAAA,QACD,SAAS,OAAQ,CAAA,CAAC,CAAG,EAAA,MAAA,EAAQ,UAAU,QAAa,KAAA;AAClD,UAAA,IAAI,MAAQ,EAAA;AACV,YAAA,MAAA,CAAO,2BAA2B,QAAW,CAAA,CAAA,CAAA,CAAA,CAAA;AAC7C,YAAc,aAAA,CAAA,IAAA,CAAK,QAAQ,SAAW,EAAA,IAAI,IAAM,EAAA,MAAA,EAAQ,UAAU,QAAQ,CAAA,CAAA;AAC1E,YAAA,MAAA,CAAO,CAAY,UAAA,CAAA,CAAA,CAAA;AAAA,WACd,MAAA;AACL,YAAO,OAAA;AAAA,cACL,WAAA,CAAY,WAAW,IAAM,EAAA;AAAA,gBAC3B,WAAW,IAAK,CAAA,MAAA,EAAQ,WAAW,EAAC,EAAG,QAAQ,IAAI,CAAA;AAAA,eACpD,CAAA;AAAA,aACH,CAAA;AAAA,WACF;AAAA,SACD,CAAA;AAAA,QACD,CAAG,EAAA,CAAA;AAAA,OACL,EAAG,OAAO,CAAC,CAAA,CAAA;AACX,MAAA,KAAA,CAAM,CAAQ,MAAA,CAAA,CAAA,CAAA;AAAA,KAChB,CAAA;AAAA,GACF;AACF,CAAC,CAAA,CAAA;AAED,MAAM,aAAa,SAAU,CAAA,KAAA,CAAA;AAC7B,SAAU,CAAA,KAAA,GAAQ,CAAC,KAAA,EAAO,GAAQ,KAAA;AAChC,EAAA,MAAM,aAAa,aAAc,EAAA,CAAA;AACjC,EAAC,CAAA,UAAA,CAAW,YAAY,UAAW,CAAA,OAAA,uBAA8B,GAAI,EAAA,CAAA,EAAI,IAAI,kDAAkD,CAAA,CAAA;AAC/H,EAAA,OAAO,UAAa,GAAA,UAAA,CAAW,KAAO,EAAA,GAAG,CAAI,GAAA,KAAA,CAAA,CAAA;AAC/C,CAAA,CAAA;AACM,MAAA,IAAA,+BAAmC,SAAW,EAAA,CAAC,CAAC,WAAa,EAAA,iBAAiB,CAAC,CAAC;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs b/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs deleted file mode 100644 index 66442ae3..00000000 --- a/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const page_vue_vue_type_style_index_0_scoped_415bdc86_transformed_true_lang = ".page-layout[data-v-415bdc86]{display:flex;flex-direction:column;position:relative}"; - -const pageStyles_df5d38b1 = [page_vue_vue_type_style_index_0_scoped_415bdc86_transformed_true_lang]; - -export { pageStyles_df5d38b1 as default }; -//# sourceMappingURL=page-styles.df5d38b1.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map b/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map deleted file mode 100644 index a0a50859..00000000 --- a/docs/.output/server/chunks/app/_nuxt/page-styles.df5d38b1.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"page-styles.df5d38b1.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/page-styles-1.mjs-f4528a37.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/page-styles.df5d38b1.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,qEAAwE,GAAA,qFAAA;;ACC9E,4BAAe,CAACA,qEAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs b/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs deleted file mode 100644 index 4d227213..00000000 --- a/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const tailwind = "*,:after,:before{border:0 solid #e5e7eb;box-sizing:border-box}html{-webkit-text-size-adjust:100%;font-family:ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5;-moz-tab-size:4;-o-tab-size:4;tab-size:4}body{line-height:inherit;margin:0}hr{border-top-width:1px;color:inherit;height:0}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{border-collapse:collapse;border-color:inherit;text-indent:0}button,input,optgroup,select,textarea{color:inherit;font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0}fieldset,legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::-moz-placeholder,textarea::-moz-placeholder{color:#9ca3af;opacity:1}input::placeholder,textarea::placeholder{color:#9ca3af;opacity:1}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{height:auto;max-width:100%}[hidden]{display:none}"; - -const pinceauNuxtPlugin_serverStyles_1bf5bf59 = [tailwind]; - -export { pinceauNuxtPlugin_serverStyles_1bf5bf59 as default }; -//# sourceMappingURL=pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map b/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map deleted file mode 100644 index 07e2a4ce..00000000 --- a/docs/.output/server/chunks/app/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/pinceau-nuxt-plugin.server-styles-1.mjs-257bea56.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,QAAW,GAAA,2nEAAA;;ACCjB,gDAAe,CAACA,QAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs b/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs deleted file mode 100644 index d462fd58..00000000 --- a/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs +++ /dev/null @@ -1,154 +0,0 @@ -import { ref } from 'vue'; -import { parse, serialize } from 'cookie-es'; -import { appendHeader } from 'h3'; -import destr from 'destr'; -import { isEqual } from 'ohash'; -import { u as useNuxtApp, e as useRequestEvent } from './app.config-832f5f68.mjs'; - -const CookieDefaults = { - path: "/", - watch: true, - decode: (val) => destr(decodeURIComponent(val)), - encode: (val) => encodeURIComponent(typeof val === "string" ? val : JSON.stringify(val)) -}; -function useCookie(name, _opts) { - var _a2; - var _a; - const opts = { ...CookieDefaults, ..._opts }; - const cookies = readRawCookies(opts) || {}; - const cookie = ref((_a2 = cookies[name]) != null ? _a2 : (_a = opts.default) == null ? void 0 : _a.call(opts)); - { - const nuxtApp = useNuxtApp(); - const writeFinalCookieValue = () => { - if (!isEqual(cookie.value, cookies[name])) { - writeServerCookie(useRequestEvent(nuxtApp), name, cookie.value, opts); - } - }; - const unhook = nuxtApp.hooks.hookOnce("app:rendered", writeFinalCookieValue); - nuxtApp.hooks.hookOnce("app:redirected", () => { - unhook(); - return writeFinalCookieValue(); - }); - } - return cookie; -} -function readRawCookies(opts = {}) { - var _a; - { - return parse(((_a = useRequestEvent()) == null ? void 0 : _a.req.headers.cookie) || "", opts); - } -} -function serializeCookie(name, value, opts = {}) { - if (value === null || value === void 0) { - return serialize(name, value, { ...opts, maxAge: -1 }); - } - return serialize(name, value, opts); -} -function writeServerCookie(event, name, value, opts = {}) { - if (event) { - appendHeader(event, "Set-Cookie", serializeCookie(name, value, opts)); - } -} -const get = (obj, path) => path.split(".").reduce((acc, part) => acc && acc[part], obj); -const _pick = (obj, condition) => Object.keys(obj).filter(condition).reduce((newObj, key) => Object.assign(newObj, { [key]: obj[key] }), {}); -const apply = (fn) => (data) => Array.isArray(data) ? data.map((item) => fn(item)) : fn(data); -const detectProperties = (keys) => { - const prefixes = []; - const properties = []; - for (const key of keys) { - if (["$", "_"].includes(key)) { - prefixes.push(key); - } else { - properties.push(key); - } - } - return { prefixes, properties }; -}; -const withoutKeys = (keys = []) => (obj) => { - if (keys.length === 0 || !obj) { - return obj; - } - const { prefixes, properties } = detectProperties(keys); - return _pick(obj, (key) => !properties.includes(key) && !prefixes.includes(key[0])); -}; -const withKeys = (keys = []) => (obj) => { - if (keys.length === 0 || !obj) { - return obj; - } - const { prefixes, properties } = detectProperties(keys); - return _pick(obj, (key) => properties.includes(key) || prefixes.includes(key[0])); -}; -const sortList = (data, params) => { - const comperable = new Intl.Collator(params.$locale, { - numeric: params.$numeric, - caseFirst: params.$caseFirst, - sensitivity: params.$sensitivity - }); - const keys = Object.keys(params).filter((key) => !key.startsWith("$")); - for (const key of keys) { - data = data.sort((a, b) => { - const values = [get(a, key), get(b, key)].map((value) => { - if (value === null) { - return void 0; - } - if (value instanceof Date) { - return value.toISOString(); - } - return value; - }); - if (params[key] === -1) { - values.reverse(); - } - return comperable.compare(values[0], values[1]); - }); - } - return data; -}; -const assertArray = (value, message = "Expected an array") => { - if (!Array.isArray(value)) { - throw new TypeError(message); - } -}; -const ensureArray = (value) => Array.isArray(value) ? value : value ? [value] : []; -const arrayParams = ["sort", "where", "only", "without"]; -const createQuery = (fetcher, intitialParams) => { - const queryParams = { - ...intitialParams - }; - for (const key of arrayParams) { - if (queryParams[key]) { - queryParams[key] = ensureArray(queryParams[key]); - } - } - const $set = (key, fn = (v) => v) => { - return (...values) => { - queryParams[key] = fn(...values); - return query; - }; - }; - const query = { - params: () => queryParams, - only: $set("only", ensureArray), - without: $set("without", ensureArray), - where: $set("where", (q) => [...ensureArray(queryParams.where), q]), - sort: $set("sort", (sort) => [...ensureArray(queryParams.sort), ...ensureArray(sort)]), - limit: $set("limit", (v) => parseInt(String(v), 10)), - skip: $set("skip", (v) => parseInt(String(v), 10)), - // find - find: () => fetcher(query), - findOne: () => { - queryParams.first = true; - return fetcher(query); - }, - findSurround: (surroundQuery, options) => { - queryParams.surround = { query: surroundQuery, ...options }; - return fetcher(query); - }, - // locale - locale: (_locale) => query.where({ _locale }) - }; - return query; -}; - -export { assertArray as a, apply as b, createQuery as c, withKeys as d, ensureArray as e, get as g, sortList as s, useCookie as u, withoutKeys as w }; -//# sourceMappingURL=query-dd064fd9.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map b/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map deleted file mode 100644 index 7fc8e4e0..00000000 --- a/docs/.output/server/chunks/app/_nuxt/query-dd064fd9.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"query-dd064fd9.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/query-dd064fd9.js"],"sourcesContent":null,"names":["_a"],"mappings":";;;;;;;AAMA,MAAM,cAAiB,GAAA;AAAA,EACrB,IAAM,EAAA,GAAA;AAAA,EACN,KAAO,EAAA,IAAA;AAAA,EACP,QAAQ,CAAC,GAAA,KAAQ,KAAM,CAAA,kBAAA,CAAmB,GAAG,CAAC,CAAA;AAAA,EAC9C,MAAA,EAAQ,CAAC,GAAA,KAAQ,kBAAmB,CAAA,OAAO,GAAQ,KAAA,QAAA,GAAW,GAAM,GAAA,IAAA,CAAK,SAAU,CAAA,GAAG,CAAC,CAAA;AACzF,CAAA,CAAA;AACA,SAAS,SAAA,CAAU,MAAM,KAAO,EAAA;AAZhC,EAAAA,IAAAA,GAAAA,CAAAA;AAaE,EAAI,IAAA,EAAA,CAAA;AACJ,EAAA,MAAM,IAAO,GAAA,EAAE,GAAG,cAAA,EAAgB,GAAG,KAAM,EAAA,CAAA;AAC3C,EAAA,MAAM,OAAU,GAAA,cAAA,CAAe,IAAI,CAAA,IAAK,EAAC,CAAA;AACzC,EAAA,MAAM,SAAS,GAAIA,CAAAA,CAAAA,GAAAA,GAAA,OAAQ,CAAA,IAAI,MAAZ,IAAAA,GAAAA,GAAAA,GAAAA,CAAmB,EAAK,GAAA,IAAA,CAAK,YAAY,IAAO,GAAA,KAAA,CAAA,GAAS,EAAG,CAAA,IAAA,CAAK,IAAI,CAAE,CAAA,CAAA;AAC1F,EAAA;AACE,IAAA,MAAM,UAAU,UAAW,EAAA,CAAA;AAC3B,IAAA,MAAM,wBAAwB,MAAM;AAClC,MAAA,IAAI,CAAC,OAAQ,CAAA,MAAA,CAAO,OAAO,OAAQ,CAAA,IAAI,CAAC,CAAG,EAAA;AACzC,QAAA,iBAAA,CAAkB,gBAAgB,OAAO,CAAA,EAAG,IAAM,EAAA,MAAA,CAAO,OAAO,IAAI,CAAA,CAAA;AAAA,OACtE;AAAA,KACF,CAAA;AACA,IAAA,MAAM,MAAS,GAAA,OAAA,CAAQ,KAAM,CAAA,QAAA,CAAS,gBAAgB,qBAAqB,CAAA,CAAA;AAC3E,IAAQ,OAAA,CAAA,KAAA,CAAM,QAAS,CAAA,gBAAA,EAAkB,MAAM;AAC7C,MAAO,MAAA,EAAA,CAAA;AACP,MAAA,OAAO,qBAAsB,EAAA,CAAA;AAAA,KAC9B,CAAA,CAAA;AAAA,GACH;AACA,EAAO,OAAA,MAAA,CAAA;AACT,CAAA;AACA,SAAS,cAAA,CAAe,IAAO,GAAA,EAAI,EAAA;AACjC,EAAI,IAAA,EAAA,CAAA;AACJ,EAAA;AACE,IAAO,OAAA,KAAA,CAAA,CAAA,CAAQ,EAAK,GAAA,eAAA,EAAsB,KAAA,IAAA,GAAO,KAAS,CAAA,GAAA,EAAA,CAAG,GAAI,CAAA,OAAA,CAAQ,MAAW,KAAA,EAAA,EAAI,IAAI,CAAA,CAAA;AAAA,GAC9F;AACF,CAAA;AACA,SAAS,eAAgB,CAAA,IAAA,EAAM,KAAO,EAAA,IAAA,GAAO,EAAI,EAAA;AAC/C,EAAI,IAAA,KAAA,KAAU,IAAQ,IAAA,KAAA,KAAU,KAAQ,CAAA,EAAA;AACtC,IAAO,OAAA,SAAA,CAAU,MAAM,KAAO,EAAA,EAAE,GAAG,IAAM,EAAA,MAAA,EAAQ,IAAI,CAAA,CAAA;AAAA,GACvD;AACA,EAAO,OAAA,SAAA,CAAU,IAAM,EAAA,KAAA,EAAO,IAAI,CAAA,CAAA;AACpC,CAAA;AACA,SAAS,kBAAkB,KAAO,EAAA,IAAA,EAAM,KAAO,EAAA,IAAA,GAAO,EAAI,EAAA;AACxD,EAAA,IAAI,KAAO,EAAA;AACT,IAAA,YAAA,CAAa,OAAO,YAAc,EAAA,eAAA,CAAgB,IAAM,EAAA,KAAA,EAAO,IAAI,CAAC,CAAA,CAAA;AAAA,GACtE;AACF,CAAA;AACA,MAAM,MAAM,CAAC,GAAA,EAAK,IAAS,KAAA,IAAA,CAAK,MAAM,GAAG,CAAA,CAAE,MAAO,CAAA,CAAC,KAAK,IAAS,KAAA,GAAA,IAAO,GAAI,CAAA,IAAI,GAAG,GAAG,EAAA;AACtF,MAAM,KAAQ,GAAA,CAAC,GAAK,EAAA,SAAA,KAAc,MAAO,CAAA,IAAA,CAAK,GAAG,CAAA,CAAE,MAAO,CAAA,SAAS,CAAE,CAAA,MAAA,CAAO,CAAC,MAAA,EAAQ,GAAQ,KAAA,MAAA,CAAO,MAAO,CAAA,MAAA,EAAQ,EAAE,CAAC,GAAG,GAAG,GAAI,CAAA,GAAG,CAAE,EAAC,CAAG,EAAA,EAAE,CAAA,CAAA;AAC3I,MAAM,QAAQ,CAAC,EAAA,KAAO,CAAC,IAAS,KAAA,KAAA,CAAM,QAAQ,IAAI,CAAA,GAAI,IAAK,CAAA,GAAA,CAAI,CAAC,IAAS,KAAA,EAAA,CAAG,IAAI,CAAC,CAAA,GAAI,GAAG,IAAI,EAAA;AAC5F,MAAM,gBAAA,GAAmB,CAAC,IAAS,KAAA;AACjC,EAAA,MAAM,WAAW,EAAC,CAAA;AAClB,EAAA,MAAM,aAAa,EAAC,CAAA;AACpB,EAAA,KAAA,MAAW,OAAO,IAAM,EAAA;AACtB,IAAA,IAAI,CAAC,GAAK,EAAA,GAAG,CAAE,CAAA,QAAA,CAAS,GAAG,CAAG,EAAA;AAC5B,MAAA,QAAA,CAAS,KAAK,GAAG,CAAA,CAAA;AAAA,KACZ,MAAA;AACL,MAAA,UAAA,CAAW,KAAK,GAAG,CAAA,CAAA;AAAA,KACrB;AAAA,GACF;AACA,EAAO,OAAA,EAAE,UAAU,UAAW,EAAA,CAAA;AAChC,CAAA,CAAA;AACA,MAAM,cAAc,CAAC,IAAA,GAAO,EAAC,KAAM,CAAC,GAAQ,KAAA;AAC1C,EAAA,IAAI,IAAK,CAAA,MAAA,KAAW,CAAK,IAAA,CAAC,GAAK,EAAA;AAC7B,IAAO,OAAA,GAAA,CAAA;AAAA,GACT;AACA,EAAA,MAAM,EAAE,QAAA,EAAU,UAAW,EAAA,GAAI,iBAAiB,IAAI,CAAA,CAAA;AACtD,EAAA,OAAO,KAAM,CAAA,GAAA,EAAK,CAAC,GAAA,KAAQ,CAAC,UAAW,CAAA,QAAA,CAAS,GAAG,CAAA,IAAK,CAAC,QAAS,CAAA,QAAA,CAAS,GAAI,CAAA,CAAC,CAAC,CAAC,CAAA,CAAA;AACpF,EAAA;AACA,MAAM,WAAW,CAAC,IAAA,GAAO,EAAC,KAAM,CAAC,GAAQ,KAAA;AACvC,EAAA,IAAI,IAAK,CAAA,MAAA,KAAW,CAAK,IAAA,CAAC,GAAK,EAAA;AAC7B,IAAO,OAAA,GAAA,CAAA;AAAA,GACT;AACA,EAAA,MAAM,EAAE,QAAA,EAAU,UAAW,EAAA,GAAI,iBAAiB,IAAI,CAAA,CAAA;AACtD,EAAA,OAAO,KAAM,CAAA,GAAA,EAAK,CAAC,GAAA,KAAQ,UAAW,CAAA,QAAA,CAAS,GAAG,CAAA,IAAK,QAAS,CAAA,QAAA,CAAS,GAAI,CAAA,CAAC,CAAC,CAAC,CAAA,CAAA;AAClF,EAAA;AACM,MAAA,QAAA,GAAW,CAAC,IAAA,EAAM,MAAW,KAAA;AACjC,EAAA,MAAM,UAAa,GAAA,IAAI,IAAK,CAAA,QAAA,CAAS,OAAO,OAAS,EAAA;AAAA,IACnD,SAAS,MAAO,CAAA,QAAA;AAAA,IAChB,WAAW,MAAO,CAAA,UAAA;AAAA,IAClB,aAAa,MAAO,CAAA,YAAA;AAAA,GACrB,CAAA,CAAA;AACD,EAAA,MAAM,IAAO,GAAA,MAAA,CAAO,IAAK,CAAA,MAAM,CAAE,CAAA,MAAA,CAAO,CAAC,GAAA,KAAQ,CAAC,GAAA,CAAI,UAAW,CAAA,GAAG,CAAC,CAAA,CAAA;AACrE,EAAA,KAAA,MAAW,OAAO,IAAM,EAAA;AACtB,IAAA,IAAA,GAAO,IAAK,CAAA,IAAA,CAAK,CAAC,CAAA,EAAG,CAAM,KAAA;AACzB,MAAA,MAAM,MAAS,GAAA,CAAC,GAAI,CAAA,CAAA,EAAG,GAAG,CAAA,EAAG,GAAI,CAAA,CAAA,EAAG,GAAG,CAAC,CAAE,CAAA,GAAA,CAAI,CAAC,KAAU,KAAA;AACvD,QAAA,IAAI,UAAU,IAAM,EAAA;AAClB,UAAO,OAAA,KAAA,CAAA,CAAA;AAAA,SACT;AACA,QAAA,IAAI,iBAAiB,IAAM,EAAA;AACzB,UAAA,OAAO,MAAM,WAAY,EAAA,CAAA;AAAA,SAC3B;AACA,QAAO,OAAA,KAAA,CAAA;AAAA,OACR,CAAA,CAAA;AACD,MAAI,IAAA,MAAA,CAAO,GAAG,CAAA,KAAM,CAAI,CAAA,EAAA;AACtB,QAAA,MAAA,CAAO,OAAQ,EAAA,CAAA;AAAA,OACjB;AACA,MAAA,OAAO,WAAW,OAAQ,CAAA,MAAA,CAAO,CAAC,CAAG,EAAA,MAAA,CAAO,CAAC,CAAC,CAAA,CAAA;AAAA,KAC/C,CAAA,CAAA;AAAA,GACH;AACA,EAAO,OAAA,IAAA,CAAA;AACT,EAAA;AACA,MAAM,WAAc,GAAA,CAAC,KAAO,EAAA,OAAA,GAAU,mBAAwB,KAAA;AAC5D,EAAA,IAAI,CAAC,KAAA,CAAM,OAAQ,CAAA,KAAK,CAAG,EAAA;AACzB,IAAM,MAAA,IAAI,UAAU,OAAO,CAAA,CAAA;AAAA,GAC7B;AACF,EAAA;AACA,MAAM,WAAc,GAAA,CAAC,KAAU,KAAA,KAAA,CAAM,OAAQ,CAAA,KAAK,CAAI,GAAA,KAAA,GAAQ,KAAQ,GAAA,CAAC,KAAK,CAAA,GAAI,GAAC;AACjF,MAAM,WAAc,GAAA,CAAC,MAAQ,EAAA,OAAA,EAAS,QAAQ,SAAS,CAAA,CAAA;AACjD,MAAA,WAAA,GAAc,CAAC,OAAA,EAAS,cAAmB,KAAA;AAC/C,EAAA,MAAM,WAAc,GAAA;AAAA,IAClB,GAAG,cAAA;AAAA,GACL,CAAA;AACA,EAAA,KAAA,MAAW,OAAO,WAAa,EAAA;AAC7B,IAAI,IAAA,WAAA,CAAY,GAAG,CAAG,EAAA;AACpB,MAAA,WAAA,CAAY,GAAG,CAAA,GAAI,WAAY,CAAA,WAAA,CAAY,GAAG,CAAC,CAAA,CAAA;AAAA,KACjD;AAAA,GACF;AACA,EAAA,MAAM,OAAO,CAAC,GAAA,EAAK,EAAK,GAAA,CAAC,MAAM,CAAM,KAAA;AACnC,IAAA,OAAO,IAAI,MAAW,KAAA;AACpB,MAAA,WAAA,CAAY,GAAG,CAAA,GAAI,EAAG,CAAA,GAAG,MAAM,CAAA,CAAA;AAC/B,MAAO,OAAA,KAAA,CAAA;AAAA,KACT,CAAA;AAAA,GACF,CAAA;AACA,EAAA,MAAM,KAAQ,GAAA;AAAA,IACZ,QAAQ,MAAM,WAAA;AAAA,IACd,IAAA,EAAM,IAAK,CAAA,MAAA,EAAQ,WAAW,CAAA;AAAA,IAC9B,OAAA,EAAS,IAAK,CAAA,SAAA,EAAW,WAAW,CAAA;AAAA,IACpC,KAAO,EAAA,IAAA,CAAK,OAAS,EAAA,CAAC,CAAM,KAAA,CAAC,GAAG,WAAA,CAAY,WAAY,CAAA,KAAK,CAAG,EAAA,CAAC,CAAC,CAAA;AAAA,IAClE,IAAM,EAAA,IAAA,CAAK,MAAQ,EAAA,CAAC,SAAS,CAAC,GAAG,WAAY,CAAA,WAAA,CAAY,IAAI,CAAG,EAAA,GAAG,WAAY,CAAA,IAAI,CAAC,CAAC,CAAA;AAAA,IACrF,KAAA,EAAO,IAAK,CAAA,OAAA,EAAS,CAAC,CAAA,KAAM,SAAS,MAAO,CAAA,CAAC,CAAG,EAAA,EAAE,CAAC,CAAA;AAAA,IACnD,IAAA,EAAM,IAAK,CAAA,MAAA,EAAQ,CAAC,CAAA,KAAM,SAAS,MAAO,CAAA,CAAC,CAAG,EAAA,EAAE,CAAC,CAAA;AAAA;AAAA,IAEjD,IAAA,EAAM,MAAM,OAAA,CAAQ,KAAK,CAAA;AAAA,IACzB,SAAS,MAAM;AACb,MAAA,WAAA,CAAY,KAAQ,GAAA,IAAA,CAAA;AACpB,MAAA,OAAO,QAAQ,KAAK,CAAA,CAAA;AAAA,KACtB;AAAA,IACA,YAAA,EAAc,CAAC,aAAA,EAAe,OAAY,KAAA;AACxC,MAAA,WAAA,CAAY,QAAW,GAAA,EAAE,KAAO,EAAA,aAAA,EAAe,GAAG,OAAQ,EAAA,CAAA;AAC1D,MAAA,OAAO,QAAQ,KAAK,CAAA,CAAA;AAAA,KACtB;AAAA;AAAA,IAEA,QAAQ,CAAC,OAAA,KAAY,MAAM,KAAM,CAAA,EAAE,SAAS,CAAA;AAAA,GAC9C,CAAA;AACA,EAAO,OAAA,KAAA,CAAA;AACT;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs b/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs deleted file mode 100644 index 44f3341c..00000000 --- a/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs +++ /dev/null @@ -1,235 +0,0 @@ -import { toRef, isRef, reactive, computed } from 'vue'; -import { u as useNuxtApp, l as __appConfig, f as useRoute } from './app.config-832f5f68.mjs'; -import { withoutTrailingSlash } from 'ufo'; - -function useState(...args) { - const autoKey = typeof args[args.length - 1] === "string" ? args.pop() : void 0; - if (typeof args[0] !== "string") { - args.unshift(autoKey); - } - const [_key, init] = args; - if (!_key || typeof _key !== "string") { - throw new TypeError("[nuxt] [useState] key must be a string: " + _key); - } - if (init !== void 0 && typeof init !== "function") { - throw new Error("[nuxt] [useState] init must be a function: " + init); - } - const key = "$s" + _key; - const nuxt = useNuxtApp(); - const state = toRef(nuxt.payload.state, key); - if (state.value === void 0 && init) { - const initialValue = init(); - if (isRef(initialValue)) { - nuxt.payload.state[key] = initialValue; - return initialValue; - } - state.value = initialValue; - } - return state; -} -function useAppConfig() { - const nuxtApp = useNuxtApp(); - if (!nuxtApp._appConfig) { - nuxtApp._appConfig = reactive(__appConfig); - } - return nuxtApp._appConfig; -} -const navBottomLink = (link) => { - if (!link.children) { - return link._path; - } - for (const child of (link == null ? void 0 : link.children) || []) { - const result = navBottomLink(child); - if (result) { - return result; - } - } -}; -const navDirFromPath = (path, tree) => { - for (const file of tree) { - if (file._path === path && !file._id) { - return file.children; - } - if (file.children) { - const result = navDirFromPath(path, file.children); - if (result) { - return result; - } - } - } -}; -const navPageFromPath = (path, tree) => { - for (const file of tree) { - if (file._path === path) { - return file; - } - if (file.children) { - const result = navPageFromPath(path, file.children); - if (result) { - return result; - } - } - } -}; -const navKeyFromPath = (path, key, tree) => { - let value; - const goDeep = (path2, tree2) => { - for (const file of tree2) { - if ((path2 == null ? void 0 : path2.startsWith(file._path)) && file[key]) { - value = file[key]; - } - if (file._path === path2) { - return; - } - if (file.children) { - goDeep(path2, file.children); - } - } - }; - goDeep(path, tree); - return value; -}; -const useContentHelpers = () => { - return { - navBottomLink, - navDirFromPath, - navPageFromPath, - navKeyFromPath - }; -}; -const useContentState = () => { - const pages = useState("dd-pages", () => ({})); - const surrounds = useState("dd-surrounds", () => ({})); - const navigation = useState("dd-navigation"); - const globals = useState("dd-globals", () => ({})); - return { - pages, - surrounds, - navigation, - globals - }; -}; -const useContent = () => { - const { navigation, pages, surrounds, globals } = useContentState(); - const _path = computed(() => withoutTrailingSlash(useRoute().path)); - const page = computed(() => pages.value[_path.value]); - const surround = computed(() => surrounds.value[_path.value]); - const toc = computed(() => { - var _a, _b; - return (_b = (_a = page == null ? void 0 : page.value) == null ? void 0 : _a.body) == null ? void 0 : _b.toc; - }); - const type = computed(() => { - var _a; - return (_a = page.value) == null ? void 0 : _a.type; - }); - const excerpt = computed(() => { - var _a; - return (_a = page.value) == null ? void 0 : _a.excerpt; - }); - const layout = computed(() => { - var _a; - return (_a = page.value) == null ? void 0 : _a.layout; - }); - const next = computed(() => { - var _a; - return (_a = surround.value) == null ? void 0 : _a[1]; - }); - const prev = computed(() => { - var _a; - return (_a = surround.value) == null ? void 0 : _a[0]; - }); - return { - // Refs - globals, - navigation, - surround, - page, - // From page - excerpt, - toc, - type, - layout, - // From surround - next, - prev - }; -}; -const useDocus = () => { - const docus = computed(() => { - var _a; - return ((_a = useAppConfig()) == null ? void 0 : _a.docus) || {}; - }); - const { navPageFromPath: navPageFromPath2, navDirFromPath: navDirFromPath2, navKeyFromPath: navKeyFromPath2 } = useContentHelpers(); - const { navigation, page } = useContent(); - const route = useRoute(); - const config = computed( - () => { - var _a, _b, _c, _d, _e, _f, _g, _h, _i, _j, _k; - const titleTemplate = ((_a = docus == null ? void 0 : docus.value) == null ? void 0 : _a.titleTemplate) || navKeyFromPath2((_b = page == null ? void 0 : page.value) == null ? void 0 : _b._path, "titleTemplate", navigation.value || []) || `%s \xB7 ${((_c = docus == null ? void 0 : docus.value) == null ? void 0 : _c.title) || "Docus"}`; - const main = ((_d = docus == null ? void 0 : docus.value) == null ? void 0 : _d.main) || {}; - const header = ((_e = docus == null ? void 0 : docus.value) == null ? void 0 : _e.header) || {}; - const aside = ((_f = docus == null ? void 0 : docus.value) == null ? void 0 : _f.aside) || {}; - const footer = ((_g = docus == null ? void 0 : docus.value) == null ? void 0 : _g.footer) || {}; - return { - // Raw appConfig - ...docus.value, - // Merged attributes - titleTemplate, - main: { - ...main, - ...navKeyFromPath2(route.path, "main", navigation.value || []), - ...(_h = page.value) == null ? void 0 : _h.main - }, - header: { - ...header, - ...navKeyFromPath2(route.path, "header", navigation.value || []), - ...(_i = page.value) == null ? void 0 : _i.header - }, - aside: { - ...aside, - ...navKeyFromPath2(route.path, "aside", navigation.value || []), - ...(_j = page.value) == null ? void 0 : _j.aside - }, - footer: { - ...footer, - ...navKeyFromPath2(route.path, "footer", navigation.value || []), - ...(_k = page.value) == null ? void 0 : _k.footer - } - }; - } - ); - const tree = computed(() => { - var _a, _b, _c, _d, _e; - let nav = navigation.value || []; - const _path = route.path; - const level = ((_b = (_a = config == null ? void 0 : config.value) == null ? void 0 : _a.aside) == null ? void 0 : _b.level) || 0; - const filtered = ((_d = (_c = config == null ? void 0 : config.value) == null ? void 0 : _c.aside) == null ? void 0 : _d.exclude) || []; - if (level) { - const path = _path.split("/"); - const leveledPath = path.splice(0, 1 + level).join("/"); - nav = navDirFromPath2(leveledPath, nav) || []; - if (!Array.isArray(nav)) { - nav = [nav]; - } - } - if (nav.length === 0) { - nav = navPageFromPath2(((_e = page.value) == null ? void 0 : _e._path) || "/", navigation.value || []); - if (!nav) { - return []; - } - if (!Array.isArray(nav)) { - nav = [nav]; - } - } - return nav.filter((item) => { - if (filtered.includes(item._path)) { - return false; - } - return true; - }); - }); - return { tree, config }; -}; - -export { useAppConfig as a, useDocus as b, useContent as c, useContentState as d, useContentHelpers as e, useState as u }; -//# sourceMappingURL=useDocus-928368c4.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map b/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map deleted file mode 100644 index 4155d2b5..00000000 --- a/docs/.output/server/chunks/app/_nuxt/useDocus-928368c4.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"useDocus-928368c4.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/useDocus-928368c4.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs b/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs deleted file mode 100644 index 57bc0c0a..00000000 --- a/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs +++ /dev/null @@ -1,70 +0,0 @@ -import { e as useRequestEvent } from './app.config-832f5f68.mjs'; - -const useGithub = () => { - const fetchRepository = (query) => { - const url = `/api/_github/repository/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchRelease = (query) => { - const url = `/api/_github/releases/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchLastRelease = (query) => { - const url = `/api/_github/releases/${encodeParams({ ...query, last: true })}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchReleases = (query) => { - const url = `/api/_github/releases/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchContributors = (query) => { - const url = `/api/_github/contributors/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchFileContributors = (query) => { - const url = `/api/_github/contributors/file/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchReadme = (query) => { - const url = `/api/_github/readme/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - const fetchCommits = (query) => { - const url = `/api/_github/commits/${encodeParams(query)}.json`; - addPrerenderPath(url); - return $fetch(url, { responseType: "json" }); - }; - return { - fetchRepository, - fetchReleases, - fetchRelease, - fetchLastRelease, - fetchContributors, - fetchFileContributors, - fetchReadme, - fetchCommits - }; -}; -function encodeParams(params) { - return Object.entries(params).map(([key, value]) => `${key}_${String(value)}`).join(":"); -} -function addPrerenderPath(path) { - const event = useRequestEvent(); - event.res.setHeader( - "x-nitro-prerender", - [ - event.res.getHeader("x-nitro-prerender"), - path - ].filter(Boolean).join(",") - ); -} - -export { useGithub as u }; -//# sourceMappingURL=useGithub-94614457.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map b/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map deleted file mode 100644 index f8c08712..00000000 --- a/docs/.output/server/chunks/app/_nuxt/useGithub-94614457.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"useGithub-94614457.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/useGithub-94614457.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs b/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs deleted file mode 100644 index 08e91c07..00000000 --- a/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs +++ /dev/null @@ -1,228 +0,0 @@ -import { u as useNuxtApp, b as useRuntimeConfig, c as callWithNuxt } from './app.config-832f5f68.mjs'; -import { createApp } from 'vue'; -import { r as refreshNuxtData } from './asyncData-c43d4319.mjs'; -import { u as useState, a as useAppConfig } from './useDocus-928368c4.mjs'; -import { u as useCookie } from './query-dd064fd9.mjs'; -import ContentPreviewMode from './ContentPreviewMode-97e009a4.mjs'; -import 'hookable'; -import 'unctx'; -import 'ufo'; -import 'h3'; -import '../server.mjs'; -import 'ofetch'; -import '@unhead/vue'; -import '@unhead/dom'; -import '@unhead/ssr'; -import 'vue-router'; -import 'ohash'; -import './DocsAsideTree-136bd08b.mjs'; -import 'vue/server-renderer'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import './Container-1291608c.mjs'; -import 'nanoid'; -import 'scule'; -import 'defu'; -import '../../nitro/config.mjs'; -import 'destr'; -import 'cookie-es'; - -const mergeDraft = (dbFiles = [], draftAdditions, draftDeletions) => { - const additions = [...draftAdditions || []]; - const deletions = [...draftDeletions || []]; - const mergedFiles = JSON.parse(JSON.stringify(dbFiles)); - for (const addition of additions) { - if (addition.oldPath) { - deletions.splice(deletions.findIndex((d) => d.path === addition.oldPath), 1); - const oldPathExistInCache = additions.find((a) => a.path === addition.oldPath); - if (oldPathExistInCache) { - mergedFiles.push({ path: addition.path, parsed: addition.parsed }); - } else { - const file = mergedFiles.find((f) => f.path === addition.oldPath); - if (file) { - file.path = addition.path; - if (addition.parsed) { - file.parsed = addition.parsed; - } else if (addition.pathMeta) { - ["_file", "_path", "_id", "_locale"].forEach((key) => { - file.parsed[key] = addition.pathMeta[key]; - }); - } - } - } - } else if (addition.new) { - mergedFiles.push({ path: addition.path, parsed: addition.parsed }); - } else { - const file = mergedFiles.find((f) => f.path === addition.path); - if (file) { - Object.assign(file, { path: addition.path, parsed: addition.parsed }); - } - } - } - for (const deletion of deletions) { - mergedFiles.splice(mergedFiles.findIndex((f) => f.path === deletion.path), 1); - } - const comperable = new Intl.Collator(void 0, { numeric: true }); - mergedFiles.sort((a, b) => comperable.compare(a.path, b.path)); - return mergedFiles; -}; -const StudioConfigRoot = ".studio"; -const StudioConfigFiles = { - appConfig: `${StudioConfigRoot}/app.config.json`, - tokensConfig: `${StudioConfigRoot}/tokens.config.json` -}; -const createSingleton = (fn) => { - let instance; - return (...args) => { - if (!instance) { - instance = fn(); - } - return instance; - }; -}; -function deepDelete(obj, newObj) { - for (const key in obj) { - const val = newObj[key]; - if (!(key in newObj)) { - delete obj[key]; - } - if (val !== null && typeof val === "object") { - deepDelete(obj[key], newObj[key]); - } - } -} -function deepAssign(obj, newObj) { - for (const key in newObj) { - const val = newObj[key]; - if (val !== null && typeof val === "object") { - obj[key] = obj[key] || {}; - deepAssign(obj[key], val); - } else { - obj[key] = val; - } - } -} -const useDefaultAppConfig = createSingleton(() => JSON.parse(JSON.stringify(useAppConfig()))); -const useStudio = () => { - const nuxtApp = useNuxtApp(); - const runtimeConfig = useRuntimeConfig().public.studio || {}; - const initialAppConfig = useDefaultAppConfig(); - let initialTokensConfig; - const storage = useState("studio-client-db", () => null); - const dbFiles = useState("studio-preview-db-files", () => []); - nuxtApp.hook("content:storage", (_storage) => { - storage.value = _storage; - }); - const syncPreviewFiles = async (contentStorage, files, ignoreBuiltContents = true) => { - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - const keys = await contentStorage.getKeys(`${previewToken.value}:`); - await Promise.all(keys.map((key) => contentStorage.removeItem(key))); - await contentStorage.setItem(`${previewToken.value}$`, JSON.stringify({ ignoreBuiltContents })); - await Promise.all( - files.map((item) => { - var _a; - return contentStorage.setItem(`${previewToken.value}:${(_a = item.parsed) == null ? void 0 : _a._id}`, JSON.stringify(item.parsed)); - }) - ); - }; - const syncPreviewAppConfig = (appConfig) => { - const _appConfig = callWithNuxt(nuxtApp, useAppConfig); - deepAssign(_appConfig, appConfig || initialAppConfig); - if (!appConfig) { - deepDelete(_appConfig, initialAppConfig); - } - }; - const syncPreviewTokensConfig = (tokensConfig) => { - var _a, _b, _c, _d; - const themeSheet = (_d = (_c = (_b = (_a = nuxtApp == null ? void 0 : nuxtApp.vueApp) == null ? void 0 : _a._context) == null ? void 0 : _b.config) == null ? void 0 : _c.globalProperties) == null ? void 0 : _d.$pinceauTheme; - if (!themeSheet || !(themeSheet == null ? void 0 : themeSheet.updateTheme)) { - return; - } - if (!initialTokensConfig) { - initialTokensConfig = JSON.parse(JSON.stringify((themeSheet == null ? void 0 : themeSheet.theme.value) || {})); - } - callWithNuxt(nuxtApp, themeSheet.updateTheme, [tokensConfig || initialTokensConfig]); - }; - const syncPreview = async (data) => { - dbFiles.value = data.files = data.files || dbFiles.value || []; - if (!storage.value) { - return false; - } - const mergedFiles = mergeDraft(data.files, data.additions, data.deletions); - const contentFiles = mergedFiles.filter((item) => !item.path.startsWith(StudioConfigRoot)); - await syncPreviewFiles(storage.value, contentFiles, (data.files || []).length !== 0); - const appConfig = mergedFiles.find((item) => item.path === StudioConfigFiles.appConfig); - syncPreviewAppConfig(appConfig == null ? void 0 : appConfig.parsed); - const tokensConfig = mergedFiles.find((item) => item.path === StudioConfigFiles.tokensConfig); - syncPreviewTokensConfig(tokensConfig == null ? void 0 : tokensConfig.parsed); - requestRerender(); - return true; - }; - const requestPreviewSynchronization = async () => { - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - await $fetch("api/projects/preview/sync", { - baseURL: runtimeConfig.apiURL, - method: "POST", - params: { - token: previewToken.value - } - }); - }; - const mountPreviewUI = () => { - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - const el = document.createElement("div"); - el.id = "__nuxt_preview_wrapper"; - document.body.appendChild(el); - createApp(ContentPreviewMode, { - previewToken, - apiURL: runtimeConfig.apiURL, - syncPreview, - requestPreviewSyncAPI: requestPreviewSynchronization - }).mount(el); - }; - const findContentWithId = async (path) => { - var _a, _b; - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - if (!path) { - return null; - } - path = path.replace(/\/$/, ""); - let content = await ((_a = storage.value) == null ? void 0 : _a.getItem(`${previewToken.value}:${path}`)); - if (!content) { - content = await ((_b = storage.value) == null ? void 0 : _b.getItem(path)); - } - return content; - }; - const updateContent = (content) => { - var _a; - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - if (!storage.value) { - return; - } - storage.value.setItem(`${previewToken.value}:${(_a = content.parsed) == null ? void 0 : _a._id}`, JSON.stringify(content.parsed)); - }; - const removeContentWithId = async (path) => { - var _a; - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - await ((_a = storage.value) == null ? void 0 : _a.removeItem(`${previewToken.value}:${path}`)); - }; - const requestRerender = () => { - callWithNuxt(nuxtApp, refreshNuxtData); - }; - return { - apiURL: runtimeConfig.apiURL, - contentStorage: storage, - syncPreviewFiles, - syncPreviewAppConfig, - syncPreviewTokensConfig, - requestPreviewSynchronization, - mountPreviewUI, - findContentWithId, - updateContent, - removeContentWithId, - requestRerender - }; -}; - -export { useStudio }; -//# sourceMappingURL=useStudio-7ec450fb.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map b/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map deleted file mode 100644 index 082fba48..00000000 --- a/docs/.output/server/chunks/app/_nuxt/useStudio-7ec450fb.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"useStudio-7ec450fb.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/useStudio-7ec450fb.js"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs b/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs deleted file mode 100644 index c5998790..00000000 --- a/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs +++ /dev/null @@ -1,6 +0,0 @@ -const welcome_vue_vue_type_style_index_0_scoped_a75d3b4d_lang = "@media (prefers-color-scheme:light){.get-started-gradient-border[data-v-a75d3b4d]{background:linear-gradient(90deg,#fff,#fff),linear-gradient(90deg,#00dc82,#1de0b1,#36e4da)}.gradient-border-modules[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#f7d14c,rgba(247,209,76,.6),hsla(0,0%,100%,.8),#f7d14c)}.gradient-border-examples[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#8deaff,rgba(141,234,255,.6),hsla(0,0%,100%,.8),#8deaff)}.gradient-border-documentation[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#00dc82,rgba(0,220,130,.6),hsla(0,0%,100%,.8),#00dc82)}}@media (prefers-color-scheme:dark){html:not(.light) .get-started-gradient-border[data-v-a75d3b4d]{background:linear-gradient(90deg,#18181b,#18181b),linear-gradient(90deg,#00dc82,#1de0b1,#36e4da)}html:not(.light) .gradient-border-modules[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#f7d14c,#a38108,hsla(0,0%,100%,.3),#a38108)}html:not(.light) .gradient-border-examples[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#8deaff,#008aa9,hsla(0,0%,100%,.3),#008aa9)}html:not(.light) .gradient-border-documentation[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#00dc82,#003f25,hsla(0,0%,100%,.2),#003f25)}}html.dark .get-started-gradient-border[data-v-a75d3b4d]{background:linear-gradient(90deg,#18181b,#18181b),linear-gradient(90deg,#00dc82,#1de0b1,#36e4da)}html.dark .gradient-border-modules[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#f7d14c,#a38108,hsla(0,0%,100%,.3),#a38108)}html.dark .gradient-border-examples[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#8deaff,#008aa9,hsla(0,0%,100%,.3),#008aa9)}html.dark .gradient-border-documentation[data-v-a75d3b4d]{background:linear-gradient(var(--gradient-angle),#00dc82,#003f25,hsla(0,0%,100%,.2),#003f25)}.get-started-gradient-border[data-v-a75d3b4d]{background-clip:padding-box,border-box;background-origin:padding-box,border-box;border-color:transparent;border-radius:12px;border-width:1px}.get-started-gradient-border[data-v-a75d3b4d]:hover>:is(.get-started-gradient-left,.get-started-gradient-right){opacity:.2}.get-started-gradient-left[data-v-a75d3b4d],.get-started-gradient-right[data-v-a75d3b4d]{opacity:0}.gradient-border[data-v-a75d3b4d]{border-radius:12px;left:0;opacity:0;position:absolute;top:0;transform:translate(-1px,-1px);width:calc(100% + 2px);z-index:-1}.gradient-border-rect[data-v-a75d3b4d]{height:calc(100% + 2px)}@media (min-width:1024px){.gradient-border-rect[data-v-a75d3b4d]{height:calc(100% + 1px)}}.gradient-border-square[data-v-a75d3b4d]{height:calc(100% + 2px)}.modules-gradient-right[data-v-a75d3b4d]{opacity:0}.documentation-container:hover>.gradient-border[data-v-a75d3b4d],.examples-container:hover>.gradient-border[data-v-a75d3b4d],.modules-container:hover>.gradient-border[data-v-a75d3b4d]{animation:gradient-rotate 5s linear 0s infinite reverse;opacity:1;transition:all .3s linear}.examples-container:hover>.examples-gradient-right[data-v-a75d3b4d],.modules-container:hover>.modules-gradient-right[data-v-a75d3b4d]{opacity:.2}.examples-gradient-right[data-v-a75d3b4d]{opacity:0}.documentation-image-color-dark[data-v-a75d3b4d],.documentation-image-color-light[data-v-a75d3b4d],.examples-image-color-dark[data-v-a75d3b4d],.examples-image-color-light[data-v-a75d3b4d],.modules-image-color-dark[data-v-a75d3b4d],.modules-image-color-light[data-v-a75d3b4d]{display:none}@media (prefers-color-scheme:light){.modules-image-light[data-v-a75d3b4d]{display:block}.modules-container:hover>a>.modules-image-light[data-v-a75d3b4d],.modules-image-dark[data-v-a75d3b4d]{display:none}.examples-image-light[data-v-a75d3b4d],.modules-container:hover>a>.modules-image-color-light[data-v-a75d3b4d]{display:block}.examples-container:hover>a>.examples-image-light[data-v-a75d3b4d],.examples-image-dark[data-v-a75d3b4d]{display:none}.documentation-image-light[data-v-a75d3b4d],.examples-container:hover>a>.examples-image-color-light[data-v-a75d3b4d]{display:block}.documentation-container:hover>a>div>.documentation-image-light[data-v-a75d3b4d],.documentation-image-dark[data-v-a75d3b4d]{display:none}.documentation-container:hover>a>div>.documentation-image-color-light[data-v-a75d3b4d]{display:block}}@media (prefers-color-scheme:dark){html:not(.light) .modules-image-dark[data-v-a75d3b4d]{display:block}html:not(.light) .modules-image-light[data-v-a75d3b4d]{display:none}html:not(.light) .modules-container:hover>a>.modules-image-color-dark[data-v-a75d3b4d]{display:block}html:not(.light) .modules-container:hover>a>.modules-image-dark[data-v-a75d3b4d]{display:none}html:not(.light) .examples-image-dark[data-v-a75d3b4d]{display:block}html:not(.light) .examples-image-light[data-v-a75d3b4d]{display:none}html:not(.light) .examples-container:hover>a>.examples-image-color-dark[data-v-a75d3b4d]{display:block}html:not(.light) .examples-container:hover>a>.examples-image-dark[data-v-a75d3b4d]{display:none}html:not(.light) .documentation-image-dark[data-v-a75d3b4d]{display:block}html:not(.light) .documentation-image-light[data-v-a75d3b4d]{display:none}html:not(.light) .documentation-container:hover>a>div>.documentation-image-color-dark[data-v-a75d3b4d]{display:block}html:not(.light) .documentation-container:hover>a>div>.documentation-image-dark[data-v-a75d3b4d]{display:none}}html.dark .modules-image-dark[data-v-a75d3b4d]{display:block}html.dark .modules-image-light[data-v-a75d3b4d]{display:none}html.dark .modules-container:hover>a>.modules-image-color-dark[data-v-a75d3b4d]{display:block}html.dark .modules-container:hover>a>.modules-image-dark[data-v-a75d3b4d]{display:none}html.dark .examples-image-dark[data-v-a75d3b4d]{display:block}html.dark .examples-image-light[data-v-a75d3b4d]{display:none}html.dark .examples-container:hover>a>.examples-image-color-dark[data-v-a75d3b4d]{display:block}html.dark .examples-container:hover>a>.examples-image-dark[data-v-a75d3b4d]{display:none}html.dark .documentation-image-dark[data-v-a75d3b4d]{display:block}html.dark .documentation-image-light[data-v-a75d3b4d]{display:none}html.dark .documentation-container:hover>a>div>.documentation-image-color-dark[data-v-a75d3b4d]{display:block}html.dark .documentation-container:hover>a>div>.documentation-image-dark[data-v-a75d3b4d]{display:none}.bg-white[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--tw-bg-opacity))}.bg-gray-100[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#eee;background-color:rgba(238,238,238,var(--tw-bg-opacity))}.bg-gradient-to-r[data-v-a75d3b4d]{background-image:linear-gradient(to right,var(--tw-gradient-stops))}.bg-gradient-to-l[data-v-a75d3b4d]{background-image:linear-gradient(to left,var(--tw-gradient-stops))}.from-green-400[data-v-a75d3b4d]{--tw-gradient-from:rgba(55,233,144,var(--tw-from-opacity,1));--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.from-blue-400[data-v-a75d3b4d]{--tw-gradient-from:rgba(56,189,248,var(--tw-from-opacity,1));--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.from-yellow-400[data-v-a75d3b4d]{--tw-gradient-from:rgba(251,191,36,var(--tw-from-opacity,1));--tw-gradient-stops:var(--tw-gradient-from),var(--tw-gradient-to,hsla(0,0%,100%,0))}.to-transparent[data-v-a75d3b4d]{--tw-gradient-to:transparent}.border-gray-200[data-v-a75d3b4d]{--tw-border-opacity:1;border-color:#e0e0e0;border-color:rgba(224,224,224,var(--tw-border-opacity))}.hover\\:border-transparent[data-v-a75d3b4d]:hover{border-color:transparent}.rounded-xl[data-v-a75d3b4d]{border-radius:.75rem}.rounded[data-v-a75d3b4d]{border-radius:.25rem}.border[data-v-a75d3b4d]{border-width:1px}.border-t[data-v-a75d3b4d]{border-top-width:1px}.flex[data-v-a75d3b4d]{display:flex}.grid[data-v-a75d3b4d]{display:grid}.hidden[data-v-a75d3b4d]{display:none}.flex-col[data-v-a75d3b4d]{flex-direction:column}.flex-col-reverse[data-v-a75d3b4d]{flex-direction:column-reverse}.place-content-center[data-v-a75d3b4d]{place-content:center}.items-center[data-v-a75d3b4d]{align-items:center}.justify-end[data-v-a75d3b4d]{justify-content:flex-end}.justify-center[data-v-a75d3b4d]{justify-content:center}.flex-1[data-v-a75d3b4d]{flex:1 1 0%}.order-last[data-v-a75d3b4d]{order:9999}.font-mono[data-v-a75d3b4d]{font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-semibold[data-v-a75d3b4d]{font-weight:600}.font-bold[data-v-a75d3b4d]{font-weight:700}.h-32[data-v-a75d3b4d]{height:8rem}.h-\\[70px\\][data-v-a75d3b4d]{height:70px}.text-4xl[data-v-a75d3b4d]{font-size:2.25rem;line-height:2.5rem}.text-xl[data-v-a75d3b4d]{font-size:1.25rem;line-height:1.75rem}.text-sm[data-v-a75d3b4d]{font-size:.875rem;line-height:1.25rem}.text-2xl[data-v-a75d3b4d]{font-size:1.5rem;line-height:2rem}.mx-auto[data-v-a75d3b4d]{margin-left:auto;margin-right:auto}.mb-2[data-v-a75d3b4d]{margin-bottom:.5rem}.max-w-\\[960px\\][data-v-a75d3b4d]{max-width:960px}.min-h-screen[data-v-a75d3b4d]{min-height:100vh}.p-1[data-v-a75d3b4d]{padding:.25rem}.px-4[data-v-a75d3b4d]{padding-left:1rem;padding-right:1rem}.py-14[data-v-a75d3b4d]{padding-bottom:3.5rem;padding-top:3.5rem}.py-6[data-v-a75d3b4d]{padding-bottom:1.5rem;padding-top:1.5rem}.px-5[data-v-a75d3b4d]{padding-left:1.25rem;padding-right:1.25rem}.pt-\\[58px\\][data-v-a75d3b4d]{padding-top:58px}.pb-6[data-v-a75d3b4d]{padding-bottom:1.5rem}.absolute[data-v-a75d3b4d]{position:absolute}.relative[data-v-a75d3b4d]{position:relative}.inset-y-0[data-v-a75d3b4d]{bottom:0;top:0}.inset-x-0[data-v-a75d3b4d]{left:0;right:0}.left-0[data-v-a75d3b4d]{left:0}.right-0[data-v-a75d3b4d]{right:0}.-top-\\[58px\\][data-v-a75d3b4d]{top:-58px}.-top-3[data-v-a75d3b4d]{top:-.75rem}.focus-visible\\:ring-2[data-v-a75d3b4d]:focus-visible{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color),var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color),0 0 #0000;box-shadow:var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow,0 0 #0000)}.text-center[data-v-a75d3b4d]{text-align:center}.text-black[data-v-a75d3b4d]{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.text-gray-700[data-v-a75d3b4d]{--tw-text-opacity:1;color:#424242;color:rgba(66,66,66,var(--tw-text-opacity))}.hover\\:text-black[data-v-a75d3b4d]:hover{--tw-text-opacity:1;color:#000;color:rgba(0,0,0,var(--tw-text-opacity))}.antialiased[data-v-a75d3b4d]{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.w-full[data-v-a75d3b4d]{width:100%}.w-\\[20\\%\\][data-v-a75d3b4d]{width:20%}.z-10[data-v-a75d3b4d]{z-index:10}.z-1[data-v-a75d3b4d]{z-index:1}.gap-6[data-v-a75d3b4d]{grid-gap:1.5rem;gap:1.5rem}.gap-3[data-v-a75d3b4d]{grid-gap:.75rem;gap:.75rem}.gap-x-4[data-v-a75d3b4d]{grid-column-gap:1rem;-webkit-column-gap:1rem;-moz-column-gap:1rem;column-gap:1rem}.gap-y-16[data-v-a75d3b4d]{grid-row-gap:4rem;-webkit-row-gap:4rem;-moz-row-gap:4rem;row-gap:4rem}.gap-y-4[data-v-a75d3b4d]{grid-row-gap:1rem;-webkit-row-gap:1rem;-moz-row-gap:1rem;row-gap:1rem}.gap-y-2[data-v-a75d3b4d]{grid-row-gap:.5rem;-webkit-row-gap:.5rem;-moz-row-gap:.5rem;row-gap:.5rem}.grid-cols-2[data-v-a75d3b4d]{grid-template-columns:repeat(2,minmax(0,1fr))}.col-span-2[data-v-a75d3b4d]{-ms-grid-column-span:span 2/span 2;grid-column:span 2/span 2}.row-span-2[data-v-a75d3b4d]{-ms-grid-row-span:span 2/span 2;grid-row:span 2/span 2}.transition-opacity[data-v-a75d3b4d]{transition-duration:.15s;transition-property:opacity;transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-300[data-v-a75d3b4d]{transition-duration:.3s}@media (min-width:640px){.sm\\:flex-row[data-v-a75d3b4d]{flex-direction:row}.sm\\:justify-between[data-v-a75d3b4d]{justify-content:space-between}.sm\\:h-34[data-v-a75d3b4d]{height:8.5rem}.sm\\:text-base[data-v-a75d3b4d]{font-size:1rem;line-height:1.5rem}.sm\\:text-5xl[data-v-a75d3b4d]{font-size:3rem;line-height:1}.sm\\:min-h-\\[220px\\][data-v-a75d3b4d]{min-height:220px}.sm\\:px-6[data-v-a75d3b4d]{padding-left:1.5rem;padding-right:1.5rem}.sm\\:px-28[data-v-a75d3b4d]{padding-left:7rem;padding-right:7rem}.sm\\:col-span-1[data-v-a75d3b4d]{-ms-grid-column-span:span 1/span 1;grid-column:span 1/span 1}}@media (min-width:768px){.md\\:min-h-\\[180px\\][data-v-a75d3b4d]{min-height:180px}}@media (min-width:1024px){.lg\\:flex-col[data-v-a75d3b4d]{flex-direction:column}.lg\\:order-none[data-v-a75d3b4d]{order:0}.lg\\:min-h-min[data-v-a75d3b4d]{min-height:-moz-min-content;min-height:min-content}.lg\\:py-7[data-v-a75d3b4d]{padding-bottom:1.75rem;padding-top:1.75rem}.lg\\:px-8[data-v-a75d3b4d]{padding-left:2rem;padding-right:2rem}.lg\\:grid-cols-10[data-v-a75d3b4d]{grid-template-columns:repeat(10,minmax(0,1fr))}.lg\\:col-span-10[data-v-a75d3b4d]{-ms-grid-column-span:span 10/span 10;grid-column:span 10/span 10}.lg\\:col-span-6[data-v-a75d3b4d]{-ms-grid-column-span:span 6/span 6;grid-column:span 6/span 6}.lg\\:col-span-4[data-v-a75d3b4d]{-ms-grid-column-span:span 4/span 4;grid-column:span 4/span 4}}@media (prefers-color-scheme:dark){html:not(.light) .dark\\:bg-black[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html:not(.light) .dark\\:bg-white\\/10[data-v-a75d3b4d]{--tw-bg-opacity:.1;background-color:hsla(0,0%,100%,.1);background-color:rgba(255,255,255,var(--tw-bg-opacity))}html:not(.light) .dark\\:bg-gray-900[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#18181b;background-color:rgba(24,24,27,var(--tw-bg-opacity))}html:not(.light) .dark\\:border-transparent[data-v-a75d3b4d]{border-color:transparent}html:not(.light) .dark\\:border-gray-900[data-v-a75d3b4d]{--tw-border-opacity:1;border-color:#18181b;border-color:rgba(24,24,27,var(--tw-border-opacity))}html:not(.light) .dark\\:border-none[data-v-a75d3b4d]{border-style:none}html:not(.light) .dark\\:block[data-v-a75d3b4d]{display:block}html:not(.light) .dark\\:hidden[data-v-a75d3b4d]{display:none}html:not(.light) .dark\\:text-white[data-v-a75d3b4d]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}html:not(.light) .dark\\:text-gray-300[data-v-a75d3b4d]{--tw-text-opacity:1;color:#bdbdbd;color:rgba(189,189,189,var(--tw-text-opacity))}html:not(.light) .dark\\:hover\\:text-white[data-v-a75d3b4d]:hover{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}}html.dark .dark\\:bg-black[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--tw-bg-opacity))}html.dark .dark\\:bg-white\\/10[data-v-a75d3b4d]{--tw-bg-opacity:.1;background-color:hsla(0,0%,100%,.1);background-color:rgba(255,255,255,var(--tw-bg-opacity))}html.dark .dark\\:bg-gray-900[data-v-a75d3b4d]{--tw-bg-opacity:1;background-color:#18181b;background-color:rgba(24,24,27,var(--tw-bg-opacity))}html.dark .dark\\:border-transparent[data-v-a75d3b4d]{border-color:transparent}html.dark .dark\\:border-gray-900[data-v-a75d3b4d]{--tw-border-opacity:1;border-color:#18181b;border-color:rgba(24,24,27,var(--tw-border-opacity))}html.dark .dark\\:border-none[data-v-a75d3b4d]{border-style:none}html.dark .dark\\:block[data-v-a75d3b4d]{display:block}html.dark .dark\\:hidden[data-v-a75d3b4d]{display:none}html.dark .dark\\:text-white[data-v-a75d3b4d]{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}html.dark .dark\\:text-gray-300[data-v-a75d3b4d]{--tw-text-opacity:1;color:#bdbdbd;color:rgba(189,189,189,var(--tw-text-opacity))}html.dark .dark\\:hover\\:text-white[data-v-a75d3b4d]:hover{--tw-text-opacity:1;color:#fff;color:rgba(255,255,255,var(--tw-text-opacity))}"; - -const welcomeStyles_85286bcd = [welcome_vue_vue_type_style_index_0_scoped_a75d3b4d_lang]; - -export { welcomeStyles_85286bcd as default }; -//# sourceMappingURL=welcome-styles.85286bcd.mjs.map diff --git a/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map b/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map deleted file mode 100644 index 57873aab..00000000 --- a/docs/.output/server/chunks/app/_nuxt/welcome-styles.85286bcd.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"welcome-styles.85286bcd.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/welcome-styles-1.mjs-e860ea16.js","/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/_nuxt/welcome-styles.85286bcd.mjs"],"sourcesContent":null,"names":["style_0"],"mappings":"AAAA,MAAM,uDAA0D,GAAA,4+eAAA;;ACChE,+BAAe,CAACA,uDAAO;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/client.manifest.mjs b/docs/.output/server/chunks/app/client.manifest.mjs deleted file mode 100644 index 148bd27d..00000000 --- a/docs/.output/server/chunks/app/client.manifest.mjs +++ /dev/null @@ -1,2847 +0,0 @@ -const client_manifest = { - "Alert.css": { - "resourceType": "style", - "file": "Alert.f24f4058.css", - "src": "Alert.css" - }, - "BlockHero.css": { - "resourceType": "style", - "file": "BlockHero.4aa0ef8d.css", - "src": "BlockHero.css" - }, - "ButtonLink.css": { - "resourceType": "style", - "file": "ButtonLink.1b73392c.css", - "src": "ButtonLink.css" - }, - "Callout.css": { - "resourceType": "style", - "file": "Callout.a5db879a.css", - "src": "Callout.css" - }, - "Card.css": { - "resourceType": "style", - "file": "Card.5dfb7f30.css", - "src": "Card.css" - }, - "CardGrid.css": { - "resourceType": "style", - "file": "CardGrid.54558efd.css", - "src": "CardGrid.css" - }, - "CodeBlock.css": { - "resourceType": "style", - "file": "CodeBlock.e4cadaca.css", - "src": "CodeBlock.css" - }, - "CodeGroup.css": { - "resourceType": "style", - "file": "CodeGroup.92ac881c.css", - "src": "CodeGroup.css" - }, - "ComponentPlayground.css": { - "resourceType": "style", - "file": "ComponentPlayground.3f4b16b9.css", - "src": "ComponentPlayground.css" - }, - "Container.css": { - "resourceType": "style", - "file": "Container.dc145a5e.css", - "src": "Container.css" - }, - "ContentPreviewMode.css": { - "resourceType": "style", - "file": "ContentPreviewMode.dea45f14.css", - "src": "ContentPreviewMode.css" - }, - "DocsAside.css": { - "resourceType": "style", - "file": "DocsAside.d7386185.css", - "src": "DocsAside.css" - }, - "DocsAsideTree.css": { - "resourceType": "style", - "file": "DocsAsideTree.b13c5d2f.css", - "src": "DocsAsideTree.css" - }, - "DocsPageBottom.css": { - "resourceType": "style", - "file": "DocsPageBottom.d9d559e1.css", - "src": "DocsPageBottom.css" - }, - "DocsPageLayout.css": { - "resourceType": "style", - "file": "DocsPageLayout.0537ea8c.css", - "src": "DocsPageLayout.css" - }, - "DocsPrevNext.css": { - "resourceType": "style", - "file": "DocsPrevNext.6bb4ff17.css", - "src": "DocsPrevNext.css" - }, - "DocsToc.css": { - "resourceType": "style", - "file": "DocsToc.6b8d2996.css", - "src": "DocsToc.css" - }, - "DocsTocLinks.css": { - "resourceType": "style", - "file": "DocsTocLinks.2846f127.css", - "src": "DocsTocLinks.css" - }, - "DocumentDrivenNotFound.css": { - "resourceType": "style", - "file": "DocumentDrivenNotFound.434430ce.css", - "src": "DocumentDrivenNotFound.css" - }, - "HeroAnnouncement.css": { - "resourceType": "style", - "file": "HeroAnnouncement.c8294d82.css", - "src": "HeroAnnouncement.css" - }, - "IconNuxtStudio.css": { - "resourceType": "style", - "file": "IconNuxtStudio.34390cd8.css", - "src": "IconNuxtStudio.css" - }, - "List.css": { - "resourceType": "style", - "file": "List.a65f0e81.css", - "src": "List.css" - }, - "MyButton.css": { - "resourceType": "style", - "file": "MyButton.c36465b2.css", - "src": "MyButton.css" - }, - "PropInspector.css": { - "resourceType": "style", - "file": "PropInspector.8b357721.css", - "src": "PropInspector.css" - }, - "ProseA.css": { - "resourceType": "style", - "file": "ProseA.89c7f0ff.css", - "src": "ProseA.css" - }, - "ProseBlockquote.css": { - "resourceType": "style", - "file": "ProseBlockquote.e233c07e.css", - "src": "ProseBlockquote.css" - }, - "ProseCode.css": { - "resourceType": "style", - "file": "ProseCode.69d80bcc.css", - "src": "ProseCode.css" - }, - "ProseEm.css": { - "resourceType": "style", - "file": "ProseEm.26a085fc.css", - "src": "ProseEm.css" - }, - "ProseH1.css": { - "resourceType": "style", - "file": "ProseH1.e8ed25c4.css", - "src": "ProseH1.css" - }, - "ProseH2.css": { - "resourceType": "style", - "file": "ProseH2.39cb29c9.css", - "src": "ProseH2.css" - }, - "ProseH3.css": { - "resourceType": "style", - "file": "ProseH3.185f3970.css", - "src": "ProseH3.css" - }, - "ProseH5.css": { - "resourceType": "style", - "file": "ProseH5.85b0a165.css", - "src": "ProseH5.css" - }, - "ProseH6.css": { - "resourceType": "style", - "file": "ProseH6.c7358255.css", - "src": "ProseH6.css" - }, - "ProseHr.css": { - "resourceType": "style", - "file": "ProseHr.c7c78bbe.css", - "src": "ProseHr.css" - }, - "ProseImg.css": { - "resourceType": "style", - "file": "ProseImg.018721e2.css", - "src": "ProseImg.css" - }, - "ProseLi.css": { - "resourceType": "style", - "file": "ProseLi.ac05b421.css", - "src": "ProseLi.css" - }, - "ProseOl.css": { - "resourceType": "style", - "file": "ProseOl.d78cb0de.css", - "src": "ProseOl.css" - }, - "ProseStrong.css": { - "resourceType": "style", - "file": "ProseStrong.263d77e1.css", - "src": "ProseStrong.css" - }, - "ProseUl.css": { - "resourceType": "style", - "file": "ProseUl.85b434de.css", - "src": "ProseUl.css" - }, - "Sandbox.css": { - "resourceType": "style", - "file": "Sandbox.68fd6c5d.css", - "src": "Sandbox.css" - }, - "Terminal.css": { - "resourceType": "style", - "file": "Terminal.55a17588.css", - "src": "Terminal.css" - }, - "VideoPlayer.css": { - "resourceType": "style", - "file": "VideoPlayer.e2296f21.css", - "src": "VideoPlayer.css" - }, - "VoltaBoard.css": { - "resourceType": "style", - "file": "VoltaBoard.a5d6b336.css", - "src": "VoltaBoard.css" - }, - "_CodeGroup.vue.e138b097.js": { - "resourceType": "script", - "module": true, - "css": [ - "CodeGroup.92ac881c.css" - ], - "file": "CodeGroup.vue.e138b097.js", - "imports": [ - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "CodeGroup.92ac881c.css": { - "file": "CodeGroup.92ac881c.css", - "resourceType": "style" - }, - "_ComponentPlayground.vue.1e5cc557.js": { - "resourceType": "script", - "module": true, - "css": [ - "ComponentPlayground.3f4b16b9.css" - ], - "file": "ComponentPlayground.vue.1e5cc557.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "_runtime-core.esm-bundler.6894272a.js", - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue" - ] - }, - "ComponentPlayground.3f4b16b9.css": { - "file": "ComponentPlayground.3f4b16b9.css", - "resourceType": "style" - }, - "_ComponentPlaygroundSlots.vue.d9207f3c.js": { - "resourceType": "script", - "module": true, - "file": "ComponentPlaygroundSlots.vue.d9207f3c.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_ComponentPlaygroundTokens.vue.43c587d1.js": { - "resourceType": "script", - "module": true, - "file": "ComponentPlaygroundTokens.vue.43c587d1.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_Container.f1017aa2.js": { - "resourceType": "script", - "module": true, - "css": [ - "Container.dc145a5e.css" - ], - "dynamicImports": [ - "node_modules/pinceau/dist/chunks/debug.mjs" - ], - "file": "Container.f1017aa2.js", - "imports": [ - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true - }, - "Container.dc145a5e.css": { - "file": "Container.dc145a5e.css", - "resourceType": "style" - }, - "_DocsAsideTree.b95e55e0.js": { - "resourceType": "script", - "module": true, - "css": [ - "DocsAsideTree.b13c5d2f.css" - ], - "file": "DocsAsideTree.b95e55e0.js", - "imports": [ - "_app.config.f41ab05d.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js" - ], - "isDynamicEntry": true - }, - "DocsAsideTree.b13c5d2f.css": { - "file": "DocsAsideTree.b13c5d2f.css", - "resourceType": "style" - }, - "_EditOnLink.vue.1d2292f2.js": { - "resourceType": "script", - "module": true, - "file": "EditOnLink.vue.1d2292f2.js", - "imports": [ - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_List.vue.98cb48bf.js": { - "resourceType": "script", - "module": true, - "css": [ - "List.a65f0e81.css" - ], - "file": "List.vue.98cb48bf.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "List.a65f0e81.css": { - "file": "List.a65f0e81.css", - "resourceType": "style" - }, - "_NuxtImg.vue.a13022c3.js": { - "resourceType": "script", - "module": true, - "file": "NuxtImg.vue.a13022c3.js", - "imports": [ - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_app.config.f41ab05d.js": { - "resourceType": "script", - "module": true, - "file": "app.config.f41ab05d.js", - "imports": [ - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true - }, - "_asyncData.7c06b2d5.js": { - "resourceType": "script", - "module": true, - "file": "asyncData.7c06b2d5.js", - "imports": [ - "_app.config.f41ab05d.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_cookie.b9cff64d.js": { - "resourceType": "script", - "module": true, - "file": "cookie.b9cff64d.js", - "imports": [ - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_index.889aa611.js": { - "resourceType": "script", - "module": true, - "file": "index.889aa611.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_index.d2b0cb5e.js": { - "resourceType": "script", - "module": true, - "file": "index.d2b0cb5e.js" - }, - "_query.c3f7607a.js": { - "resourceType": "script", - "module": true, - "file": "query.c3f7607a.js" - }, - "_runtime-core.esm-bundler.6894272a.js": { - "resourceType": "script", - "module": true, - "file": "runtime-core.esm-bundler.6894272a.js" - }, - "_useDocus.41ab1ca5.js": { - "resourceType": "script", - "module": true, - "file": "useDocus.41ab1ca5.js", - "imports": [ - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js" - ] - }, - "_useGithub.1972ce55.js": { - "resourceType": "script", - "module": true, - "file": "useGithub.1972ce55.js", - "imports": [ - "_app.config.f41ab05d.js" - ] - }, - "components/content/Example/ExampleCard.vue": { - "resourceType": "script", - "module": true, - "file": "ExampleCard.26f9bb19.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "components/content/Example/ExampleCard.vue" - }, - "components/content/Example/ExampleHero.vue": { - "resourceType": "script", - "module": true, - "file": "ExampleHero.02aa09cf.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "components/content/Example/ExampleHero.vue" - }, - "components/content/Example/ExampleIconCard.vue": { - "resourceType": "script", - "module": true, - "file": "ExampleIconCard.07caa17e.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "components/content/Example/ExampleIconCard.vue" - }, - "components/content/Example/ExampleMultiselect.vue": { - "resourceType": "script", - "module": true, - "file": "ExampleMultiselect.edfb3bb6.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "components/content/Example/ExampleMultiselect.vue" - }, - "components/content/Example/ExampleTheTitle.vue": { - "resourceType": "script", - "module": true, - "file": "ExampleTheTitle.f00d8fad.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "components/content/Example/ExampleTheTitle.vue" - }, - "components/content/HeroAnnouncement.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "HeroAnnouncement.15bcf84c.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "components/content/HeroAnnouncement.vue" - }, - "HeroAnnouncement.c8294d82.css": { - "file": "HeroAnnouncement.c8294d82.css", - "resourceType": "style" - }, - "components/content/IconMarkdown.vue": { - "resourceType": "script", - "module": true, - "file": "IconMarkdown.abd5e80b.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "components/content/IconMarkdown.vue" - }, - "components/content/MyButton.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "MyButton.67bdaa98.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "components/content/MyButton.vue" - }, - "MyButton.c36465b2.css": { - "file": "MyButton.c36465b2.css", - "resourceType": "style" - }, - "components/content/PropInspector.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "PropInspector.83153412.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "components/content/PropInspector.vue" - }, - "PropInspector.8b357721.css": { - "file": "PropInspector.8b357721.css", - "resourceType": "style" - }, - "components/content/ReadMore.vue": { - "resourceType": "script", - "module": true, - "css": [ - "Alert.f24f4058.css" - ], - "file": "ReadMore.4d40ce3f.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" - ], - "isDynamicEntry": true, - "src": "components/content/ReadMore.vue" - }, - "Alert.f24f4058.css": { - "file": "Alert.f24f4058.css", - "resourceType": "style" - }, - "layouts/docs-page.css": { - "resourceType": "style", - "file": "docs-page.5b0d6071.css", - "src": "layouts/docs-page.css" - }, - "layouts/docs-page.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "docs-page.436b5c87.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "layouts/docs-page.vue" - }, - "docs-page.5b0d6071.css": { - "file": "docs-page.5b0d6071.css", - "resourceType": "style" - }, - "node_modules/@docsearch/css/dist/style.css": { - "resourceType": "style", - "file": "style.6a49f87f.css", - "src": "node_modules/@docsearch/css/dist/style.css" - }, - "node_modules/@docsearch/js/dist/esm/index.js": { - "resourceType": "script", - "module": true, - "file": "index.ade63bb5.js", - "isDynamicEntry": true, - "src": "node_modules/@docsearch/js/dist/esm/index.js" - }, - "node_modules/@nuxt-themes/docus/components/app/AppLayout.vue": { - "resourceType": "script", - "module": true, - "file": "AppLayout.7354fe11.js", - "imports": [ - "node_modules/nuxt/dist/app/entry.mjs", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/app/AppLayout.vue" - }, - "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocumentDrivenNotFound.66d77c6e.js", - "imports": [ - "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue" - }, - "DocumentDrivenNotFound.434430ce.css": { - "file": "DocumentDrivenNotFound.434430ce.css", - "resourceType": "style" - }, - "ButtonLink.1b73392c.css": { - "file": "ButtonLink.1b73392c.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocsAside.08a0955d.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue" - }, - "DocsAside.d7386185.css": { - "file": "DocsAside.d7386185.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocsPageBottom.b38ecc43.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", - "_EditOnLink.vue.1d2292f2.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue" - }, - "DocsPageBottom.d9d559e1.css": { - "file": "DocsPageBottom.d9d559e1.css", - "resourceType": "style" - }, - "ProseA.89c7f0ff.css": { - "file": "ProseA.89c7f0ff.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocsPageLayout.d352cf62.js", - "imports": [ - "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue", - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue", - "_Container.f1017aa2.js", - "_useDocus.41ab1ca5.js", - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", - "_EditOnLink.vue.1d2292f2.js", - "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue" - }, - "DocsPageLayout.0537ea8c.css": { - "file": "DocsPageLayout.0537ea8c.css", - "resourceType": "style" - }, - "DocsPrevNext.6bb4ff17.css": { - "file": "DocsPrevNext.6bb4ff17.css", - "resourceType": "style" - }, - "DocsTocLinks.2846f127.css": { - "file": "DocsTocLinks.2846f127.css", - "resourceType": "style" - }, - "DocsToc.6b8d2996.css": { - "file": "DocsToc.6b8d2996.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocsPrevNext.2b9ea48f.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue" - }, - "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocsToc.55846f28.js", - "imports": [ - "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue" - }, - "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "DocsTocLinks.644c91ee.js", - "imports": [ - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_DocsAsideTree.b95e55e0.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue" - }, - "node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue": { - "resourceType": "script", - "module": true, - "file": "EditOnLink.77af6984.js", - "imports": [ - "_EditOnLink.vue.1d2292f2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue" - }, - "node_modules/@nuxt-themes/docus/layouts/default.vue": { - "resourceType": "script", - "module": true, - "css": [ - "DocsAside.d7386185.css", - "Alert.f24f4058.css", - "ProseA.89c7f0ff.css", - "DocsPageBottom.d9d559e1.css", - "DocsPrevNext.6bb4ff17.css", - "DocsTocLinks.2846f127.css", - "DocsToc.6b8d2996.css", - "DocsPageLayout.0537ea8c.css" - ], - "file": "default.aab8fc36.js", - "imports": [ - "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", - "_EditOnLink.vue.1d2292f2.js", - "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/layouts/default.vue" - }, - "node_modules/@nuxt-themes/docus/layouts/page.css": { - "resourceType": "style", - "file": "page.70291227.css", - "src": "node_modules/@nuxt-themes/docus/layouts/page.css" - }, - "node_modules/@nuxt-themes/docus/layouts/page.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "page.f33b5a13.js", - "imports": [ - "_Container.f1017aa2.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_app.config.f41ab05d.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/docus/layouts/page.vue" - }, - "page.70291227.css": { - "file": "page.70291227.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/Alert.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Alert.41cb256b.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Alert.vue" - }, - "node_modules/@nuxt-themes/elements/components/globals/Badge.css": { - "resourceType": "style", - "file": "Badge.05529646.css", - "src": "node_modules/@nuxt-themes/elements/components/globals/Badge.css" - }, - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Badge.af643d4e.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Badge.vue" - }, - "Badge.05529646.css": { - "file": "Badge.05529646.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ButtonLink.91883881.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_app.config.f41ab05d.js", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue" - }, - "node_modules/@nuxt-themes/elements/components/globals/Callout.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Callout.12d57ced.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_DocsAsideTree.b95e55e0.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Callout.vue" - }, - "Callout.a5db879a.css": { - "file": "Callout.a5db879a.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "CodeBlock.163820c8.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue" - }, - "CodeBlock.e4cadaca.css": { - "file": "CodeBlock.e4cadaca.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue": { - "resourceType": "script", - "module": true, - "file": "CodeGroup.c21eec3c.js", - "imports": [ - "_CodeGroup.vue.e138b097.js", - "_Container.f1017aa2.js", - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue", - "css": [] - }, - "node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue": { - "resourceType": "script", - "module": true, - "file": "CopyButton.f7858c79.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_index.889aa611.js", - "_runtime-core.esm-bundler.6894272a.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue" - }, - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.css": { - "resourceType": "style", - "file": "Ellipsis.f7ff00dc.css", - "src": "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.css" - }, - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Ellipsis.50580cd1.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue" - }, - "Ellipsis.f7ff00dc.css": { - "file": "Ellipsis.f7ff00dc.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/List.vue": { - "resourceType": "script", - "module": true, - "file": "List.63030545.js", - "imports": [ - "_List.vue.98cb48bf.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/List.vue", - "css": [] - }, - "node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue": { - "resourceType": "script", - "module": true, - "file": "NuxtImg.66944f8e.js", - "imports": [ - "_NuxtImg.vue.a13022c3.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue" - }, - "node_modules/@nuxt-themes/elements/components/globals/Props.vue": { - "resourceType": "script", - "module": true, - "file": "Props.876d937c.js", - "imports": [ - "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "_index.d2b0cb5e.js", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Props.vue" - }, - "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Sandbox.b8bdb0c7.js", - "imports": [ - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "node_modules/nuxt/dist/app/entry.mjs", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue" - }, - "Sandbox.68fd6c5d.css": { - "file": "Sandbox.68fd6c5d.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue": { - "resourceType": "script", - "module": true, - "file": "SourceLink.8b39af38.js", - "imports": [ - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue" - }, - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.css": { - "resourceType": "style", - "file": "TabsHeader.fed4d9b4.css", - "src": "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.css" - }, - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "TabsHeader.f80c17f8.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue" - }, - "TabsHeader.fed4d9b4.css": { - "file": "TabsHeader.fed4d9b4.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Terminal.e111a4e9.js", - "imports": [ - "_index.889aa611.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue" - }, - "Terminal.55a17588.css": { - "file": "Terminal.55a17588.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "VideoPlayer.065c6aeb.js", - "imports": [ - "_NuxtImg.vue.a13022c3.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue" - }, - "VideoPlayer.e2296f21.css": { - "file": "VideoPlayer.e2296f21.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue": { - "resourceType": "script", - "module": true, - "file": "IconCodeSandBox.c8242608.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue": { - "resourceType": "script", - "module": true, - "file": "IconDocus.288d04af.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue": { - "resourceType": "script", - "module": true, - "file": "IconNuxt.fcd0b256.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue": { - "resourceType": "script", - "module": true, - "file": "IconNuxtContent.e8429861.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue": { - "resourceType": "script", - "module": true, - "file": "IconNuxtLabs.d57bf3c9.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "IconNuxtStudio.af5044e4.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue" - }, - "IconNuxtStudio.34390cd8.css": { - "file": "IconNuxtStudio.34390cd8.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue": { - "resourceType": "script", - "module": true, - "file": "IconStackBlitz.8b1569eb.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue" - }, - "node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue": { - "resourceType": "script", - "module": true, - "file": "IconVueTelescope.e930811b.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue" - }, - "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "BlockHero.495ede00.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", - "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_index.889aa611.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue" - }, - "BlockHero.4aa0ef8d.css": { - "file": "BlockHero.4aa0ef8d.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/landing/Card.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "Card.178cbb97.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/landing/Card.vue" - }, - "Card.5dfb7f30.css": { - "file": "Card.5dfb7f30.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "CardGrid.e3a9f75d.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue" - }, - "CardGrid.54558efd.css": { - "file": "CardGrid.54558efd.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue": { - "resourceType": "script", - "module": true, - "file": "ComponentPlayground.3c424a18.js", - "imports": [ - "_ComponentPlayground.vue.1e5cc557.js", - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js", - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", - "_index.889aa611.js", - "_ComponentPlaygroundSlots.vue.d9207f3c.js", - "_ComponentPlaygroundTokens.vue.43c587d1.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue", - "css": [] - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.css": { - "resourceType": "style", - "file": "ComponentPlaygroundData.2ba66f99.css", - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.css" - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ComponentPlaygroundData.8cb96cd4.js", - "imports": [ - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", - "_ComponentPlaygroundSlots.vue.d9207f3c.js", - "_ComponentPlaygroundTokens.vue.43c587d1.js", - "_index.889aa611.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js", - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue" - }, - "ComponentPlaygroundData.2ba66f99.css": { - "file": "ComponentPlaygroundData.2ba66f99.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.css": { - "resourceType": "style", - "file": "ComponentPlaygroundProps.54f42c7a.css", - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.css" - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ComponentPlaygroundProps.583c9bda.js", - "imports": [ - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", - "_index.889aa611.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue" - }, - "ComponentPlaygroundProps.54f42c7a.css": { - "file": "ComponentPlaygroundProps.54f42c7a.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue": { - "resourceType": "script", - "module": true, - "file": "ComponentPlaygroundSlots.71fbb170.js", - "imports": [ - "_ComponentPlaygroundSlots.vue.d9207f3c.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue" - }, - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue": { - "resourceType": "script", - "module": true, - "file": "ComponentPlaygroundTokens.334d4f7a.js", - "imports": [ - "_ComponentPlaygroundTokens.vue.43c587d1.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue" - }, - "node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue": { - "resourceType": "script", - "module": true, - "file": "TokensPlayground.961c6dbe.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue" - }, - "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "VoltaBoard.1d961799.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue" - }, - "VoltaBoard.a5d6b336.css": { - "file": "VoltaBoard.a5d6b336.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue": { - "resourceType": "script", - "module": true, - "css": [ - "ProseCode.69d80bcc.css" - ], - "file": "ProseCodeCopyButton.29965c5a.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_index.889aa611.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue" - }, - "ProseCode.69d80bcc.css": { - "file": "ProseCode.69d80bcc.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseA.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseA.a4d07cc8.js", - "imports": [ - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseA.vue" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseBlockquote.ecc3d96f.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue" - }, - "ProseBlockquote.e233c07e.css": { - "file": "ProseBlockquote.e233c07e.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseCode.vue": { - "resourceType": "script", - "module": true, - "css": [ - "ProseCode.69d80bcc.css" - ], - "file": "ProseCode.0e5c7be6.js", - "imports": [ - "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_index.889aa611.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseCode.vue" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.css": { - "resourceType": "style", - "file": "ProseCodeInline.aab68857.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseCodeInline.dca1a534.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue" - }, - "ProseCodeInline.aab68857.css": { - "file": "ProseCodeInline.aab68857.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseEm.35693543.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue" - }, - "ProseEm.26a085fc.css": { - "file": "ProseEm.26a085fc.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseH1.c24b90eb.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue" - }, - "ProseH1.e8ed25c4.css": { - "file": "ProseH1.e8ed25c4.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseH2.957cbe8e.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue" - }, - "ProseH2.39cb29c9.css": { - "file": "ProseH2.39cb29c9.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseH3.cb2444de.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue" - }, - "ProseH3.185f3970.css": { - "file": "ProseH3.185f3970.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH4.css": { - "resourceType": "style", - "file": "ProseH4.63359073.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH4.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseH4.77a5278f.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue" - }, - "ProseH4.63359073.css": { - "file": "ProseH4.63359073.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseH5.8dc93198.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue" - }, - "ProseH5.85b0a165.css": { - "file": "ProseH5.85b0a165.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseH6.bdc78e01.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_useDocus.41ab1ca5.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue" - }, - "ProseH6.c7358255.css": { - "file": "ProseH6.c7358255.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseHr.75e3ac21.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue" - }, - "ProseHr.c7c78bbe.css": { - "file": "ProseHr.c7c78bbe.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseImg.16c4c81d.js", - "imports": [ - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue" - }, - "ProseImg.018721e2.css": { - "file": "ProseImg.018721e2.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseLi.171f9b22.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue" - }, - "ProseLi.ac05b421.css": { - "file": "ProseLi.ac05b421.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseOl.8e9d7d6a.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue" - }, - "ProseOl.d78cb0de.css": { - "file": "ProseOl.d78cb0de.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseP.css": { - "resourceType": "style", - "file": "ProseP.945916cd.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseP.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseP.9fd9b629.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseP.vue" - }, - "ProseP.945916cd.css": { - "file": "ProseP.945916cd.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseStrong.3de7628e.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue" - }, - "ProseStrong.263d77e1.css": { - "file": "ProseStrong.263d77e1.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTable.css": { - "resourceType": "style", - "file": "ProseTable.c65fbffe.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTable.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseTable.a85f8bca.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue" - }, - "ProseTable.c65fbffe.css": { - "file": "ProseTable.c65fbffe.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue": { - "resourceType": "script", - "module": true, - "file": "ProseTbody.37a7db42.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTd.css": { - "resourceType": "style", - "file": "ProseTd.4df19d93.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTd.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseTd.921f02a8.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue" - }, - "ProseTd.4df19d93.css": { - "file": "ProseTd.4df19d93.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTh.css": { - "resourceType": "style", - "file": "ProseTh.348cb47e.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTh.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseTh.d24c1b52.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue" - }, - "ProseTh.348cb47e.css": { - "file": "ProseTh.348cb47e.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseThead.css": { - "resourceType": "style", - "file": "ProseThead.65d34604.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseThead.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseThead.40eb8658.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue" - }, - "ProseThead.65d34604.css": { - "file": "ProseThead.65d34604.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTr.css": { - "resourceType": "style", - "file": "ProseTr.65bec588.css", - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTr.css" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseTr.d0d94723.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue" - }, - "ProseTr.65bec588.css": { - "file": "ProseTr.65bec588.css", - "resourceType": "style" - }, - "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "ProseUl.5ba8de5b.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue" - }, - "ProseUl.85b434de.css": { - "file": "ProseUl.85b434de.css", - "resourceType": "style" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue": { - "resourceType": "script", - "module": true, - "file": "ContentDoc.cbc50263.js", - "imports": [ - "_app.config.f41ab05d.js", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", - "_asyncData.7c06b2d5.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue": { - "resourceType": "script", - "module": true, - "file": "ContentList.e8a9fb87.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.css": { - "resourceType": "style", - "file": "ContentNavigation.df5077be.css", - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.css" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue": { - "resourceType": "script", - "module": true, - "css": [ - "ContentNavigation.df5077be.css", - "HeroAnnouncement.c8294d82.css", - "MyButton.c36465b2.css", - "PropInspector.8b357721.css", - "Alert.f24f4058.css", - "ButtonLink.1b73392c.css", - "DocumentDrivenNotFound.434430ce.css", - "DocsAside.d7386185.css", - "ProseA.89c7f0ff.css", - "DocsPageBottom.d9d559e1.css", - "DocsPrevNext.6bb4ff17.css", - "DocsTocLinks.2846f127.css", - "DocsToc.6b8d2996.css", - "DocsPageLayout.0537ea8c.css", - "ProseBlockquote.e233c07e.css", - "ProseCode.69d80bcc.css", - "ProseEm.26a085fc.css", - "ProseH1.e8ed25c4.css", - "ProseH2.39cb29c9.css", - "ProseH3.185f3970.css", - "ProseH5.85b0a165.css", - "ProseH6.c7358255.css", - "ProseHr.c7c78bbe.css", - "ProseImg.018721e2.css", - "ProseLi.ac05b421.css", - "ProseOl.d78cb0de.css", - "ProseStrong.263d77e1.css", - "ProseUl.85b434de.css", - "Callout.a5db879a.css", - "CodeBlock.e4cadaca.css", - "Sandbox.68fd6c5d.css", - "Terminal.55a17588.css", - "VideoPlayer.e2296f21.css", - "IconNuxtStudio.34390cd8.css", - "BlockHero.4aa0ef8d.css", - "Card.5dfb7f30.css", - "CardGrid.54558efd.css", - "VoltaBoard.a5d6b336.css", - "ContentPreviewMode.dea45f14.css" - ], - "dynamicImports": [ - "components/content/Example/ExampleCard.vue", - "components/content/Example/ExampleHero.vue", - "components/content/Example/ExampleIconCard.vue", - "components/content/Example/ExampleMultiselect.vue", - "components/content/Example/ExampleTheTitle.vue", - "components/content/HeroAnnouncement.vue", - "components/content/IconMarkdown.vue", - "node_modules/nuxt/dist/app/entry.mjs", - "components/content/MyButton.vue", - "components/content/PropInspector.vue", - "components/content/ReadMore.vue", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/@nuxt-themes/docus/components/app/AppLayout.vue", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue", - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue", - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue", - "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue", - "node_modules/@nuxt-themes/docus/components/docs/EditOnLink.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseA.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseCode.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue", - "node_modules/@nuxt-themes/typography/components/ProseCodeCopyButton.vue", - "node_modules/@nuxt-themes/elements/components/globals/Alert.vue", - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", - "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", - "node_modules/@nuxt-themes/elements/components/globals/Callout.vue", - "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue", - "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue", - "_Container.f1017aa2.js", - "node_modules/@nuxt-themes/elements/components/globals/CopyButton.vue", - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", - "node_modules/@nuxt-themes/elements/components/globals/List.vue", - "node_modules/@nuxt-themes/elements/components/globals/NuxtImg.vue", - "node_modules/@nuxt-themes/elements/components/globals/Props.vue", - "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue", - "node_modules/@nuxt-themes/elements/components/globals/SourceLink.vue", - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue", - "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconCodeSandBox.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconDocus.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconNuxt.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtContent.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtLabs.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconStackBlitz.vue", - "node_modules/@nuxt-themes/elements/components/icons/IconVueTelescope.vue", - "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue", - "node_modules/@nuxt-themes/elements/components/landing/Card.vue", - "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue", - "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundSlots.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundTokens.vue", - "node_modules/@nuxt-themes/elements/components/meta/TokensPlayground.vue", - "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", - "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue", - "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue", - "node_modules/nuxt/dist/app/components/layout.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "_app.config.f41ab05d.js", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs", - "node_modules/nuxt/dist/app/entry.mjs", - "_DocsAsideTree.b95e55e0.js", - "node_modules/nuxt/dist/app/entry.mjs" - ], - "file": "ContentNavigation.cefda237.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "_useDocus.41ab1ca5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_Container.f1017aa2.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_DocsAsideTree.b95e55e0.js", - "_EditOnLink.vue.1d2292f2.js", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", - "_CodeGroup.vue.e138b097.js", - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", - "_List.vue.98cb48bf.js", - "_NuxtImg.vue.a13022c3.js", - "node_modules/@nuxt-themes/elements/components/globals/Props.vue", - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "_ComponentPlayground.vue.1e5cc557.js", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue", - "_runtime-core.esm-bundler.6894272a.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", - "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", - "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue", - "node_modules/nuxt/dist/app/components/layout.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_query.c3f7607a.js", - "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", - "_index.889aa611.js", - "_ComponentPlaygroundSlots.vue.d9207f3c.js", - "_ComponentPlaygroundTokens.vue.43c587d1.js", - "_useGithub.1972ce55.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue" - }, - "ContentNavigation.df5077be.css": { - "file": "ContentNavigation.df5077be.css", - "resourceType": "style" - }, - "ContentPreviewMode.dea45f14.css": { - "file": "ContentPreviewMode.dea45f14.css", - "resourceType": "style" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue": { - "resourceType": "script", - "module": true, - "file": "ContentQuery.9f33890e.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue": { - "resourceType": "script", - "module": true, - "file": "ContentRenderer.b7732722.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue": { - "resourceType": "script", - "module": true, - "file": "ContentRendererMarkdown.e52b62de.js", - "imports": [ - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js", - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue": { - "resourceType": "script", - "module": true, - "file": "ContentSlot.c5067a4f.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_runtime-core.esm-bundler.6894272a.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue": { - "resourceType": "script", - "module": true, - "file": "DocumentDrivenEmpty.7ceddd7c.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue" - }, - "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue": { - "resourceType": "script", - "module": true, - "file": "Markdown.7f24e431.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_runtime-core.esm-bundler.6894272a.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue" - }, - "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs": { - "resourceType": "script", - "module": true, - "file": "client-db.514bef37.js", - "imports": [ - "_cookie.b9cff64d.js", - "_app.config.f41ab05d.js", - "_query.c3f7607a.js", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs" - }, - "node_modules/@nuxt/content/dist/runtime/pages/document-driven.vue": { - "resourceType": "script", - "module": true, - "css": [ - "ButtonLink.1b73392c.css", - "DocumentDrivenNotFound.434430ce.css" - ], - "file": "document-driven.2bce7a6e.js", - "imports": [ - "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", - "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue", - "node_modules/nuxt/dist/app/components/layout.mjs", - "_useDocus.41ab1ca5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", - "_cookie.b9cff64d.js", - "_index.d2b0cb5e.js", - "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue", - "_DocsAsideTree.b95e55e0.js", - "_Container.f1017aa2.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/content/dist/runtime/pages/document-driven.vue" - }, - "node_modules/@nuxt/ui-templates/dist/templates/error-404.css": { - "resourceType": "style", - "file": "error-404.97011ca1.css", - "src": "node_modules/@nuxt/ui-templates/dist/templates/error-404.css" - }, - "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "error-404.1576ed15.js", - "imports": [ - "_app.config.f41ab05d.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue" - }, - "error-404.97011ca1.css": { - "file": "error-404.97011ca1.css", - "resourceType": "style" - }, - "node_modules/@nuxt/ui-templates/dist/templates/error-500.css": { - "resourceType": "style", - "file": "error-500.82e14f63.css", - "src": "node_modules/@nuxt/ui-templates/dist/templates/error-500.css" - }, - "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "error-500.421dc5a9.js", - "imports": [ - "node_modules/nuxt/dist/app/entry.mjs", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue" - }, - "error-500.82e14f63.css": { - "file": "error-500.82e14f63.css", - "resourceType": "style" - }, - "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue": { - "resourceType": "script", - "module": true, - "css": [], - "file": "welcome.4086e1c1.js", - "imports": [ - "node_modules/nuxt/dist/app/entry.mjs", - "node_modules/@nuxt/content/dist/runtime/components/ContentNavigation.vue", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_DocsAsideTree.b95e55e0.js", - "_app.config.f41ab05d.js", - "_index.d2b0cb5e.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js", - "_asyncData.7c06b2d5.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentSlot.vue", - "_EditOnLink.vue.1d2292f2.js", - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue", - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue", - "_CodeGroup.vue.e138b097.js", - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue", - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue", - "_List.vue.98cb48bf.js", - "_NuxtImg.vue.a13022c3.js", - "node_modules/@nuxt-themes/elements/components/globals/Props.vue", - "node_modules/@nuxt-themes/typography/components/global/ProseTbody.vue", - "_ComponentPlayground.vue.1e5cc557.js", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue", - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue", - "_index.889aa611.js", - "_ComponentPlaygroundSlots.vue.d9207f3c.js", - "_ComponentPlaygroundTokens.vue.43c587d1.js", - "node_modules/@nuxt/content/dist/runtime/components/ContentDoc.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRenderer.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentRendererMarkdown.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentQuery.vue", - "node_modules/@nuxt/content/dist/runtime/components/ContentList.vue", - "node_modules/@nuxt/content/dist/runtime/components/DocumentDrivenEmpty.vue", - "node_modules/@nuxt/content/dist/runtime/components/Markdown.vue", - "node_modules/nuxt/dist/app/components/layout.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs", - "_useGithub.1972ce55.js", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs", - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue" - }, - "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue": { - "resourceType": "script", - "module": true, - "css": [], - "dynamicImports": [ - "node_modules/socket.io-client/build/esm/index.js" - ], - "file": "ContentPreviewMode.ea418cb0.js", - "imports": [ - "_Container.f1017aa2.js", - "_app.config.f41ab05d.js", - "_DocsAsideTree.b95e55e0.js", - "_asyncData.7c06b2d5.js", - "_cookie.b9cff64d.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_useDocus.41ab1ca5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue" - }, - "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs": { - "resourceType": "script", - "module": true, - "css": [ - "ContentPreviewMode.dea45f14.css" - ], - "file": "useStudio.ef34e52b.js", - "imports": [ - "_app.config.f41ab05d.js", - "_DocsAsideTree.b95e55e0.js", - "_asyncData.7c06b2d5.js", - "_useDocus.41ab1ca5.js", - "_cookie.b9cff64d.js", - "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue", - "node_modules/nuxt/dist/app/entry.mjs", - "_index.d2b0cb5e.js", - "_runtime-core.esm-bundler.6894272a.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs" - }, - "node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue": { - "resourceType": "script", - "module": true, - "file": "empty.9bcab498.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubCommits.35c65eac.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubCommits.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubContributors.9ddddad6.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubContributors.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubFileContributors.1ad6f7bf.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubFileContributors.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubLastRelease.a4aeb30e.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLastRelease.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubLink.6cd695ea.js", - "imports": [ - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubLink.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubReadme.5eafd6e1.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReadme.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubRelease.d892113d.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRelease.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubReleases.05c52708.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubReleases.mjs" - }, - "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs": { - "resourceType": "script", - "module": true, - "file": "GithubRepository.345038c7.js", - "imports": [ - "_app.config.f41ab05d.js", - "_asyncData.7c06b2d5.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_useGithub.1972ce55.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js", - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/@nuxtlabs/github-module/dist/runtime/components/GithubRepository.mjs" - }, - "node_modules/nuxt/dist/app/components/layout.mjs": { - "resourceType": "script", - "module": true, - "file": "layout.0a22fa4a.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "node_modules/nuxt/dist/app/entry.mjs", - "_app.config.f41ab05d.js", - "_runtime-core.esm-bundler.6894272a.js", - "_cookie.b9cff64d.js", - "_useDocus.41ab1ca5.js", - "_Container.f1017aa2.js", - "_index.d2b0cb5e.js", - "_query.c3f7607a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/nuxt/dist/app/components/layout.mjs" - }, - "node_modules/nuxt/dist/app/entry.css": { - "resourceType": "style", - "file": "entry.2e7e04dc.css", - "src": "node_modules/nuxt/dist/app/entry.css" - }, - "node_modules/nuxt/dist/app/entry.mjs": { - "resourceType": "script", - "module": true, - "css": [ - "entry.2e7e04dc.css" - ], - "dynamicImports": [ - "_DocsAsideTree.b95e55e0.js", - "_Container.f1017aa2.js", - "_DocsAsideTree.b95e55e0.js", - "node_modules/@nuxthq/studio/dist/runtime/pages/empty.vue", - "layouts/docs-page.vue", - "node_modules/@nuxt-themes/docus/layouts/default.vue", - "node_modules/@nuxt-themes/docus/layouts/page.vue", - "node_modules/@docsearch/js/dist/esm/index.js", - "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs", - "node_modules/@nuxt/content/dist/runtime/composables/client-db.mjs", - "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs", - "node_modules/@nuxthq/studio/dist/runtime/composables/useStudio.mjs", - "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/error-component.mjs" - ], - "file": "entry.f3791b9c.js", - "imports": [ - "_DocsAsideTree.b95e55e0.js", - "_cookie.b9cff64d.js", - "_app.config.f41ab05d.js", - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_useDocus.41ab1ca5.js", - "_query.c3f7607a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "isEntry": true, - "src": "node_modules/nuxt/dist/app/entry.mjs" - }, - "entry.2e7e04dc.css": { - "file": "entry.2e7e04dc.css", - "resourceType": "style" - }, - "node_modules/pinceau/dist/chunks/debug.mjs": { - "resourceType": "script", - "module": true, - "file": "debug.ac300508.js", - "imports": [ - "_runtime-core.esm-bundler.6894272a.js" - ], - "isDynamicEntry": true, - "src": "node_modules/pinceau/dist/chunks/debug.mjs" - }, - "node_modules/socket.io-client/build/esm/index.js": { - "resourceType": "script", - "module": true, - "file": "index.e2533f77.js", - "isDynamicEntry": true, - "src": "node_modules/socket.io-client/build/esm/index.js" - }, - "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/error-component.mjs": { - "resourceType": "script", - "module": true, - "dynamicImports": [ - "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue", - "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue" - ], - "file": "error-component.9c8606a2.js", - "imports": [ - "_Container.f1017aa2.js", - "_runtime-core.esm-bundler.6894272a.js", - "_index.d2b0cb5e.js" - ], - "isDynamicEntry": true, - "src": "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/error-component.mjs" - } -}; - -export { client_manifest as default }; -//# sourceMappingURL=client.manifest.mjs.map diff --git a/docs/.output/server/chunks/app/client.manifest.mjs.map b/docs/.output/server/chunks/app/client.manifest.mjs.map deleted file mode 100644 index 6e5ef4a5..00000000 --- a/docs/.output/server/chunks/app/client.manifest.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"client.manifest.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/client.manifest.mjs"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/server.mjs b/docs/.output/server/chunks/app/server.mjs deleted file mode 100644 index e693e2b6..00000000 --- a/docs/.output/server/chunks/app/server.mjs +++ /dev/null @@ -1,24669 +0,0 @@ -import { version, defineAsyncComponent, useSSRContext, defineComponent, ref, createElementBlock, unref, watch, h, Suspense, nextTick, Transition, computed, provide, reactive, shallowRef, isReadonly, mergeProps, withCtx, openBlock, createBlock, createCommentVNode, createVNode, resolveDynamicComponent, toDisplayString, createTextVNode, createElementVNode, Fragment as Fragment$1, renderList, createApp, toRef, onErrorCaptured, onServerPrefetch } from 'vue'; -import { $fetch as $fetch$1 } from 'ofetch'; -import { u as useNuxtApp, d as defineNuxtPlugin, a as defineNuxtRouteMiddleware, b as useRuntimeConfig$1, f as useRoute, i as normalizePlugins, c as callWithNuxt, g as useRouter, h as addRouteMiddleware, e as useRequestEvent, j as createNuxtApp, k as applyPlugins, n as navigateTo, _ as __nuxt_component_0$2 } from './_nuxt/app.config-832f5f68.mjs'; -import { useHead as useHead$1, createHead as createHead$1 } from '@unhead/vue'; -import { renderDOMHead, debouncedRenderDOMHead } from '@unhead/dom'; -import { renderSSRHead } from '@unhead/ssr'; -import { executeAsync } from 'unctx'; -import { RouterView, createMemoryHistory, createRouter } from 'vue-router'; -import { createError as createError$1 } from 'h3'; -import { withLeadingSlash, joinURL, withoutTrailingSlash, isEqual, hasProtocol, withTrailingSlash } from 'ufo'; -import { u as useState, a as useAppConfig, b as useDocus, c as useContent, d as useContentState, e as useContentHelpers } from './_nuxt/useDocus-928368c4.mjs'; -import { hash } from 'ohash'; -import { c as createQuery, u as useCookie } from './_nuxt/query-dd064fd9.mjs'; -import { w as withContentBase, a as addPrerenderPath, s as shouldUseClientDB, _ as __nuxt_component_0$1$1, b as __nuxt_component_0$3 } from './_nuxt/DocsAsideTree-136bd08b.mjs'; -import { p as plugin, _ as _export_sfc, a as __nuxt_component_0$4 } from './_nuxt/Container-1291608c.mjs'; -import { ssrRenderAttrs, ssrRenderList, ssrRenderComponent, ssrRenderTeleport, ssrRenderVNode, ssrInterpolate, ssrRenderAttr, ssrRenderSlot, ssrRenderSuspense } from 'vue/server-renderer'; -import { defu } from 'defu'; -import { u as useRuntimeConfig } from '../nitro/config.mjs'; -import 'hookable'; -import 'cookie-es'; -import 'destr'; -import '@iconify/vue/dist/offline'; -import '@iconify/vue'; -import 'nanoid'; -import 'scule'; - -const appConfig = useRuntimeConfig().app; -const baseURL = () => appConfig.baseURL; -const useError = () => toRef(useNuxtApp().payload, "error"); -const showError = (_err) => { - const err = createError(_err); - try { - const nuxtApp = useNuxtApp(); - nuxtApp.callHook("app:error", err); - const error = useError(); - error.value = error.value || err; - } catch { - throw err; - } - return err; -}; -const createError = (err) => { - const _err = createError$1(err); - _err.__nuxt_error = true; - return _err; -}; -function createHead(initHeadObject) { - const unhead = createHead$1(); - const legacyHead = { - unhead, - install(app) { - if (version.startsWith("3")) { - app.config.globalProperties.$head = unhead; - app.provide("usehead", unhead); - } - }, - use(plugin2) { - unhead.use(plugin2); - }, - resolveTags() { - return unhead.resolveTags(); - }, - headEntries() { - return unhead.headEntries(); - }, - headTags() { - return unhead.resolveTags(); - }, - push(input, options) { - return unhead.push(input, options); - }, - addEntry(input, options) { - return unhead.push(input, options); - }, - addHeadObjs(input, options) { - return unhead.push(input, options); - }, - addReactiveEntry(input, options) { - const api = useHead$1(input, options); - if (typeof api !== "undefined") - return api.dispose; - return () => { - }; - }, - removeHeadObjs() { - }, - updateDOM(document2, force) { - if (force) - renderDOMHead(unhead, { document: document2 }); - else - debouncedRenderDOMHead(unhead, { delayFn: (fn) => setTimeout(() => fn(), 50), document: document2 }); - }, - internalHooks: unhead.hooks, - hooks: { - "before:dom": [], - "resolved:tags": [], - "resolved:entries": [] - } - }; - unhead.addHeadObjs = legacyHead.addHeadObjs; - unhead.updateDOM = legacyHead.updateDOM; - unhead.hooks.hook("dom:beforeRender", (ctx) => { - for (const hook of legacyHead.hooks["before:dom"]) { - if (hook() === false) - ctx.shouldRender = false; - } - }); - if (initHeadObject) - legacyHead.addHeadObjs(initHeadObject); - return legacyHead; -} -version.startsWith("2."); -function useHead(input, options) { - return useNuxtApp()._useHead(input, options); -} -const components = { - ExampleCard: defineAsyncComponent(() => import( - './_nuxt/ExampleCard-95e9f743.mjs' - /* webpackChunkName: "components/example-card" */ - ).then((c) => c.default || c)), - ExampleHero: defineAsyncComponent(() => import( - './_nuxt/ExampleHero-8fe98ee8.mjs' - /* webpackChunkName: "components/example-hero" */ - ).then((c) => c.default || c)), - ExampleIconCard: defineAsyncComponent(() => import( - './_nuxt/ExampleIconCard-a87d1258.mjs' - /* webpackChunkName: "components/example-icon-card" */ - ).then((c) => c.default || c)), - ExampleMultiselect: defineAsyncComponent(() => import( - './_nuxt/ExampleMultiselect-915c74fe.mjs' - /* webpackChunkName: "components/example-multiselect" */ - ).then((c) => c.default || c)), - ExampleTheTitle: defineAsyncComponent(() => import( - './_nuxt/ExampleTheTitle-9f1c4a8d.mjs' - /* webpackChunkName: "components/example-the-title" */ - ).then((c) => c.default || c)), - HeroAnnouncement: defineAsyncComponent(() => import( - './_nuxt/HeroAnnouncement-a479df93.mjs' - /* webpackChunkName: "components/hero-announcement" */ - ).then((c) => c.default || c)), - IconMarkdown: defineAsyncComponent(() => import( - './_nuxt/IconMarkdown-092c828f.mjs' - /* webpackChunkName: "components/icon-markdown" */ - ).then((c) => c.default || c)), - Logo: defineAsyncComponent(() => Promise.resolve().then(function() { - return Logo; - }).then((c) => c.default || c)), - MyButton: defineAsyncComponent(() => import( - './_nuxt/MyButton-a7c11108.mjs' - /* webpackChunkName: "components/my-button" */ - ).then((c) => c.default || c)), - PropInspector: defineAsyncComponent(() => import( - './_nuxt/PropInspector-d4a70134.mjs' - /* webpackChunkName: "components/prop-inspector" */ - ).then((c) => c.default || c)), - ReadMore: defineAsyncComponent(() => import( - './_nuxt/ReadMore-4e2f1622.mjs' - /* webpackChunkName: "components/read-more" */ - ).then((c) => c.default || c)), - AppFooter: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppFooter; - }).then((c) => c.default || c)), - AppHeader: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppHeader; - }).then((c) => c.default || c)), - AppHeaderDialog: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppHeaderDialog; - }).then((c) => c.default || c)), - AppHeaderLogo: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppHeaderLogo; - }).then((c) => c.default || c)), - AppHeaderNavigation: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppHeaderNavigation; - }).then((c) => c.default || c)), - AppLayout: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppLayout; - }).then((c) => c.default || c)), - AppLoadingBar: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppLoadingBar; - }).then((c) => c.default || c)), - AppSearch: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppSearch; - }).then((c) => c.default || c)), - AppSocialIcons: defineAsyncComponent(() => Promise.resolve().then(function() { - return AppSocialIcons; - }).then((c) => c.default || c)), - DocumentDrivenNotFound: defineAsyncComponent(() => import( - './_nuxt/DocumentDrivenNotFound-4b73ea08.mjs' - /* webpackChunkName: "components/document-driven-not-found" */ - ).then((c) => c.default || c)), - ThemeSelect: defineAsyncComponent(() => Promise.resolve().then(function() { - return ThemeSelect; - }).then((c) => c.default || c)), - DocsAside: defineAsyncComponent(() => import( - './_nuxt/DocsAside-a41d5eb9.mjs' - /* webpackChunkName: "components/docs-aside" */ - ).then((c) => c.default || c)), - DocsAsideTree: defineAsyncComponent(() => import( - './_nuxt/DocsAsideTree-136bd08b.mjs' - /* webpackChunkName: "components/docs-aside-tree" */ - ).then(function(n) { - return n.D; - }).then((c) => c.default || c)), - DocsPageBottom: defineAsyncComponent(() => import( - './_nuxt/DocsPageBottom-270eacfc.mjs' - /* webpackChunkName: "components/docs-page-bottom" */ - ).then((c) => c.default || c)), - DocsPageLayout: defineAsyncComponent(() => import( - './_nuxt/DocsPageLayout-4c2ead4a.mjs' - /* webpackChunkName: "components/docs-page-layout" */ - ).then((c) => c.default || c)), - DocsPrevNext: defineAsyncComponent(() => import( - './_nuxt/DocsPrevNext-7858c09b.mjs' - /* webpackChunkName: "components/docs-prev-next" */ - ).then((c) => c.default || c)), - DocsToc: defineAsyncComponent(() => import( - './_nuxt/DocsToc-e4f6bd56.mjs' - /* webpackChunkName: "components/docs-toc" */ - ).then((c) => c.default || c)), - DocsTocLinks: defineAsyncComponent(() => import( - './_nuxt/DocsTocLinks-95d48629.mjs' - /* webpackChunkName: "components/docs-toc-links" */ - ).then((c) => c.default || c)), - EditOnLink: defineAsyncComponent(() => import( - './_nuxt/EditOnLink-e55cd3a0.mjs' - /* webpackChunkName: "components/edit-on-link" */ - ).then((c) => c.default || c)), - ProseA: defineAsyncComponent(() => import( - './_nuxt/ProseA-86ef3985.mjs' - /* webpackChunkName: "components/prose-a" */ - ).then((c) => c.default || c)), - ProseBlockquote: defineAsyncComponent(() => import( - './_nuxt/ProseBlockquote-faf6e310.mjs' - /* webpackChunkName: "components/prose-blockquote" */ - ).then((c) => c.default || c)), - ProseCode: defineAsyncComponent(() => import( - './_nuxt/ProseCode-94b7281d.mjs' - /* webpackChunkName: "components/prose-code" */ - ).then(function(n) { - return n.a; - }).then((c) => c.default || c)), - ProseCodeInline: defineAsyncComponent(() => import( - './_nuxt/ProseCodeInline-960b9a43.mjs' - /* webpackChunkName: "components/prose-code-inline" */ - ).then((c) => c.default || c)), - ProseEm: defineAsyncComponent(() => import( - './_nuxt/ProseEm-f52fc33d.mjs' - /* webpackChunkName: "components/prose-em" */ - ).then((c) => c.default || c)), - ProseH1: defineAsyncComponent(() => import( - './_nuxt/ProseH1-81b8c44a.mjs' - /* webpackChunkName: "components/prose-h1" */ - ).then((c) => c.default || c)), - ProseH2: defineAsyncComponent(() => import( - './_nuxt/ProseH2-abc0d7da.mjs' - /* webpackChunkName: "components/prose-h2" */ - ).then((c) => c.default || c)), - ProseH3: defineAsyncComponent(() => import( - './_nuxt/ProseH3-6c54494a.mjs' - /* webpackChunkName: "components/prose-h3" */ - ).then((c) => c.default || c)), - ProseH4: defineAsyncComponent(() => import( - './_nuxt/ProseH4-4f0da863.mjs' - /* webpackChunkName: "components/prose-h4" */ - ).then((c) => c.default || c)), - ProseH5: defineAsyncComponent(() => import( - './_nuxt/ProseH5-0c6e8cd8.mjs' - /* webpackChunkName: "components/prose-h5" */ - ).then((c) => c.default || c)), - ProseH6: defineAsyncComponent(() => import( - './_nuxt/ProseH6-cffb1b40.mjs' - /* webpackChunkName: "components/prose-h6" */ - ).then((c) => c.default || c)), - ProseHr: defineAsyncComponent(() => import( - './_nuxt/ProseHr-fa0af264.mjs' - /* webpackChunkName: "components/prose-hr" */ - ).then((c) => c.default || c)), - ProseImg: defineAsyncComponent(() => import( - './_nuxt/ProseImg-f3012414.mjs' - /* webpackChunkName: "components/prose-img" */ - ).then((c) => c.default || c)), - ProseLi: defineAsyncComponent(() => import( - './_nuxt/ProseLi-948accef.mjs' - /* webpackChunkName: "components/prose-li" */ - ).then((c) => c.default || c)), - ProseOl: defineAsyncComponent(() => import( - './_nuxt/ProseOl-b8e80875.mjs' - /* webpackChunkName: "components/prose-ol" */ - ).then((c) => c.default || c)), - ProseP: defineAsyncComponent(() => import( - './_nuxt/ProseP-a91aeff7.mjs' - /* webpackChunkName: "components/prose-p" */ - ).then((c) => c.default || c)), - ProseStrong: defineAsyncComponent(() => import( - './_nuxt/ProseStrong-246281a0.mjs' - /* webpackChunkName: "components/prose-strong" */ - ).then((c) => c.default || c)), - ProseTable: defineAsyncComponent(() => import( - './_nuxt/ProseTable-425d227b.mjs' - /* webpackChunkName: "components/prose-table" */ - ).then((c) => c.default || c)), - ProseTbody: defineAsyncComponent(() => import( - './_nuxt/ProseTbody-f622755a.mjs' - /* webpackChunkName: "components/prose-tbody" */ - ).then((c) => c.default || c)), - ProseTd: defineAsyncComponent(() => import( - './_nuxt/ProseTd-ce60dd42.mjs' - /* webpackChunkName: "components/prose-td" */ - ).then((c) => c.default || c)), - ProseTh: defineAsyncComponent(() => import( - './_nuxt/ProseTh-8250ce9f.mjs' - /* webpackChunkName: "components/prose-th" */ - ).then((c) => c.default || c)), - ProseThead: defineAsyncComponent(() => import( - './_nuxt/ProseThead-7ba76e48.mjs' - /* webpackChunkName: "components/prose-thead" */ - ).then((c) => c.default || c)), - ProseTr: defineAsyncComponent(() => import( - './_nuxt/ProseTr-6559f7d8.mjs' - /* webpackChunkName: "components/prose-tr" */ - ).then((c) => c.default || c)), - ProseUl: defineAsyncComponent(() => import( - './_nuxt/ProseUl-79ecc4c5.mjs' - /* webpackChunkName: "components/prose-ul" */ - ).then((c) => c.default || c)), - Alert: defineAsyncComponent(() => import( - './_nuxt/Alert-2b29f746.mjs' - /* webpackChunkName: "components/alert" */ - ).then((c) => c.default || c)), - Badge: defineAsyncComponent(() => import( - './_nuxt/Badge-5f9ab214.mjs' - /* webpackChunkName: "components/badge" */ - ).then((c) => c.default || c)), - ButtonLink: defineAsyncComponent(() => import( - './_nuxt/ButtonLink-df4791d5.mjs' - /* webpackChunkName: "components/button-link" */ - ).then((c) => c.default || c)), - Callout: defineAsyncComponent(() => import( - './_nuxt/Callout-fc92c8b7.mjs' - /* webpackChunkName: "components/callout" */ - ).then((c) => c.default || c)), - CodeBlock: defineAsyncComponent(() => import( - './_nuxt/CodeBlock-f6f4711b.mjs' - /* webpackChunkName: "components/code-block" */ - ).then((c) => c.default || c)), - CodeGroup: defineAsyncComponent(() => import( - './_nuxt/CodeGroup-67aa2302.mjs' - /* webpackChunkName: "components/code-group" */ - ).then((c) => c.default || c)), - Container: defineAsyncComponent(() => import( - './_nuxt/Container-1291608c.mjs' - /* webpackChunkName: "components/container" */ - ).then(function(n) { - return n.C; - }).then((c) => c.default || c)), - CopyButton: defineAsyncComponent(() => import( - './_nuxt/CopyButton-155eba98.mjs' - /* webpackChunkName: "components/copy-button" */ - ).then((c) => c.default || c)), - Ellipsis: defineAsyncComponent(() => import( - './_nuxt/Ellipsis-b69b027e.mjs' - /* webpackChunkName: "components/ellipsis" */ - ).then((c) => c.default || c)), - List: defineAsyncComponent(() => import( - './_nuxt/List-12ebf73c.mjs' - /* webpackChunkName: "components/list" */ - ).then((c) => c.default || c)), - NuxtImg: defineAsyncComponent(() => import( - './_nuxt/NuxtImg-89991070.mjs' - /* webpackChunkName: "components/nuxt-img" */ - ).then((c) => c.default || c)), - Props: defineAsyncComponent(() => import( - './_nuxt/Props-c617d5b2.mjs' - /* webpackChunkName: "components/props" */ - ).then((c) => c.default || c)), - Sandbox: defineAsyncComponent(() => import( - './_nuxt/Sandbox-3e5bdd00.mjs' - /* webpackChunkName: "components/sandbox" */ - ).then((c) => c.default || c)), - SourceLink: defineAsyncComponent(() => import( - './_nuxt/SourceLink-c27fde85.mjs' - /* webpackChunkName: "components/source-link" */ - ).then((c) => c.default || c)), - TabsHeader: defineAsyncComponent(() => import( - './_nuxt/TabsHeader-c9b56dab.mjs' - /* webpackChunkName: "components/tabs-header" */ - ).then((c) => c.default || c)), - Terminal: defineAsyncComponent(() => import( - './_nuxt/Terminal-35e8f795.mjs' - /* webpackChunkName: "components/terminal" */ - ).then((c) => c.default || c)), - VideoPlayer: defineAsyncComponent(() => import( - './_nuxt/VideoPlayer-2b282302.mjs' - /* webpackChunkName: "components/video-player" */ - ).then((c) => c.default || c)), - IconCodeSandBox: defineAsyncComponent(() => import( - './_nuxt/IconCodeSandBox-289e2c7f.mjs' - /* webpackChunkName: "components/icon-code-sand-box" */ - ).then((c) => c.default || c)), - IconDocus: defineAsyncComponent(() => import( - './_nuxt/IconDocus-12d300be.mjs' - /* webpackChunkName: "components/icon-docus" */ - ).then((c) => c.default || c)), - IconNuxt: defineAsyncComponent(() => import( - './_nuxt/IconNuxt-c11c3c9c.mjs' - /* webpackChunkName: "components/icon-nuxt" */ - ).then((c) => c.default || c)), - IconNuxtContent: defineAsyncComponent(() => import( - './_nuxt/IconNuxtContent-f8fb6ffc.mjs' - /* webpackChunkName: "components/icon-nuxt-content" */ - ).then((c) => c.default || c)), - IconNuxtLabs: defineAsyncComponent(() => import( - './_nuxt/IconNuxtLabs-1b2b0005.mjs' - /* webpackChunkName: "components/icon-nuxt-labs" */ - ).then((c) => c.default || c)), - IconNuxtStudio: defineAsyncComponent(() => import( - './_nuxt/IconNuxtStudio-8ac5eaa5.mjs' - /* webpackChunkName: "components/icon-nuxt-studio" */ - ).then((c) => c.default || c)), - IconStackBlitz: defineAsyncComponent(() => import( - './_nuxt/IconStackBlitz-def46545.mjs' - /* webpackChunkName: "components/icon-stack-blitz" */ - ).then((c) => c.default || c)), - IconVueTelescope: defineAsyncComponent(() => import( - './_nuxt/IconVueTelescope-96109b9a.mjs' - /* webpackChunkName: "components/icon-vue-telescope" */ - ).then((c) => c.default || c)), - BlockHero: defineAsyncComponent(() => import( - './_nuxt/BlockHero-f586796f.mjs' - /* webpackChunkName: "components/block-hero" */ - ).then((c) => c.default || c)), - Card: defineAsyncComponent(() => import( - './_nuxt/Card-2052047f.mjs' - /* webpackChunkName: "components/card" */ - ).then((c) => c.default || c)), - CardGrid: defineAsyncComponent(() => import( - './_nuxt/CardGrid-160bcd85.mjs' - /* webpackChunkName: "components/card-grid" */ - ).then((c) => c.default || c)), - VoltaBoard: defineAsyncComponent(() => import( - './_nuxt/VoltaBoard-98820156.mjs' - /* webpackChunkName: "components/volta-board" */ - ).then((c) => c.default || c)), - ComponentPlayground: defineAsyncComponent(() => import( - './_nuxt/ComponentPlayground-c7ca07d7.mjs' - /* webpackChunkName: "components/component-playground" */ - ).then((c) => c.default || c)), - ComponentPlaygroundData: defineAsyncComponent(() => import( - './_nuxt/ComponentPlaygroundData-d25a0f8e.mjs' - /* webpackChunkName: "components/component-playground-data" */ - ).then((c) => c.default || c)), - ComponentPlaygroundProps: defineAsyncComponent(() => import( - './_nuxt/ComponentPlaygroundProps-8f45f1a7.mjs' - /* webpackChunkName: "components/component-playground-props" */ - ).then((c) => c.default || c)), - ComponentPlaygroundSlots: defineAsyncComponent(() => import( - './_nuxt/ComponentPlaygroundSlots-0dbd767a.mjs' - /* webpackChunkName: "components/component-playground-slots" */ - ).then((c) => c.default || c)), - ComponentPlaygroundTokens: defineAsyncComponent(() => import( - './_nuxt/ComponentPlaygroundTokens-548a0a2d.mjs' - /* webpackChunkName: "components/component-playground-tokens" */ - ).then((c) => c.default || c)), - TokensPlayground: defineAsyncComponent(() => import( - './_nuxt/TokensPlayground-84b52014.mjs' - /* webpackChunkName: "components/tokens-playground" */ - ).then((c) => c.default || c)), - ContentDoc: defineAsyncComponent(() => import( - './_nuxt/ContentDoc-608dc79a.mjs' - /* webpackChunkName: "components/content-doc" */ - ).then((c) => c.default || c)), - ContentList: defineAsyncComponent(() => import( - './_nuxt/ContentList-b4b0de0d.mjs' - /* webpackChunkName: "components/content-list" */ - ).then((c) => c.default || c)), - ContentNavigation: defineAsyncComponent(() => import( - './_nuxt/ContentNavigation-8bed293a.mjs' - /* webpackChunkName: "components/content-navigation" */ - ).then((c) => c.default || c)), - ContentQuery: defineAsyncComponent(() => import( - './_nuxt/ContentQuery-8668b0af.mjs' - /* webpackChunkName: "components/content-query" */ - ).then((c) => c.default || c)), - ContentRenderer: defineAsyncComponent(() => import( - './_nuxt/ContentRenderer-06a7c657.mjs' - /* webpackChunkName: "components/content-renderer" */ - ).then((c) => c.default || c)), - ContentRendererMarkdown: defineAsyncComponent(() => import( - './_nuxt/ContentRendererMarkdown-bebf42c8.mjs' - /* webpackChunkName: "components/content-renderer-markdown" */ - ).then((c) => c.default || c)), - ContentSlot: defineAsyncComponent(() => import( - './_nuxt/ContentSlot-deb25102.mjs' - /* webpackChunkName: "components/content-slot" */ - ).then((c) => c.default || c)), - DocumentDrivenEmpty: defineAsyncComponent(() => import( - './_nuxt/DocumentDrivenEmpty-8338ce9f.mjs' - /* webpackChunkName: "components/document-driven-empty" */ - ).then((c) => c.default || c)), - Markdown: defineAsyncComponent(() => import( - './_nuxt/Markdown-1885a814.mjs' - /* webpackChunkName: "components/markdown" */ - ).then((c) => c.default || c)), - GithubRepository: defineAsyncComponent(() => import( - './_nuxt/GithubRepository-8db11ede.mjs' - /* webpackChunkName: "components/github-repository" */ - ).then((c) => c.default || c)), - GithubLink: defineAsyncComponent(() => import( - './_nuxt/GithubLink-f632fd3b.mjs' - /* webpackChunkName: "components/github-link" */ - ).then((c) => c.default || c)), - GithubReadme: defineAsyncComponent(() => import( - './_nuxt/GithubReadme-9e48e600.mjs' - /* webpackChunkName: "components/github-readme" */ - ).then((c) => c.default || c)), - GithubReleases: defineAsyncComponent(() => import( - './_nuxt/GithubReleases-2ab96fb8.mjs' - /* webpackChunkName: "components/github-releases" */ - ).then((c) => c.default || c)), - GithubLastRelease: defineAsyncComponent(() => import( - './_nuxt/GithubLastRelease-b4d6e912.mjs' - /* webpackChunkName: "components/github-last-release" */ - ).then((c) => c.default || c)), - GithubRelease: defineAsyncComponent(() => import( - './_nuxt/GithubRelease-140d3d2e.mjs' - /* webpackChunkName: "components/github-release" */ - ).then((c) => c.default || c)), - GithubContributors: defineAsyncComponent(() => import( - './_nuxt/GithubContributors-1aa0f22f.mjs' - /* webpackChunkName: "components/github-contributors" */ - ).then((c) => c.default || c)), - GithubFileContributors: defineAsyncComponent(() => import( - './_nuxt/GithubFileContributors-285e4522.mjs' - /* webpackChunkName: "components/github-file-contributors" */ - ).then((c) => c.default || c)), - GithubCommits: defineAsyncComponent(() => import( - './_nuxt/GithubCommits-b7b81c66.mjs' - /* webpackChunkName: "components/github-commits" */ - ).then((c) => c.default || c)), - Icon: defineAsyncComponent(() => import( - './_nuxt/DocsAsideTree-136bd08b.mjs' - /* webpackChunkName: "components/icon" */ - ).then(function(n) { - return n.I; - }).then((c) => c.default || c)) -}; -const components_plugin_KR1HBZs4kY = defineNuxtPlugin((nuxtApp) => { - for (const name in components) { - nuxtApp.vueApp.component(name, components[name]); - nuxtApp.vueApp.component("Lazy" + name, components[name]); - } -}); -const appHead = { "meta": [{ "name": "viewport", "content": "width=device-width, initial-scale=1" }, { "charset": "utf-8" }], "link": [], "style": [], "script": [{ "defer": true, "data-domain": "frontier.realdecoy.com", "src": "https://plausible.io/js/script.js" }], "noscript": [] }; -const appLayoutTransition = false; -const appPageTransition = false; -const appKeepalive = false; -const vueuse_head_plugin_D7WGfuP1A0 = defineNuxtPlugin((nuxtApp) => { - const head = createHead(); - head.push(appHead); - nuxtApp.vueApp.use(head); - nuxtApp._useHead = useHead$1; - { - nuxtApp.ssrContext.renderMeta = async () => { - const meta = await renderSSRHead(head.unhead); - return { - ...meta, - bodyScriptsPrepend: meta.bodyTagsOpen, - // resolves naming difference with NuxtMeta and @vueuse/head - bodyScripts: meta.bodyTags - }; - }; - } -}); -const __nuxt_page_meta$1 = {}; -const __nuxt_page_meta = {}; -const _routes = [ - { - name: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.name) ?? "slug", - path: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.path) ?? "/:slug(.*)*", - children: [], - meta: __nuxt_page_meta$1, - alias: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.alias) || [], - redirect: (__nuxt_page_meta$1 == null ? void 0 : __nuxt_page_meta$1.redirect) || void 0, - component: () => import('./_nuxt/document-driven-27005915.mjs').then((m) => m.default || m) - }, - { - name: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.name) ?? "__app_config.json", - path: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.path) ?? "/__app_config.json", - children: [], - meta: __nuxt_page_meta, - alias: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.alias) || [], - redirect: (__nuxt_page_meta == null ? void 0 : __nuxt_page_meta.redirect) || void 0, - component: () => import('./_nuxt/empty-446a838e.mjs').then((m) => m.default || m) - } -]; -const routerOptions0 = { - scrollBehavior(to, _form, savedPosition) { - if (history.state.stop) { - return; - } - if (history.state.smooth) { - return { - el: history.state.smooth, - behavior: "smooth" - }; - } - if (to.hash) { - const el = document.querySelector(to.hash); - if (!el) { - return; - } - const { marginTop } = getComputedStyle(el); - const marginTopValue = parseInt(marginTop); - const offset = document.querySelector(to.hash).offsetTop - marginTopValue; - return { - top: offset, - behavior: "smooth" - }; - } - if (savedPosition) { - return savedPosition; - } else { - return { top: 0 }; - } - } -}; -const routerOptions1 = { - scrollBehavior(to, from, savedPosition) { - const nuxtApp = useNuxtApp(); - let position = savedPosition || void 0; - if (!position && from && to && to.meta.scrollToTop !== false && _isDifferentRoute(from, to)) { - position = { left: 0, top: 0 }; - } - if (to.path === from.path) { - if (from.hash && !to.hash) { - return { left: 0, top: 0 }; - } - if (to.hash) { - return { el: to.hash, top: _getHashElementScrollMarginTop(to.hash) }; - } - } - const hasTransition = (route) => !!(route.meta.pageTransition ?? appPageTransition); - const hookToWait = hasTransition(from) && hasTransition(to) ? "page:transition:finish" : "page:finish"; - return new Promise((resolve) => { - nuxtApp.hooks.hookOnce(hookToWait, async () => { - await nextTick(); - if (to.hash) { - position = { el: to.hash, top: _getHashElementScrollMarginTop(to.hash) }; - } - resolve(position); - }); - }); - } -}; -function _getHashElementScrollMarginTop(selector) { - try { - const elem = document.querySelector(selector); - if (elem) { - return parseFloat(getComputedStyle(elem).scrollMarginTop); - } - } catch { - } - return 0; -} -function _isDifferentRoute(a, b) { - const samePageComponent = a.matched[0] === b.matched[0]; - if (!samePageComponent) { - return true; - } - if (samePageComponent && JSON.stringify(a.params) !== JSON.stringify(b.params)) { - return true; - } - return false; -} -const configRouterOptions = {}; -const routerOptions = { - ...configRouterOptions, - ...routerOptions1, - ...routerOptions0 -}; -const validate = defineNuxtRouteMiddleware(async (to) => { - var _a; - let __temp, __restore; - if (!((_a = to.meta) == null ? void 0 : _a.validate)) { - return; - } - const result = ([__temp, __restore] = executeAsync(() => Promise.resolve(to.meta.validate(to))), __temp = await __temp, __restore(), __temp); - if (result === true) { - return; - } - return result; -}); -const globalMiddleware = [ - validate -]; -const namedMiddleware = {}; -const router_Pg0DINazwm = defineNuxtPlugin(async (nuxtApp) => { - var _a, _b; - let __temp, __restore; - let routerBase = useRuntimeConfig$1().app.baseURL; - if (routerOptions.hashMode && !routerBase.includes("#")) { - routerBase += "#"; - } - const history2 = ((_a = routerOptions.history) == null ? void 0 : _a.call(routerOptions, routerBase)) ?? createMemoryHistory(routerBase); - const routes = ((_b = routerOptions.routes) == null ? void 0 : _b.call(routerOptions, _routes)) ?? _routes; - const initialURL = nuxtApp.ssrContext.url; - const router = createRouter({ - ...routerOptions, - history: history2, - routes - }); - nuxtApp.vueApp.use(router); - const previousRoute = shallowRef(router.currentRoute.value); - router.afterEach((_to, from) => { - previousRoute.value = from; - }); - Object.defineProperty(nuxtApp.vueApp.config.globalProperties, "previousRoute", { - get: () => previousRoute.value - }); - const _route = shallowRef(router.resolve(initialURL)); - const syncCurrentRoute = () => { - _route.value = router.currentRoute.value; - }; - nuxtApp.hook("page:finish", syncCurrentRoute); - router.afterEach((to, from) => { - var _a2, _b2, _c, _d; - if (((_b2 = (_a2 = to.matched[0]) == null ? void 0 : _a2.components) == null ? void 0 : _b2.default) === ((_d = (_c = from.matched[0]) == null ? void 0 : _c.components) == null ? void 0 : _d.default)) { - syncCurrentRoute(); - } - }); - const route = {}; - for (const key in _route.value) { - route[key] = computed(() => _route.value[key]); - } - nuxtApp._route = reactive(route); - nuxtApp._middleware = nuxtApp._middleware || { - global: [], - named: {} - }; - useError(); - try { - if (true) { - ; - [__temp, __restore] = executeAsync(() => router.push(initialURL)), await __temp, __restore(); - ; - } - ; - [__temp, __restore] = executeAsync(() => router.isReady()), await __temp, __restore(); - ; - } catch (error2) { - [__temp, __restore] = executeAsync(() => callWithNuxt(nuxtApp, showError, [error2])), await __temp, __restore(); - } - const initialLayout = useState("_layout"); - router.beforeEach(async (to, from) => { - var _a2; - to.meta = reactive(to.meta); - if (nuxtApp.isHydrating && initialLayout.value && !isReadonly(to.meta.layout)) { - to.meta.layout = initialLayout.value; - } - nuxtApp._processingMiddleware = true; - const middlewareEntries = /* @__PURE__ */ new Set([...globalMiddleware, ...nuxtApp._middleware.global]); - for (const component of to.matched) { - const componentMiddleware = component.meta.middleware; - if (!componentMiddleware) { - continue; - } - if (Array.isArray(componentMiddleware)) { - for (const entry2 of componentMiddleware) { - middlewareEntries.add(entry2); - } - } else { - middlewareEntries.add(componentMiddleware); - } - } - for (const entry2 of middlewareEntries) { - const middleware = typeof entry2 === "string" ? nuxtApp._middleware.named[entry2] || await ((_a2 = namedMiddleware[entry2]) == null ? void 0 : _a2.call(namedMiddleware).then((r) => r.default || r)) : entry2; - if (!middleware) { - throw new Error(`Unknown route middleware: '${entry2}'.`); - } - const result = await callWithNuxt(nuxtApp, middleware, [to, from]); - { - if (result === false || result instanceof Error) { - const error2 = result || createError$1({ - statusCode: 404, - statusMessage: `Page Not Found: ${initialURL}` - }); - await callWithNuxt(nuxtApp, showError, [error2]); - return false; - } - } - if (result || result === false) { - return result; - } - } - }); - router.afterEach(async (to) => { - delete nuxtApp._processingMiddleware; - if (to.matched.length === 0) { - await callWithNuxt(nuxtApp, showError, [createError$1({ - statusCode: 404, - fatal: false, - statusMessage: `Page not found: ${to.fullPath}` - })]); - } else { - const currentURL = to.fullPath || "/"; - if (!isEqual(currentURL, initialURL)) { - const event = await callWithNuxt(nuxtApp, useRequestEvent); - const options = { redirectCode: event.node.res.statusCode !== 200 ? event.node.res.statusCode || 302 : 302 }; - await callWithNuxt(nuxtApp, navigateTo, [currentURL, options]); - } - } - }); - nuxtApp.hooks.hookOnce("app:created", async () => { - try { - await router.replace({ - ...router.resolve(initialURL), - name: void 0, - // #4920, #$4982 - force: true - }); - } catch (error2) { - await callWithNuxt(nuxtApp, showError, [error2]); - } - }); - return { provide: { router } }; -}); -const docsearch_hvQai9BtgI = defineNuxtPlugin(() => { - const config = useRuntimeConfig$1(); - const docSearchElement = ref(); - const hasDocSearch = computed(() => { - var _a, _b; - return (_b = (_a = config == null ? void 0 : config.public) == null ? void 0 : _a.algolia) == null ? void 0 : _b.docSearch; - }); - if (hasDocSearch.value) { - useRoute(); - useRouter(); - computed(() => { - const { algolia } = useRuntimeConfig$1(); - if (algolia && algolia.docSearch) { - return algolia; - } - return {}; - }); - } - return { - provide: { - docSearch: { - element: docSearchElement, - hasDocSearch - } - } - }; -}); -function jsonStringify(value) { - return JSON.stringify(value, regExpReplacer); -} -function regExpReplacer(_key, value) { - if (value instanceof RegExp) { - return `--REGEX ${value.toString()}`; - } - return value; -} -const encodeQueryParams = (params) => { - let encoded = jsonStringify(params); - encoded = typeof Buffer !== "undefined" ? Buffer.from(encoded).toString("base64") : btoa(encoded); - encoded = encoded.replace(/\+/g, "-").replace(/\//g, "_").replace(/=/g, ""); - const chunks = encoded.match(/.{1,100}/g) || []; - return chunks.join("/"); -}; -const createQueryFetch = () => async (query) => { - const { content } = useRuntimeConfig$1().public; - const params = query.params(); - const apiPath = content.experimental.stripQueryParameters ? withContentBase(`/query/${`${hash(params)}.${content.integrity}`}/${encodeQueryParams(params)}.json`) : withContentBase(`/query/${hash(params)}.${content.integrity}.json`); - { - addPrerenderPath(apiPath); - } - if (shouldUseClientDB()) { - const db = await import('./_nuxt/client-db-fd379c8e.mjs').then((m) => m.useContentDatabase()); - return db.fetch(query); - } - const data = await $fetch(apiPath, { - method: "GET", - responseType: "json", - params: content.experimental.stripQueryParameters ? void 0 : { - _params: jsonStringify(params), - previewToken: useCookie("previewToken").value - } - }); - if (typeof data === "string" && data.startsWith("")) { - throw new Error("Not found"); - } - return data; -}; -function queryContent(query, ...pathParts) { - const { content } = useRuntimeConfig$1().public; - const queryBuilder = createQuery(createQueryFetch(), typeof query !== "string" ? query : {}); - let path; - if (typeof query === "string") { - path = withLeadingSlash(joinURL(query, ...pathParts)); - } - const originalParamsFn = queryBuilder.params; - queryBuilder.params = () => { - var _a, _b, _c; - const params = originalParamsFn(); - if (path) { - params.where = params.where || []; - if (params.first && (params.where || []).length === 0) { - params.where.push({ _path: withoutTrailingSlash(path) }); - } else { - params.where.push({ _path: new RegExp(`^${path.replace(/[-[\]{}()*+.,^$\s/]/g, "\\$&")}`) }); - } - } - if (!((_a = params.sort) == null ? void 0 : _a.length)) { - params.sort = [{ _file: 1, $numeric: true }]; - } - if (content.locales.length) { - const queryLocale = (_c = (_b = params.where) == null ? void 0 : _b.find((w) => w._locale)) == null ? void 0 : _c._locale; - if (!queryLocale) { - params.where = params.where || []; - params.where.push({ _locale: content.defaultLocale }); - } - } - return params; - }; - return queryBuilder; -} -const fetchContentNavigation = async (queryBuilder) => { - const { content } = useRuntimeConfig$1().public; - if (typeof (queryBuilder == null ? void 0 : queryBuilder.params) !== "function") { - queryBuilder = queryContent(queryBuilder); - } - const params = queryBuilder.params(); - const apiPath = content.experimental.stripQueryParameters ? withContentBase(`/navigation/${`${hash(params)}.${content.integrity}`}/${encodeQueryParams(params)}.json`) : withContentBase(`/navigation/${hash(params)}.${content.integrity}.json`); - { - addPrerenderPath(apiPath); - } - if (shouldUseClientDB()) { - const generateNavigation = await import('./_nuxt/client-db-fd379c8e.mjs').then((m) => m.generateNavigation); - return generateNavigation(params); - } - const data = await $fetch(apiPath, { - method: "GET", - responseType: "json", - params: content.experimental.stripQueryParameters ? void 0 : { - _params: jsonStringify(params), - previewToken: useCookie("previewToken").value - } - }); - if (typeof data === "string" && data.startsWith("")) { - throw new Error("Not found"); - } - return data; -}; -const layouts = { - "docs-page": () => import('./_nuxt/docs-page-75eace63.mjs').then((m) => m.default || m), - default: () => import('./_nuxt/default-cafbf0bc.mjs').then((m) => m.default || m), - page: () => import('./_nuxt/page-26ac7e13.mjs').then((m) => m.default || m) -}; -const documentDriven_9cX98v59ZY = defineNuxtPlugin((nuxt) => { - var _a, _b; - const { documentDriven: moduleOptions, experimental } = (_b = (_a = useRuntimeConfig$1()) == null ? void 0 : _a.public) == null ? void 0 : _b.content; - const findLayout = (to, page2, navigation, globals) => { - var _a2; - if (page2 && (page2 == null ? void 0 : page2.layout)) { - return page2.layout; - } - if (to.matched.length && ((_a2 = to.matched[0].meta) == null ? void 0 : _a2.layout)) { - return to.matched[0].meta.layout; - } - if (navigation && page2) { - const { navKeyFromPath } = useContentHelpers(); - const layoutFromNav = navKeyFromPath(page2._path, "layout", navigation); - if (layoutFromNav) { - return layoutFromNav; - } - } - if (moduleOptions.layoutFallbacks && globals) { - let layoutFallback; - for (const fallback of moduleOptions.layoutFallbacks) { - if (globals[fallback] && globals[fallback].layout) { - layoutFallback = globals[fallback].layout; - break; - } - } - if (layoutFallback) { - return layoutFallback; - } - } - return "default"; - }; - const refresh = async (to, dedup = false) => { - nuxt.callHook("content:document-driven:start", { route: to, dedup }); - const routeConfig = to.meta.documentDriven || {}; - if (to.meta.documentDriven === false) { - return; - } - const { navigation, pages, globals, surrounds } = useContentState(); - const _path = withoutTrailingSlash(to.path); - const promises = []; - if (moduleOptions.navigation && routeConfig.navigation !== false) { - const navigationQuery = () => { - const { navigation: navigation2 } = useContentState(); - if (navigation2.value && !dedup) { - return navigation2.value; - } - return fetchContentNavigation().then((_navigation) => { - navigation2.value = _navigation; - return _navigation; - }).catch(() => null); - }; - promises.push(navigationQuery); - } else { - promises.push(() => Promise.resolve(null)); - } - if (moduleOptions.globals) { - const globalsQuery = () => { - const { globals: globals2 } = useContentState(); - if (typeof moduleOptions.globals === "object" && Array.isArray(moduleOptions.globals)) { - console.log("Globals must be a list of keys with QueryBuilderParams as a value."); - return; - } - return Promise.all( - Object.entries(moduleOptions.globals).map( - ([key, query]) => { - if (!dedup && globals2.value[key]) { - return globals2.value[key]; - } - let type = "findOne"; - if (query == null ? void 0 : query.type) { - type = query.type; - } - return queryContent(query)[type]().catch(() => null); - } - ) - ).then( - (values) => { - return values.reduce( - (acc, value, index) => { - const key = Object.keys(moduleOptions.globals)[index]; - acc[key] = value; - return acc; - }, - {} - ); - } - ); - }; - promises.push(globalsQuery); - } else { - promises.push(() => Promise.resolve(null)); - } - if (moduleOptions.page && routeConfig.page !== false) { - let where = { _path }; - if (typeof routeConfig.page === "string") { - where = { _path: routeConfig.page }; - } - if (typeof routeConfig.page === "object") { - where = routeConfig.page; - } - const pageQuery = () => { - const { pages: pages2 } = useContentState(); - if (!dedup && pages2.value[_path] && pages2.value[_path]._path === _path) { - return pages2.value[_path]; - } - return queryContent().where(where).findOne().catch(() => null); - }; - promises.push(pageQuery); - } else { - promises.push(() => Promise.resolve(null)); - } - if (moduleOptions.surround && routeConfig.surround !== false) { - let surround = _path; - if (["string", "object"].includes(typeof routeConfig.page)) { - surround = routeConfig.page; - } - if (["string", "object"].includes(typeof routeConfig.surround)) { - surround = routeConfig.surround; - } - const surroundQuery = () => { - const { surrounds: surrounds2 } = useContentState(); - if (!dedup && surrounds2.value[_path]) { - return surrounds2.value[_path]; - } - return queryContent().where({ - _partial: { $not: true }, - navigation: { $not: false } - }).without(["body"]).findSurround(surround).catch(() => null); - }; - promises.push(surroundQuery); - } else { - promises.push(() => Promise.resolve(null)); - } - return await Promise.all(promises.map((promise) => promise())).then(async ([ - _navigation, - _globals, - _page, - _surround - ]) => { - var _a2, _b2; - if (_navigation) { - navigation.value = _navigation; - } - if (_globals) { - globals.value = _globals; - } - if (_surround) { - surrounds.value[_path] = _surround; - } - const redirectTo = (_page == null ? void 0 : _page.redirect) || ((_b2 = (_a2 = _page == null ? void 0 : _page._dir) == null ? void 0 : _a2.navigation) == null ? void 0 : _b2.redirect); - if (redirectTo) { - pages.value[_path] = _page; - return redirectTo; - } - if (_page) { - const layoutName = findLayout(to, _page, _navigation, _globals); - const layout = layouts[layoutName]; - if (layout && typeof layout === "function") { - await layout(); - } - to.meta.layout = layoutName; - _page.layout = layoutName; - pages.value[_path] = _page; - } - await nuxt.callHook("content:document-driven:finish", { route: to, dedup, page: _page, navigation: _navigation, globals: _globals, surround: _surround }); - }); - }; - addRouteMiddleware(async (to, from) => { - if (to.path.includes("favicon.ico")) { - return; - } - const redirect = await refresh(to, false); - if (redirect) { - if (hasProtocol(redirect)) { - return callWithNuxt(nuxt, navigateTo, [redirect, { external: true }]); - } else { - return redirect; - } - } - }); - { - delete nuxt.payload.prerenderedAt; - } - nuxt.hook("app:data:refresh", async () => false); -}); -const stateColors = (value) => { - return { - color: `{elements.state.${value}.color.primary} !important`, - backgroundColor: `{elements.state.${value}.backgroundColor.primary} !important`, - borderColor: `{elements.state.${value}.borderColor.primary} !important`, - ":deep(p code)": { - color: `{elements.state.${value}.color.secondary} !important`, - backgroundColor: `{elements.state.${value}.backgroundColor.secondary} !important` - }, - ":deep(code)": { - color: `{elements.state.${value}.color.primary} !important`, - backgroundColor: `{elements.state.${value}.backgroundColor.secondary} !important` - }, - ":deep(a code)": { - borderColor: `{elements.state.${value}.borderColor.primary} !important` - }, - ":deep(a)": { - borderColor: "currentColor", - code: { - backgroundColor: `{elements.state.${value}.backgroundColor.primary} !important` - }, - "&:hover": { - color: `{elements.state.${value}.color.secondary} !important`, - borderColor: "currentColor !important", - code: { - backgroundColor: `{elements.state.${value}.backgroundColor.secondary} !important`, - color: `{elements.state.${value}.color.secondary} !important`, - borderColor: `{elements.state.${value}.borderColor.secondary} !important` - } - } - } - }; -}; -const my = (value) => { - return { - marginTop: value, - marginBottom: value - }; -}; -const mx = (value) => { - return { - marginLeft: value, - marginRight: value - }; -}; -const py = (value) => { - return { - paddingTop: value, - paddingBottom: value - }; -}; -const px = (value) => { - return { - paddingLeft: value, - paddingRight: value - }; -}; -const truncate = { - overflow: "hidden", - textOverflow: "ellipsis", - whiteSpace: "nowrap" -}; -const lineClamp = (lines) => ({ - "overflow": "hidden", - "display": "-webkit-box", - "-webkit-box-orient": "vertical", - "-webkit-line-clamp": lines -}); -const text = (size) => ({ - fontSize: `{text.${size}.fontSize}`, - lineHeight: `{text.${size}.lineHeight}` -}); -const utils = { stateColors, my, mx, py, px, truncate, lineClamp, text }; -const theme = { - "color": { - "primary": { - "50": { - "value": "#fff2cc", - "variable": "var(--color-primary-50)", - "original": "#fff2cc" - }, - "100": { - "value": "#ffe599", - "variable": "var(--color-primary-100)", - "original": "#ffe599" - }, - "200": { - "value": "#ffd966", - "variable": "var(--color-primary-200)", - "original": "#ffd966" - }, - "300": { - "value": "#f1c232", - "variable": "var(--color-primary-300)", - "original": "#f1c232" - }, - "400": { - "value": "#f1c232", - "variable": "var(--color-primary-400)", - "original": "#f1c232" - }, - "500": { - "value": "#f1c232", - "variable": "var(--color-primary-500)", - "original": "#f1c232" - }, - "600": { - "value": "#f1c232", - "variable": "var(--color-primary-600)", - "original": "#f1c232" - }, - "700": { - "value": "#f1c232", - "variable": "var(--color-primary-700)", - "original": "#f1c232" - }, - "800": { - "value": "#f1c232", - "variable": "var(--color-primary-800)", - "original": "#f1c232" - }, - "900": { - "value": "#f1c232", - "variable": "var(--color-primary-900)", - "original": "#f1c232" - } - }, - "white": { - "value": "#ffffff", - "variable": "var(--color-white)", - "original": "#ffffff" - }, - "black": { - "value": "#0c0c0d", - "variable": "var(--color-black)", - "original": "#0c0c0d" - }, - "secondary": { - "50": { - "value": "var(--color-gray-50)", - "variable": "var(--color-secondary-50)", - "original": "{color.gray.50}" - }, - "100": { - "value": "var(--color-gray-100)", - "variable": "var(--color-secondary-100)", - "original": "{color.gray.100}" - }, - "200": { - "value": "var(--color-gray-200)", - "variable": "var(--color-secondary-200)", - "original": "{color.gray.200}" - }, - "300": { - "value": "var(--color-gray-300)", - "variable": "var(--color-secondary-300)", - "original": "{color.gray.300}" - }, - "400": { - "value": "var(--color-gray-400)", - "variable": "var(--color-secondary-400)", - "original": "{color.gray.400}" - }, - "500": { - "value": "var(--color-gray-500)", - "variable": "var(--color-secondary-500)", - "original": "{color.gray.500}" - }, - "600": { - "value": "var(--color-gray-600)", - "variable": "var(--color-secondary-600)", - "original": "{color.gray.600}" - }, - "700": { - "value": "var(--color-gray-700)", - "variable": "var(--color-secondary-700)", - "original": "{color.gray.700}" - }, - "800": { - "value": "var(--color-gray-800)", - "variable": "var(--color-secondary-800)", - "original": "{color.gray.800}" - }, - "900": { - "value": "var(--color-gray-900)", - "variable": "var(--color-secondary-900)", - "original": "{color.gray.900}" - } - }, - "gray": { - "50": { - "value": "#fafafa", - "variable": "var(--color-gray-50)", - "original": "#fafafa" - }, - "100": { - "value": "#f4f4f5", - "variable": "var(--color-gray-100)", - "original": "#f4f4f5" - }, - "200": { - "value": "#e4e4e7", - "variable": "var(--color-gray-200)", - "original": "#e4e4e7" - }, - "300": { - "value": "#D4d4d8", - "variable": "var(--color-gray-300)", - "original": "#D4d4d8" - }, - "400": { - "value": "#a1a1aa", - "variable": "var(--color-gray-400)", - "original": "#a1a1aa" - }, - "500": { - "value": "#71717A", - "variable": "var(--color-gray-500)", - "original": "#71717A" - }, - "600": { - "value": "#52525B", - "variable": "var(--color-gray-600)", - "original": "#52525B" - }, - "700": { - "value": "#3f3f46", - "variable": "var(--color-gray-700)", - "original": "#3f3f46" - }, - "800": { - "value": "#27272A", - "variable": "var(--color-gray-800)", - "original": "#27272A" - }, - "900": { - "value": "#18181B", - "variable": "var(--color-gray-900)", - "original": "#18181B" - } - }, - "green": { - "50": { - "value": "#d6ffee", - "variable": "var(--color-green-50)", - "original": "#d6ffee" - }, - "100": { - "value": "#acffdd", - "variable": "var(--color-green-100)", - "original": "#acffdd" - }, - "200": { - "value": "#83ffcc", - "variable": "var(--color-green-200)", - "original": "#83ffcc" - }, - "300": { - "value": "#30ffaa", - "variable": "var(--color-green-300)", - "original": "#30ffaa" - }, - "400": { - "value": "#00dc82", - "variable": "var(--color-green-400)", - "original": "#00dc82" - }, - "500": { - "value": "#00bd6f", - "variable": "var(--color-green-500)", - "original": "#00bd6f" - }, - "600": { - "value": "#009d5d", - "variable": "var(--color-green-600)", - "original": "#009d5d" - }, - "700": { - "value": "#007e4a", - "variable": "var(--color-green-700)", - "original": "#007e4a" - }, - "800": { - "value": "#005e38", - "variable": "var(--color-green-800)", - "original": "#005e38" - }, - "900": { - "value": "#003f25", - "variable": "var(--color-green-900)", - "original": "#003f25" - } - }, - "yellow": { - "50": { - "value": "#fdf6db", - "variable": "var(--color-yellow-50)", - "original": "#fdf6db" - }, - "100": { - "value": "#fcedb7", - "variable": "var(--color-yellow-100)", - "original": "#fcedb7" - }, - "200": { - "value": "#fae393", - "variable": "var(--color-yellow-200)", - "original": "#fae393" - }, - "300": { - "value": "#f8da70", - "variable": "var(--color-yellow-300)", - "original": "#f8da70" - }, - "400": { - "value": "#f7d14c", - "variable": "var(--color-yellow-400)", - "original": "#f7d14c" - }, - "500": { - "value": "#f5c828", - "variable": "var(--color-yellow-500)", - "original": "#f5c828" - }, - "600": { - "value": "#daac0a", - "variable": "var(--color-yellow-600)", - "original": "#daac0a" - }, - "700": { - "value": "#a38108", - "variable": "var(--color-yellow-700)", - "original": "#a38108" - }, - "800": { - "value": "#6d5605", - "variable": "var(--color-yellow-800)", - "original": "#6d5605" - }, - "900": { - "value": "#362b03", - "variable": "var(--color-yellow-900)", - "original": "#362b03" - } - }, - "orange": { - "50": { - "value": "#ffe9d9", - "variable": "var(--color-orange-50)", - "original": "#ffe9d9" - }, - "100": { - "value": "#ffd3b3", - "variable": "var(--color-orange-100)", - "original": "#ffd3b3" - }, - "200": { - "value": "#ffbd8d", - "variable": "var(--color-orange-200)", - "original": "#ffbd8d" - }, - "300": { - "value": "#ffa666", - "variable": "var(--color-orange-300)", - "original": "#ffa666" - }, - "400": { - "value": "#ff9040", - "variable": "var(--color-orange-400)", - "original": "#ff9040" - }, - "500": { - "value": "#ff7a1a", - "variable": "var(--color-orange-500)", - "original": "#ff7a1a" - }, - "600": { - "value": "#e15e00", - "variable": "var(--color-orange-600)", - "original": "#e15e00" - }, - "700": { - "value": "#a94700", - "variable": "var(--color-orange-700)", - "original": "#a94700" - }, - "800": { - "value": "#702f00", - "variable": "var(--color-orange-800)", - "original": "#702f00" - }, - "900": { - "value": "#381800", - "variable": "var(--color-orange-900)", - "original": "#381800" - } - }, - "red": { - "50": { - "value": "#ffdbd9", - "variable": "var(--color-red-50)", - "original": "#ffdbd9" - }, - "100": { - "value": "#ffb7b3", - "variable": "var(--color-red-100)", - "original": "#ffb7b3" - }, - "200": { - "value": "#ff948d", - "variable": "var(--color-red-200)", - "original": "#ff948d" - }, - "300": { - "value": "#ff7066", - "variable": "var(--color-red-300)", - "original": "#ff7066" - }, - "400": { - "value": "#ff4c40", - "variable": "var(--color-red-400)", - "original": "#ff4c40" - }, - "500": { - "value": "#ff281a", - "variable": "var(--color-red-500)", - "original": "#ff281a" - }, - "600": { - "value": "#e10e00", - "variable": "var(--color-red-600)", - "original": "#e10e00" - }, - "700": { - "value": "#a90a00", - "variable": "var(--color-red-700)", - "original": "#a90a00" - }, - "800": { - "value": "#700700", - "variable": "var(--color-red-800)", - "original": "#700700" - }, - "900": { - "value": "#380300", - "variable": "var(--color-red-900)", - "original": "#380300" - } - }, - "pear": { - "50": { - "value": "#f7f8dc", - "variable": "var(--color-pear-50)", - "original": "#f7f8dc" - }, - "100": { - "value": "#eff0ba", - "variable": "var(--color-pear-100)", - "original": "#eff0ba" - }, - "200": { - "value": "#e8e997", - "variable": "var(--color-pear-200)", - "original": "#e8e997" - }, - "300": { - "value": "#e0e274", - "variable": "var(--color-pear-300)", - "original": "#e0e274" - }, - "400": { - "value": "#d8da52", - "variable": "var(--color-pear-400)", - "original": "#d8da52" - }, - "500": { - "value": "#d0d32f", - "variable": "var(--color-pear-500)", - "original": "#d0d32f" - }, - "600": { - "value": "#a8aa24", - "variable": "var(--color-pear-600)", - "original": "#a8aa24" - }, - "700": { - "value": "#7e801b", - "variable": "var(--color-pear-700)", - "original": "#7e801b" - }, - "800": { - "value": "#545512", - "variable": "var(--color-pear-800)", - "original": "#545512" - }, - "900": { - "value": "#2a2b09", - "variable": "var(--color-pear-900)", - "original": "#2a2b09" - } - }, - "teal": { - "50": { - "value": "#d7faf8", - "variable": "var(--color-teal-50)", - "original": "#d7faf8" - }, - "100": { - "value": "#aff4f0", - "variable": "var(--color-teal-100)", - "original": "#aff4f0" - }, - "200": { - "value": "#87efe9", - "variable": "var(--color-teal-200)", - "original": "#87efe9" - }, - "300": { - "value": "#5fe9e1", - "variable": "var(--color-teal-300)", - "original": "#5fe9e1" - }, - "400": { - "value": "#36e4da", - "variable": "var(--color-teal-400)", - "original": "#36e4da" - }, - "500": { - "value": "#1cd1c6", - "variable": "var(--color-teal-500)", - "original": "#1cd1c6" - }, - "600": { - "value": "#16a79e", - "variable": "var(--color-teal-600)", - "original": "#16a79e" - }, - "700": { - "value": "#117d77", - "variable": "var(--color-teal-700)", - "original": "#117d77" - }, - "800": { - "value": "#0b544f", - "variable": "var(--color-teal-800)", - "original": "#0b544f" - }, - "900": { - "value": "#062a28", - "variable": "var(--color-teal-900)", - "original": "#062a28" - } - }, - "lightblue": { - "50": { - "value": "#d9f8ff", - "variable": "var(--color-lightblue-50)", - "original": "#d9f8ff" - }, - "100": { - "value": "#b3f1ff", - "variable": "var(--color-lightblue-100)", - "original": "#b3f1ff" - }, - "200": { - "value": "#8deaff", - "variable": "var(--color-lightblue-200)", - "original": "#8deaff" - }, - "300": { - "value": "#66e4ff", - "variable": "var(--color-lightblue-300)", - "original": "#66e4ff" - }, - "400": { - "value": "#40ddff", - "variable": "var(--color-lightblue-400)", - "original": "#40ddff" - }, - "500": { - "value": "#1ad6ff", - "variable": "var(--color-lightblue-500)", - "original": "#1ad6ff" - }, - "600": { - "value": "#00b9e1", - "variable": "var(--color-lightblue-600)", - "original": "#00b9e1" - }, - "700": { - "value": "#008aa9", - "variable": "var(--color-lightblue-700)", - "original": "#008aa9" - }, - "800": { - "value": "#005c70", - "variable": "var(--color-lightblue-800)", - "original": "#005c70" - }, - "900": { - "value": "#002e38", - "variable": "var(--color-lightblue-900)", - "original": "#002e38" - } - }, - "blue": { - "50": { - "value": "#d9f1ff", - "variable": "var(--color-blue-50)", - "original": "#d9f1ff" - }, - "100": { - "value": "#b3e4ff", - "variable": "var(--color-blue-100)", - "original": "#b3e4ff" - }, - "200": { - "value": "#8dd6ff", - "variable": "var(--color-blue-200)", - "original": "#8dd6ff" - }, - "300": { - "value": "#66c8ff", - "variable": "var(--color-blue-300)", - "original": "#66c8ff" - }, - "400": { - "value": "#40bbff", - "variable": "var(--color-blue-400)", - "original": "#40bbff" - }, - "500": { - "value": "#1aadff", - "variable": "var(--color-blue-500)", - "original": "#1aadff" - }, - "600": { - "value": "#0090e1", - "variable": "var(--color-blue-600)", - "original": "#0090e1" - }, - "700": { - "value": "#006ca9", - "variable": "var(--color-blue-700)", - "original": "#006ca9" - }, - "800": { - "value": "#004870", - "variable": "var(--color-blue-800)", - "original": "#004870" - }, - "900": { - "value": "#002438", - "variable": "var(--color-blue-900)", - "original": "#002438" - } - }, - "indigoblue": { - "50": { - "value": "#d9e5ff", - "variable": "var(--color-indigoblue-50)", - "original": "#d9e5ff" - }, - "100": { - "value": "#b3cbff", - "variable": "var(--color-indigoblue-100)", - "original": "#b3cbff" - }, - "200": { - "value": "#8db0ff", - "variable": "var(--color-indigoblue-200)", - "original": "#8db0ff" - }, - "300": { - "value": "#6696ff", - "variable": "var(--color-indigoblue-300)", - "original": "#6696ff" - }, - "400": { - "value": "#407cff", - "variable": "var(--color-indigoblue-400)", - "original": "#407cff" - }, - "500": { - "value": "#1a62ff", - "variable": "var(--color-indigoblue-500)", - "original": "#1a62ff" - }, - "600": { - "value": "#0047e1", - "variable": "var(--color-indigoblue-600)", - "original": "#0047e1" - }, - "700": { - "value": "#0035a9", - "variable": "var(--color-indigoblue-700)", - "original": "#0035a9" - }, - "800": { - "value": "#002370", - "variable": "var(--color-indigoblue-800)", - "original": "#002370" - }, - "900": { - "value": "#001238", - "variable": "var(--color-indigoblue-900)", - "original": "#001238" - } - }, - "royalblue": { - "50": { - "value": "#dfdbfb", - "variable": "var(--color-royalblue-50)", - "original": "#dfdbfb" - }, - "100": { - "value": "#c0b7f7", - "variable": "var(--color-royalblue-100)", - "original": "#c0b7f7" - }, - "200": { - "value": "#a093f3", - "variable": "var(--color-royalblue-200)", - "original": "#a093f3" - }, - "300": { - "value": "#806ff0", - "variable": "var(--color-royalblue-300)", - "original": "#806ff0" - }, - "400": { - "value": "#614bec", - "variable": "var(--color-royalblue-400)", - "original": "#614bec" - }, - "500": { - "value": "#4127e8", - "variable": "var(--color-royalblue-500)", - "original": "#4127e8" - }, - "600": { - "value": "#2c15c4", - "variable": "var(--color-royalblue-600)", - "original": "#2c15c4" - }, - "700": { - "value": "#211093", - "variable": "var(--color-royalblue-700)", - "original": "#211093" - }, - "800": { - "value": "#160a62", - "variable": "var(--color-royalblue-800)", - "original": "#160a62" - }, - "900": { - "value": "#0b0531", - "variable": "var(--color-royalblue-900)", - "original": "#0b0531" - } - }, - "purple": { - "50": { - "value": "#ead9ff", - "variable": "var(--color-purple-50)", - "original": "#ead9ff" - }, - "100": { - "value": "#d5b3ff", - "variable": "var(--color-purple-100)", - "original": "#d5b3ff" - }, - "200": { - "value": "#c08dff", - "variable": "var(--color-purple-200)", - "original": "#c08dff" - }, - "300": { - "value": "#ab66ff", - "variable": "var(--color-purple-300)", - "original": "#ab66ff" - }, - "400": { - "value": "#9640ff", - "variable": "var(--color-purple-400)", - "original": "#9640ff" - }, - "500": { - "value": "#811aff", - "variable": "var(--color-purple-500)", - "original": "#811aff" - }, - "600": { - "value": "#6500e1", - "variable": "var(--color-purple-600)", - "original": "#6500e1" - }, - "700": { - "value": "#4c00a9", - "variable": "var(--color-purple-700)", - "original": "#4c00a9" - }, - "800": { - "value": "#330070", - "variable": "var(--color-purple-800)", - "original": "#330070" - }, - "900": { - "value": "#190038", - "variable": "var(--color-purple-900)", - "original": "#190038" - } - }, - "pink": { - "50": { - "value": "#ffd9f2", - "variable": "var(--color-pink-50)", - "original": "#ffd9f2" - }, - "100": { - "value": "#ffb3e5", - "variable": "var(--color-pink-100)", - "original": "#ffb3e5" - }, - "200": { - "value": "#ff8dd8", - "variable": "var(--color-pink-200)", - "original": "#ff8dd8" - }, - "300": { - "value": "#ff66cc", - "variable": "var(--color-pink-300)", - "original": "#ff66cc" - }, - "400": { - "value": "#ff40bf", - "variable": "var(--color-pink-400)", - "original": "#ff40bf" - }, - "500": { - "value": "#ff1ab2", - "variable": "var(--color-pink-500)", - "original": "#ff1ab2" - }, - "600": { - "value": "#e10095", - "variable": "var(--color-pink-600)", - "original": "#e10095" - }, - "700": { - "value": "#a90070", - "variable": "var(--color-pink-700)", - "original": "#a90070" - }, - "800": { - "value": "#70004b", - "variable": "var(--color-pink-800)", - "original": "#70004b" - }, - "900": { - "value": "#380025", - "variable": "var(--color-pink-900)", - "original": "#380025" - } - }, - "ruby": { - "50": { - "value": "#ffd9e4", - "variable": "var(--color-ruby-50)", - "original": "#ffd9e4" - }, - "100": { - "value": "#ffb3c9", - "variable": "var(--color-ruby-100)", - "original": "#ffb3c9" - }, - "200": { - "value": "#ff8dae", - "variable": "var(--color-ruby-200)", - "original": "#ff8dae" - }, - "300": { - "value": "#ff6694", - "variable": "var(--color-ruby-300)", - "original": "#ff6694" - }, - "400": { - "value": "#ff4079", - "variable": "var(--color-ruby-400)", - "original": "#ff4079" - }, - "500": { - "value": "#ff1a5e", - "variable": "var(--color-ruby-500)", - "original": "#ff1a5e" - }, - "600": { - "value": "#e10043", - "variable": "var(--color-ruby-600)", - "original": "#e10043" - }, - "700": { - "value": "#a90032", - "variable": "var(--color-ruby-700)", - "original": "#a90032" - }, - "800": { - "value": "#700021", - "variable": "var(--color-ruby-800)", - "original": "#700021" - }, - "900": { - "value": "#380011", - "variable": "var(--color-ruby-900)", - "original": "#380011" - } - } - }, - "elements": { - "text": { - "primary": { - "color": { - "static": { - "value": { - "initial": "var(--color-gray-900)", - "dark": "var(--color-gray-50)" - }, - "variable": "var(--elements-text-primary-color-static)", - "original": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - }, - "secondary": { - "color": { - "static": { - "value": { - "initial": "var(--color-gray-500)", - "dark": "var(--color-gray-400)" - }, - "variable": "var(--elements-text-secondary-color-static)", - "original": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "var(--color-gray-700)", - "dark": "var(--color-gray-200)" - }, - "variable": "var(--elements-text-secondary-color-hover)", - "original": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - }, - "container": { - "maxWidth": { - "value": "80rem", - "variable": "var(--elements-container-maxWidth)", - "original": "80rem" - }, - "padding": { - "mobile": { - "value": "var(--space-4)", - "variable": "var(--elements-container-padding-mobile)", - "original": "{space.4}" - }, - "xs": { - "value": "var(--space-4)", - "variable": "var(--elements-container-padding-xs)", - "original": "{space.4}" - }, - "sm": { - "value": "var(--space-6)", - "variable": "var(--elements-container-padding-sm)", - "original": "{space.6}" - }, - "md": { - "value": "var(--space-6)", - "variable": "var(--elements-container-padding-md)", - "original": "{space.6}" - } - } - }, - "backdrop": { - "filter": { - "value": "saturate(200%) blur(20px)", - "variable": "var(--elements-backdrop-filter)", - "original": "saturate(200%) blur(20px)" - }, - "background": { - "value": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - }, - "variable": "var(--elements-backdrop-background)", - "original": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - }, - "border": { - "primary": { - "static": { - "value": { - "initial": "var(--color-gray-100)", - "dark": "var(--color-gray-900)" - }, - "variable": "var(--elements-border-primary-static)", - "original": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - }, - "hover": { - "value": { - "initial": "var(--color-gray-200)", - "dark": "var(--color-gray-800)" - }, - "variable": "var(--elements-border-primary-hover)", - "original": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "secondary": { - "static": { - "value": { - "initial": "var(--color-gray-200)", - "dark": "var(--color-gray-800)" - }, - "variable": "var(--elements-border-secondary-static)", - "original": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - }, - "hover": { - "value": { - "initial": "", - "dark": "" - }, - "variable": "var(--elements-border-secondary-hover)", - "original": { - "initial": "", - "dark": "" - } - } - } - }, - "surface": { - "background": { - "base": { - "value": { - "initial": "var(--color-gray-100)", - "dark": "var(--color-gray-900)" - }, - "variable": "var(--elements-surface-background-base)", - "original": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - }, - "state": { - "primary": { - "color": { - "primary": { - "value": { - "initial": "var(--color-primary-600)", - "dark": "var(--color-primary-400)" - }, - "variable": "var(--elements-state-primary-color-primary)", - "original": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-primary-700)", - "dark": "var(--color-primary-200)" - }, - "variable": "var(--elements-state-primary-color-secondary)", - "original": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "var(--color-primary-50)", - "dark": "var(--color-primary-900)" - }, - "variable": "var(--elements-state-primary-backgroundColor-primary)", - "original": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-primary-100)", - "dark": "var(--color-primary-800)" - }, - "variable": "var(--elements-state-primary-backgroundColor-secondary)", - "original": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "var(--color-primary-100)", - "dark": "var(--color-primary-800)" - }, - "variable": "var(--elements-state-primary-borderColor-primary)", - "original": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-primary-200)", - "dark": "var(--color-primary-700)" - }, - "variable": "var(--elements-state-primary-borderColor-secondary)", - "original": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - }, - "info": { - "color": { - "primary": { - "value": { - "initial": "var(--color-blue-500)", - "dark": "var(--color-blue-400)" - }, - "variable": "var(--elements-state-info-color-primary)", - "original": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-blue-600)", - "dark": "var(--color-blue-200)" - }, - "variable": "var(--elements-state-info-color-secondary)", - "original": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "var(--color-blue-50)", - "dark": "var(--color-blue-900)" - }, - "variable": "var(--elements-state-info-backgroundColor-primary)", - "original": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-blue-100)", - "dark": "var(--color-blue-800)" - }, - "variable": "var(--elements-state-info-backgroundColor-secondary)", - "original": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "var(--color-blue-100)", - "dark": "var(--color-blue-800)" - }, - "variable": "var(--elements-state-info-borderColor-primary)", - "original": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-blue-200)", - "dark": "var(--color-blue-700)" - }, - "variable": "var(--elements-state-info-borderColor-secondary)", - "original": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - }, - "success": { - "color": { - "primary": { - "value": { - "initial": "var(--color-green-500)", - "dark": "var(--color-green-400)" - }, - "variable": "var(--elements-state-success-color-primary)", - "original": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-green-600)", - "dark": "var(--color-green-200)" - }, - "variable": "var(--elements-state-success-color-secondary)", - "original": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "var(--color-green-50)", - "dark": "var(--color-green-900)" - }, - "variable": "var(--elements-state-success-backgroundColor-primary)", - "original": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-green-100)", - "dark": "var(--color-green-800)" - }, - "variable": "var(--elements-state-success-backgroundColor-secondary)", - "original": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "var(--color-green-100)", - "dark": "var(--color-green-800)" - }, - "variable": "var(--elements-state-success-borderColor-primary)", - "original": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-green-200)", - "dark": "var(--color-green-700)" - }, - "variable": "var(--elements-state-success-borderColor-secondary)", - "original": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - }, - "warning": { - "color": { - "primary": { - "value": { - "initial": "var(--color-yellow-600)", - "dark": "var(--color-yellow-400)" - }, - "variable": "var(--elements-state-warning-color-primary)", - "original": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-yellow-700)", - "dark": "var(--color-yellow-200)" - }, - "variable": "var(--elements-state-warning-color-secondary)", - "original": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "var(--color-yellow-50)", - "dark": "var(--color-yellow-900)" - }, - "variable": "var(--elements-state-warning-backgroundColor-primary)", - "original": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-yellow-100)", - "dark": "var(--color-yellow-800)" - }, - "variable": "var(--elements-state-warning-backgroundColor-secondary)", - "original": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "var(--color-yellow-100)", - "dark": "var(--color-yellow-800)" - }, - "variable": "var(--elements-state-warning-borderColor-primary)", - "original": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-yellow-200)", - "dark": "var(--color-yellow-700)" - }, - "variable": "var(--elements-state-warning-borderColor-secondary)", - "original": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - }, - "danger": { - "color": { - "primary": { - "value": { - "initial": "var(--color-red-500)", - "dark": "var(--color-red-300)" - }, - "variable": "var(--elements-state-danger-color-primary)", - "original": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-red-600)", - "dark": "var(--color-red-200)" - }, - "variable": "var(--elements-state-danger-color-secondary)", - "original": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "var(--color-red-50)", - "dark": "var(--color-red-900)" - }, - "variable": "var(--elements-state-danger-backgroundColor-primary)", - "original": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-red-100)", - "dark": "var(--color-red-800)" - }, - "variable": "var(--elements-state-danger-backgroundColor-secondary)", - "original": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "var(--color-red-100)", - "dark": "var(--color-red-800)" - }, - "variable": "var(--elements-state-danger-borderColor-primary)", - "original": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "var(--color-red-200)", - "dark": "var(--color-red-700)" - }, - "variable": "var(--elements-state-danger-borderColor-secondary)", - "original": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - } - }, - "typography": { - "verticalMargin": { - "sm": { - "value": "16px", - "variable": "var(--typography-verticalMargin-sm)", - "original": "16px" - }, - "base": { - "value": "32px", - "variable": "var(--typography-verticalMargin-base)", - "original": "32px" - } - }, - "letterSpacing": { - "tight": { - "value": "-0.025em", - "variable": "var(--typography-letterSpacing-tight)", - "original": "-0.025em" - }, - "wide": { - "value": "0.025em", - "variable": "var(--typography-letterSpacing-wide)", - "original": "0.025em" - } - }, - "fontSize": { - "xs": { - "value": "12px", - "variable": "var(--typography-fontSize-xs)", - "original": "12px" - }, - "sm": { - "value": "14px", - "variable": "var(--typography-fontSize-sm)", - "original": "14px" - }, - "base": { - "value": "16px", - "variable": "var(--typography-fontSize-base)", - "original": "16px" - }, - "lg": { - "value": "18px", - "variable": "var(--typography-fontSize-lg)", - "original": "18px" - }, - "xl": { - "value": "20px", - "variable": "var(--typography-fontSize-xl)", - "original": "20px" - }, - "2xl": { - "value": "24px", - "variable": "var(--typography-fontSize-2xl)", - "original": "24px" - }, - "3xl": { - "value": "30px", - "variable": "var(--typography-fontSize-3xl)", - "original": "30px" - }, - "4xl": { - "value": "36px", - "variable": "var(--typography-fontSize-4xl)", - "original": "36px" - }, - "5xl": { - "value": "48px", - "variable": "var(--typography-fontSize-5xl)", - "original": "48px" - }, - "6xl": { - "value": "60px", - "variable": "var(--typography-fontSize-6xl)", - "original": "60px" - }, - "7xl": { - "value": "72px", - "variable": "var(--typography-fontSize-7xl)", - "original": "72px" - }, - "8xl": { - "value": "96px", - "variable": "var(--typography-fontSize-8xl)", - "original": "96px" - }, - "9xl": { - "value": "128px", - "variable": "var(--typography-fontSize-9xl)", - "original": "128px" - } - }, - "fontWeight": { - "thin": { - "value": "100", - "variable": "var(--typography-fontWeight-thin)", - "original": "100" - }, - "extralight": { - "value": "200", - "variable": "var(--typography-fontWeight-extralight)", - "original": "200" - }, - "light": { - "value": "300", - "variable": "var(--typography-fontWeight-light)", - "original": "300" - }, - "normal": { - "value": "400", - "variable": "var(--typography-fontWeight-normal)", - "original": "400" - }, - "medium": { - "value": "500", - "variable": "var(--typography-fontWeight-medium)", - "original": "500" - }, - "semibold": { - "value": "600", - "variable": "var(--typography-fontWeight-semibold)", - "original": "600" - }, - "bold": { - "value": "700", - "variable": "var(--typography-fontWeight-bold)", - "original": "700" - }, - "extrabold": { - "value": "800", - "variable": "var(--typography-fontWeight-extrabold)", - "original": "800" - }, - "black": { - "value": "900", - "variable": "var(--typography-fontWeight-black)", - "original": "900" - } - }, - "lead": { - "none": { - "value": "1", - "variable": "var(--typography-lead-none)", - "original": "1" - }, - "tight": { - "value": "1.25", - "variable": "var(--typography-lead-tight)", - "original": "1.25" - }, - "snug": { - "value": "1.375", - "variable": "var(--typography-lead-snug)", - "original": "1.375" - }, - "normal": { - "value": "1.5", - "variable": "var(--typography-lead-normal)", - "original": "1.5" - }, - "relaxed": { - "value": "1.625", - "variable": "var(--typography-lead-relaxed)", - "original": "1.625" - }, - "loose": { - "value": "2", - "variable": "var(--typography-lead-loose)", - "original": "2" - } - }, - "font": { - "display": { - "value": "var(--font-sans)", - "variable": "var(--typography-font-display)", - "original": "{font.sans}" - }, - "body": { - "value": "var(--font-sans)", - "variable": "var(--typography-font-body)", - "original": "{font.sans}" - }, - "code": { - "value": "var(--font-mono)", - "variable": "var(--typography-font-code)", - "original": "{font.mono}" - } - }, - "color": { - "primary": { - "50": { - "value": "var(--color-primary-50)", - "variable": "var(--typography-color-primary-50)", - "original": "{color.primary.50}" - }, - "100": { - "value": "var(--color-primary-100)", - "variable": "var(--typography-color-primary-100)", - "original": "{color.primary.100}" - }, - "200": { - "value": "var(--color-primary-200)", - "variable": "var(--typography-color-primary-200)", - "original": "{color.primary.200}" - }, - "300": { - "value": "var(--color-primary-300)", - "variable": "var(--typography-color-primary-300)", - "original": "{color.primary.300}" - }, - "400": { - "value": "var(--color-primary-400)", - "variable": "var(--typography-color-primary-400)", - "original": "{color.primary.400}" - }, - "500": { - "value": "var(--color-primary-500)", - "variable": "var(--typography-color-primary-500)", - "original": "{color.primary.500}" - }, - "600": { - "value": "var(--color-primary-600)", - "variable": "var(--typography-color-primary-600)", - "original": "{color.primary.600}" - }, - "700": { - "value": "var(--color-primary-700)", - "variable": "var(--typography-color-primary-700)", - "original": "{color.primary.700}" - }, - "800": { - "value": "var(--color-primary-800)", - "variable": "var(--typography-color-primary-800)", - "original": "{color.primary.800}" - }, - "900": { - "value": "var(--color-primary-900)", - "variable": "var(--typography-color-primary-900)", - "original": "{color.primary.900}" - } - }, - "secondary": { - "50": { - "value": "var(--color-gray-50)", - "variable": "var(--typography-color-secondary-50)", - "original": "{color.gray.50}" - }, - "100": { - "value": "var(--color-gray-100)", - "variable": "var(--typography-color-secondary-100)", - "original": "{color.gray.100}" - }, - "200": { - "value": "var(--color-gray-200)", - "variable": "var(--typography-color-secondary-200)", - "original": "{color.gray.200}" - }, - "300": { - "value": "var(--color-gray-300)", - "variable": "var(--typography-color-secondary-300)", - "original": "{color.gray.300}" - }, - "400": { - "value": "var(--color-gray-400)", - "variable": "var(--typography-color-secondary-400)", - "original": "{color.gray.400}" - }, - "500": { - "value": "var(--color-gray-500)", - "variable": "var(--typography-color-secondary-500)", - "original": "{color.gray.500}" - }, - "600": { - "value": "var(--color-gray-600)", - "variable": "var(--typography-color-secondary-600)", - "original": "{color.gray.600}" - }, - "700": { - "value": "var(--color-gray-700)", - "variable": "var(--typography-color-secondary-700)", - "original": "{color.gray.700}" - }, - "800": { - "value": "var(--color-gray-800)", - "variable": "var(--typography-color-secondary-800)", - "original": "{color.gray.800}" - }, - "900": { - "value": "var(--color-gray-900)", - "variable": "var(--typography-color-secondary-900)", - "original": "{color.gray.900}" - } - } - } - }, - "prose": { - "p": { - "fontSize": { - "value": "var(--typography-fontSize-base)", - "variable": "var(--prose-p-fontSize)", - "original": "{typography.fontSize.base}" - }, - "lineHeight": { - "value": "var(--typography-lead-normal)", - "variable": "var(--prose-p-lineHeight)", - "original": "{typography.lead.normal}" - }, - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-p-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "br": { - "margin": { - "value": "var(--typography-verticalMargin-base) 0 0 0", - "variable": "var(--prose-p-br-margin)", - "original": "{typography.verticalMargin.base} 0 0 0" - } - } - }, - "h1": { - "margin": { - "value": "0 0 2rem", - "variable": "var(--prose-h1-margin)", - "original": "0 0 2rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-5xl)", - "variable": "var(--prose-h1-fontSize)", - "original": "{typography.fontSize.5xl}" - }, - "lineHeight": { - "value": "var(--typography-lead-tight)", - "variable": "var(--prose-h1-lineHeight)", - "original": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-bold)", - "variable": "var(--prose-h1-fontWeight)", - "original": "{typography.fontWeight.bold}" - }, - "letterSpacing": { - "value": "var(--typography-letterSpacing-tight)", - "variable": "var(--prose-h1-letterSpacing)", - "original": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "var(--typography-fontSize-3xl)", - "variable": "var(--prose-h1-iconSize)", - "original": "{typography.fontSize.3xl}" - } - }, - "h2": { - "margin": { - "value": "3rem 0 2rem", - "variable": "var(--prose-h2-margin)", - "original": "3rem 0 2rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-4xl)", - "variable": "var(--prose-h2-fontSize)", - "original": "{typography.fontSize.4xl}" - }, - "lineHeight": { - "value": "var(--typography-lead-tight)", - "variable": "var(--prose-h2-lineHeight)", - "original": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-h2-fontWeight)", - "original": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "var(--typography-letterSpacing-tight)", - "variable": "var(--prose-h2-letterSpacing)", - "original": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "var(--typography-fontSize-2xl)", - "variable": "var(--prose-h2-iconSize)", - "original": "{typography.fontSize.2xl}" - } - }, - "h3": { - "margin": { - "value": "3rem 0 2rem", - "variable": "var(--prose-h3-margin)", - "original": "3rem 0 2rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-3xl)", - "variable": "var(--prose-h3-fontSize)", - "original": "{typography.fontSize.3xl}" - }, - "lineHeight": { - "value": "var(--typography-lead-snug)", - "variable": "var(--prose-h3-lineHeight)", - "original": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-h3-fontWeight)", - "original": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "var(--typography-letterSpacing-tight)", - "variable": "var(--prose-h3-letterSpacing)", - "original": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "var(--typography-fontSize-xl)", - "variable": "var(--prose-h3-iconSize)", - "original": "{typography.fontSize.xl}" - } - }, - "h4": { - "margin": { - "value": "3rem 0 2rem", - "variable": "var(--prose-h4-margin)", - "original": "3rem 0 2rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-2xl)", - "variable": "var(--prose-h4-fontSize)", - "original": "{typography.fontSize.2xl}" - }, - "lineHeight": { - "value": "var(--typography-lead-snug)", - "variable": "var(--prose-h4-lineHeight)", - "original": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-h4-fontWeight)", - "original": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "var(--typography-letterSpacing-tight)", - "variable": "var(--prose-h4-letterSpacing)", - "original": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "var(--typography-fontSize-lg)", - "variable": "var(--prose-h4-iconSize)", - "original": "{typography.fontSize.lg}" - } - }, - "h5": { - "margin": { - "value": "3rem 0 2rem", - "variable": "var(--prose-h5-margin)", - "original": "3rem 0 2rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-xl)", - "variable": "var(--prose-h5-fontSize)", - "original": "{typography.fontSize.xl}" - }, - "lineHeight": { - "value": "var(--typography-lead-snug)", - "variable": "var(--prose-h5-lineHeight)", - "original": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-h5-fontWeight)", - "original": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "var(--typography-fontSize-lg)", - "variable": "var(--prose-h5-iconSize)", - "original": "{typography.fontSize.lg}" - } - }, - "h6": { - "margin": { - "value": "3rem 0 2rem", - "variable": "var(--prose-h6-margin)", - "original": "3rem 0 2rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-lg)", - "variable": "var(--prose-h6-fontSize)", - "original": "{typography.fontSize.lg}" - }, - "lineHeight": { - "value": "var(--typography-lead-normal)", - "variable": "var(--prose-h6-lineHeight)", - "original": "{typography.lead.normal}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-h6-fontWeight)", - "original": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "var(--typography-fontSize-base)", - "variable": "var(--prose-h6-iconSize)", - "original": "{typography.fontSize.base}" - } - }, - "strong": { - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-strong-fontWeight)", - "original": "{typography.fontWeight.semibold}" - } - }, - "img": { - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-img-margin)", - "original": "{typography.verticalMargin.base} 0" - } - }, - "a": { - "textDecoration": { - "value": "none", - "variable": "var(--prose-a-textDecoration)", - "original": "none" - }, - "color": { - "static": { - "value": { - "initial": "inherit", - "dark": "inherit" - }, - "variable": "var(--prose-a-color-static)", - "original": { - "initial": "inherit", - "dark": "inherit" - } - }, - "hover": { - "value": { - "initial": "var(--typography-color-primary-500)", - "dark": "var(--typography-color-primary-400)" - }, - "variable": "var(--prose-a-color-hover)", - "original": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - }, - "border": { - "width": { - "value": "1px", - "variable": "var(--prose-a-border-width)", - "original": "1px" - }, - "style": { - "static": { - "value": "dashed", - "variable": "var(--prose-a-border-style-static)", - "original": "dashed" - }, - "hover": { - "value": "solid", - "variable": "var(--prose-a-border-style-hover)", - "original": "solid" - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - }, - "variable": "var(--prose-a-border-color-static)", - "original": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - }, - "variable": "var(--prose-a-border-color-hover)", - "original": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "distance": { - "value": "2px", - "variable": "var(--prose-a-border-distance)", - "original": "2px" - } - }, - "fontWeight": { - "value": "var(--typography-fontWeight-medium)", - "variable": "var(--prose-a-fontWeight)", - "original": "{typography.fontWeight.medium}" - }, - "hasCode": { - "borderBottom": { - "value": "none", - "variable": "var(--prose-a-hasCode-borderBottom)", - "original": "none" - } - }, - "code": { - "border": { - "width": { - "value": "var(--prose-a-border-width)", - "variable": "var(--prose-a-code-border-width)", - "original": "{prose.a.border.width}" - }, - "style": { - "value": "var(--prose-a-border-style-static)", - "variable": "var(--prose-a-code-border-style)", - "original": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "var(--typography-color-secondary-400)", - "dark": "var(--typography-color-secondary-600)" - }, - "variable": "var(--prose-a-code-border-color-static)", - "original": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "var(--typography-color-primary-500)", - "dark": "var(--typography-color-primary-600)" - }, - "variable": "var(--prose-a-code-border-color-hover)", - "original": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - }, - "variable": "var(--prose-a-code-color-static)", - "original": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - }, - "variable": "var(--prose-a-code-color-hover)", - "original": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "background": { - "static": {}, - "hover": { - "value": { - "initial": "var(--typography-color-primary-50)", - "dark": "var(--typography-color-primary-900)" - }, - "variable": "var(--prose-a-code-background-hover)", - "original": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - }, - "blockquote": { - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-blockquote-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 24px", - "variable": "var(--prose-blockquote-padding)", - "original": "0 0 0 24px" - }, - "quotes": { - "value": "'201C' '201D' '2018' '2019'", - "variable": "var(--prose-blockquote-quotes)", - "original": "'201C' '201D' '2018' '2019'" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-500)", - "dark": "var(--typography-color-secondary-400)" - }, - "variable": "var(--prose-blockquote-color)", - "original": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - }, - "border": { - "width": { - "value": "4px", - "variable": "var(--prose-blockquote-border-width)", - "original": "4px" - }, - "style": { - "value": "solid", - "variable": "var(--prose-blockquote-border-style)", - "original": "solid" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-200)", - "dark": "var(--typography-color-secondary-700)" - }, - "variable": "var(--prose-blockquote-border-color)", - "original": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "ul": { - "listStyleType": { - "value": "disc", - "variable": "var(--prose-ul-listStyleType)", - "original": "disc" - }, - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-ul-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px", - "variable": "var(--prose-ul-padding)", - "original": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "var(--typography-color-secondary-400)", - "dark": "var(--typography-color-secondary-500)" - }, - "variable": "var(--prose-ul-li-markerColor)", - "original": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "ol": { - "listStyleType": { - "value": "decimal", - "variable": "var(--prose-ol-listStyleType)", - "original": "decimal" - }, - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-ol-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px", - "variable": "var(--prose-ol-padding)", - "original": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "var(--typography-color-secondary-500)", - "dark": "var(--typography-color-secondary-500)" - }, - "variable": "var(--prose-ol-li-markerColor)", - "original": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "li": { - "margin": { - "value": "var(--typography-verticalMargin-sm) 0", - "variable": "var(--prose-li-margin)", - "original": "{typography.verticalMargin.sm} 0" - }, - "listStylePosition": { - "value": "outside", - "variable": "var(--prose-li-listStylePosition)", - "original": "outside" - } - }, - "hr": { - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-hr-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "style": { - "value": "solid", - "variable": "var(--prose-hr-style)", - "original": "solid" - }, - "width": { - "value": "1px", - "variable": "var(--prose-hr-width)", - "original": "1px" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-200)", - "dark": "var(--typography-color-secondary-800)" - }, - "variable": "var(--prose-hr-color)", - "original": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "table": { - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-table-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "textAlign": { - "value": "left", - "variable": "var(--prose-table-textAlign)", - "original": "left" - }, - "fontSize": { - "value": "var(--typography-fontSize-sm)", - "variable": "var(--prose-table-fontSize)", - "original": "{typography.fontSize.sm}" - }, - "lineHeight": { - "value": "inherit", - "variable": "var(--prose-table-lineHeight)", - "original": "inherit" - } - }, - "thead": { - "border": { - "width": { - "value": "0px", - "variable": "var(--prose-thead-border-width)", - "original": "0px" - }, - "style": { - "value": "solid", - "variable": "var(--prose-thead-border-style)", - "original": "solid" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-300)", - "dark": "var(--typography-color-secondary-600)" - }, - "variable": "var(--prose-thead-border-color)", - "original": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "borderBottom": { - "width": { - "value": "1px", - "variable": "var(--prose-thead-borderBottom-width)", - "original": "1px" - }, - "style": { - "value": "solid", - "variable": "var(--prose-thead-borderBottom-style)", - "original": "solid" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-300)", - "dark": "var(--typography-color-secondary-600)" - }, - "variable": "var(--prose-thead-borderBottom-color)", - "original": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "th": { - "color": { - "value": { - "initial": "var(--typography-color-secondary-600)", - "dark": "var(--typography-color-secondary-400)" - }, - "variable": "var(--prose-th-color)", - "original": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - }, - "padding": { - "value": "0 var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm) var(--typography-verticalMargin-sm)", - "variable": "var(--prose-th-padding)", - "original": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-semibold)", - "variable": "var(--prose-th-fontWeight)", - "original": "{typography.fontWeight.semibold}" - } - }, - "tbody": { - "tr": { - "borderBottom": { - "width": { - "value": "1px", - "variable": "var(--prose-tbody-tr-borderBottom-width)", - "original": "1px" - }, - "style": { - "value": "dashed", - "variable": "var(--prose-tbody-tr-borderBottom-style)", - "original": "dashed" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-300)", - "dark": "var(--typography-color-secondary-700)" - }, - "variable": "var(--prose-tbody-tr-borderBottom-color)", - "original": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "td": { - "padding": { - "value": "var(--typography-verticalMargin-sm)", - "variable": "var(--prose-tbody-td-padding)", - "original": "{typography.verticalMargin.sm}" - } - }, - "code": { - "inline": { - "fontSize": { - "value": "var(--typography-fontSize-sm)", - "variable": "var(--prose-tbody-code-inline-fontSize)", - "original": "{typography.fontSize.sm}" - } - } - } - }, - "code": { - "block": { - "fontSize": { - "value": "var(--typography-fontSize-sm)", - "variable": "var(--prose-code-block-fontSize)", - "original": "{typography.fontSize.sm}" - }, - "margin": { - "value": "var(--typography-verticalMargin-base) 0", - "variable": "var(--prose-code-block-margin)", - "original": "{typography.verticalMargin.base} 0" - }, - "border": { - "width": { - "value": "1px", - "variable": "var(--prose-code-block-border-width)", - "original": "1px" - }, - "style": { - "value": "solid", - "variable": "var(--prose-code-block-border-style)", - "original": "solid" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-200)", - "dark": "var(--typography-color-secondary-800)" - }, - "variable": "var(--prose-code-block-border-color)", - "original": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-700)", - "dark": "var(--typography-color-secondary-200)" - }, - "variable": "var(--prose-code-block-color)", - "original": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "var(--typography-color-secondary-100)", - "dark": "var(--typography-color-secondary-900)" - }, - "variable": "var(--prose-code-block-backgroundColor)", - "original": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - }, - "pre": { - "padding": { - "value": "var(--typography-verticalMargin-sm)", - "variable": "var(--prose-code-block-pre-padding)", - "original": "{typography.verticalMargin.sm}" - } - } - }, - "inline": { - "borderRadius": { - "value": "0.375rem", - "variable": "var(--prose-code-inline-borderRadius)", - "original": "0.375rem" - }, - "padding": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem", - "variable": "var(--prose-code-inline-padding)", - "original": "0.25rem 0.375rem 0.25rem 0.375rem" - }, - "fontSize": { - "value": "var(--typography-fontSize-sm)", - "variable": "var(--prose-code-inline-fontSize)", - "original": "{typography.fontSize.sm}" - }, - "fontWeight": { - "value": "var(--typography-fontWeight-normal)", - "variable": "var(--prose-code-inline-fontWeight)", - "original": "{typography.fontWeight.normal}" - }, - "color": { - "value": { - "initial": "var(--typography-color-secondary-700)", - "dark": "var(--typography-color-secondary-200)" - }, - "variable": "var(--prose-code-inline-color)", - "original": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "var(--typography-color-secondary-100)", - "dark": "var(--typography-color-secondary-900)" - }, - "variable": "var(--prose-code-inline-backgroundColor)", - "original": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - } - }, - "radii": { - "sm": { - "value": "0.375rem", - "variable": "var(--radii-sm)", - "original": "0.375rem" - }, - "md": { - "value": "0.5rem", - "variable": "var(--radii-md)", - "original": "0.5rem" - }, - "lg": { - "value": "0.75rem", - "variable": "var(--radii-lg)", - "original": "0.75rem" - }, - "none": { - "value": "0px", - "variable": "var(--radii-none)", - "original": "0px" - }, - "2xs": { - "value": "0.125rem", - "variable": "var(--radii-2xs)", - "original": "0.125rem" - }, - "xs": { - "value": "0.25rem", - "variable": "var(--radii-xs)", - "original": "0.25rem" - }, - "xl": { - "value": "1rem", - "variable": "var(--radii-xl)", - "original": "1rem" - }, - "2xl": { - "value": "1.5rem", - "variable": "var(--radii-2xl)", - "original": "1.5rem" - }, - "3xl": { - "value": "1.75rem", - "variable": "var(--radii-3xl)", - "original": "1.75rem" - }, - "full": { - "value": "9999px", - "variable": "var(--radii-full)", - "original": "9999px" - } - }, - "fontSize": { - "xs": { - "value": "0.75rem", - "variable": "var(--fontSize-xs)", - "original": "0.75rem" - }, - "sm": { - "value": "0.875rem", - "variable": "var(--fontSize-sm)", - "original": "0.875rem" - }, - "base": { - "value": "1rem", - "variable": "var(--fontSize-base)", - "original": "1rem" - }, - "lg": { - "value": "1.125rem", - "variable": "var(--fontSize-lg)", - "original": "1.125rem" - }, - "xl": { - "value": "1.25rem", - "variable": "var(--fontSize-xl)", - "original": "1.25rem" - }, - "2xl": { - "value": "1.5rem", - "variable": "var(--fontSize-2xl)", - "original": "1.5rem" - }, - "3xl": { - "value": "1.875rem", - "variable": "var(--fontSize-3xl)", - "original": "1.875rem" - }, - "4xl": { - "value": "2.25rem", - "variable": "var(--fontSize-4xl)", - "original": "2.25rem" - }, - "5xl": { - "value": "3rem", - "variable": "var(--fontSize-5xl)", - "original": "3rem" - }, - "6xl": { - "value": "3.75rem", - "variable": "var(--fontSize-6xl)", - "original": "3.75rem" - }, - "7xl": { - "value": "4.5rem", - "variable": "var(--fontSize-7xl)", - "original": "4.5rem" - }, - "8xl": { - "value": "6rem", - "variable": "var(--fontSize-8xl)", - "original": "6rem" - }, - "9xl": { - "value": "8rem", - "variable": "var(--fontSize-9xl)", - "original": "8rem" - } - }, - "lead": { - "1": { - "value": ".025rem", - "variable": "var(--lead-1)", - "original": ".025rem" - }, - "2": { - "value": ".5rem", - "variable": "var(--lead-2)", - "original": ".5rem" - }, - "3": { - "value": ".75rem", - "variable": "var(--lead-3)", - "original": ".75rem" - }, - "4": { - "value": "1rem", - "variable": "var(--lead-4)", - "original": "1rem" - }, - "5": { - "value": "1.25rem", - "variable": "var(--lead-5)", - "original": "1.25rem" - }, - "6": { - "value": "1.5rem", - "variable": "var(--lead-6)", - "original": "1.5rem" - }, - "7": { - "value": "1.75rem", - "variable": "var(--lead-7)", - "original": "1.75rem" - }, - "8": { - "value": "2rem", - "variable": "var(--lead-8)", - "original": "2rem" - }, - "9": { - "value": "2.25rem", - "variable": "var(--lead-9)", - "original": "2.25rem" - }, - "10": { - "value": "2.5rem", - "variable": "var(--lead-10)", - "original": "2.5rem" - }, - "none": { - "value": "1", - "variable": "var(--lead-none)", - "original": "1" - }, - "tight": { - "value": "1.25", - "variable": "var(--lead-tight)", - "original": "1.25" - }, - "snug": { - "value": "1.375", - "variable": "var(--lead-snug)", - "original": "1.375" - }, - "normal": { - "value": "1.5", - "variable": "var(--lead-normal)", - "original": "1.5" - }, - "relaxed": { - "value": "1.625", - "variable": "var(--lead-relaxed)", - "original": "1.625" - }, - "loose": { - "value": "2", - "variable": "var(--lead-loose)", - "original": "2" - } - }, - "font": { - "sans": { - "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji", - "variable": "var(--font-sans)", - "original": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" - }, - "serif": { - "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif", - "variable": "var(--font-serif)", - "original": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" - }, - "mono": { - "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace", - "variable": "var(--font-mono)", - "original": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" - } - }, - "docus": { - "header": { - "height": { - "value": "64px", - "variable": "var(--docus-header-height)", - "original": "64px" - } - }, - "footer": { - "padding": { - "value": "var(--space-4) 0", - "variable": "var(--docus-footer-padding)", - "original": "{space.4} 0" - } - }, - "readableLine": { - "value": "78ch", - "variable": "var(--docus-readableLine)", - "original": "78ch" - }, - "loadingBar": { - "height": { - "value": "3px", - "variable": "var(--docus-loadingBar-height)", - "original": "3px" - }, - "gradientColorStop1": { - "value": "#00dc82", - "variable": "var(--docus-loadingBar-gradientColorStop1)", - "original": "#00dc82" - }, - "gradientColorStop2": { - "value": "#34cdfe", - "variable": "var(--docus-loadingBar-gradientColorStop2)", - "original": "#34cdfe" - }, - "gradientColorStop3": { - "value": "#0047e1", - "variable": "var(--docus-loadingBar-gradientColorStop3)", - "original": "#0047e1" - } - } - }, - "media": { - "xs": { - "value": "(min-width: 475px)", - "variable": "var(--media-xs)", - "original": "(min-width: 475px)" - }, - "sm": { - "value": "(min-width: 640px)", - "variable": "var(--media-sm)", - "original": "(min-width: 640px)" - }, - "md": { - "value": "(min-width: 768px)", - "variable": "var(--media-md)", - "original": "(min-width: 768px)" - }, - "lg": { - "value": "(min-width: 1024px)", - "variable": "var(--media-lg)", - "original": "(min-width: 1024px)" - }, - "xl": { - "value": "(min-width: 1280px)", - "variable": "var(--media-xl)", - "original": "(min-width: 1280px)" - }, - "2xl": { - "value": "(min-width: 1536px)", - "variable": "var(--media-2xl)", - "original": "(min-width: 1536px)" - }, - "rm": { - "value": "(prefers-reduced-motion: reduce)", - "variable": "var(--media-rm)", - "original": "(prefers-reduced-motion: reduce)" - }, - "landscape": { - "value": "only screen and (orientation: landscape)", - "variable": "var(--media-landscape)", - "original": "only screen and (orientation: landscape)" - }, - "portrait": { - "value": "only screen and (orientation: portrait)", - "variable": "var(--media-portrait)", - "original": "only screen and (orientation: portrait)" - } - }, - "width": { - "screen": { - "value": "100vw", - "variable": "var(--width-screen)", - "original": "100vw" - } - }, - "height": { - "screen": { - "value": "100vh", - "variable": "var(--height-screen)", - "original": "100vh" - } - }, - "shadow": { - "xs": { - "value": "0px 1px 2px 0px #000000", - "variable": "var(--shadow-xs)", - "original": "0px 1px 2px 0px #000000" - }, - "sm": { - "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000", - "variable": "var(--shadow-sm)", - "original": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" - }, - "md": { - "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000", - "variable": "var(--shadow-md)", - "original": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" - }, - "lg": { - "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000", - "variable": "var(--shadow-lg)", - "original": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" - }, - "xl": { - "value": "0px 20px 25px -5px var(--color-gray-400), 0px 8px 10px -6px #000000", - "variable": "var(--shadow-xl)", - "original": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" - }, - "2xl": { - "value": "0px 25px 50px -12px var(--color-gray-900)", - "variable": "var(--shadow-2xl)", - "original": "0px 25px 50px -12px {color.gray.900}" - }, - "none": { - "value": "0px 0px 0px 0px transparent", - "variable": "var(--shadow-none)", - "original": "0px 0px 0px 0px transparent" - } - }, - "size": { - "0": { - "value": "0px", - "variable": "var(--size-0)", - "original": "0px" - }, - "2": { - "value": "2px", - "variable": "var(--size-2)", - "original": "2px" - }, - "4": { - "value": "4px", - "variable": "var(--size-4)", - "original": "4px" - }, - "6": { - "value": "6px", - "variable": "var(--size-6)", - "original": "6px" - }, - "8": { - "value": "8px", - "variable": "var(--size-8)", - "original": "8px" - }, - "12": { - "value": "12px", - "variable": "var(--size-12)", - "original": "12px" - }, - "16": { - "value": "16px", - "variable": "var(--size-16)", - "original": "16px" - }, - "20": { - "value": "20px", - "variable": "var(--size-20)", - "original": "20px" - }, - "24": { - "value": "24px", - "variable": "var(--size-24)", - "original": "24px" - }, - "32": { - "value": "32px", - "variable": "var(--size-32)", - "original": "32px" - }, - "40": { - "value": "40px", - "variable": "var(--size-40)", - "original": "40px" - }, - "48": { - "value": "48px", - "variable": "var(--size-48)", - "original": "48px" - }, - "56": { - "value": "56px", - "variable": "var(--size-56)", - "original": "56px" - }, - "64": { - "value": "64px", - "variable": "var(--size-64)", - "original": "64px" - }, - "80": { - "value": "80px", - "variable": "var(--size-80)", - "original": "80px" - }, - "104": { - "value": "104px", - "variable": "var(--size-104)", - "original": "104px" - }, - "200": { - "value": "200px", - "variable": "var(--size-200)", - "original": "200px" - }, - "xs": { - "value": "20rem", - "variable": "var(--size-xs)", - "original": "20rem" - }, - "sm": { - "value": "24rem", - "variable": "var(--size-sm)", - "original": "24rem" - }, - "md": { - "value": "28rem", - "variable": "var(--size-md)", - "original": "28rem" - }, - "lg": { - "value": "32rem", - "variable": "var(--size-lg)", - "original": "32rem" - }, - "xl": { - "value": "36rem", - "variable": "var(--size-xl)", - "original": "36rem" - }, - "2xl": { - "value": "42rem", - "variable": "var(--size-2xl)", - "original": "42rem" - }, - "3xl": { - "value": "48rem", - "variable": "var(--size-3xl)", - "original": "48rem" - }, - "4xl": { - "value": "56rem", - "variable": "var(--size-4xl)", - "original": "56rem" - }, - "5xl": { - "value": "64rem", - "variable": "var(--size-5xl)", - "original": "64rem" - }, - "6xl": { - "value": "72rem", - "variable": "var(--size-6xl)", - "original": "72rem" - }, - "7xl": { - "value": "80rem", - "variable": "var(--size-7xl)", - "original": "80rem" - }, - "full": { - "value": "100%", - "variable": "var(--size-full)", - "original": "100%" - } - }, - "space": { - "0": { - "value": "0px", - "variable": "var(--space-0)", - "original": "0px" - }, - "1": { - "value": "0.25rem", - "variable": "var(--space-1)", - "original": "0.25rem" - }, - "2": { - "value": "0.5rem", - "variable": "var(--space-2)", - "original": "0.5rem" - }, - "3": { - "value": "0.75rem", - "variable": "var(--space-3)", - "original": "0.75rem" - }, - "4": { - "value": "1rem", - "variable": "var(--space-4)", - "original": "1rem" - }, - "5": { - "value": "1.25rem", - "variable": "var(--space-5)", - "original": "1.25rem" - }, - "6": { - "value": "1.5rem", - "variable": "var(--space-6)", - "original": "1.5rem" - }, - "7": { - "value": "1.75rem", - "variable": "var(--space-7)", - "original": "1.75rem" - }, - "8": { - "value": "2rem", - "variable": "var(--space-8)", - "original": "2rem" - }, - "9": { - "value": "2.25rem", - "variable": "var(--space-9)", - "original": "2.25rem" - }, - "10": { - "value": "2.5rem", - "variable": "var(--space-10)", - "original": "2.5rem" - }, - "11": { - "value": "2.75rem", - "variable": "var(--space-11)", - "original": "2.75rem" - }, - "12": { - "value": "3rem", - "variable": "var(--space-12)", - "original": "3rem" - }, - "14": { - "value": "3.5rem", - "variable": "var(--space-14)", - "original": "3.5rem" - }, - "16": { - "value": "4rem", - "variable": "var(--space-16)", - "original": "4rem" - }, - "20": { - "value": "5rem", - "variable": "var(--space-20)", - "original": "5rem" - }, - "24": { - "value": "6rem", - "variable": "var(--space-24)", - "original": "6rem" - }, - "28": { - "value": "7rem", - "variable": "var(--space-28)", - "original": "7rem" - }, - "32": { - "value": "8rem", - "variable": "var(--space-32)", - "original": "8rem" - }, - "36": { - "value": "9rem", - "variable": "var(--space-36)", - "original": "9rem" - }, - "40": { - "value": "10rem", - "variable": "var(--space-40)", - "original": "10rem" - }, - "44": { - "value": "11rem", - "variable": "var(--space-44)", - "original": "11rem" - }, - "48": { - "value": "12rem", - "variable": "var(--space-48)", - "original": "12rem" - }, - "52": { - "value": "13rem", - "variable": "var(--space-52)", - "original": "13rem" - }, - "56": { - "value": "14rem", - "variable": "var(--space-56)", - "original": "14rem" - }, - "60": { - "value": "15rem", - "variable": "var(--space-60)", - "original": "15rem" - }, - "64": { - "value": "16rem", - "variable": "var(--space-64)", - "original": "16rem" - }, - "72": { - "value": "18rem", - "variable": "var(--space-72)", - "original": "18rem" - }, - "80": { - "value": "20rem", - "variable": "var(--space-80)", - "original": "20rem" - }, - "96": { - "value": "24rem", - "variable": "var(--space-96)", - "original": "24rem" - }, - "px": { - "value": "1px", - "variable": "var(--space-px)", - "original": "1px" - }, - "rem": { - "125": { - "value": "0.125rem", - "variable": "var(--space-rem-125)", - "original": "0.125rem" - }, - "375": { - "value": "0.375rem", - "variable": "var(--space-rem-375)", - "original": "0.375rem" - }, - "625": { - "value": "0.625rem", - "variable": "var(--space-rem-625)", - "original": "0.625rem" - }, - "875": { - "value": "0.875rem", - "variable": "var(--space-rem-875)", - "original": "0.875rem" - } - } - }, - "borderWidth": { - "noBorder": { - "value": "0", - "variable": "var(--borderWidth-noBorder)", - "original": "0" - }, - "sm": { - "value": "1px", - "variable": "var(--borderWidth-sm)", - "original": "1px" - }, - "md": { - "value": "2px", - "variable": "var(--borderWidth-md)", - "original": "2px" - }, - "lg": { - "value": "3px", - "variable": "var(--borderWidth-lg)", - "original": "3px" - } - }, - "opacity": { - "noOpacity": { - "value": "0", - "variable": "var(--opacity-noOpacity)", - "original": "0" - }, - "bright": { - "value": "0.1", - "variable": "var(--opacity-bright)", - "original": "0.1" - }, - "light": { - "value": "0.15", - "variable": "var(--opacity-light)", - "original": "0.15" - }, - "soft": { - "value": "0.3", - "variable": "var(--opacity-soft)", - "original": "0.3" - }, - "medium": { - "value": "0.5", - "variable": "var(--opacity-medium)", - "original": "0.5" - }, - "high": { - "value": "0.8", - "variable": "var(--opacity-high)", - "original": "0.8" - }, - "total": { - "value": "1", - "variable": "var(--opacity-total)", - "original": "1" - } - }, - "fontWeight": { - "thin": { - "value": "100", - "variable": "var(--fontWeight-thin)", - "original": "100" - }, - "extralight": { - "value": "200", - "variable": "var(--fontWeight-extralight)", - "original": "200" - }, - "light": { - "value": "300", - "variable": "var(--fontWeight-light)", - "original": "300" - }, - "normal": { - "value": "400", - "variable": "var(--fontWeight-normal)", - "original": "400" - }, - "medium": { - "value": "500", - "variable": "var(--fontWeight-medium)", - "original": "500" - }, - "semibold": { - "value": "600", - "variable": "var(--fontWeight-semibold)", - "original": "600" - }, - "bold": { - "value": "700", - "variable": "var(--fontWeight-bold)", - "original": "700" - }, - "extrabold": { - "value": "800", - "variable": "var(--fontWeight-extrabold)", - "original": "800" - }, - "black": { - "value": "900", - "variable": "var(--fontWeight-black)", - "original": "900" - } - }, - "letterSpacing": { - "tighter": { - "value": "-0.05em", - "variable": "var(--letterSpacing-tighter)", - "original": "-0.05em" - }, - "tight": { - "value": "-0.025em", - "variable": "var(--letterSpacing-tight)", - "original": "-0.025em" - }, - "normal": { - "value": "0em", - "variable": "var(--letterSpacing-normal)", - "original": "0em" - }, - "wide": { - "value": "0.025em", - "variable": "var(--letterSpacing-wide)", - "original": "0.025em" - }, - "wider": { - "value": "0.05em", - "variable": "var(--letterSpacing-wider)", - "original": "0.05em" - }, - "widest": { - "value": "0.1em", - "variable": "var(--letterSpacing-widest)", - "original": "0.1em" - } - }, - "text": { - "xs": { - "fontSize": { - "value": "var(--fontSize-xs)", - "variable": "var(--text-xs-fontSize)", - "original": "{fontSize.xs}" - }, - "lineHeight": { - "value": "var(--lead-4)", - "variable": "var(--text-xs-lineHeight)", - "original": "{lead.4}" - } - }, - "sm": { - "fontSize": { - "value": "var(--fontSize-sm)", - "variable": "var(--text-sm-fontSize)", - "original": "{fontSize.sm}" - }, - "lineHeight": { - "value": "var(--lead-5)", - "variable": "var(--text-sm-lineHeight)", - "original": "{lead.5}" - } - }, - "base": { - "fontSize": { - "value": "var(--fontSize-base)", - "variable": "var(--text-base-fontSize)", - "original": "{fontSize.base}" - }, - "lineHeight": { - "value": "var(--lead-6)", - "variable": "var(--text-base-lineHeight)", - "original": "{lead.6}" - } - }, - "lg": { - "fontSize": { - "value": "var(--fontSize-lg)", - "variable": "var(--text-lg-fontSize)", - "original": "{fontSize.lg}" - }, - "lineHeight": { - "value": "var(--lead-7)", - "variable": "var(--text-lg-lineHeight)", - "original": "{lead.7}" - } - }, - "xl": { - "fontSize": { - "value": "var(--fontSize-xl)", - "variable": "var(--text-xl-fontSize)", - "original": "{fontSize.xl}" - }, - "lineHeight": { - "value": "var(--lead-7)", - "variable": "var(--text-xl-lineHeight)", - "original": "{lead.7}" - } - }, - "2xl": { - "fontSize": { - "value": "var(--fontSize-2xl)", - "variable": "var(--text-2xl-fontSize)", - "original": "{fontSize.2xl}" - }, - "lineHeight": { - "value": "var(--lead-8)", - "variable": "var(--text-2xl-lineHeight)", - "original": "{lead.8}" - } - }, - "3xl": { - "fontSize": { - "value": "var(--fontSize-3xl)", - "variable": "var(--text-3xl-fontSize)", - "original": "{fontSize.3xl}" - }, - "lineHeight": { - "value": "var(--lead-9)", - "variable": "var(--text-3xl-lineHeight)", - "original": "{lead.9}" - } - }, - "4xl": { - "fontSize": { - "value": "var(--fontSize-4xl)", - "variable": "var(--text-4xl-fontSize)", - "original": "{fontSize.4xl}" - }, - "lineHeight": { - "value": "var(--lead-10)", - "variable": "var(--text-4xl-lineHeight)", - "original": "{lead.10}" - } - }, - "5xl": { - "fontSize": { - "value": "var(--fontSize-5xl)", - "variable": "var(--text-5xl-fontSize)", - "original": "{fontSize.5xl}" - }, - "lineHeight": { - "value": "var(--lead-none)", - "variable": "var(--text-5xl-lineHeight)", - "original": "{lead.none}" - } - }, - "6xl": { - "fontSize": { - "value": "var(--fontSize-6xl)", - "variable": "var(--text-6xl-fontSize)", - "original": "{fontSize.6xl}" - }, - "lineHeight": { - "value": "var(--lead-none)", - "variable": "var(--text-6xl-lineHeight)", - "original": "{lead.none}" - } - } - } -}; -const pinceau_nuxt_plugin_server_KEuz79zT4K = defineNuxtPlugin(async (nuxtApp) => { - nuxtApp.vueApp.use(plugin, { colorSchemeMode: "class", theme, utils }); - useRuntimeConfig$1(); - nuxtApp.hook("app:rendered", async (app) => { - app.ssrContext.event.pinceauContent = app.ssrContext.event.pinceauContent || {}; - const content = app.ssrContext.nuxt.vueApp.config.globalProperties.$pinceauSsr.get(); - app.ssrContext.event.pinceauContent.runtime = content; - }); -}); -const schema = { - "properties": { - "id": "#tokensConfig", - "properties": { - "color": { - "title": "Your website color palette.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon ph:palette" - ], - "id": "#tokensConfig/color", - "properties": { - "primary": { - "id": "#tokensConfig/color/primary", - "properties": { - "50": { - "id": "#tokensConfig/color/primary/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/50/value", - "default": "#fff2cc" - } - }, - "type": "object", - "default": { - "value": "#fff2cc" - } - }, - "100": { - "id": "#tokensConfig/color/primary/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/100/value", - "default": "#ffe599" - } - }, - "type": "object", - "default": { - "value": "#ffe599" - } - }, - "200": { - "id": "#tokensConfig/color/primary/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/200/value", - "default": "#ffd966" - } - }, - "type": "object", - "default": { - "value": "#ffd966" - } - }, - "300": { - "id": "#tokensConfig/color/primary/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/300/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - }, - "400": { - "id": "#tokensConfig/color/primary/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/400/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - }, - "500": { - "id": "#tokensConfig/color/primary/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/500/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - }, - "600": { - "id": "#tokensConfig/color/primary/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/600/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - }, - "700": { - "id": "#tokensConfig/color/primary/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/700/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - }, - "800": { - "id": "#tokensConfig/color/primary/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/800/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - }, - "900": { - "id": "#tokensConfig/color/primary/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/primary/900/value", - "default": "#f1c232" - } - }, - "type": "object", - "default": { - "value": "#f1c232" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#fff2cc" - }, - "100": { - "value": "#ffe599" - }, - "200": { - "value": "#ffd966" - }, - "300": { - "value": "#f1c232" - }, - "400": { - "value": "#f1c232" - }, - "500": { - "value": "#f1c232" - }, - "600": { - "value": "#f1c232" - }, - "700": { - "value": "#f1c232" - }, - "800": { - "value": "#f1c232" - }, - "900": { - "value": "#f1c232" - } - } - }, - "white": { - "id": "#tokensConfig/color/white", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/white/value", - "default": "#ffffff" - } - }, - "type": "object", - "default": { - "value": "#ffffff" - } - }, - "black": { - "id": "#tokensConfig/color/black", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/black/value", - "default": "#0c0c0d" - } - }, - "type": "object", - "default": { - "value": "#0c0c0d" - } - }, - "secondary": { - "id": "#tokensConfig/color/secondary", - "properties": { - "50": { - "id": "#tokensConfig/color/secondary/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/50/value", - "default": "{color.gray.50}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.50}" - } - }, - "100": { - "id": "#tokensConfig/color/secondary/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/100/value", - "default": "{color.gray.100}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.100}" - } - }, - "200": { - "id": "#tokensConfig/color/secondary/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/200/value", - "default": "{color.gray.200}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.200}" - } - }, - "300": { - "id": "#tokensConfig/color/secondary/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/300/value", - "default": "{color.gray.300}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.300}" - } - }, - "400": { - "id": "#tokensConfig/color/secondary/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/400/value", - "default": "{color.gray.400}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.400}" - } - }, - "500": { - "id": "#tokensConfig/color/secondary/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/500/value", - "default": "{color.gray.500}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.500}" - } - }, - "600": { - "id": "#tokensConfig/color/secondary/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/600/value", - "default": "{color.gray.600}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.600}" - } - }, - "700": { - "id": "#tokensConfig/color/secondary/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/700/value", - "default": "{color.gray.700}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.700}" - } - }, - "800": { - "id": "#tokensConfig/color/secondary/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/800/value", - "default": "{color.gray.800}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.800}" - } - }, - "900": { - "id": "#tokensConfig/color/secondary/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/secondary/900/value", - "default": "{color.gray.900}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.900}" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - } - }, - "gray": { - "id": "#tokensConfig/color/gray", - "properties": { - "50": { - "id": "#tokensConfig/color/gray/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/50/value", - "default": "#fafafa" - } - }, - "type": "object", - "default": { - "value": "#fafafa" - } - }, - "100": { - "id": "#tokensConfig/color/gray/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/100/value", - "default": "#f4f4f5" - } - }, - "type": "object", - "default": { - "value": "#f4f4f5" - } - }, - "200": { - "id": "#tokensConfig/color/gray/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/200/value", - "default": "#e4e4e7" - } - }, - "type": "object", - "default": { - "value": "#e4e4e7" - } - }, - "300": { - "id": "#tokensConfig/color/gray/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/300/value", - "default": "#D4d4d8" - } - }, - "type": "object", - "default": { - "value": "#D4d4d8" - } - }, - "400": { - "id": "#tokensConfig/color/gray/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/400/value", - "default": "#a1a1aa" - } - }, - "type": "object", - "default": { - "value": "#a1a1aa" - } - }, - "500": { - "id": "#tokensConfig/color/gray/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/500/value", - "default": "#71717A" - } - }, - "type": "object", - "default": { - "value": "#71717A" - } - }, - "600": { - "id": "#tokensConfig/color/gray/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/600/value", - "default": "#52525B" - } - }, - "type": "object", - "default": { - "value": "#52525B" - } - }, - "700": { - "id": "#tokensConfig/color/gray/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/700/value", - "default": "#3f3f46" - } - }, - "type": "object", - "default": { - "value": "#3f3f46" - } - }, - "800": { - "id": "#tokensConfig/color/gray/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/800/value", - "default": "#27272A" - } - }, - "type": "object", - "default": { - "value": "#27272A" - } - }, - "900": { - "id": "#tokensConfig/color/gray/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/gray/900/value", - "default": "#18181B" - } - }, - "type": "object", - "default": { - "value": "#18181B" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#fafafa" - }, - "100": { - "value": "#f4f4f5" - }, - "200": { - "value": "#e4e4e7" - }, - "300": { - "value": "#D4d4d8" - }, - "400": { - "value": "#a1a1aa" - }, - "500": { - "value": "#71717A" - }, - "600": { - "value": "#52525B" - }, - "700": { - "value": "#3f3f46" - }, - "800": { - "value": "#27272A" - }, - "900": { - "value": "#18181B" - } - } - }, - "green": { - "id": "#tokensConfig/color/green", - "properties": { - "50": { - "id": "#tokensConfig/color/green/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/50/value", - "default": "#d6ffee" - } - }, - "type": "object", - "default": { - "value": "#d6ffee" - } - }, - "100": { - "id": "#tokensConfig/color/green/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/100/value", - "default": "#acffdd" - } - }, - "type": "object", - "default": { - "value": "#acffdd" - } - }, - "200": { - "id": "#tokensConfig/color/green/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/200/value", - "default": "#83ffcc" - } - }, - "type": "object", - "default": { - "value": "#83ffcc" - } - }, - "300": { - "id": "#tokensConfig/color/green/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/300/value", - "default": "#30ffaa" - } - }, - "type": "object", - "default": { - "value": "#30ffaa" - } - }, - "400": { - "id": "#tokensConfig/color/green/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/400/value", - "default": "#00dc82" - } - }, - "type": "object", - "default": { - "value": "#00dc82" - } - }, - "500": { - "id": "#tokensConfig/color/green/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/500/value", - "default": "#00bd6f" - } - }, - "type": "object", - "default": { - "value": "#00bd6f" - } - }, - "600": { - "id": "#tokensConfig/color/green/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/600/value", - "default": "#009d5d" - } - }, - "type": "object", - "default": { - "value": "#009d5d" - } - }, - "700": { - "id": "#tokensConfig/color/green/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/700/value", - "default": "#007e4a" - } - }, - "type": "object", - "default": { - "value": "#007e4a" - } - }, - "800": { - "id": "#tokensConfig/color/green/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/800/value", - "default": "#005e38" - } - }, - "type": "object", - "default": { - "value": "#005e38" - } - }, - "900": { - "id": "#tokensConfig/color/green/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/green/900/value", - "default": "#003f25" - } - }, - "type": "object", - "default": { - "value": "#003f25" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#d6ffee" - }, - "100": { - "value": "#acffdd" - }, - "200": { - "value": "#83ffcc" - }, - "300": { - "value": "#30ffaa" - }, - "400": { - "value": "#00dc82" - }, - "500": { - "value": "#00bd6f" - }, - "600": { - "value": "#009d5d" - }, - "700": { - "value": "#007e4a" - }, - "800": { - "value": "#005e38" - }, - "900": { - "value": "#003f25" - } - } - }, - "yellow": { - "id": "#tokensConfig/color/yellow", - "properties": { - "50": { - "id": "#tokensConfig/color/yellow/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/50/value", - "default": "#fdf6db" - } - }, - "type": "object", - "default": { - "value": "#fdf6db" - } - }, - "100": { - "id": "#tokensConfig/color/yellow/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/100/value", - "default": "#fcedb7" - } - }, - "type": "object", - "default": { - "value": "#fcedb7" - } - }, - "200": { - "id": "#tokensConfig/color/yellow/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/200/value", - "default": "#fae393" - } - }, - "type": "object", - "default": { - "value": "#fae393" - } - }, - "300": { - "id": "#tokensConfig/color/yellow/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/300/value", - "default": "#f8da70" - } - }, - "type": "object", - "default": { - "value": "#f8da70" - } - }, - "400": { - "id": "#tokensConfig/color/yellow/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/400/value", - "default": "#f7d14c" - } - }, - "type": "object", - "default": { - "value": "#f7d14c" - } - }, - "500": { - "id": "#tokensConfig/color/yellow/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/500/value", - "default": "#f5c828" - } - }, - "type": "object", - "default": { - "value": "#f5c828" - } - }, - "600": { - "id": "#tokensConfig/color/yellow/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/600/value", - "default": "#daac0a" - } - }, - "type": "object", - "default": { - "value": "#daac0a" - } - }, - "700": { - "id": "#tokensConfig/color/yellow/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/700/value", - "default": "#a38108" - } - }, - "type": "object", - "default": { - "value": "#a38108" - } - }, - "800": { - "id": "#tokensConfig/color/yellow/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/800/value", - "default": "#6d5605" - } - }, - "type": "object", - "default": { - "value": "#6d5605" - } - }, - "900": { - "id": "#tokensConfig/color/yellow/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/yellow/900/value", - "default": "#362b03" - } - }, - "type": "object", - "default": { - "value": "#362b03" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#fdf6db" - }, - "100": { - "value": "#fcedb7" - }, - "200": { - "value": "#fae393" - }, - "300": { - "value": "#f8da70" - }, - "400": { - "value": "#f7d14c" - }, - "500": { - "value": "#f5c828" - }, - "600": { - "value": "#daac0a" - }, - "700": { - "value": "#a38108" - }, - "800": { - "value": "#6d5605" - }, - "900": { - "value": "#362b03" - } - } - }, - "orange": { - "id": "#tokensConfig/color/orange", - "properties": { - "50": { - "id": "#tokensConfig/color/orange/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/50/value", - "default": "#ffe9d9" - } - }, - "type": "object", - "default": { - "value": "#ffe9d9" - } - }, - "100": { - "id": "#tokensConfig/color/orange/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/100/value", - "default": "#ffd3b3" - } - }, - "type": "object", - "default": { - "value": "#ffd3b3" - } - }, - "200": { - "id": "#tokensConfig/color/orange/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/200/value", - "default": "#ffbd8d" - } - }, - "type": "object", - "default": { - "value": "#ffbd8d" - } - }, - "300": { - "id": "#tokensConfig/color/orange/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/300/value", - "default": "#ffa666" - } - }, - "type": "object", - "default": { - "value": "#ffa666" - } - }, - "400": { - "id": "#tokensConfig/color/orange/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/400/value", - "default": "#ff9040" - } - }, - "type": "object", - "default": { - "value": "#ff9040" - } - }, - "500": { - "id": "#tokensConfig/color/orange/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/500/value", - "default": "#ff7a1a" - } - }, - "type": "object", - "default": { - "value": "#ff7a1a" - } - }, - "600": { - "id": "#tokensConfig/color/orange/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/600/value", - "default": "#e15e00" - } - }, - "type": "object", - "default": { - "value": "#e15e00" - } - }, - "700": { - "id": "#tokensConfig/color/orange/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/700/value", - "default": "#a94700" - } - }, - "type": "object", - "default": { - "value": "#a94700" - } - }, - "800": { - "id": "#tokensConfig/color/orange/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/800/value", - "default": "#702f00" - } - }, - "type": "object", - "default": { - "value": "#702f00" - } - }, - "900": { - "id": "#tokensConfig/color/orange/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/orange/900/value", - "default": "#381800" - } - }, - "type": "object", - "default": { - "value": "#381800" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#ffe9d9" - }, - "100": { - "value": "#ffd3b3" - }, - "200": { - "value": "#ffbd8d" - }, - "300": { - "value": "#ffa666" - }, - "400": { - "value": "#ff9040" - }, - "500": { - "value": "#ff7a1a" - }, - "600": { - "value": "#e15e00" - }, - "700": { - "value": "#a94700" - }, - "800": { - "value": "#702f00" - }, - "900": { - "value": "#381800" - } - } - }, - "red": { - "id": "#tokensConfig/color/red", - "properties": { - "50": { - "id": "#tokensConfig/color/red/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/50/value", - "default": "#ffdbd9" - } - }, - "type": "object", - "default": { - "value": "#ffdbd9" - } - }, - "100": { - "id": "#tokensConfig/color/red/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/100/value", - "default": "#ffb7b3" - } - }, - "type": "object", - "default": { - "value": "#ffb7b3" - } - }, - "200": { - "id": "#tokensConfig/color/red/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/200/value", - "default": "#ff948d" - } - }, - "type": "object", - "default": { - "value": "#ff948d" - } - }, - "300": { - "id": "#tokensConfig/color/red/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/300/value", - "default": "#ff7066" - } - }, - "type": "object", - "default": { - "value": "#ff7066" - } - }, - "400": { - "id": "#tokensConfig/color/red/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/400/value", - "default": "#ff4c40" - } - }, - "type": "object", - "default": { - "value": "#ff4c40" - } - }, - "500": { - "id": "#tokensConfig/color/red/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/500/value", - "default": "#ff281a" - } - }, - "type": "object", - "default": { - "value": "#ff281a" - } - }, - "600": { - "id": "#tokensConfig/color/red/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/600/value", - "default": "#e10e00" - } - }, - "type": "object", - "default": { - "value": "#e10e00" - } - }, - "700": { - "id": "#tokensConfig/color/red/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/700/value", - "default": "#a90a00" - } - }, - "type": "object", - "default": { - "value": "#a90a00" - } - }, - "800": { - "id": "#tokensConfig/color/red/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/800/value", - "default": "#700700" - } - }, - "type": "object", - "default": { - "value": "#700700" - } - }, - "900": { - "id": "#tokensConfig/color/red/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/red/900/value", - "default": "#380300" - } - }, - "type": "object", - "default": { - "value": "#380300" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#ffdbd9" - }, - "100": { - "value": "#ffb7b3" - }, - "200": { - "value": "#ff948d" - }, - "300": { - "value": "#ff7066" - }, - "400": { - "value": "#ff4c40" - }, - "500": { - "value": "#ff281a" - }, - "600": { - "value": "#e10e00" - }, - "700": { - "value": "#a90a00" - }, - "800": { - "value": "#700700" - }, - "900": { - "value": "#380300" - } - } - }, - "pear": { - "id": "#tokensConfig/color/pear", - "properties": { - "50": { - "id": "#tokensConfig/color/pear/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/50/value", - "default": "#f7f8dc" - } - }, - "type": "object", - "default": { - "value": "#f7f8dc" - } - }, - "100": { - "id": "#tokensConfig/color/pear/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/100/value", - "default": "#eff0ba" - } - }, - "type": "object", - "default": { - "value": "#eff0ba" - } - }, - "200": { - "id": "#tokensConfig/color/pear/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/200/value", - "default": "#e8e997" - } - }, - "type": "object", - "default": { - "value": "#e8e997" - } - }, - "300": { - "id": "#tokensConfig/color/pear/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/300/value", - "default": "#e0e274" - } - }, - "type": "object", - "default": { - "value": "#e0e274" - } - }, - "400": { - "id": "#tokensConfig/color/pear/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/400/value", - "default": "#d8da52" - } - }, - "type": "object", - "default": { - "value": "#d8da52" - } - }, - "500": { - "id": "#tokensConfig/color/pear/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/500/value", - "default": "#d0d32f" - } - }, - "type": "object", - "default": { - "value": "#d0d32f" - } - }, - "600": { - "id": "#tokensConfig/color/pear/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/600/value", - "default": "#a8aa24" - } - }, - "type": "object", - "default": { - "value": "#a8aa24" - } - }, - "700": { - "id": "#tokensConfig/color/pear/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/700/value", - "default": "#7e801b" - } - }, - "type": "object", - "default": { - "value": "#7e801b" - } - }, - "800": { - "id": "#tokensConfig/color/pear/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/800/value", - "default": "#545512" - } - }, - "type": "object", - "default": { - "value": "#545512" - } - }, - "900": { - "id": "#tokensConfig/color/pear/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pear/900/value", - "default": "#2a2b09" - } - }, - "type": "object", - "default": { - "value": "#2a2b09" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#f7f8dc" - }, - "100": { - "value": "#eff0ba" - }, - "200": { - "value": "#e8e997" - }, - "300": { - "value": "#e0e274" - }, - "400": { - "value": "#d8da52" - }, - "500": { - "value": "#d0d32f" - }, - "600": { - "value": "#a8aa24" - }, - "700": { - "value": "#7e801b" - }, - "800": { - "value": "#545512" - }, - "900": { - "value": "#2a2b09" - } - } - }, - "teal": { - "id": "#tokensConfig/color/teal", - "properties": { - "50": { - "id": "#tokensConfig/color/teal/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/50/value", - "default": "#d7faf8" - } - }, - "type": "object", - "default": { - "value": "#d7faf8" - } - }, - "100": { - "id": "#tokensConfig/color/teal/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/100/value", - "default": "#aff4f0" - } - }, - "type": "object", - "default": { - "value": "#aff4f0" - } - }, - "200": { - "id": "#tokensConfig/color/teal/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/200/value", - "default": "#87efe9" - } - }, - "type": "object", - "default": { - "value": "#87efe9" - } - }, - "300": { - "id": "#tokensConfig/color/teal/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/300/value", - "default": "#5fe9e1" - } - }, - "type": "object", - "default": { - "value": "#5fe9e1" - } - }, - "400": { - "id": "#tokensConfig/color/teal/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/400/value", - "default": "#36e4da" - } - }, - "type": "object", - "default": { - "value": "#36e4da" - } - }, - "500": { - "id": "#tokensConfig/color/teal/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/500/value", - "default": "#1cd1c6" - } - }, - "type": "object", - "default": { - "value": "#1cd1c6" - } - }, - "600": { - "id": "#tokensConfig/color/teal/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/600/value", - "default": "#16a79e" - } - }, - "type": "object", - "default": { - "value": "#16a79e" - } - }, - "700": { - "id": "#tokensConfig/color/teal/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/700/value", - "default": "#117d77" - } - }, - "type": "object", - "default": { - "value": "#117d77" - } - }, - "800": { - "id": "#tokensConfig/color/teal/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/800/value", - "default": "#0b544f" - } - }, - "type": "object", - "default": { - "value": "#0b544f" - } - }, - "900": { - "id": "#tokensConfig/color/teal/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/teal/900/value", - "default": "#062a28" - } - }, - "type": "object", - "default": { - "value": "#062a28" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#d7faf8" - }, - "100": { - "value": "#aff4f0" - }, - "200": { - "value": "#87efe9" - }, - "300": { - "value": "#5fe9e1" - }, - "400": { - "value": "#36e4da" - }, - "500": { - "value": "#1cd1c6" - }, - "600": { - "value": "#16a79e" - }, - "700": { - "value": "#117d77" - }, - "800": { - "value": "#0b544f" - }, - "900": { - "value": "#062a28" - } - } - }, - "lightblue": { - "id": "#tokensConfig/color/lightblue", - "properties": { - "50": { - "id": "#tokensConfig/color/lightblue/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/50/value", - "default": "#d9f8ff" - } - }, - "type": "object", - "default": { - "value": "#d9f8ff" - } - }, - "100": { - "id": "#tokensConfig/color/lightblue/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/100/value", - "default": "#b3f1ff" - } - }, - "type": "object", - "default": { - "value": "#b3f1ff" - } - }, - "200": { - "id": "#tokensConfig/color/lightblue/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/200/value", - "default": "#8deaff" - } - }, - "type": "object", - "default": { - "value": "#8deaff" - } - }, - "300": { - "id": "#tokensConfig/color/lightblue/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/300/value", - "default": "#66e4ff" - } - }, - "type": "object", - "default": { - "value": "#66e4ff" - } - }, - "400": { - "id": "#tokensConfig/color/lightblue/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/400/value", - "default": "#40ddff" - } - }, - "type": "object", - "default": { - "value": "#40ddff" - } - }, - "500": { - "id": "#tokensConfig/color/lightblue/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/500/value", - "default": "#1ad6ff" - } - }, - "type": "object", - "default": { - "value": "#1ad6ff" - } - }, - "600": { - "id": "#tokensConfig/color/lightblue/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/600/value", - "default": "#00b9e1" - } - }, - "type": "object", - "default": { - "value": "#00b9e1" - } - }, - "700": { - "id": "#tokensConfig/color/lightblue/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/700/value", - "default": "#008aa9" - } - }, - "type": "object", - "default": { - "value": "#008aa9" - } - }, - "800": { - "id": "#tokensConfig/color/lightblue/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/800/value", - "default": "#005c70" - } - }, - "type": "object", - "default": { - "value": "#005c70" - } - }, - "900": { - "id": "#tokensConfig/color/lightblue/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/lightblue/900/value", - "default": "#002e38" - } - }, - "type": "object", - "default": { - "value": "#002e38" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#d9f8ff" - }, - "100": { - "value": "#b3f1ff" - }, - "200": { - "value": "#8deaff" - }, - "300": { - "value": "#66e4ff" - }, - "400": { - "value": "#40ddff" - }, - "500": { - "value": "#1ad6ff" - }, - "600": { - "value": "#00b9e1" - }, - "700": { - "value": "#008aa9" - }, - "800": { - "value": "#005c70" - }, - "900": { - "value": "#002e38" - } - } - }, - "blue": { - "id": "#tokensConfig/color/blue", - "properties": { - "50": { - "id": "#tokensConfig/color/blue/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/50/value", - "default": "#d9f1ff" - } - }, - "type": "object", - "default": { - "value": "#d9f1ff" - } - }, - "100": { - "id": "#tokensConfig/color/blue/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/100/value", - "default": "#b3e4ff" - } - }, - "type": "object", - "default": { - "value": "#b3e4ff" - } - }, - "200": { - "id": "#tokensConfig/color/blue/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/200/value", - "default": "#8dd6ff" - } - }, - "type": "object", - "default": { - "value": "#8dd6ff" - } - }, - "300": { - "id": "#tokensConfig/color/blue/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/300/value", - "default": "#66c8ff" - } - }, - "type": "object", - "default": { - "value": "#66c8ff" - } - }, - "400": { - "id": "#tokensConfig/color/blue/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/400/value", - "default": "#40bbff" - } - }, - "type": "object", - "default": { - "value": "#40bbff" - } - }, - "500": { - "id": "#tokensConfig/color/blue/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/500/value", - "default": "#1aadff" - } - }, - "type": "object", - "default": { - "value": "#1aadff" - } - }, - "600": { - "id": "#tokensConfig/color/blue/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/600/value", - "default": "#0090e1" - } - }, - "type": "object", - "default": { - "value": "#0090e1" - } - }, - "700": { - "id": "#tokensConfig/color/blue/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/700/value", - "default": "#006ca9" - } - }, - "type": "object", - "default": { - "value": "#006ca9" - } - }, - "800": { - "id": "#tokensConfig/color/blue/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/800/value", - "default": "#004870" - } - }, - "type": "object", - "default": { - "value": "#004870" - } - }, - "900": { - "id": "#tokensConfig/color/blue/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/blue/900/value", - "default": "#002438" - } - }, - "type": "object", - "default": { - "value": "#002438" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#d9f1ff" - }, - "100": { - "value": "#b3e4ff" - }, - "200": { - "value": "#8dd6ff" - }, - "300": { - "value": "#66c8ff" - }, - "400": { - "value": "#40bbff" - }, - "500": { - "value": "#1aadff" - }, - "600": { - "value": "#0090e1" - }, - "700": { - "value": "#006ca9" - }, - "800": { - "value": "#004870" - }, - "900": { - "value": "#002438" - } - } - }, - "indigoblue": { - "id": "#tokensConfig/color/indigoblue", - "properties": { - "50": { - "id": "#tokensConfig/color/indigoblue/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/50/value", - "default": "#d9e5ff" - } - }, - "type": "object", - "default": { - "value": "#d9e5ff" - } - }, - "100": { - "id": "#tokensConfig/color/indigoblue/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/100/value", - "default": "#b3cbff" - } - }, - "type": "object", - "default": { - "value": "#b3cbff" - } - }, - "200": { - "id": "#tokensConfig/color/indigoblue/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/200/value", - "default": "#8db0ff" - } - }, - "type": "object", - "default": { - "value": "#8db0ff" - } - }, - "300": { - "id": "#tokensConfig/color/indigoblue/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/300/value", - "default": "#6696ff" - } - }, - "type": "object", - "default": { - "value": "#6696ff" - } - }, - "400": { - "id": "#tokensConfig/color/indigoblue/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/400/value", - "default": "#407cff" - } - }, - "type": "object", - "default": { - "value": "#407cff" - } - }, - "500": { - "id": "#tokensConfig/color/indigoblue/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/500/value", - "default": "#1a62ff" - } - }, - "type": "object", - "default": { - "value": "#1a62ff" - } - }, - "600": { - "id": "#tokensConfig/color/indigoblue/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/600/value", - "default": "#0047e1" - } - }, - "type": "object", - "default": { - "value": "#0047e1" - } - }, - "700": { - "id": "#tokensConfig/color/indigoblue/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/700/value", - "default": "#0035a9" - } - }, - "type": "object", - "default": { - "value": "#0035a9" - } - }, - "800": { - "id": "#tokensConfig/color/indigoblue/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/800/value", - "default": "#002370" - } - }, - "type": "object", - "default": { - "value": "#002370" - } - }, - "900": { - "id": "#tokensConfig/color/indigoblue/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/indigoblue/900/value", - "default": "#001238" - } - }, - "type": "object", - "default": { - "value": "#001238" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#d9e5ff" - }, - "100": { - "value": "#b3cbff" - }, - "200": { - "value": "#8db0ff" - }, - "300": { - "value": "#6696ff" - }, - "400": { - "value": "#407cff" - }, - "500": { - "value": "#1a62ff" - }, - "600": { - "value": "#0047e1" - }, - "700": { - "value": "#0035a9" - }, - "800": { - "value": "#002370" - }, - "900": { - "value": "#001238" - } - } - }, - "royalblue": { - "id": "#tokensConfig/color/royalblue", - "properties": { - "50": { - "id": "#tokensConfig/color/royalblue/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/50/value", - "default": "#dfdbfb" - } - }, - "type": "object", - "default": { - "value": "#dfdbfb" - } - }, - "100": { - "id": "#tokensConfig/color/royalblue/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/100/value", - "default": "#c0b7f7" - } - }, - "type": "object", - "default": { - "value": "#c0b7f7" - } - }, - "200": { - "id": "#tokensConfig/color/royalblue/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/200/value", - "default": "#a093f3" - } - }, - "type": "object", - "default": { - "value": "#a093f3" - } - }, - "300": { - "id": "#tokensConfig/color/royalblue/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/300/value", - "default": "#806ff0" - } - }, - "type": "object", - "default": { - "value": "#806ff0" - } - }, - "400": { - "id": "#tokensConfig/color/royalblue/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/400/value", - "default": "#614bec" - } - }, - "type": "object", - "default": { - "value": "#614bec" - } - }, - "500": { - "id": "#tokensConfig/color/royalblue/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/500/value", - "default": "#4127e8" - } - }, - "type": "object", - "default": { - "value": "#4127e8" - } - }, - "600": { - "id": "#tokensConfig/color/royalblue/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/600/value", - "default": "#2c15c4" - } - }, - "type": "object", - "default": { - "value": "#2c15c4" - } - }, - "700": { - "id": "#tokensConfig/color/royalblue/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/700/value", - "default": "#211093" - } - }, - "type": "object", - "default": { - "value": "#211093" - } - }, - "800": { - "id": "#tokensConfig/color/royalblue/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/800/value", - "default": "#160a62" - } - }, - "type": "object", - "default": { - "value": "#160a62" - } - }, - "900": { - "id": "#tokensConfig/color/royalblue/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/royalblue/900/value", - "default": "#0b0531" - } - }, - "type": "object", - "default": { - "value": "#0b0531" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#dfdbfb" - }, - "100": { - "value": "#c0b7f7" - }, - "200": { - "value": "#a093f3" - }, - "300": { - "value": "#806ff0" - }, - "400": { - "value": "#614bec" - }, - "500": { - "value": "#4127e8" - }, - "600": { - "value": "#2c15c4" - }, - "700": { - "value": "#211093" - }, - "800": { - "value": "#160a62" - }, - "900": { - "value": "#0b0531" - } - } - }, - "purple": { - "id": "#tokensConfig/color/purple", - "properties": { - "50": { - "id": "#tokensConfig/color/purple/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/50/value", - "default": "#ead9ff" - } - }, - "type": "object", - "default": { - "value": "#ead9ff" - } - }, - "100": { - "id": "#tokensConfig/color/purple/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/100/value", - "default": "#d5b3ff" - } - }, - "type": "object", - "default": { - "value": "#d5b3ff" - } - }, - "200": { - "id": "#tokensConfig/color/purple/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/200/value", - "default": "#c08dff" - } - }, - "type": "object", - "default": { - "value": "#c08dff" - } - }, - "300": { - "id": "#tokensConfig/color/purple/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/300/value", - "default": "#ab66ff" - } - }, - "type": "object", - "default": { - "value": "#ab66ff" - } - }, - "400": { - "id": "#tokensConfig/color/purple/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/400/value", - "default": "#9640ff" - } - }, - "type": "object", - "default": { - "value": "#9640ff" - } - }, - "500": { - "id": "#tokensConfig/color/purple/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/500/value", - "default": "#811aff" - } - }, - "type": "object", - "default": { - "value": "#811aff" - } - }, - "600": { - "id": "#tokensConfig/color/purple/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/600/value", - "default": "#6500e1" - } - }, - "type": "object", - "default": { - "value": "#6500e1" - } - }, - "700": { - "id": "#tokensConfig/color/purple/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/700/value", - "default": "#4c00a9" - } - }, - "type": "object", - "default": { - "value": "#4c00a9" - } - }, - "800": { - "id": "#tokensConfig/color/purple/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/800/value", - "default": "#330070" - } - }, - "type": "object", - "default": { - "value": "#330070" - } - }, - "900": { - "id": "#tokensConfig/color/purple/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/purple/900/value", - "default": "#190038" - } - }, - "type": "object", - "default": { - "value": "#190038" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#ead9ff" - }, - "100": { - "value": "#d5b3ff" - }, - "200": { - "value": "#c08dff" - }, - "300": { - "value": "#ab66ff" - }, - "400": { - "value": "#9640ff" - }, - "500": { - "value": "#811aff" - }, - "600": { - "value": "#6500e1" - }, - "700": { - "value": "#4c00a9" - }, - "800": { - "value": "#330070" - }, - "900": { - "value": "#190038" - } - } - }, - "pink": { - "id": "#tokensConfig/color/pink", - "properties": { - "50": { - "id": "#tokensConfig/color/pink/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/50/value", - "default": "#ffd9f2" - } - }, - "type": "object", - "default": { - "value": "#ffd9f2" - } - }, - "100": { - "id": "#tokensConfig/color/pink/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/100/value", - "default": "#ffb3e5" - } - }, - "type": "object", - "default": { - "value": "#ffb3e5" - } - }, - "200": { - "id": "#tokensConfig/color/pink/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/200/value", - "default": "#ff8dd8" - } - }, - "type": "object", - "default": { - "value": "#ff8dd8" - } - }, - "300": { - "id": "#tokensConfig/color/pink/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/300/value", - "default": "#ff66cc" - } - }, - "type": "object", - "default": { - "value": "#ff66cc" - } - }, - "400": { - "id": "#tokensConfig/color/pink/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/400/value", - "default": "#ff40bf" - } - }, - "type": "object", - "default": { - "value": "#ff40bf" - } - }, - "500": { - "id": "#tokensConfig/color/pink/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/500/value", - "default": "#ff1ab2" - } - }, - "type": "object", - "default": { - "value": "#ff1ab2" - } - }, - "600": { - "id": "#tokensConfig/color/pink/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/600/value", - "default": "#e10095" - } - }, - "type": "object", - "default": { - "value": "#e10095" - } - }, - "700": { - "id": "#tokensConfig/color/pink/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/700/value", - "default": "#a90070" - } - }, - "type": "object", - "default": { - "value": "#a90070" - } - }, - "800": { - "id": "#tokensConfig/color/pink/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/800/value", - "default": "#70004b" - } - }, - "type": "object", - "default": { - "value": "#70004b" - } - }, - "900": { - "id": "#tokensConfig/color/pink/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/pink/900/value", - "default": "#380025" - } - }, - "type": "object", - "default": { - "value": "#380025" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#ffd9f2" - }, - "100": { - "value": "#ffb3e5" - }, - "200": { - "value": "#ff8dd8" - }, - "300": { - "value": "#ff66cc" - }, - "400": { - "value": "#ff40bf" - }, - "500": { - "value": "#ff1ab2" - }, - "600": { - "value": "#e10095" - }, - "700": { - "value": "#a90070" - }, - "800": { - "value": "#70004b" - }, - "900": { - "value": "#380025" - } - } - }, - "ruby": { - "id": "#tokensConfig/color/ruby", - "properties": { - "50": { - "id": "#tokensConfig/color/ruby/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/50/value", - "default": "#ffd9e4" - } - }, - "type": "object", - "default": { - "value": "#ffd9e4" - } - }, - "100": { - "id": "#tokensConfig/color/ruby/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/100/value", - "default": "#ffb3c9" - } - }, - "type": "object", - "default": { - "value": "#ffb3c9" - } - }, - "200": { - "id": "#tokensConfig/color/ruby/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/200/value", - "default": "#ff8dae" - } - }, - "type": "object", - "default": { - "value": "#ff8dae" - } - }, - "300": { - "id": "#tokensConfig/color/ruby/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/300/value", - "default": "#ff6694" - } - }, - "type": "object", - "default": { - "value": "#ff6694" - } - }, - "400": { - "id": "#tokensConfig/color/ruby/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/400/value", - "default": "#ff4079" - } - }, - "type": "object", - "default": { - "value": "#ff4079" - } - }, - "500": { - "id": "#tokensConfig/color/ruby/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/500/value", - "default": "#ff1a5e" - } - }, - "type": "object", - "default": { - "value": "#ff1a5e" - } - }, - "600": { - "id": "#tokensConfig/color/ruby/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/600/value", - "default": "#e10043" - } - }, - "type": "object", - "default": { - "value": "#e10043" - } - }, - "700": { - "id": "#tokensConfig/color/ruby/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/700/value", - "default": "#a90032" - } - }, - "type": "object", - "default": { - "value": "#a90032" - } - }, - "800": { - "id": "#tokensConfig/color/ruby/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/800/value", - "default": "#700021" - } - }, - "type": "object", - "default": { - "value": "#700021" - } - }, - "900": { - "id": "#tokensConfig/color/ruby/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/color/ruby/900/value", - "default": "#380011" - } - }, - "type": "object", - "default": { - "value": "#380011" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "#ffd9e4" - }, - "100": { - "value": "#ffb3c9" - }, - "200": { - "value": "#ff8dae" - }, - "300": { - "value": "#ff6694" - }, - "400": { - "value": "#ff4079" - }, - "500": { - "value": "#ff1a5e" - }, - "600": { - "value": "#e10043" - }, - "700": { - "value": "#a90032" - }, - "800": { - "value": "#700021" - }, - "900": { - "value": "#380011" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "50": { - "value": "#fff2cc" - }, - "100": { - "value": "#ffe599" - }, - "200": { - "value": "#ffd966" - }, - "300": { - "value": "#f1c232" - }, - "400": { - "value": "#f1c232" - }, - "500": { - "value": "#f1c232" - }, - "600": { - "value": "#f1c232" - }, - "700": { - "value": "#f1c232" - }, - "800": { - "value": "#f1c232" - }, - "900": { - "value": "#f1c232" - } - }, - "white": { - "value": "#ffffff" - }, - "black": { - "value": "#0c0c0d" - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - }, - "gray": { - "50": { - "value": "#fafafa" - }, - "100": { - "value": "#f4f4f5" - }, - "200": { - "value": "#e4e4e7" - }, - "300": { - "value": "#D4d4d8" - }, - "400": { - "value": "#a1a1aa" - }, - "500": { - "value": "#71717A" - }, - "600": { - "value": "#52525B" - }, - "700": { - "value": "#3f3f46" - }, - "800": { - "value": "#27272A" - }, - "900": { - "value": "#18181B" - } - }, - "green": { - "50": { - "value": "#d6ffee" - }, - "100": { - "value": "#acffdd" - }, - "200": { - "value": "#83ffcc" - }, - "300": { - "value": "#30ffaa" - }, - "400": { - "value": "#00dc82" - }, - "500": { - "value": "#00bd6f" - }, - "600": { - "value": "#009d5d" - }, - "700": { - "value": "#007e4a" - }, - "800": { - "value": "#005e38" - }, - "900": { - "value": "#003f25" - } - }, - "yellow": { - "50": { - "value": "#fdf6db" - }, - "100": { - "value": "#fcedb7" - }, - "200": { - "value": "#fae393" - }, - "300": { - "value": "#f8da70" - }, - "400": { - "value": "#f7d14c" - }, - "500": { - "value": "#f5c828" - }, - "600": { - "value": "#daac0a" - }, - "700": { - "value": "#a38108" - }, - "800": { - "value": "#6d5605" - }, - "900": { - "value": "#362b03" - } - }, - "orange": { - "50": { - "value": "#ffe9d9" - }, - "100": { - "value": "#ffd3b3" - }, - "200": { - "value": "#ffbd8d" - }, - "300": { - "value": "#ffa666" - }, - "400": { - "value": "#ff9040" - }, - "500": { - "value": "#ff7a1a" - }, - "600": { - "value": "#e15e00" - }, - "700": { - "value": "#a94700" - }, - "800": { - "value": "#702f00" - }, - "900": { - "value": "#381800" - } - }, - "red": { - "50": { - "value": "#ffdbd9" - }, - "100": { - "value": "#ffb7b3" - }, - "200": { - "value": "#ff948d" - }, - "300": { - "value": "#ff7066" - }, - "400": { - "value": "#ff4c40" - }, - "500": { - "value": "#ff281a" - }, - "600": { - "value": "#e10e00" - }, - "700": { - "value": "#a90a00" - }, - "800": { - "value": "#700700" - }, - "900": { - "value": "#380300" - } - }, - "pear": { - "50": { - "value": "#f7f8dc" - }, - "100": { - "value": "#eff0ba" - }, - "200": { - "value": "#e8e997" - }, - "300": { - "value": "#e0e274" - }, - "400": { - "value": "#d8da52" - }, - "500": { - "value": "#d0d32f" - }, - "600": { - "value": "#a8aa24" - }, - "700": { - "value": "#7e801b" - }, - "800": { - "value": "#545512" - }, - "900": { - "value": "#2a2b09" - } - }, - "teal": { - "50": { - "value": "#d7faf8" - }, - "100": { - "value": "#aff4f0" - }, - "200": { - "value": "#87efe9" - }, - "300": { - "value": "#5fe9e1" - }, - "400": { - "value": "#36e4da" - }, - "500": { - "value": "#1cd1c6" - }, - "600": { - "value": "#16a79e" - }, - "700": { - "value": "#117d77" - }, - "800": { - "value": "#0b544f" - }, - "900": { - "value": "#062a28" - } - }, - "lightblue": { - "50": { - "value": "#d9f8ff" - }, - "100": { - "value": "#b3f1ff" - }, - "200": { - "value": "#8deaff" - }, - "300": { - "value": "#66e4ff" - }, - "400": { - "value": "#40ddff" - }, - "500": { - "value": "#1ad6ff" - }, - "600": { - "value": "#00b9e1" - }, - "700": { - "value": "#008aa9" - }, - "800": { - "value": "#005c70" - }, - "900": { - "value": "#002e38" - } - }, - "blue": { - "50": { - "value": "#d9f1ff" - }, - "100": { - "value": "#b3e4ff" - }, - "200": { - "value": "#8dd6ff" - }, - "300": { - "value": "#66c8ff" - }, - "400": { - "value": "#40bbff" - }, - "500": { - "value": "#1aadff" - }, - "600": { - "value": "#0090e1" - }, - "700": { - "value": "#006ca9" - }, - "800": { - "value": "#004870" - }, - "900": { - "value": "#002438" - } - }, - "indigoblue": { - "50": { - "value": "#d9e5ff" - }, - "100": { - "value": "#b3cbff" - }, - "200": { - "value": "#8db0ff" - }, - "300": { - "value": "#6696ff" - }, - "400": { - "value": "#407cff" - }, - "500": { - "value": "#1a62ff" - }, - "600": { - "value": "#0047e1" - }, - "700": { - "value": "#0035a9" - }, - "800": { - "value": "#002370" - }, - "900": { - "value": "#001238" - } - }, - "royalblue": { - "50": { - "value": "#dfdbfb" - }, - "100": { - "value": "#c0b7f7" - }, - "200": { - "value": "#a093f3" - }, - "300": { - "value": "#806ff0" - }, - "400": { - "value": "#614bec" - }, - "500": { - "value": "#4127e8" - }, - "600": { - "value": "#2c15c4" - }, - "700": { - "value": "#211093" - }, - "800": { - "value": "#160a62" - }, - "900": { - "value": "#0b0531" - } - }, - "purple": { - "50": { - "value": "#ead9ff" - }, - "100": { - "value": "#d5b3ff" - }, - "200": { - "value": "#c08dff" - }, - "300": { - "value": "#ab66ff" - }, - "400": { - "value": "#9640ff" - }, - "500": { - "value": "#811aff" - }, - "600": { - "value": "#6500e1" - }, - "700": { - "value": "#4c00a9" - }, - "800": { - "value": "#330070" - }, - "900": { - "value": "#190038" - } - }, - "pink": { - "50": { - "value": "#ffd9f2" - }, - "100": { - "value": "#ffb3e5" - }, - "200": { - "value": "#ff8dd8" - }, - "300": { - "value": "#ff66cc" - }, - "400": { - "value": "#ff40bf" - }, - "500": { - "value": "#ff1ab2" - }, - "600": { - "value": "#e10095" - }, - "700": { - "value": "#a90070" - }, - "800": { - "value": "#70004b" - }, - "900": { - "value": "#380025" - } - }, - "ruby": { - "50": { - "value": "#ffd9e4" - }, - "100": { - "value": "#ffb3c9" - }, - "200": { - "value": "#ff8dae" - }, - "300": { - "value": "#ff6694" - }, - "400": { - "value": "#ff4079" - }, - "500": { - "value": "#ff1a5e" - }, - "600": { - "value": "#e10043" - }, - "700": { - "value": "#a90032" - }, - "800": { - "value": "#700021" - }, - "900": { - "value": "#380011" - } - } - } - }, - "elements": { - "title": "All the configurable tokens for your Elements.", - "tags": [ - "@studioIcon uiw:component" - ], - "id": "#tokensConfig/elements", - "properties": { - "text": { - "id": "#tokensConfig/elements/text", - "properties": { - "primary": { - "id": "#tokensConfig/elements/text/primary", - "properties": { - "color": { - "id": "#tokensConfig/elements/text/primary/color", - "properties": { - "static": { - "id": "#tokensConfig/elements/text/primary/color/static", - "properties": { - "value": { - "id": "#tokensConfig/elements/text/primary/color/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/text/primary/color/static/value/initial", - "default": "{color.gray.900}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/text/primary/color/static/value/dark", - "default": "{color.gray.50}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - } - }, - "hover": { - "id": "#tokensConfig/elements/text/primary/color/hover", - "type": "any", - "default": {} - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - } - }, - "type": "object", - "default": { - "color": { - "static": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/text/secondary", - "properties": { - "color": { - "id": "#tokensConfig/elements/text/secondary/color", - "properties": { - "static": { - "id": "#tokensConfig/elements/text/secondary/color/static", - "properties": { - "value": { - "id": "#tokensConfig/elements/text/secondary/color/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/text/secondary/color/static/value/initial", - "default": "{color.gray.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/text/secondary/color/static/value/dark", - "default": "{color.gray.400}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - } - }, - "hover": { - "id": "#tokensConfig/elements/text/secondary/color/hover", - "properties": { - "value": { - "id": "#tokensConfig/elements/text/secondary/color/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/text/secondary/color/hover/value/initial", - "default": "{color.gray.700}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/text/secondary/color/hover/value/dark", - "default": "{color.gray.200}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "static": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - } - }, - "type": "object", - "default": { - "primary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - }, - "secondary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - } - }, - "container": { - "title": "Main container sizings.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon material-symbols:width-full-outline" - ], - "id": "#tokensConfig/elements/container", - "properties": { - "maxWidth": { - "id": "#tokensConfig/elements/container/maxWidth", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/elements/container/maxWidth/value", - "default": "80rem" - } - }, - "type": "object", - "default": { - "value": "80rem" - } - }, - "padding": { - "id": "#tokensConfig/elements/container/padding", - "properties": { - "mobile": { - "id": "#tokensConfig/elements/container/padding/mobile", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/elements/container/padding/mobile/value", - "default": "{space.4}" - } - }, - "type": "object", - "default": { - "value": "{space.4}" - } - }, - "xs": { - "id": "#tokensConfig/elements/container/padding/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/elements/container/padding/xs/value", - "default": "{space.4}" - } - }, - "type": "object", - "default": { - "value": "{space.4}" - } - }, - "sm": { - "id": "#tokensConfig/elements/container/padding/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/elements/container/padding/sm/value", - "default": "{space.6}" - } - }, - "type": "object", - "default": { - "value": "{space.6}" - } - }, - "md": { - "id": "#tokensConfig/elements/container/padding/md", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/elements/container/padding/md/value", - "default": "{space.6}" - } - }, - "type": "object", - "default": { - "value": "{space.6}" - } - } - }, - "type": "object", - "default": { - "mobile": { - "value": "{space.4}" - }, - "xs": { - "value": "{space.4}" - }, - "sm": { - "value": "{space.6}" - }, - "md": { - "value": "{space.6}" - } - } - } - }, - "type": "object", - "default": { - "maxWidth": { - "value": "80rem" - }, - "padding": { - "mobile": { - "value": "{space.4}" - }, - "xs": { - "value": "{space.4}" - }, - "sm": { - "value": "{space.6}" - }, - "md": { - "value": "{space.6}" - } - } - } - }, - "backdrop": { - "title": "Backdrops used in Elements.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon material-symbols:blur-circular" - ], - "id": "#tokensConfig/elements/backdrop", - "properties": { - "filter": { - "id": "#tokensConfig/elements/backdrop/filter", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/elements/backdrop/filter/value", - "default": "saturate(200%) blur(20px)" - } - }, - "type": "object", - "default": { - "value": "saturate(200%) blur(20px)" - } - }, - "background": { - "id": "#tokensConfig/elements/backdrop/background", - "properties": { - "value": { - "id": "#tokensConfig/elements/backdrop/background/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/backdrop/background/value/initial", - "default": "#fffc" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/backdrop/background/value/dark", - "default": "#0c0d0ccc" - } - }, - "type": "object", - "default": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - } - }, - "type": "object", - "default": { - "filter": { - "value": "saturate(200%) blur(20px)" - }, - "background": { - "value": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - } - }, - "border": { - "title": "Borders used in Elements.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon material-symbols:border-all-outline-rounded" - ], - "id": "#tokensConfig/elements/border", - "properties": { - "primary": { - "id": "#tokensConfig/elements/border/primary", - "properties": { - "static": { - "id": "#tokensConfig/elements/border/primary/static", - "properties": { - "value": { - "id": "#tokensConfig/elements/border/primary/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/border/primary/static/value/initial", - "default": "{color.gray.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/border/primary/static/value/dark", - "default": "{color.gray.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - }, - "hover": { - "id": "#tokensConfig/elements/border/primary/hover", - "properties": { - "value": { - "id": "#tokensConfig/elements/border/primary/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/border/primary/hover/value/initial", - "default": "{color.gray.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/border/primary/hover/value/dark", - "default": "{color.gray.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/border/secondary", - "properties": { - "static": { - "id": "#tokensConfig/elements/border/secondary/static", - "properties": { - "value": { - "id": "#tokensConfig/elements/border/secondary/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/border/secondary/static/value/initial", - "default": "{color.gray.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/border/secondary/static/value/dark", - "default": "{color.gray.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "hover": { - "id": "#tokensConfig/elements/border/secondary/hover", - "properties": { - "value": { - "id": "#tokensConfig/elements/border/secondary/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/border/secondary/hover/value/initial", - "default": "" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/border/secondary/hover/value/dark", - "default": "" - } - }, - "type": "object", - "default": { - "initial": "", - "dark": "" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "", - "dark": "" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - }, - "hover": { - "value": { - "initial": "", - "dark": "" - } - } - } - } - }, - "type": "object", - "default": { - "primary": { - "static": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "secondary": { - "static": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - }, - "hover": { - "value": { - "initial": "", - "dark": "" - } - } - } - } - }, - "surface": { - "title": "Surfaces used in Elements.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon fluent:surface-hub-20-filled" - ], - "id": "#tokensConfig/elements/surface", - "properties": { - "background": { - "id": "#tokensConfig/elements/surface/background", - "properties": { - "base": { - "id": "#tokensConfig/elements/surface/background/base", - "properties": { - "value": { - "id": "#tokensConfig/elements/surface/background/base/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/surface/background/base/value/initial", - "default": "{color.gray.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/surface/background/base/value/dark", - "default": "{color.gray.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - }, - "type": "object", - "default": { - "base": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - } - }, - "type": "object", - "default": { - "background": { - "base": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - } - }, - "state": { - "title": "Color states used in Elements.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon mdi:palette-advanced" - ], - "id": "#tokensConfig/elements/state", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/primary", - "properties": { - "color": { - "id": "#tokensConfig/elements/state/primary/color", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/primary/color/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/primary/color/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/color/primary/value/initial", - "default": "{color.primary.600}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/color/primary/value/dark", - "default": "{color.primary.400}" - } - }, - "type": "object", - "default": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/primary/color/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/primary/color/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/color/secondary/value/initial", - "default": "{color.primary.700}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/color/secondary/value/dark", - "default": "{color.primary.200}" - } - }, - "type": "object", - "default": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/elements/state/primary/backgroundColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/primary/backgroundColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/primary/backgroundColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/backgroundColor/primary/value/initial", - "default": "{color.primary.50}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/backgroundColor/primary/value/dark", - "default": "{color.primary.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary/value/initial", - "default": "{color.primary.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/backgroundColor/secondary/value/dark", - "default": "{color.primary.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - } - }, - "borderColor": { - "id": "#tokensConfig/elements/state/primary/borderColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/primary/borderColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/primary/borderColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/borderColor/primary/value/initial", - "default": "{color.primary.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/borderColor/primary/value/dark", - "default": "{color.primary.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/primary/borderColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/primary/borderColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/borderColor/secondary/value/initial", - "default": "{color.primary.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/primary/borderColor/secondary/value/dark", - "default": "{color.primary.700}" - } - }, - "type": "object", - "default": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "primary": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - } - }, - "info": { - "id": "#tokensConfig/elements/state/info", - "properties": { - "color": { - "id": "#tokensConfig/elements/state/info/color", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/info/color/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/info/color/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/info/color/primary/value/initial", - "default": "{color.blue.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/info/color/primary/value/dark", - "default": "{color.blue.400}" - } - }, - "type": "object", - "default": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/info/color/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/info/color/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/info/color/secondary/value/initial", - "default": "{color.blue.600}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/info/color/secondary/value/dark", - "default": "{color.blue.200}" - } - }, - "type": "object", - "default": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/elements/state/info/backgroundColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/info/backgroundColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/info/backgroundColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/info/backgroundColor/primary/value/initial", - "default": "{color.blue.50}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/info/backgroundColor/primary/value/dark", - "default": "{color.blue.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/info/backgroundColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/info/backgroundColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/info/backgroundColor/secondary/value/initial", - "default": "{color.blue.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/info/backgroundColor/secondary/value/dark", - "default": "{color.blue.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - } - }, - "borderColor": { - "id": "#tokensConfig/elements/state/info/borderColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/info/borderColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/info/borderColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/info/borderColor/primary/value/initial", - "default": "{color.blue.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/info/borderColor/primary/value/dark", - "default": "{color.blue.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/info/borderColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/info/borderColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/info/borderColor/secondary/value/initial", - "default": "{color.blue.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/info/borderColor/secondary/value/dark", - "default": "{color.blue.700}" - } - }, - "type": "object", - "default": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "primary": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - } - }, - "success": { - "id": "#tokensConfig/elements/state/success", - "properties": { - "color": { - "id": "#tokensConfig/elements/state/success/color", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/success/color/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/success/color/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/success/color/primary/value/initial", - "default": "{color.green.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/success/color/primary/value/dark", - "default": "{color.green.400}" - } - }, - "type": "object", - "default": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/success/color/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/success/color/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/success/color/secondary/value/initial", - "default": "{color.green.600}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/success/color/secondary/value/dark", - "default": "{color.green.200}" - } - }, - "type": "object", - "default": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/elements/state/success/backgroundColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/success/backgroundColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/success/backgroundColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/success/backgroundColor/primary/value/initial", - "default": "{color.green.50}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/success/backgroundColor/primary/value/dark", - "default": "{color.green.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/success/backgroundColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/success/backgroundColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/success/backgroundColor/secondary/value/initial", - "default": "{color.green.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/success/backgroundColor/secondary/value/dark", - "default": "{color.green.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - } - }, - "borderColor": { - "id": "#tokensConfig/elements/state/success/borderColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/success/borderColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/success/borderColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/success/borderColor/primary/value/initial", - "default": "{color.green.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/success/borderColor/primary/value/dark", - "default": "{color.green.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/success/borderColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/success/borderColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/success/borderColor/secondary/value/initial", - "default": "{color.green.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/success/borderColor/secondary/value/dark", - "default": "{color.green.700}" - } - }, - "type": "object", - "default": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "primary": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - } - }, - "warning": { - "id": "#tokensConfig/elements/state/warning", - "properties": { - "color": { - "id": "#tokensConfig/elements/state/warning/color", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/warning/color/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/warning/color/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/color/primary/value/initial", - "default": "{color.yellow.600}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/color/primary/value/dark", - "default": "{color.yellow.400}" - } - }, - "type": "object", - "default": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/warning/color/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/warning/color/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/color/secondary/value/initial", - "default": "{color.yellow.700}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/color/secondary/value/dark", - "default": "{color.yellow.200}" - } - }, - "type": "object", - "default": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/elements/state/warning/backgroundColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/warning/backgroundColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/warning/backgroundColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/backgroundColor/primary/value/initial", - "default": "{color.yellow.50}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/backgroundColor/primary/value/dark", - "default": "{color.yellow.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary/value/initial", - "default": "{color.yellow.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/backgroundColor/secondary/value/dark", - "default": "{color.yellow.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - } - }, - "borderColor": { - "id": "#tokensConfig/elements/state/warning/borderColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/warning/borderColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/warning/borderColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/borderColor/primary/value/initial", - "default": "{color.yellow.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/borderColor/primary/value/dark", - "default": "{color.yellow.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/warning/borderColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/warning/borderColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/borderColor/secondary/value/initial", - "default": "{color.yellow.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/warning/borderColor/secondary/value/dark", - "default": "{color.yellow.700}" - } - }, - "type": "object", - "default": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "primary": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - } - }, - "danger": { - "id": "#tokensConfig/elements/state/danger", - "properties": { - "color": { - "id": "#tokensConfig/elements/state/danger/color", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/danger/color/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/danger/color/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/color/primary/value/initial", - "default": "{color.red.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/color/primary/value/dark", - "default": "{color.red.300}" - } - }, - "type": "object", - "default": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/danger/color/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/danger/color/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/color/secondary/value/initial", - "default": "{color.red.600}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/color/secondary/value/dark", - "default": "{color.red.200}" - } - }, - "type": "object", - "default": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/elements/state/danger/backgroundColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/danger/backgroundColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/danger/backgroundColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/backgroundColor/primary/value/initial", - "default": "{color.red.50}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/backgroundColor/primary/value/dark", - "default": "{color.red.900}" - } - }, - "type": "object", - "default": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary/value/initial", - "default": "{color.red.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/backgroundColor/secondary/value/dark", - "default": "{color.red.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - } - }, - "borderColor": { - "id": "#tokensConfig/elements/state/danger/borderColor", - "properties": { - "primary": { - "id": "#tokensConfig/elements/state/danger/borderColor/primary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/danger/borderColor/primary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/borderColor/primary/value/initial", - "default": "{color.red.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/borderColor/primary/value/dark", - "default": "{color.red.800}" - } - }, - "type": "object", - "default": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "secondary": { - "id": "#tokensConfig/elements/state/danger/borderColor/secondary", - "properties": { - "value": { - "id": "#tokensConfig/elements/state/danger/borderColor/secondary/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/borderColor/secondary/value/initial", - "default": "{color.red.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/elements/state/danger/borderColor/secondary/value/dark", - "default": "{color.red.700}" - } - }, - "type": "object", - "default": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "primary": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - } - }, - "type": "object", - "default": { - "primary": { - "color": { - "primary": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - }, - "info": { - "color": { - "primary": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - }, - "success": { - "color": { - "primary": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - }, - "warning": { - "color": { - "primary": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - }, - "danger": { - "color": { - "primary": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - } - } - }, - "type": "object", - "default": { - "text": { - "primary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - }, - "secondary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - }, - "container": { - "maxWidth": { - "value": "80rem" - }, - "padding": { - "mobile": { - "value": "{space.4}" - }, - "xs": { - "value": "{space.4}" - }, - "sm": { - "value": "{space.6}" - }, - "md": { - "value": "{space.6}" - } - } - }, - "backdrop": { - "filter": { - "value": "saturate(200%) blur(20px)" - }, - "background": { - "value": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - }, - "border": { - "primary": { - "static": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "secondary": { - "static": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - }, - "hover": { - "value": { - "initial": "", - "dark": "" - } - } - } - }, - "surface": { - "background": { - "base": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - }, - "state": { - "primary": { - "color": { - "primary": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - }, - "info": { - "color": { - "primary": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - }, - "success": { - "color": { - "primary": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - }, - "warning": { - "color": { - "primary": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - }, - "danger": { - "color": { - "primary": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - } - } - }, - "typography": { - "title": "All the configurable tokens for your Typography.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon material-symbols:article" - ], - "id": "#tokensConfig/typography", - "properties": { - "verticalMargin": { - "title": "Vertical spacings between paragraphs.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon mingcute:line-height-line" - ], - "id": "#tokensConfig/typography/verticalMargin", - "properties": { - "sm": { - "id": "#tokensConfig/typography/verticalMargin/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/verticalMargin/sm/value", - "default": "16px" - } - }, - "type": "object", - "default": { - "value": "16px" - } - }, - "base": { - "id": "#tokensConfig/typography/verticalMargin/base", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/verticalMargin/base/value", - "default": "32px" - } - }, - "type": "object", - "default": { - "value": "32px" - } - } - }, - "type": "object", - "default": { - "sm": { - "value": "16px" - }, - "base": { - "value": "32px" - } - } - }, - "letterSpacing": { - "title": "Horizontal spacings between letters.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon mingcute:letter-spacing-line" - ], - "id": "#tokensConfig/typography/letterSpacing", - "properties": { - "tight": { - "id": "#tokensConfig/typography/letterSpacing/tight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/letterSpacing/tight/value", - "default": "-0.025em" - } - }, - "type": "object", - "default": { - "value": "-0.025em" - } - }, - "wide": { - "id": "#tokensConfig/typography/letterSpacing/wide", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/letterSpacing/wide/value", - "default": "0.025em" - } - }, - "type": "object", - "default": { - "value": "0.025em" - } - } - }, - "type": "object", - "default": { - "tight": { - "value": "-0.025em" - }, - "wide": { - "value": "0.025em" - } - } - }, - "fontSize": { - "title": "Horizontal spacings between letters.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font-size", - "@studioIcon mingcute:font-size-fill" - ], - "id": "#tokensConfig/typography/fontSize", - "properties": { - "xs": { - "id": "#tokensConfig/typography/fontSize/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/xs/value", - "default": "12px" - } - }, - "type": "object", - "default": { - "value": "12px" - } - }, - "sm": { - "id": "#tokensConfig/typography/fontSize/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/sm/value", - "default": "14px" - } - }, - "type": "object", - "default": { - "value": "14px" - } - }, - "base": { - "id": "#tokensConfig/typography/fontSize/base", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/base/value", - "default": "16px" - } - }, - "type": "object", - "default": { - "value": "16px" - } - }, - "lg": { - "id": "#tokensConfig/typography/fontSize/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/lg/value", - "default": "18px" - } - }, - "type": "object", - "default": { - "value": "18px" - } - }, - "xl": { - "id": "#tokensConfig/typography/fontSize/xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/xl/value", - "default": "20px" - } - }, - "type": "object", - "default": { - "value": "20px" - } - }, - "2xl": { - "id": "#tokensConfig/typography/fontSize/2xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/2xl/value", - "default": "24px" - } - }, - "type": "object", - "default": { - "value": "24px" - } - }, - "3xl": { - "id": "#tokensConfig/typography/fontSize/3xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/3xl/value", - "default": "30px" - } - }, - "type": "object", - "default": { - "value": "30px" - } - }, - "4xl": { - "id": "#tokensConfig/typography/fontSize/4xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/4xl/value", - "default": "36px" - } - }, - "type": "object", - "default": { - "value": "36px" - } - }, - "5xl": { - "id": "#tokensConfig/typography/fontSize/5xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/5xl/value", - "default": "48px" - } - }, - "type": "object", - "default": { - "value": "48px" - } - }, - "6xl": { - "id": "#tokensConfig/typography/fontSize/6xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/6xl/value", - "default": "60px" - } - }, - "type": "object", - "default": { - "value": "60px" - } - }, - "7xl": { - "id": "#tokensConfig/typography/fontSize/7xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/7xl/value", - "default": "72px" - } - }, - "type": "object", - "default": { - "value": "72px" - } - }, - "8xl": { - "id": "#tokensConfig/typography/fontSize/8xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/8xl/value", - "default": "96px" - } - }, - "type": "object", - "default": { - "value": "96px" - } - }, - "9xl": { - "id": "#tokensConfig/typography/fontSize/9xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontSize/9xl/value", - "default": "128px" - } - }, - "type": "object", - "default": { - "value": "128px" - } - } - }, - "type": "object", - "default": { - "xs": { - "value": "12px" - }, - "sm": { - "value": "14px" - }, - "base": { - "value": "16px" - }, - "lg": { - "value": "18px" - }, - "xl": { - "value": "20px" - }, - "2xl": { - "value": "24px" - }, - "3xl": { - "value": "30px" - }, - "4xl": { - "value": "36px" - }, - "5xl": { - "value": "48px" - }, - "6xl": { - "value": "60px" - }, - "7xl": { - "value": "72px" - }, - "8xl": { - "value": "96px" - }, - "9xl": { - "value": "128px" - } - } - }, - "fontWeight": { - "title": "Font weights used in typography.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font-size", - "@studioIcon mingcute:bold-fill" - ], - "id": "#tokensConfig/typography/fontWeight", - "properties": { - "thin": { - "id": "#tokensConfig/typography/fontWeight/thin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/thin/value", - "default": "100" - } - }, - "type": "object", - "default": { - "value": "100" - } - }, - "extralight": { - "id": "#tokensConfig/typography/fontWeight/extralight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/extralight/value", - "default": "200" - } - }, - "type": "object", - "default": { - "value": "200" - } - }, - "light": { - "id": "#tokensConfig/typography/fontWeight/light", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/light/value", - "default": "300" - } - }, - "type": "object", - "default": { - "value": "300" - } - }, - "normal": { - "id": "#tokensConfig/typography/fontWeight/normal", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/normal/value", - "default": "400" - } - }, - "type": "object", - "default": { - "value": "400" - } - }, - "medium": { - "id": "#tokensConfig/typography/fontWeight/medium", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/medium/value", - "default": "500" - } - }, - "type": "object", - "default": { - "value": "500" - } - }, - "semibold": { - "id": "#tokensConfig/typography/fontWeight/semibold", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/semibold/value", - "default": "600" - } - }, - "type": "object", - "default": { - "value": "600" - } - }, - "bold": { - "id": "#tokensConfig/typography/fontWeight/bold", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/bold/value", - "default": "700" - } - }, - "type": "object", - "default": { - "value": "700" - } - }, - "extrabold": { - "id": "#tokensConfig/typography/fontWeight/extrabold", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/extrabold/value", - "default": "800" - } - }, - "type": "object", - "default": { - "value": "800" - } - }, - "black": { - "id": "#tokensConfig/typography/fontWeight/black", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/fontWeight/black/value", - "default": "900" - } - }, - "type": "object", - "default": { - "value": "900" - } - } - }, - "type": "object", - "default": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - } - }, - "lead": { - "title": "Line heights used in your typography.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font-size", - "@studioIcon material-symbols:height-rounded" - ], - "id": "#tokensConfig/typography/lead", - "properties": { - "none": { - "id": "#tokensConfig/typography/lead/none", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/lead/none/value", - "default": "1" - } - }, - "type": "object", - "default": { - "value": "1" - } - }, - "tight": { - "id": "#tokensConfig/typography/lead/tight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/lead/tight/value", - "default": "1.25" - } - }, - "type": "object", - "default": { - "value": "1.25" - } - }, - "snug": { - "id": "#tokensConfig/typography/lead/snug", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/lead/snug/value", - "default": "1.375" - } - }, - "type": "object", - "default": { - "value": "1.375" - } - }, - "normal": { - "id": "#tokensConfig/typography/lead/normal", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/lead/normal/value", - "default": "1.5" - } - }, - "type": "object", - "default": { - "value": "1.5" - } - }, - "relaxed": { - "id": "#tokensConfig/typography/lead/relaxed", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/lead/relaxed/value", - "default": "1.625" - } - }, - "type": "object", - "default": { - "value": "1.625" - } - }, - "loose": { - "id": "#tokensConfig/typography/lead/loose", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/lead/loose/value", - "default": "2" - } - }, - "type": "object", - "default": { - "value": "2" - } - } - }, - "type": "object", - "default": { - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - } - }, - "font": { - "title": "Your typography fonts", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font", - "@studioIcon material-symbols:font-download-rounded" - ], - "id": "#tokensConfig/typography/font", - "properties": { - "display": { - "id": "#tokensConfig/typography/font/display", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/font/display/value", - "default": "{font.sans}" - } - }, - "type": "object", - "default": { - "value": "{font.sans}" - } - }, - "body": { - "id": "#tokensConfig/typography/font/body", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/font/body/value", - "default": "{font.sans}" - } - }, - "type": "object", - "default": { - "value": "{font.sans}" - } - }, - "code": { - "id": "#tokensConfig/typography/font/code", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/font/code/value", - "default": "{font.mono}" - } - }, - "type": "object", - "default": { - "value": "{font.mono}" - } - } - }, - "type": "object", - "default": { - "display": { - "value": "{font.sans}" - }, - "body": { - "value": "{font.sans}" - }, - "code": { - "value": "{font.mono}" - } - } - }, - "color": { - "title": "Your typography color palette.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon ph:palette" - ], - "id": "#tokensConfig/typography/color", - "properties": { - "primary": { - "id": "#tokensConfig/typography/color/primary", - "properties": { - "50": { - "id": "#tokensConfig/typography/color/primary/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/50/value", - "default": "{color.primary.50}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.50}" - } - }, - "100": { - "id": "#tokensConfig/typography/color/primary/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/100/value", - "default": "{color.primary.100}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.100}" - } - }, - "200": { - "id": "#tokensConfig/typography/color/primary/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/200/value", - "default": "{color.primary.200}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.200}" - } - }, - "300": { - "id": "#tokensConfig/typography/color/primary/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/300/value", - "default": "{color.primary.300}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.300}" - } - }, - "400": { - "id": "#tokensConfig/typography/color/primary/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/400/value", - "default": "{color.primary.400}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.400}" - } - }, - "500": { - "id": "#tokensConfig/typography/color/primary/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/500/value", - "default": "{color.primary.500}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.500}" - } - }, - "600": { - "id": "#tokensConfig/typography/color/primary/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/600/value", - "default": "{color.primary.600}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.600}" - } - }, - "700": { - "id": "#tokensConfig/typography/color/primary/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/700/value", - "default": "{color.primary.700}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.700}" - } - }, - "800": { - "id": "#tokensConfig/typography/color/primary/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/800/value", - "default": "{color.primary.800}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.800}" - } - }, - "900": { - "id": "#tokensConfig/typography/color/primary/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/primary/900/value", - "default": "{color.primary.900}" - } - }, - "type": "object", - "default": { - "value": "{color.primary.900}" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "{color.primary.50}" - }, - "100": { - "value": "{color.primary.100}" - }, - "200": { - "value": "{color.primary.200}" - }, - "300": { - "value": "{color.primary.300}" - }, - "400": { - "value": "{color.primary.400}" - }, - "500": { - "value": "{color.primary.500}" - }, - "600": { - "value": "{color.primary.600}" - }, - "700": { - "value": "{color.primary.700}" - }, - "800": { - "value": "{color.primary.800}" - }, - "900": { - "value": "{color.primary.900}" - } - } - }, - "secondary": { - "id": "#tokensConfig/typography/color/secondary", - "properties": { - "50": { - "id": "#tokensConfig/typography/color/secondary/50", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/50/value", - "default": "{color.gray.50}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.50}" - } - }, - "100": { - "id": "#tokensConfig/typography/color/secondary/100", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/100/value", - "default": "{color.gray.100}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.100}" - } - }, - "200": { - "id": "#tokensConfig/typography/color/secondary/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/200/value", - "default": "{color.gray.200}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.200}" - } - }, - "300": { - "id": "#tokensConfig/typography/color/secondary/300", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/300/value", - "default": "{color.gray.300}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.300}" - } - }, - "400": { - "id": "#tokensConfig/typography/color/secondary/400", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/400/value", - "default": "{color.gray.400}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.400}" - } - }, - "500": { - "id": "#tokensConfig/typography/color/secondary/500", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/500/value", - "default": "{color.gray.500}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.500}" - } - }, - "600": { - "id": "#tokensConfig/typography/color/secondary/600", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/600/value", - "default": "{color.gray.600}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.600}" - } - }, - "700": { - "id": "#tokensConfig/typography/color/secondary/700", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/700/value", - "default": "{color.gray.700}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.700}" - } - }, - "800": { - "id": "#tokensConfig/typography/color/secondary/800", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/800/value", - "default": "{color.gray.800}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.800}" - } - }, - "900": { - "id": "#tokensConfig/typography/color/secondary/900", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/typography/color/secondary/900/value", - "default": "{color.gray.900}" - } - }, - "type": "object", - "default": { - "value": "{color.gray.900}" - } - } - }, - "type": "object", - "default": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - } - } - }, - "type": "object", - "default": { - "primary": { - "50": { - "value": "{color.primary.50}" - }, - "100": { - "value": "{color.primary.100}" - }, - "200": { - "value": "{color.primary.200}" - }, - "300": { - "value": "{color.primary.300}" - }, - "400": { - "value": "{color.primary.400}" - }, - "500": { - "value": "{color.primary.500}" - }, - "600": { - "value": "{color.primary.600}" - }, - "700": { - "value": "{color.primary.700}" - }, - "800": { - "value": "{color.primary.800}" - }, - "900": { - "value": "{color.primary.900}" - } - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - } - } - } - }, - "type": "object", - "default": { - "verticalMargin": { - "sm": { - "value": "16px" - }, - "base": { - "value": "32px" - } - }, - "letterSpacing": { - "tight": { - "value": "-0.025em" - }, - "wide": { - "value": "0.025em" - } - }, - "fontSize": { - "xs": { - "value": "12px" - }, - "sm": { - "value": "14px" - }, - "base": { - "value": "16px" - }, - "lg": { - "value": "18px" - }, - "xl": { - "value": "20px" - }, - "2xl": { - "value": "24px" - }, - "3xl": { - "value": "30px" - }, - "4xl": { - "value": "36px" - }, - "5xl": { - "value": "48px" - }, - "6xl": { - "value": "60px" - }, - "7xl": { - "value": "72px" - }, - "8xl": { - "value": "96px" - }, - "9xl": { - "value": "128px" - } - }, - "fontWeight": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - }, - "lead": { - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - }, - "font": { - "display": { - "value": "{font.sans}" - }, - "body": { - "value": "{font.sans}" - }, - "code": { - "value": "{font.mono}" - } - }, - "color": { - "primary": { - "50": { - "value": "{color.primary.50}" - }, - "100": { - "value": "{color.primary.100}" - }, - "200": { - "value": "{color.primary.200}" - }, - "300": { - "value": "{color.primary.300}" - }, - "400": { - "value": "{color.primary.400}" - }, - "500": { - "value": "{color.primary.500}" - }, - "600": { - "value": "{color.primary.600}" - }, - "700": { - "value": "{color.primary.700}" - }, - "800": { - "value": "{color.primary.800}" - }, - "900": { - "value": "{color.primary.900}" - } - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - } - } - } - }, - "prose": { - "title": "All the configurable tokens for your Prose components.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font-size", - "@studioIcon lucide:component" - ], - "id": "#tokensConfig/prose", - "properties": { - "p": { - "id": "#tokensConfig/prose/p", - "properties": { - "fontSize": { - "id": "#tokensConfig/prose/p/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/p/fontSize/value", - "default": "{typography.fontSize.base}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.base}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/p/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/p/lineHeight/value", - "default": "{typography.lead.normal}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.normal}" - } - }, - "margin": { - "id": "#tokensConfig/prose/p/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/p/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "br": { - "id": "#tokensConfig/prose/p/br", - "properties": { - "margin": { - "id": "#tokensConfig/prose/p/br/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/p/br/margin/value", - "default": "{typography.verticalMargin.base} 0 0 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0 0 0" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "{typography.verticalMargin.base} 0 0 0" - } - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{typography.fontSize.base}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "br": { - "margin": { - "value": "{typography.verticalMargin.base} 0 0 0" - } - } - } - }, - "h1": { - "id": "#tokensConfig/prose/h1", - "properties": { - "margin": { - "id": "#tokensConfig/prose/h1/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h1/margin/value", - "default": "0 0 2rem" - } - }, - "type": "object", - "default": { - "value": "0 0 2rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/h1/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h1/fontSize/value", - "default": "{typography.fontSize.5xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.5xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/h1/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h1/lineHeight/value", - "default": "{typography.lead.tight}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.tight}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/h1/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h1/fontWeight/value", - "default": "{typography.fontWeight.bold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.bold}" - } - }, - "letterSpacing": { - "id": "#tokensConfig/prose/h1/letterSpacing", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h1/letterSpacing/value", - "default": "{typography.letterSpacing.tight}" - } - }, - "type": "object", - "default": { - "value": "{typography.letterSpacing.tight}" - } - }, - "iconSize": { - "id": "#tokensConfig/prose/h1/iconSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h1/iconSize/value", - "default": "{typography.fontSize.3xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.3xl}" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "0 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.5xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.bold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.3xl}" - } - } - }, - "h2": { - "id": "#tokensConfig/prose/h2", - "properties": { - "margin": { - "id": "#tokensConfig/prose/h2/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h2/margin/value", - "default": "3rem 0 2rem" - } - }, - "type": "object", - "default": { - "value": "3rem 0 2rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/h2/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h2/fontSize/value", - "default": "{typography.fontSize.4xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.4xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/h2/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h2/lineHeight/value", - "default": "{typography.lead.tight}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.tight}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/h2/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h2/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - }, - "letterSpacing": { - "id": "#tokensConfig/prose/h2/letterSpacing", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h2/letterSpacing/value", - "default": "{typography.letterSpacing.tight}" - } - }, - "type": "object", - "default": { - "value": "{typography.letterSpacing.tight}" - } - }, - "iconSize": { - "id": "#tokensConfig/prose/h2/iconSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h2/iconSize/value", - "default": "{typography.fontSize.2xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.2xl}" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.4xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.2xl}" - } - } - }, - "h3": { - "id": "#tokensConfig/prose/h3", - "properties": { - "margin": { - "id": "#tokensConfig/prose/h3/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h3/margin/value", - "default": "3rem 0 2rem" - } - }, - "type": "object", - "default": { - "value": "3rem 0 2rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/h3/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h3/fontSize/value", - "default": "{typography.fontSize.3xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.3xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/h3/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h3/lineHeight/value", - "default": "{typography.lead.snug}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.snug}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/h3/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h3/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - }, - "letterSpacing": { - "id": "#tokensConfig/prose/h3/letterSpacing", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h3/letterSpacing/value", - "default": "{typography.letterSpacing.tight}" - } - }, - "type": "object", - "default": { - "value": "{typography.letterSpacing.tight}" - } - }, - "iconSize": { - "id": "#tokensConfig/prose/h3/iconSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h3/iconSize/value", - "default": "{typography.fontSize.xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.xl}" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.3xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.xl}" - } - } - }, - "h4": { - "id": "#tokensConfig/prose/h4", - "properties": { - "margin": { - "id": "#tokensConfig/prose/h4/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h4/margin/value", - "default": "3rem 0 2rem" - } - }, - "type": "object", - "default": { - "value": "3rem 0 2rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/h4/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h4/fontSize/value", - "default": "{typography.fontSize.2xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.2xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/h4/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h4/lineHeight/value", - "default": "{typography.lead.snug}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.snug}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/h4/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h4/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - }, - "letterSpacing": { - "id": "#tokensConfig/prose/h4/letterSpacing", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h4/letterSpacing/value", - "default": "{typography.letterSpacing.tight}" - } - }, - "type": "object", - "default": { - "value": "{typography.letterSpacing.tight}" - } - }, - "iconSize": { - "id": "#tokensConfig/prose/h4/iconSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h4/iconSize/value", - "default": "{typography.fontSize.lg}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.lg}" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.2xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - } - }, - "h5": { - "id": "#tokensConfig/prose/h5", - "properties": { - "margin": { - "id": "#tokensConfig/prose/h5/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h5/margin/value", - "default": "3rem 0 2rem" - } - }, - "type": "object", - "default": { - "value": "3rem 0 2rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/h5/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h5/fontSize/value", - "default": "{typography.fontSize.xl}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/h5/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h5/lineHeight/value", - "default": "{typography.lead.snug}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.snug}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/h5/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h5/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - }, - "iconSize": { - "id": "#tokensConfig/prose/h5/iconSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h5/iconSize/value", - "default": "{typography.fontSize.lg}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.lg}" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - } - }, - "h6": { - "id": "#tokensConfig/prose/h6", - "properties": { - "margin": { - "id": "#tokensConfig/prose/h6/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h6/margin/value", - "default": "3rem 0 2rem" - } - }, - "type": "object", - "default": { - "value": "3rem 0 2rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/h6/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h6/fontSize/value", - "default": "{typography.fontSize.lg}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.lg}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/h6/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h6/lineHeight/value", - "default": "{typography.lead.normal}" - } - }, - "type": "object", - "default": { - "value": "{typography.lead.normal}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/h6/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h6/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - }, - "iconSize": { - "id": "#tokensConfig/prose/h6/iconSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/h6/iconSize/value", - "default": "{typography.fontSize.base}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.base}" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.lg}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.base}" - } - } - }, - "strong": { - "id": "#tokensConfig/prose/strong", - "properties": { - "fontWeight": { - "id": "#tokensConfig/prose/strong/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/strong/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - } - }, - "type": "object", - "default": { - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - } - }, - "img": { - "id": "#tokensConfig/prose/img", - "properties": { - "margin": { - "id": "#tokensConfig/prose/img/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/img/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - } - } - }, - "a": { - "id": "#tokensConfig/prose/a", - "properties": { - "textDecoration": { - "id": "#tokensConfig/prose/a/textDecoration", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/textDecoration/value", - "default": "none" - } - }, - "type": "object", - "default": { - "value": "none" - } - }, - "color": { - "id": "#tokensConfig/prose/a/color", - "properties": { - "static": { - "id": "#tokensConfig/prose/a/color/static", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/color/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/color/static/value/initial", - "default": "inherit" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/color/static/value/dark", - "default": "inherit" - } - }, - "type": "object", - "default": { - "initial": "inherit", - "dark": "inherit" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "inherit", - "dark": "inherit" - } - } - }, - "hover": { - "id": "#tokensConfig/prose/a/color/hover", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/color/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/color/hover/value/initial", - "default": "{typography.color.primary.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/color/hover/value/dark", - "default": "{typography.color.primary.400}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "inherit", - "dark": "inherit" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - } - }, - "border": { - "id": "#tokensConfig/prose/a/border", - "properties": { - "width": { - "id": "#tokensConfig/prose/a/border/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/border/width/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "style": { - "id": "#tokensConfig/prose/a/border/style", - "properties": { - "static": { - "id": "#tokensConfig/prose/a/border/style/static", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/border/style/static/value", - "default": "dashed" - } - }, - "type": "object", - "default": { - "value": "dashed" - } - }, - "hover": { - "id": "#tokensConfig/prose/a/border/style/hover", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/border/style/hover/value", - "default": "solid" - } - }, - "type": "object", - "default": { - "value": "solid" - } - } - }, - "type": "object", - "default": { - "static": { - "value": "dashed" - }, - "hover": { - "value": "solid" - } - } - }, - "color": { - "id": "#tokensConfig/prose/a/border/color", - "properties": { - "static": { - "id": "#tokensConfig/prose/a/border/color/static", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/border/color/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/border/color/static/value/initial", - "default": "currentColor" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/border/color/static/value/dark", - "default": "currentColor" - } - }, - "type": "object", - "default": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "hover": { - "id": "#tokensConfig/prose/a/border/color/hover", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/border/color/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/border/color/hover/value/initial", - "default": "currentColor" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/border/color/hover/value/dark", - "default": "currentColor" - } - }, - "type": "object", - "default": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - } - }, - "distance": { - "id": "#tokensConfig/prose/a/border/distance", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/border/distance/value", - "default": "2px" - } - }, - "type": "object", - "default": { - "value": "2px" - } - } - }, - "type": "object", - "default": { - "width": { - "value": "1px" - }, - "style": { - "static": { - "value": "dashed" - }, - "hover": { - "value": "solid" - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "distance": { - "value": "2px" - } - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/a/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/fontWeight/value", - "default": "{typography.fontWeight.medium}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.medium}" - } - }, - "hasCode": { - "id": "#tokensConfig/prose/a/hasCode", - "properties": { - "borderBottom": { - "id": "#tokensConfig/prose/a/hasCode/borderBottom", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/hasCode/borderBottom/value", - "default": "none" - } - }, - "type": "object", - "default": { - "value": "none" - } - } - }, - "type": "object", - "default": { - "borderBottom": { - "value": "none" - } - } - }, - "code": { - "id": "#tokensConfig/prose/a/code", - "properties": { - "border": { - "id": "#tokensConfig/prose/a/code/border", - "properties": { - "width": { - "id": "#tokensConfig/prose/a/code/border/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/code/border/width/value", - "default": "{prose.a.border.width}" - } - }, - "type": "object", - "default": { - "value": "{prose.a.border.width}" - } - }, - "style": { - "id": "#tokensConfig/prose/a/code/border/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/a/code/border/style/value", - "default": "{prose.a.border.style.static}" - } - }, - "type": "object", - "default": { - "value": "{prose.a.border.style.static}" - } - }, - "color": { - "id": "#tokensConfig/prose/a/code/border/color", - "properties": { - "static": { - "id": "#tokensConfig/prose/a/code/border/color/static", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/code/border/color/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/code/border/color/static/value/initial", - "default": "{typography.color.secondary.400}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/code/border/color/static/value/dark", - "default": "{typography.color.secondary.600}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "hover": { - "id": "#tokensConfig/prose/a/code/border/color/hover", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/code/border/color/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/code/border/color/hover/value/initial", - "default": "{typography.color.primary.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/code/border/color/hover/value/dark", - "default": "{typography.color.primary.600}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - } - }, - "type": "object", - "default": { - "width": { - "value": "{prose.a.border.width}" - }, - "style": { - "value": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - } - }, - "color": { - "id": "#tokensConfig/prose/a/code/color", - "properties": { - "static": { - "id": "#tokensConfig/prose/a/code/color/static", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/code/color/static/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/code/color/static/value/initial", - "default": "currentColor" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/code/color/static/value/dark", - "default": "currentColor" - } - }, - "type": "object", - "default": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "hover": { - "id": "#tokensConfig/prose/a/code/color/hover", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/code/color/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/code/color/hover/value/initial", - "default": "currentColor" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/code/color/hover/value/dark", - "default": "currentColor" - } - }, - "type": "object", - "default": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - } - }, - "type": "object", - "default": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - } - }, - "background": { - "id": "#tokensConfig/prose/a/code/background", - "properties": { - "static": { - "id": "#tokensConfig/prose/a/code/background/static", - "type": "any", - "default": {} - }, - "hover": { - "id": "#tokensConfig/prose/a/code/background/hover", - "properties": { - "value": { - "id": "#tokensConfig/prose/a/code/background/hover/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/a/code/background/hover/value/initial", - "default": "{typography.color.primary.50}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/a/code/background/hover/value/dark", - "default": "{typography.color.primary.900}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - }, - "type": "object", - "default": { - "static": {}, - "hover": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - }, - "type": "object", - "default": { - "border": { - "width": { - "value": "{prose.a.border.width}" - }, - "style": { - "value": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "background": { - "static": {}, - "hover": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - } - }, - "type": "object", - "default": { - "textDecoration": { - "value": "none" - }, - "color": { - "static": { - "value": { - "initial": "inherit", - "dark": "inherit" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "static": { - "value": "dashed" - }, - "hover": { - "value": "solid" - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "distance": { - "value": "2px" - } - }, - "fontWeight": { - "value": "{typography.fontWeight.medium}" - }, - "hasCode": { - "borderBottom": { - "value": "none" - } - }, - "code": { - "border": { - "width": { - "value": "{prose.a.border.width}" - }, - "style": { - "value": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "background": { - "static": {}, - "hover": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - } - }, - "blockquote": { - "id": "#tokensConfig/prose/blockquote", - "properties": { - "margin": { - "id": "#tokensConfig/prose/blockquote/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "padding": { - "id": "#tokensConfig/prose/blockquote/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/padding/value", - "default": "0 0 0 24px" - } - }, - "type": "object", - "default": { - "value": "0 0 0 24px" - } - }, - "quotes": { - "id": "#tokensConfig/prose/blockquote/quotes", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/quotes/value", - "default": "'201C' '201D' '2018' '2019'" - } - }, - "type": "object", - "default": { - "value": "'201C' '201D' '2018' '2019'" - } - }, - "color": { - "id": "#tokensConfig/prose/blockquote/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/blockquote/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/color/value/initial", - "default": "{typography.color.secondary.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/color/value/dark", - "default": "{typography.color.secondary.400}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - } - }, - "border": { - "id": "#tokensConfig/prose/blockquote/border", - "properties": { - "width": { - "id": "#tokensConfig/prose/blockquote/border/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/border/width/value", - "default": "4px" - } - }, - "type": "object", - "default": { - "value": "4px" - } - }, - "style": { - "id": "#tokensConfig/prose/blockquote/border/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/border/style/value", - "default": "solid" - } - }, - "type": "object", - "default": { - "value": "solid" - } - }, - "color": { - "id": "#tokensConfig/prose/blockquote/border/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/blockquote/border/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/border/color/value/initial", - "default": "{typography.color.secondary.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/blockquote/border/color/value/dark", - "default": "{typography.color.secondary.700}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "type": "object", - "default": { - "width": { - "value": "4px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 24px" - }, - "quotes": { - "value": "'201C' '201D' '2018' '2019'" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - }, - "border": { - "width": { - "value": "4px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - } - }, - "ul": { - "id": "#tokensConfig/prose/ul", - "properties": { - "listStyleType": { - "id": "#tokensConfig/prose/ul/listStyleType", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/ul/listStyleType/value", - "default": "disc" - } - }, - "type": "object", - "default": { - "value": "disc" - } - }, - "margin": { - "id": "#tokensConfig/prose/ul/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/ul/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "padding": { - "id": "#tokensConfig/prose/ul/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/ul/padding/value", - "default": "0 0 0 21px" - } - }, - "type": "object", - "default": { - "value": "0 0 0 21px" - } - }, - "li": { - "id": "#tokensConfig/prose/ul/li", - "properties": { - "markerColor": { - "id": "#tokensConfig/prose/ul/li/markerColor", - "properties": { - "value": { - "id": "#tokensConfig/prose/ul/li/markerColor/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/ul/li/markerColor/value/initial", - "default": "{typography.color.secondary.400}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/ul/li/markerColor/value/dark", - "default": "{typography.color.secondary.500}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "type": "object", - "default": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - } - }, - "type": "object", - "default": { - "listStyleType": { - "value": "disc" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - } - }, - "ol": { - "id": "#tokensConfig/prose/ol", - "properties": { - "listStyleType": { - "id": "#tokensConfig/prose/ol/listStyleType", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/ol/listStyleType/value", - "default": "decimal" - } - }, - "type": "object", - "default": { - "value": "decimal" - } - }, - "margin": { - "id": "#tokensConfig/prose/ol/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/ol/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "padding": { - "id": "#tokensConfig/prose/ol/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/ol/padding/value", - "default": "0 0 0 21px" - } - }, - "type": "object", - "default": { - "value": "0 0 0 21px" - } - }, - "li": { - "id": "#tokensConfig/prose/ol/li", - "properties": { - "markerColor": { - "id": "#tokensConfig/prose/ol/li/markerColor", - "properties": { - "value": { - "id": "#tokensConfig/prose/ol/li/markerColor/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/ol/li/markerColor/value/initial", - "default": "{typography.color.secondary.500}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/ol/li/markerColor/value/dark", - "default": "{typography.color.secondary.500}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "type": "object", - "default": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - } - }, - "type": "object", - "default": { - "listStyleType": { - "value": "decimal" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - } - }, - "li": { - "id": "#tokensConfig/prose/li", - "properties": { - "margin": { - "id": "#tokensConfig/prose/li/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/li/margin/value", - "default": "{typography.verticalMargin.sm} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.sm} 0" - } - }, - "listStylePosition": { - "id": "#tokensConfig/prose/li/listStylePosition", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/li/listStylePosition/value", - "default": "outside" - } - }, - "type": "object", - "default": { - "value": "outside" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "{typography.verticalMargin.sm} 0" - }, - "listStylePosition": { - "value": "outside" - } - } - }, - "hr": { - "id": "#tokensConfig/prose/hr", - "properties": { - "margin": { - "id": "#tokensConfig/prose/hr/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/hr/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "style": { - "id": "#tokensConfig/prose/hr/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/hr/style/value", - "default": "solid" - } - }, - "type": "object", - "default": { - "value": "solid" - } - }, - "width": { - "id": "#tokensConfig/prose/hr/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/hr/width/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "color": { - "id": "#tokensConfig/prose/hr/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/hr/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/hr/color/value/initial", - "default": "{typography.color.secondary.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/hr/color/value/dark", - "default": "{typography.color.secondary.800}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "style": { - "value": "solid" - }, - "width": { - "value": "1px" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - } - }, - "table": { - "id": "#tokensConfig/prose/table", - "properties": { - "margin": { - "id": "#tokensConfig/prose/table/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/table/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "textAlign": { - "id": "#tokensConfig/prose/table/textAlign", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/table/textAlign/value", - "default": "left" - } - }, - "type": "object", - "default": { - "value": "left" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/table/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/table/fontSize/value", - "default": "{typography.fontSize.sm}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.sm}" - } - }, - "lineHeight": { - "id": "#tokensConfig/prose/table/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/table/lineHeight/value", - "default": "inherit" - } - }, - "type": "object", - "default": { - "value": "inherit" - } - } - }, - "type": "object", - "default": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "textAlign": { - "value": "left" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "lineHeight": { - "value": "inherit" - } - } - }, - "thead": { - "id": "#tokensConfig/prose/thead", - "properties": { - "border": { - "id": "#tokensConfig/prose/thead/border", - "properties": { - "width": { - "id": "#tokensConfig/prose/thead/border/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/thead/border/width/value", - "default": "0px" - } - }, - "type": "object", - "default": { - "value": "0px" - } - }, - "style": { - "id": "#tokensConfig/prose/thead/border/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/thead/border/style/value", - "default": "solid" - } - }, - "type": "object", - "default": { - "value": "solid" - } - }, - "color": { - "id": "#tokensConfig/prose/thead/border/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/thead/border/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/thead/border/color/value/initial", - "default": "{typography.color.secondary.300}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/thead/border/color/value/dark", - "default": "{typography.color.secondary.600}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "type": "object", - "default": { - "width": { - "value": "0px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "borderBottom": { - "id": "#tokensConfig/prose/thead/borderBottom", - "properties": { - "width": { - "id": "#tokensConfig/prose/thead/borderBottom/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/thead/borderBottom/width/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "style": { - "id": "#tokensConfig/prose/thead/borderBottom/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/thead/borderBottom/style/value", - "default": "solid" - } - }, - "type": "object", - "default": { - "value": "solid" - } - }, - "color": { - "id": "#tokensConfig/prose/thead/borderBottom/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/thead/borderBottom/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/thead/borderBottom/color/value/initial", - "default": "{typography.color.secondary.300}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/thead/borderBottom/color/value/dark", - "default": "{typography.color.secondary.600}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "type": "object", - "default": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - } - }, - "type": "object", - "default": { - "border": { - "width": { - "value": "0px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - } - }, - "th": { - "id": "#tokensConfig/prose/th", - "properties": { - "color": { - "id": "#tokensConfig/prose/th/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/th/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/th/color/value/initial", - "default": "{typography.color.secondary.600}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/th/color/value/dark", - "default": "{typography.color.secondary.400}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - } - }, - "padding": { - "id": "#tokensConfig/prose/th/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/th/padding/value", - "default": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - } - }, - "type": "object", - "default": { - "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/th/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/th/fontWeight/value", - "default": "{typography.fontWeight.semibold}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.semibold}" - } - } - }, - "type": "object", - "default": { - "color": { - "value": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - }, - "padding": { - "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - } - }, - "tbody": { - "id": "#tokensConfig/prose/tbody", - "properties": { - "tr": { - "id": "#tokensConfig/prose/tbody/tr", - "properties": { - "borderBottom": { - "id": "#tokensConfig/prose/tbody/tr/borderBottom", - "properties": { - "width": { - "id": "#tokensConfig/prose/tbody/tr/borderBottom/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/tbody/tr/borderBottom/width/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "style": { - "id": "#tokensConfig/prose/tbody/tr/borderBottom/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/tbody/tr/borderBottom/style/value", - "default": "dashed" - } - }, - "type": "object", - "default": { - "value": "dashed" - } - }, - "color": { - "id": "#tokensConfig/prose/tbody/tr/borderBottom/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/tbody/tr/borderBottom/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/tbody/tr/borderBottom/color/value/initial", - "default": "{typography.color.secondary.300}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/tbody/tr/borderBottom/color/value/dark", - "default": "{typography.color.secondary.700}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "type": "object", - "default": { - "width": { - "value": "1px" - }, - "style": { - "value": "dashed" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - } - }, - "type": "object", - "default": { - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "dashed" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - } - }, - "td": { - "id": "#tokensConfig/prose/tbody/td", - "properties": { - "padding": { - "id": "#tokensConfig/prose/tbody/td/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/tbody/td/padding/value", - "default": "{typography.verticalMargin.sm}" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "type": "object", - "default": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "code": { - "id": "#tokensConfig/prose/tbody/code", - "properties": { - "inline": { - "id": "#tokensConfig/prose/tbody/code/inline", - "properties": { - "fontSize": { - "id": "#tokensConfig/prose/tbody/code/inline/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/tbody/code/inline/fontSize/value", - "default": "{typography.fontSize.sm}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.sm}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{typography.fontSize.sm}" - } - } - } - }, - "type": "object", - "default": { - "inline": { - "fontSize": { - "value": "{typography.fontSize.sm}" - } - } - } - } - }, - "type": "object", - "default": { - "tr": { - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "dashed" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "td": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - }, - "code": { - "inline": { - "fontSize": { - "value": "{typography.fontSize.sm}" - } - } - } - } - }, - "code": { - "id": "#tokensConfig/prose/code", - "properties": { - "block": { - "id": "#tokensConfig/prose/code/block", - "properties": { - "fontSize": { - "id": "#tokensConfig/prose/code/block/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/block/fontSize/value", - "default": "{typography.fontSize.sm}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.sm}" - } - }, - "margin": { - "id": "#tokensConfig/prose/code/block/margin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/block/margin/value", - "default": "{typography.verticalMargin.base} 0" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "border": { - "id": "#tokensConfig/prose/code/block/border", - "properties": { - "width": { - "id": "#tokensConfig/prose/code/block/border/width", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/block/border/width/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "style": { - "id": "#tokensConfig/prose/code/block/border/style", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/block/border/style/value", - "default": "solid" - } - }, - "type": "object", - "default": { - "value": "solid" - } - }, - "color": { - "id": "#tokensConfig/prose/code/block/border/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/code/block/border/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/code/block/border/color/value/initial", - "default": "{typography.color.secondary.200}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/code/block/border/color/value/dark", - "default": "{typography.color.secondary.800}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - } - }, - "type": "object", - "default": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - } - }, - "color": { - "id": "#tokensConfig/prose/code/block/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/code/block/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/code/block/color/value/initial", - "default": "{typography.color.secondary.700}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/code/block/color/value/dark", - "default": "{typography.color.secondary.200}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/prose/code/block/backgroundColor", - "properties": { - "value": { - "id": "#tokensConfig/prose/code/block/backgroundColor/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/code/block/backgroundColor/value/initial", - "default": "{typography.color.secondary.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/code/block/backgroundColor/value/dark", - "default": "{typography.color.secondary.900}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - }, - "pre": { - "id": "#tokensConfig/prose/code/block/pre", - "properties": { - "padding": { - "id": "#tokensConfig/prose/code/block/pre/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/block/pre/padding/value", - "default": "{typography.verticalMargin.sm}" - } - }, - "type": "object", - "default": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "type": "object", - "default": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - }, - "pre": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - } - }, - "inline": { - "id": "#tokensConfig/prose/code/inline", - "properties": { - "borderRadius": { - "id": "#tokensConfig/prose/code/inline/borderRadius", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/borderRadius/value", - "default": "0.375rem" - } - }, - "type": "object", - "default": { - "value": "0.375rem" - } - }, - "padding": { - "id": "#tokensConfig/prose/code/inline/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/padding/value", - "default": "0.25rem 0.375rem 0.25rem 0.375rem" - } - }, - "type": "object", - "default": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem" - } - }, - "fontSize": { - "id": "#tokensConfig/prose/code/inline/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/fontSize/value", - "default": "{typography.fontSize.sm}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontSize.sm}" - } - }, - "fontWeight": { - "id": "#tokensConfig/prose/code/inline/fontWeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/fontWeight/value", - "default": "{typography.fontWeight.normal}" - } - }, - "type": "object", - "default": { - "value": "{typography.fontWeight.normal}" - } - }, - "color": { - "id": "#tokensConfig/prose/code/inline/color", - "properties": { - "value": { - "id": "#tokensConfig/prose/code/inline/color/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/color/value/initial", - "default": "{typography.color.secondary.700}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/color/value/dark", - "default": "{typography.color.secondary.200}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - } - }, - "backgroundColor": { - "id": "#tokensConfig/prose/code/inline/backgroundColor", - "properties": { - "value": { - "id": "#tokensConfig/prose/code/inline/backgroundColor/value", - "properties": { - "initial": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/backgroundColor/value/initial", - "default": "{typography.color.secondary.100}" - }, - "dark": { - "type": "string", - "id": "#tokensConfig/prose/code/inline/backgroundColor/value/dark", - "default": "{typography.color.secondary.900}" - } - }, - "type": "object", - "default": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - }, - "type": "object", - "default": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - }, - "type": "object", - "default": { - "borderRadius": { - "value": "0.375rem" - }, - "padding": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.normal}" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - } - }, - "type": "object", - "default": { - "block": { - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - }, - "pre": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "inline": { - "borderRadius": { - "value": "0.375rem" - }, - "padding": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.normal}" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - } - } - }, - "type": "object", - "default": { - "p": { - "fontSize": { - "value": "{typography.fontSize.base}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "br": { - "margin": { - "value": "{typography.verticalMargin.base} 0 0 0" - } - } - }, - "h1": { - "margin": { - "value": "0 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.5xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.bold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.3xl}" - } - }, - "h2": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.4xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.2xl}" - } - }, - "h3": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.3xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.xl}" - } - }, - "h4": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.2xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - }, - "h5": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - }, - "h6": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.lg}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.base}" - } - }, - "strong": { - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - }, - "img": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "a": { - "textDecoration": { - "value": "none" - }, - "color": { - "static": { - "value": { - "initial": "inherit", - "dark": "inherit" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "static": { - "value": "dashed" - }, - "hover": { - "value": "solid" - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "distance": { - "value": "2px" - } - }, - "fontWeight": { - "value": "{typography.fontWeight.medium}" - }, - "hasCode": { - "borderBottom": { - "value": "none" - } - }, - "code": { - "border": { - "width": { - "value": "{prose.a.border.width}" - }, - "style": { - "value": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "background": { - "static": {}, - "hover": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - }, - "blockquote": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 24px" - }, - "quotes": { - "value": "'201C' '201D' '2018' '2019'" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - }, - "border": { - "width": { - "value": "4px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "ul": { - "listStyleType": { - "value": "disc" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "ol": { - "listStyleType": { - "value": "decimal" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "li": { - "margin": { - "value": "{typography.verticalMargin.sm} 0" - }, - "listStylePosition": { - "value": "outside" - } - }, - "hr": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "style": { - "value": "solid" - }, - "width": { - "value": "1px" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "table": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "textAlign": { - "value": "left" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "lineHeight": { - "value": "inherit" - } - }, - "thead": { - "border": { - "width": { - "value": "0px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "th": { - "color": { - "value": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - }, - "padding": { - "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - }, - "tbody": { - "tr": { - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "dashed" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "td": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - }, - "code": { - "inline": { - "fontSize": { - "value": "{typography.fontSize.sm}" - } - } - } - }, - "code": { - "block": { - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - }, - "pre": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "inline": { - "borderRadius": { - "value": "0.375rem" - }, - "padding": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.normal}" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - } - } - }, - "radii": { - "title": "Your website border radiuses.", - "tags": [ - "@studioInput design-token", - "@studioInpuTokenType size", - "@studioIcon material-symbols:rounded-corner", - "@studioInputTokenType size" - ], - "id": "#tokensConfig/radii", - "properties": { - "sm": { - "id": "#tokensConfig/radii/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/sm/value", - "default": "0.375rem" - } - }, - "type": "object", - "default": { - "value": "0.375rem" - } - }, - "md": { - "id": "#tokensConfig/radii/md", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/md/value", - "default": "0.5rem" - } - }, - "type": "object", - "default": { - "value": "0.5rem" - } - }, - "lg": { - "id": "#tokensConfig/radii/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/lg/value", - "default": "0.75rem" - } - }, - "type": "object", - "default": { - "value": "0.75rem" - } - }, - "none": { - "id": "#tokensConfig/radii/none", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/none/value", - "default": "0px" - } - }, - "type": "object", - "default": { - "value": "0px" - } - }, - "2xs": { - "id": "#tokensConfig/radii/2xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/2xs/value", - "default": "0.125rem" - } - }, - "type": "object", - "default": { - "value": "0.125rem" - } - }, - "xs": { - "id": "#tokensConfig/radii/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/xs/value", - "default": "0.25rem" - } - }, - "type": "object", - "default": { - "value": "0.25rem" - } - }, - "xl": { - "id": "#tokensConfig/radii/xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/xl/value", - "default": "1rem" - } - }, - "type": "object", - "default": { - "value": "1rem" - } - }, - "2xl": { - "id": "#tokensConfig/radii/2xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/2xl/value", - "default": "1.5rem" - } - }, - "type": "object", - "default": { - "value": "1.5rem" - } - }, - "3xl": { - "id": "#tokensConfig/radii/3xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/3xl/value", - "default": "1.75rem" - } - }, - "type": "object", - "default": { - "value": "1.75rem" - } - }, - "full": { - "id": "#tokensConfig/radii/full", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/radii/full/value", - "default": "9999px" - } - }, - "type": "object", - "default": { - "value": "9999px" - } - } - }, - "type": "object", - "default": { - "sm": { - "value": "0.375rem" - }, - "md": { - "value": "0.5rem" - }, - "lg": { - "value": "0.75rem" - }, - "none": { - "value": "0px" - }, - "2xs": { - "value": "0.125rem" - }, - "xs": { - "value": "0.25rem" - }, - "xl": { - "value": "1rem" - }, - "2xl": { - "value": "1.5rem" - }, - "3xl": { - "value": "1.75rem" - }, - "full": { - "value": "9999px" - } - } - }, - "fontSize": { - "title": "Your website font sizes.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font-size", - "@studioIcon radix-icons:font-style" - ], - "id": "#tokensConfig/fontSize", - "properties": { - "xs": { - "id": "#tokensConfig/fontSize/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/xs/value", - "default": "0.75rem" - } - }, - "type": "object", - "default": { - "value": "0.75rem" - } - }, - "sm": { - "id": "#tokensConfig/fontSize/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/sm/value", - "default": "0.875rem" - } - }, - "type": "object", - "default": { - "value": "0.875rem" - } - }, - "base": { - "id": "#tokensConfig/fontSize/base", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/base/value", - "default": "1rem" - } - }, - "type": "object", - "default": { - "value": "1rem" - } - }, - "lg": { - "id": "#tokensConfig/fontSize/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/lg/value", - "default": "1.125rem" - } - }, - "type": "object", - "default": { - "value": "1.125rem" - } - }, - "xl": { - "id": "#tokensConfig/fontSize/xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/xl/value", - "default": "1.25rem" - } - }, - "type": "object", - "default": { - "value": "1.25rem" - } - }, - "2xl": { - "id": "#tokensConfig/fontSize/2xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/2xl/value", - "default": "1.5rem" - } - }, - "type": "object", - "default": { - "value": "1.5rem" - } - }, - "3xl": { - "id": "#tokensConfig/fontSize/3xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/3xl/value", - "default": "1.875rem" - } - }, - "type": "object", - "default": { - "value": "1.875rem" - } - }, - "4xl": { - "id": "#tokensConfig/fontSize/4xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/4xl/value", - "default": "2.25rem" - } - }, - "type": "object", - "default": { - "value": "2.25rem" - } - }, - "5xl": { - "id": "#tokensConfig/fontSize/5xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/5xl/value", - "default": "3rem" - } - }, - "type": "object", - "default": { - "value": "3rem" - } - }, - "6xl": { - "id": "#tokensConfig/fontSize/6xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/6xl/value", - "default": "3.75rem" - } - }, - "type": "object", - "default": { - "value": "3.75rem" - } - }, - "7xl": { - "id": "#tokensConfig/fontSize/7xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/7xl/value", - "default": "4.5rem" - } - }, - "type": "object", - "default": { - "value": "4.5rem" - } - }, - "8xl": { - "id": "#tokensConfig/fontSize/8xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/8xl/value", - "default": "6rem" - } - }, - "type": "object", - "default": { - "value": "6rem" - } - }, - "9xl": { - "id": "#tokensConfig/fontSize/9xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontSize/9xl/value", - "default": "8rem" - } - }, - "type": "object", - "default": { - "value": "8rem" - } - } - }, - "type": "object", - "default": { - "xs": { - "value": "0.75rem" - }, - "sm": { - "value": "0.875rem" - }, - "base": { - "value": "1rem" - }, - "lg": { - "value": "1.125rem" - }, - "xl": { - "value": "1.25rem" - }, - "2xl": { - "value": "1.5rem" - }, - "3xl": { - "value": "1.875rem" - }, - "4xl": { - "value": "2.25rem" - }, - "5xl": { - "value": "3rem" - }, - "6xl": { - "value": "3.75rem" - }, - "7xl": { - "value": "4.5rem" - }, - "8xl": { - "value": "6rem" - }, - "9xl": { - "value": "8rem" - } - } - }, - "lead": { - "title": "Your website line heights.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon icon-park-outline:auto-line-height" - ], - "id": "#tokensConfig/lead", - "properties": { - "1": { - "id": "#tokensConfig/lead/1", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/1/value", - "default": ".025rem" - } - }, - "type": "object", - "default": { - "value": ".025rem" - } - }, - "2": { - "id": "#tokensConfig/lead/2", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/2/value", - "default": ".5rem" - } - }, - "type": "object", - "default": { - "value": ".5rem" - } - }, - "3": { - "id": "#tokensConfig/lead/3", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/3/value", - "default": ".75rem" - } - }, - "type": "object", - "default": { - "value": ".75rem" - } - }, - "4": { - "id": "#tokensConfig/lead/4", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/4/value", - "default": "1rem" - } - }, - "type": "object", - "default": { - "value": "1rem" - } - }, - "5": { - "id": "#tokensConfig/lead/5", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/5/value", - "default": "1.25rem" - } - }, - "type": "object", - "default": { - "value": "1.25rem" - } - }, - "6": { - "id": "#tokensConfig/lead/6", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/6/value", - "default": "1.5rem" - } - }, - "type": "object", - "default": { - "value": "1.5rem" - } - }, - "7": { - "id": "#tokensConfig/lead/7", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/7/value", - "default": "1.75rem" - } - }, - "type": "object", - "default": { - "value": "1.75rem" - } - }, - "8": { - "id": "#tokensConfig/lead/8", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/8/value", - "default": "2rem" - } - }, - "type": "object", - "default": { - "value": "2rem" - } - }, - "9": { - "id": "#tokensConfig/lead/9", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/9/value", - "default": "2.25rem" - } - }, - "type": "object", - "default": { - "value": "2.25rem" - } - }, - "10": { - "id": "#tokensConfig/lead/10", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/10/value", - "default": "2.5rem" - } - }, - "type": "object", - "default": { - "value": "2.5rem" - } - }, - "none": { - "id": "#tokensConfig/lead/none", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/none/value", - "default": "1" - } - }, - "type": "object", - "default": { - "value": "1" - } - }, - "tight": { - "id": "#tokensConfig/lead/tight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/tight/value", - "default": "1.25" - } - }, - "type": "object", - "default": { - "value": "1.25" - } - }, - "snug": { - "id": "#tokensConfig/lead/snug", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/snug/value", - "default": "1.375" - } - }, - "type": "object", - "default": { - "value": "1.375" - } - }, - "normal": { - "id": "#tokensConfig/lead/normal", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/normal/value", - "default": "1.5" - } - }, - "type": "object", - "default": { - "value": "1.5" - } - }, - "relaxed": { - "id": "#tokensConfig/lead/relaxed", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/relaxed/value", - "default": "1.625" - } - }, - "type": "object", - "default": { - "value": "1.625" - } - }, - "loose": { - "id": "#tokensConfig/lead/loose", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/lead/loose/value", - "default": "2" - } - }, - "type": "object", - "default": { - "value": "2" - } - } - }, - "type": "object", - "default": { - "1": { - "value": ".025rem" - }, - "2": { - "value": ".5rem" - }, - "3": { - "value": ".75rem" - }, - "4": { - "value": "1rem" - }, - "5": { - "value": "1.25rem" - }, - "6": { - "value": "1.5rem" - }, - "7": { - "value": "1.75rem" - }, - "8": { - "value": "2rem" - }, - "9": { - "value": "2.25rem" - }, - "10": { - "value": "2.5rem" - }, - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - } - }, - "font": { - "title": "Your website fonts", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font", - "@studioIcon material-symbols:font-download-rounded" - ], - "id": "#tokensConfig/font", - "properties": { - "sans": { - "id": "#tokensConfig/font/sans", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/font/sans/value", - "default": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" - } - }, - "type": "object", - "default": { - "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" - } - }, - "serif": { - "id": "#tokensConfig/font/serif", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/font/serif/value", - "default": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" - } - }, - "type": "object", - "default": { - "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" - } - }, - "mono": { - "id": "#tokensConfig/font/mono", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/font/mono/value", - "default": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" - } - }, - "type": "object", - "default": { - "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" - } - } - }, - "type": "object", - "default": { - "sans": { - "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" - }, - "serif": { - "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" - }, - "mono": { - "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" - } - } - }, - "docus": { - "title": "All the configurable tokens from Docus.", - "tags": [ - "@studioIcon material-symbols:docs" - ], - "id": "#tokensConfig/docus", - "properties": { - "header": { - "id": "#tokensConfig/docus/header", - "properties": { - "height": { - "id": "#tokensConfig/docus/header/height", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/header/height/value", - "default": "64px" - } - }, - "type": "object", - "default": { - "value": "64px" - } - } - }, - "type": "object", - "default": { - "height": { - "value": "64px" - } - } - }, - "footer": { - "id": "#tokensConfig/docus/footer", - "properties": { - "padding": { - "id": "#tokensConfig/docus/footer/padding", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/footer/padding/value", - "default": "{space.4} 0" - } - }, - "type": "object", - "default": { - "value": "{space.4} 0" - } - } - }, - "type": "object", - "default": { - "padding": { - "value": "{space.4} 0" - } - } - }, - "readableLine": { - "id": "#tokensConfig/docus/readableLine", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/readableLine/value", - "default": "78ch" - } - }, - "type": "object", - "default": { - "value": "78ch" - } - }, - "loadingBar": { - "id": "#tokensConfig/docus/loadingBar", - "properties": { - "height": { - "id": "#tokensConfig/docus/loadingBar/height", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/loadingBar/height/value", - "default": "3px" - } - }, - "type": "object", - "default": { - "value": "3px" - } - }, - "gradientColorStop1": { - "id": "#tokensConfig/docus/loadingBar/gradientColorStop1", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/loadingBar/gradientColorStop1/value", - "default": "#00dc82" - } - }, - "type": "object", - "default": { - "value": "#00dc82" - } - }, - "gradientColorStop2": { - "id": "#tokensConfig/docus/loadingBar/gradientColorStop2", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/loadingBar/gradientColorStop2/value", - "default": "#34cdfe" - } - }, - "type": "object", - "default": { - "value": "#34cdfe" - } - }, - "gradientColorStop3": { - "id": "#tokensConfig/docus/loadingBar/gradientColorStop3", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/docus/loadingBar/gradientColorStop3/value", - "default": "#0047e1" - } - }, - "type": "object", - "default": { - "value": "#0047e1" - } - } - }, - "type": "object", - "default": { - "height": { - "value": "3px" - }, - "gradientColorStop1": { - "value": "#00dc82" - }, - "gradientColorStop2": { - "value": "#34cdfe" - }, - "gradientColorStop3": { - "value": "#0047e1" - } - } - } - }, - "type": "object", - "default": { - "header": { - "height": { - "value": "64px" - } - }, - "footer": { - "padding": { - "value": "{space.4} 0" - } - }, - "readableLine": { - "value": "78ch" - }, - "loadingBar": { - "height": { - "value": "3px" - }, - "gradientColorStop1": { - "value": "#00dc82" - }, - "gradientColorStop2": { - "value": "#34cdfe" - }, - "gradientColorStop3": { - "value": "#0047e1" - } - } - } - }, - "media": { - "title": "Your website media queries.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType color", - "@studioIcon material-symbols:screenshot-monitor-outline-rounded" - ], - "id": "#tokensConfig/media", - "properties": { - "xs": { - "id": "#tokensConfig/media/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/xs/value", - "default": "(min-width: 475px)" - } - }, - "type": "object", - "default": { - "value": "(min-width: 475px)" - } - }, - "sm": { - "id": "#tokensConfig/media/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/sm/value", - "default": "(min-width: 640px)" - } - }, - "type": "object", - "default": { - "value": "(min-width: 640px)" - } - }, - "md": { - "id": "#tokensConfig/media/md", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/md/value", - "default": "(min-width: 768px)" - } - }, - "type": "object", - "default": { - "value": "(min-width: 768px)" - } - }, - "lg": { - "id": "#tokensConfig/media/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/lg/value", - "default": "(min-width: 1024px)" - } - }, - "type": "object", - "default": { - "value": "(min-width: 1024px)" - } - }, - "xl": { - "id": "#tokensConfig/media/xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/xl/value", - "default": "(min-width: 1280px)" - } - }, - "type": "object", - "default": { - "value": "(min-width: 1280px)" - } - }, - "2xl": { - "id": "#tokensConfig/media/2xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/2xl/value", - "default": "(min-width: 1536px)" - } - }, - "type": "object", - "default": { - "value": "(min-width: 1536px)" - } - }, - "rm": { - "id": "#tokensConfig/media/rm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/rm/value", - "default": "(prefers-reduced-motion: reduce)" - } - }, - "type": "object", - "default": { - "value": "(prefers-reduced-motion: reduce)" - } - }, - "landscape": { - "id": "#tokensConfig/media/landscape", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/landscape/value", - "default": "only screen and (orientation: landscape)" - } - }, - "type": "object", - "default": { - "value": "only screen and (orientation: landscape)" - } - }, - "portrait": { - "id": "#tokensConfig/media/portrait", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/media/portrait/value", - "default": "only screen and (orientation: portrait)" - } - }, - "type": "object", - "default": { - "value": "only screen and (orientation: portrait)" - } - } - }, - "type": "object", - "default": { - "xs": { - "value": "(min-width: 475px)" - }, - "sm": { - "value": "(min-width: 640px)" - }, - "md": { - "value": "(min-width: 768px)" - }, - "lg": { - "value": "(min-width: 1024px)" - }, - "xl": { - "value": "(min-width: 1280px)" - }, - "2xl": { - "value": "(min-width: 1536px)" - }, - "rm": { - "value": "(prefers-reduced-motion: reduce)" - }, - "landscape": { - "value": "only screen and (orientation: landscape)" - }, - "portrait": { - "value": "only screen and (orientation: portrait)" - } - } - }, - "width": { - "title": "Your website screen sizings.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon ph:ruler" - ], - "id": "#tokensConfig/width", - "properties": { - "screen": { - "id": "#tokensConfig/width/screen", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/width/screen/value", - "default": "100vw" - } - }, - "type": "object", - "default": { - "value": "100vw" - } - } - }, - "type": "object", - "default": { - "screen": { - "value": "100vw" - } - } - }, - "height": { - "title": "Your website screen sizings.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon ph:ruler" - ], - "id": "#tokensConfig/height", - "properties": { - "screen": { - "id": "#tokensConfig/height/screen", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/height/screen/value", - "default": "100vh" - } - }, - "type": "object", - "default": { - "value": "100vh" - } - } - }, - "type": "object", - "default": { - "screen": { - "value": "100vh" - } - } - }, - "shadow": { - "title": "Your website shadows.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType shadow", - "@studioIcon mdi:box-shadow" - ], - "id": "#tokensConfig/shadow", - "properties": { - "xs": { - "id": "#tokensConfig/shadow/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/xs/value", - "default": "0px 1px 2px 0px #000000" - } - }, - "type": "object", - "default": { - "value": "0px 1px 2px 0px #000000" - } - }, - "sm": { - "id": "#tokensConfig/shadow/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/sm/value", - "default": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" - } - }, - "type": "object", - "default": { - "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" - } - }, - "md": { - "id": "#tokensConfig/shadow/md", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/md/value", - "default": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" - } - }, - "type": "object", - "default": { - "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" - } - }, - "lg": { - "id": "#tokensConfig/shadow/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/lg/value", - "default": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" - } - }, - "type": "object", - "default": { - "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" - } - }, - "xl": { - "id": "#tokensConfig/shadow/xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/xl/value", - "default": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" - } - }, - "type": "object", - "default": { - "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" - } - }, - "2xl": { - "id": "#tokensConfig/shadow/2xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/2xl/value", - "default": "0px 25px 50px -12px {color.gray.900}" - } - }, - "type": "object", - "default": { - "value": "0px 25px 50px -12px {color.gray.900}" - } - }, - "none": { - "id": "#tokensConfig/shadow/none", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/shadow/none/value", - "default": "0px 0px 0px 0px transparent" - } - }, - "type": "object", - "default": { - "value": "0px 0px 0px 0px transparent" - } - } - }, - "type": "object", - "default": { - "xs": { - "value": "0px 1px 2px 0px #000000" - }, - "sm": { - "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" - }, - "md": { - "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" - }, - "lg": { - "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" - }, - "xl": { - "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" - }, - "2xl": { - "value": "0px 25px 50px -12px {color.gray.900}" - }, - "none": { - "value": "0px 0px 0px 0px transparent" - } - } - }, - "size": { - "title": "Your website sizings.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon ph:ruler" - ], - "id": "#tokensConfig/size", - "properties": { - "0": { - "id": "#tokensConfig/size/0", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/0/value", - "default": "0px" - } - }, - "type": "object", - "default": { - "value": "0px" - } - }, - "2": { - "id": "#tokensConfig/size/2", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/2/value", - "default": "2px" - } - }, - "type": "object", - "default": { - "value": "2px" - } - }, - "4": { - "id": "#tokensConfig/size/4", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/4/value", - "default": "4px" - } - }, - "type": "object", - "default": { - "value": "4px" - } - }, - "6": { - "id": "#tokensConfig/size/6", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/6/value", - "default": "6px" - } - }, - "type": "object", - "default": { - "value": "6px" - } - }, - "8": { - "id": "#tokensConfig/size/8", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/8/value", - "default": "8px" - } - }, - "type": "object", - "default": { - "value": "8px" - } - }, - "12": { - "id": "#tokensConfig/size/12", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/12/value", - "default": "12px" - } - }, - "type": "object", - "default": { - "value": "12px" - } - }, - "16": { - "id": "#tokensConfig/size/16", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/16/value", - "default": "16px" - } - }, - "type": "object", - "default": { - "value": "16px" - } - }, - "20": { - "id": "#tokensConfig/size/20", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/20/value", - "default": "20px" - } - }, - "type": "object", - "default": { - "value": "20px" - } - }, - "24": { - "id": "#tokensConfig/size/24", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/24/value", - "default": "24px" - } - }, - "type": "object", - "default": { - "value": "24px" - } - }, - "32": { - "id": "#tokensConfig/size/32", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/32/value", - "default": "32px" - } - }, - "type": "object", - "default": { - "value": "32px" - } - }, - "40": { - "id": "#tokensConfig/size/40", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/40/value", - "default": "40px" - } - }, - "type": "object", - "default": { - "value": "40px" - } - }, - "48": { - "id": "#tokensConfig/size/48", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/48/value", - "default": "48px" - } - }, - "type": "object", - "default": { - "value": "48px" - } - }, - "56": { - "id": "#tokensConfig/size/56", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/56/value", - "default": "56px" - } - }, - "type": "object", - "default": { - "value": "56px" - } - }, - "64": { - "id": "#tokensConfig/size/64", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/64/value", - "default": "64px" - } - }, - "type": "object", - "default": { - "value": "64px" - } - }, - "80": { - "id": "#tokensConfig/size/80", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/80/value", - "default": "80px" - } - }, - "type": "object", - "default": { - "value": "80px" - } - }, - "104": { - "id": "#tokensConfig/size/104", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/104/value", - "default": "104px" - } - }, - "type": "object", - "default": { - "value": "104px" - } - }, - "200": { - "id": "#tokensConfig/size/200", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/200/value", - "default": "200px" - } - }, - "type": "object", - "default": { - "value": "200px" - } - }, - "xs": { - "id": "#tokensConfig/size/xs", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/xs/value", - "default": "20rem" - } - }, - "type": "object", - "default": { - "value": "20rem" - } - }, - "sm": { - "id": "#tokensConfig/size/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/sm/value", - "default": "24rem" - } - }, - "type": "object", - "default": { - "value": "24rem" - } - }, - "md": { - "id": "#tokensConfig/size/md", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/md/value", - "default": "28rem" - } - }, - "type": "object", - "default": { - "value": "28rem" - } - }, - "lg": { - "id": "#tokensConfig/size/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/lg/value", - "default": "32rem" - } - }, - "type": "object", - "default": { - "value": "32rem" - } - }, - "xl": { - "id": "#tokensConfig/size/xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/xl/value", - "default": "36rem" - } - }, - "type": "object", - "default": { - "value": "36rem" - } - }, - "2xl": { - "id": "#tokensConfig/size/2xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/2xl/value", - "default": "42rem" - } - }, - "type": "object", - "default": { - "value": "42rem" - } - }, - "3xl": { - "id": "#tokensConfig/size/3xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/3xl/value", - "default": "48rem" - } - }, - "type": "object", - "default": { - "value": "48rem" - } - }, - "4xl": { - "id": "#tokensConfig/size/4xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/4xl/value", - "default": "56rem" - } - }, - "type": "object", - "default": { - "value": "56rem" - } - }, - "5xl": { - "id": "#tokensConfig/size/5xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/5xl/value", - "default": "64rem" - } - }, - "type": "object", - "default": { - "value": "64rem" - } - }, - "6xl": { - "id": "#tokensConfig/size/6xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/6xl/value", - "default": "72rem" - } - }, - "type": "object", - "default": { - "value": "72rem" - } - }, - "7xl": { - "id": "#tokensConfig/size/7xl", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/7xl/value", - "default": "80rem" - } - }, - "type": "object", - "default": { - "value": "80rem" - } - }, - "full": { - "id": "#tokensConfig/size/full", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/size/full/value", - "default": "100%" - } - }, - "type": "object", - "default": { - "value": "100%" - } - } - }, - "type": "object", - "default": { - "0": { - "value": "0px" - }, - "2": { - "value": "2px" - }, - "4": { - "value": "4px" - }, - "6": { - "value": "6px" - }, - "8": { - "value": "8px" - }, - "12": { - "value": "12px" - }, - "16": { - "value": "16px" - }, - "20": { - "value": "20px" - }, - "24": { - "value": "24px" - }, - "32": { - "value": "32px" - }, - "40": { - "value": "40px" - }, - "48": { - "value": "48px" - }, - "56": { - "value": "56px" - }, - "64": { - "value": "64px" - }, - "80": { - "value": "80px" - }, - "104": { - "value": "104px" - }, - "200": { - "value": "200px" - }, - "xs": { - "value": "20rem" - }, - "sm": { - "value": "24rem" - }, - "md": { - "value": "28rem" - }, - "lg": { - "value": "32rem" - }, - "xl": { - "value": "36rem" - }, - "2xl": { - "value": "42rem" - }, - "3xl": { - "value": "48rem" - }, - "4xl": { - "value": "56rem" - }, - "5xl": { - "value": "64rem" - }, - "6xl": { - "value": "72rem" - }, - "7xl": { - "value": "80rem" - }, - "full": { - "value": "100%" - } - } - }, - "space": { - "title": "Your website spacings.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon ph:ruler" - ], - "id": "#tokensConfig/space", - "properties": { - "0": { - "id": "#tokensConfig/space/0", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/0/value", - "default": "0px" - } - }, - "type": "object", - "default": { - "value": "0px" - } - }, - "1": { - "id": "#tokensConfig/space/1", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/1/value", - "default": "0.25rem" - } - }, - "type": "object", - "default": { - "value": "0.25rem" - } - }, - "2": { - "id": "#tokensConfig/space/2", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/2/value", - "default": "0.5rem" - } - }, - "type": "object", - "default": { - "value": "0.5rem" - } - }, - "3": { - "id": "#tokensConfig/space/3", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/3/value", - "default": "0.75rem" - } - }, - "type": "object", - "default": { - "value": "0.75rem" - } - }, - "4": { - "id": "#tokensConfig/space/4", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/4/value", - "default": "1rem" - } - }, - "type": "object", - "default": { - "value": "1rem" - } - }, - "5": { - "id": "#tokensConfig/space/5", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/5/value", - "default": "1.25rem" - } - }, - "type": "object", - "default": { - "value": "1.25rem" - } - }, - "6": { - "id": "#tokensConfig/space/6", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/6/value", - "default": "1.5rem" - } - }, - "type": "object", - "default": { - "value": "1.5rem" - } - }, - "7": { - "id": "#tokensConfig/space/7", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/7/value", - "default": "1.75rem" - } - }, - "type": "object", - "default": { - "value": "1.75rem" - } - }, - "8": { - "id": "#tokensConfig/space/8", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/8/value", - "default": "2rem" - } - }, - "type": "object", - "default": { - "value": "2rem" - } - }, - "9": { - "id": "#tokensConfig/space/9", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/9/value", - "default": "2.25rem" - } - }, - "type": "object", - "default": { - "value": "2.25rem" - } - }, - "10": { - "id": "#tokensConfig/space/10", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/10/value", - "default": "2.5rem" - } - }, - "type": "object", - "default": { - "value": "2.5rem" - } - }, - "11": { - "id": "#tokensConfig/space/11", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/11/value", - "default": "2.75rem" - } - }, - "type": "object", - "default": { - "value": "2.75rem" - } - }, - "12": { - "id": "#tokensConfig/space/12", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/12/value", - "default": "3rem" - } - }, - "type": "object", - "default": { - "value": "3rem" - } - }, - "14": { - "id": "#tokensConfig/space/14", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/14/value", - "default": "3.5rem" - } - }, - "type": "object", - "default": { - "value": "3.5rem" - } - }, - "16": { - "id": "#tokensConfig/space/16", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/16/value", - "default": "4rem" - } - }, - "type": "object", - "default": { - "value": "4rem" - } - }, - "20": { - "id": "#tokensConfig/space/20", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/20/value", - "default": "5rem" - } - }, - "type": "object", - "default": { - "value": "5rem" - } - }, - "24": { - "id": "#tokensConfig/space/24", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/24/value", - "default": "6rem" - } - }, - "type": "object", - "default": { - "value": "6rem" - } - }, - "28": { - "id": "#tokensConfig/space/28", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/28/value", - "default": "7rem" - } - }, - "type": "object", - "default": { - "value": "7rem" - } - }, - "32": { - "id": "#tokensConfig/space/32", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/32/value", - "default": "8rem" - } - }, - "type": "object", - "default": { - "value": "8rem" - } - }, - "36": { - "id": "#tokensConfig/space/36", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/36/value", - "default": "9rem" - } - }, - "type": "object", - "default": { - "value": "9rem" - } - }, - "40": { - "id": "#tokensConfig/space/40", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/40/value", - "default": "10rem" - } - }, - "type": "object", - "default": { - "value": "10rem" - } - }, - "44": { - "id": "#tokensConfig/space/44", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/44/value", - "default": "11rem" - } - }, - "type": "object", - "default": { - "value": "11rem" - } - }, - "48": { - "id": "#tokensConfig/space/48", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/48/value", - "default": "12rem" - } - }, - "type": "object", - "default": { - "value": "12rem" - } - }, - "52": { - "id": "#tokensConfig/space/52", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/52/value", - "default": "13rem" - } - }, - "type": "object", - "default": { - "value": "13rem" - } - }, - "56": { - "id": "#tokensConfig/space/56", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/56/value", - "default": "14rem" - } - }, - "type": "object", - "default": { - "value": "14rem" - } - }, - "60": { - "id": "#tokensConfig/space/60", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/60/value", - "default": "15rem" - } - }, - "type": "object", - "default": { - "value": "15rem" - } - }, - "64": { - "id": "#tokensConfig/space/64", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/64/value", - "default": "16rem" - } - }, - "type": "object", - "default": { - "value": "16rem" - } - }, - "72": { - "id": "#tokensConfig/space/72", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/72/value", - "default": "18rem" - } - }, - "type": "object", - "default": { - "value": "18rem" - } - }, - "80": { - "id": "#tokensConfig/space/80", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/80/value", - "default": "20rem" - } - }, - "type": "object", - "default": { - "value": "20rem" - } - }, - "96": { - "id": "#tokensConfig/space/96", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/96/value", - "default": "24rem" - } - }, - "type": "object", - "default": { - "value": "24rem" - } - }, - "px": { - "id": "#tokensConfig/space/px", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/px/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "rem": { - "id": "#tokensConfig/space/rem", - "properties": { - "125": { - "id": "#tokensConfig/space/rem/125", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/rem/125/value", - "default": "0.125rem" - } - }, - "type": "object", - "default": { - "value": "0.125rem" - } - }, - "375": { - "id": "#tokensConfig/space/rem/375", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/rem/375/value", - "default": "0.375rem" - } - }, - "type": "object", - "default": { - "value": "0.375rem" - } - }, - "625": { - "id": "#tokensConfig/space/rem/625", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/rem/625/value", - "default": "0.625rem" - } - }, - "type": "object", - "default": { - "value": "0.625rem" - } - }, - "875": { - "id": "#tokensConfig/space/rem/875", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/space/rem/875/value", - "default": "0.875rem" - } - }, - "type": "object", - "default": { - "value": "0.875rem" - } - } - }, - "type": "object", - "default": { - "125": { - "value": "0.125rem" - }, - "375": { - "value": "0.375rem" - }, - "625": { - "value": "0.625rem" - }, - "875": { - "value": "0.875rem" - } - } - } - }, - "type": "object", - "default": { - "0": { - "value": "0px" - }, - "1": { - "value": "0.25rem" - }, - "2": { - "value": "0.5rem" - }, - "3": { - "value": "0.75rem" - }, - "4": { - "value": "1rem" - }, - "5": { - "value": "1.25rem" - }, - "6": { - "value": "1.5rem" - }, - "7": { - "value": "1.75rem" - }, - "8": { - "value": "2rem" - }, - "9": { - "value": "2.25rem" - }, - "10": { - "value": "2.5rem" - }, - "11": { - "value": "2.75rem" - }, - "12": { - "value": "3rem" - }, - "14": { - "value": "3.5rem" - }, - "16": { - "value": "4rem" - }, - "20": { - "value": "5rem" - }, - "24": { - "value": "6rem" - }, - "28": { - "value": "7rem" - }, - "32": { - "value": "8rem" - }, - "36": { - "value": "9rem" - }, - "40": { - "value": "10rem" - }, - "44": { - "value": "11rem" - }, - "48": { - "value": "12rem" - }, - "52": { - "value": "13rem" - }, - "56": { - "value": "14rem" - }, - "60": { - "value": "15rem" - }, - "64": { - "value": "16rem" - }, - "72": { - "value": "18rem" - }, - "80": { - "value": "20rem" - }, - "96": { - "value": "24rem" - }, - "px": { - "value": "1px" - }, - "rem": { - "125": { - "value": "0.125rem" - }, - "375": { - "value": "0.375rem" - }, - "625": { - "value": "0.625rem" - }, - "875": { - "value": "0.875rem" - } - } - } - }, - "borderWidth": { - "title": "Your website border widths.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon material-symbols:border-all-outline-rounded" - ], - "id": "#tokensConfig/borderWidth", - "properties": { - "noBorder": { - "id": "#tokensConfig/borderWidth/noBorder", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/borderWidth/noBorder/value", - "default": "0" - } - }, - "type": "object", - "default": { - "value": "0" - } - }, - "sm": { - "id": "#tokensConfig/borderWidth/sm", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/borderWidth/sm/value", - "default": "1px" - } - }, - "type": "object", - "default": { - "value": "1px" - } - }, - "md": { - "id": "#tokensConfig/borderWidth/md", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/borderWidth/md/value", - "default": "2px" - } - }, - "type": "object", - "default": { - "value": "2px" - } - }, - "lg": { - "id": "#tokensConfig/borderWidth/lg", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/borderWidth/lg/value", - "default": "3px" - } - }, - "type": "object", - "default": { - "value": "3px" - } - } - }, - "type": "object", - "default": { - "noBorder": { - "value": "0" - }, - "sm": { - "value": "1px" - }, - "md": { - "value": "2px" - }, - "lg": { - "value": "3px" - } - } - }, - "opacity": { - "title": "Your website opacities.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType opacity", - "@studioIcon material-symbols:opacity" - ], - "id": "#tokensConfig/opacity", - "properties": { - "noOpacity": { - "id": "#tokensConfig/opacity/noOpacity", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/noOpacity/value", - "default": "0" - } - }, - "type": "object", - "default": { - "value": "0" - } - }, - "bright": { - "id": "#tokensConfig/opacity/bright", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/bright/value", - "default": "0.1" - } - }, - "type": "object", - "default": { - "value": "0.1" - } - }, - "light": { - "id": "#tokensConfig/opacity/light", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/light/value", - "default": "0.15" - } - }, - "type": "object", - "default": { - "value": "0.15" - } - }, - "soft": { - "id": "#tokensConfig/opacity/soft", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/soft/value", - "default": "0.3" - } - }, - "type": "object", - "default": { - "value": "0.3" - } - }, - "medium": { - "id": "#tokensConfig/opacity/medium", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/medium/value", - "default": "0.5" - } - }, - "type": "object", - "default": { - "value": "0.5" - } - }, - "high": { - "id": "#tokensConfig/opacity/high", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/high/value", - "default": "0.8" - } - }, - "type": "object", - "default": { - "value": "0.8" - } - }, - "total": { - "id": "#tokensConfig/opacity/total", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/opacity/total/value", - "default": "1" - } - }, - "type": "object", - "default": { - "value": "1" - } - } - }, - "type": "object", - "default": { - "noOpacity": { - "value": "0" - }, - "bright": { - "value": "0.1" - }, - "light": { - "value": "0.15" - }, - "soft": { - "value": "0.3" - }, - "medium": { - "value": "0.5" - }, - "high": { - "value": "0.8" - }, - "total": { - "value": "1" - } - } - }, - "fontWeight": { - "title": "Your website font weights.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType font-weight", - "@studioIcon radix-icons:font-style" - ], - "id": "#tokensConfig/fontWeight", - "properties": { - "thin": { - "id": "#tokensConfig/fontWeight/thin", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/thin/value", - "default": "100" - } - }, - "type": "object", - "default": { - "value": "100" - } - }, - "extralight": { - "id": "#tokensConfig/fontWeight/extralight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/extralight/value", - "default": "200" - } - }, - "type": "object", - "default": { - "value": "200" - } - }, - "light": { - "id": "#tokensConfig/fontWeight/light", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/light/value", - "default": "300" - } - }, - "type": "object", - "default": { - "value": "300" - } - }, - "normal": { - "id": "#tokensConfig/fontWeight/normal", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/normal/value", - "default": "400" - } - }, - "type": "object", - "default": { - "value": "400" - } - }, - "medium": { - "id": "#tokensConfig/fontWeight/medium", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/medium/value", - "default": "500" - } - }, - "type": "object", - "default": { - "value": "500" - } - }, - "semibold": { - "id": "#tokensConfig/fontWeight/semibold", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/semibold/value", - "default": "600" - } - }, - "type": "object", - "default": { - "value": "600" - } - }, - "bold": { - "id": "#tokensConfig/fontWeight/bold", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/bold/value", - "default": "700" - } - }, - "type": "object", - "default": { - "value": "700" - } - }, - "extrabold": { - "id": "#tokensConfig/fontWeight/extrabold", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/extrabold/value", - "default": "800" - } - }, - "type": "object", - "default": { - "value": "800" - } - }, - "black": { - "id": "#tokensConfig/fontWeight/black", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/fontWeight/black/value", - "default": "900" - } - }, - "type": "object", - "default": { - "value": "900" - } - } - }, - "type": "object", - "default": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - } - }, - "letterSpacing": { - "title": "Your website letter spacings.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType letter-spacing", - "@studioIcon fluent:font-space-tracking-out-24-filled" - ], - "id": "#tokensConfig/letterSpacing", - "properties": { - "tighter": { - "id": "#tokensConfig/letterSpacing/tighter", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/letterSpacing/tighter/value", - "default": "-0.05em" - } - }, - "type": "object", - "default": { - "value": "-0.05em" - } - }, - "tight": { - "id": "#tokensConfig/letterSpacing/tight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/letterSpacing/tight/value", - "default": "-0.025em" - } - }, - "type": "object", - "default": { - "value": "-0.025em" - } - }, - "normal": { - "id": "#tokensConfig/letterSpacing/normal", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/letterSpacing/normal/value", - "default": "0em" - } - }, - "type": "object", - "default": { - "value": "0em" - } - }, - "wide": { - "id": "#tokensConfig/letterSpacing/wide", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/letterSpacing/wide/value", - "default": "0.025em" - } - }, - "type": "object", - "default": { - "value": "0.025em" - } - }, - "wider": { - "id": "#tokensConfig/letterSpacing/wider", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/letterSpacing/wider/value", - "default": "0.05em" - } - }, - "type": "object", - "default": { - "value": "0.05em" - } - }, - "widest": { - "id": "#tokensConfig/letterSpacing/widest", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/letterSpacing/widest/value", - "default": "0.1em" - } - }, - "type": "object", - "default": { - "value": "0.1em" - } - } - }, - "type": "object", - "default": { - "tighter": { - "value": "-0.05em" - }, - "tight": { - "value": "-0.025em" - }, - "normal": { - "value": "0em" - }, - "wide": { - "value": "0.025em" - }, - "wider": { - "value": "0.05em" - }, - "widest": { - "value": "0.1em" - } - } - }, - "text": { - "title": "Your website text scales.", - "tags": [ - "@studioInput design-token", - "@studioInputTokenType size", - "@studioIcon material-symbols:format-size-rounded" - ], - "id": "#tokensConfig/text", - "properties": { - "xs": { - "id": "#tokensConfig/text/xs", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/xs/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/xs/fontSize/value", - "default": "{fontSize.xs}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.xs}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/xs/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/xs/lineHeight/value", - "default": "{lead.4}" - } - }, - "type": "object", - "default": { - "value": "{lead.4}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.xs}" - }, - "lineHeight": { - "value": "{lead.4}" - } - } - }, - "sm": { - "id": "#tokensConfig/text/sm", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/sm/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/sm/fontSize/value", - "default": "{fontSize.sm}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.sm}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/sm/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/sm/lineHeight/value", - "default": "{lead.5}" - } - }, - "type": "object", - "default": { - "value": "{lead.5}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.sm}" - }, - "lineHeight": { - "value": "{lead.5}" - } - } - }, - "base": { - "id": "#tokensConfig/text/base", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/base/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/base/fontSize/value", - "default": "{fontSize.base}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.base}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/base/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/base/lineHeight/value", - "default": "{lead.6}" - } - }, - "type": "object", - "default": { - "value": "{lead.6}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.base}" - }, - "lineHeight": { - "value": "{lead.6}" - } - } - }, - "lg": { - "id": "#tokensConfig/text/lg", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/lg/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/lg/fontSize/value", - "default": "{fontSize.lg}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.lg}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/lg/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/lg/lineHeight/value", - "default": "{lead.7}" - } - }, - "type": "object", - "default": { - "value": "{lead.7}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.lg}" - }, - "lineHeight": { - "value": "{lead.7}" - } - } - }, - "xl": { - "id": "#tokensConfig/text/xl", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/xl/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/xl/fontSize/value", - "default": "{fontSize.xl}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/xl/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/xl/lineHeight/value", - "default": "{lead.7}" - } - }, - "type": "object", - "default": { - "value": "{lead.7}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.xl}" - }, - "lineHeight": { - "value": "{lead.7}" - } - } - }, - "2xl": { - "id": "#tokensConfig/text/2xl", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/2xl/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/2xl/fontSize/value", - "default": "{fontSize.2xl}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.2xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/2xl/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/2xl/lineHeight/value", - "default": "{lead.8}" - } - }, - "type": "object", - "default": { - "value": "{lead.8}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.2xl}" - }, - "lineHeight": { - "value": "{lead.8}" - } - } - }, - "3xl": { - "id": "#tokensConfig/text/3xl", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/3xl/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/3xl/fontSize/value", - "default": "{fontSize.3xl}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.3xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/3xl/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/3xl/lineHeight/value", - "default": "{lead.9}" - } - }, - "type": "object", - "default": { - "value": "{lead.9}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.3xl}" - }, - "lineHeight": { - "value": "{lead.9}" - } - } - }, - "4xl": { - "id": "#tokensConfig/text/4xl", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/4xl/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/4xl/fontSize/value", - "default": "{fontSize.4xl}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.4xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/4xl/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/4xl/lineHeight/value", - "default": "{lead.10}" - } - }, - "type": "object", - "default": { - "value": "{lead.10}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.4xl}" - }, - "lineHeight": { - "value": "{lead.10}" - } - } - }, - "5xl": { - "id": "#tokensConfig/text/5xl", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/5xl/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/5xl/fontSize/value", - "default": "{fontSize.5xl}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.5xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/5xl/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/5xl/lineHeight/value", - "default": "{lead.none}" - } - }, - "type": "object", - "default": { - "value": "{lead.none}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.5xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - } - }, - "6xl": { - "id": "#tokensConfig/text/6xl", - "properties": { - "fontSize": { - "id": "#tokensConfig/text/6xl/fontSize", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/6xl/fontSize/value", - "default": "{fontSize.6xl}" - } - }, - "type": "object", - "default": { - "value": "{fontSize.6xl}" - } - }, - "lineHeight": { - "id": "#tokensConfig/text/6xl/lineHeight", - "properties": { - "value": { - "type": "string", - "id": "#tokensConfig/text/6xl/lineHeight/value", - "default": "{lead.none}" - } - }, - "type": "object", - "default": { - "value": "{lead.none}" - } - } - }, - "type": "object", - "default": { - "fontSize": { - "value": "{fontSize.6xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - } - } - }, - "type": "object", - "default": { - "xs": { - "fontSize": { - "value": "{fontSize.xs}" - }, - "lineHeight": { - "value": "{lead.4}" - } - }, - "sm": { - "fontSize": { - "value": "{fontSize.sm}" - }, - "lineHeight": { - "value": "{lead.5}" - } - }, - "base": { - "fontSize": { - "value": "{fontSize.base}" - }, - "lineHeight": { - "value": "{lead.6}" - } - }, - "lg": { - "fontSize": { - "value": "{fontSize.lg}" - }, - "lineHeight": { - "value": "{lead.7}" - } - }, - "xl": { - "fontSize": { - "value": "{fontSize.xl}" - }, - "lineHeight": { - "value": "{lead.7}" - } - }, - "2xl": { - "fontSize": { - "value": "{fontSize.2xl}" - }, - "lineHeight": { - "value": "{lead.8}" - } - }, - "3xl": { - "fontSize": { - "value": "{fontSize.3xl}" - }, - "lineHeight": { - "value": "{lead.9}" - } - }, - "4xl": { - "fontSize": { - "value": "{fontSize.4xl}" - }, - "lineHeight": { - "value": "{lead.10}" - } - }, - "5xl": { - "fontSize": { - "value": "{fontSize.5xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - }, - "6xl": { - "fontSize": { - "value": "{fontSize.6xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - } - } - } - }, - "type": "object", - "default": { - "color": { - "primary": { - "50": { - "value": "#fff2cc" - }, - "100": { - "value": "#ffe599" - }, - "200": { - "value": "#ffd966" - }, - "300": { - "value": "#f1c232" - }, - "400": { - "value": "#f1c232" - }, - "500": { - "value": "#f1c232" - }, - "600": { - "value": "#f1c232" - }, - "700": { - "value": "#f1c232" - }, - "800": { - "value": "#f1c232" - }, - "900": { - "value": "#f1c232" - } - }, - "white": { - "value": "#ffffff" - }, - "black": { - "value": "#0c0c0d" - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - }, - "gray": { - "50": { - "value": "#fafafa" - }, - "100": { - "value": "#f4f4f5" - }, - "200": { - "value": "#e4e4e7" - }, - "300": { - "value": "#D4d4d8" - }, - "400": { - "value": "#a1a1aa" - }, - "500": { - "value": "#71717A" - }, - "600": { - "value": "#52525B" - }, - "700": { - "value": "#3f3f46" - }, - "800": { - "value": "#27272A" - }, - "900": { - "value": "#18181B" - } - }, - "green": { - "50": { - "value": "#d6ffee" - }, - "100": { - "value": "#acffdd" - }, - "200": { - "value": "#83ffcc" - }, - "300": { - "value": "#30ffaa" - }, - "400": { - "value": "#00dc82" - }, - "500": { - "value": "#00bd6f" - }, - "600": { - "value": "#009d5d" - }, - "700": { - "value": "#007e4a" - }, - "800": { - "value": "#005e38" - }, - "900": { - "value": "#003f25" - } - }, - "yellow": { - "50": { - "value": "#fdf6db" - }, - "100": { - "value": "#fcedb7" - }, - "200": { - "value": "#fae393" - }, - "300": { - "value": "#f8da70" - }, - "400": { - "value": "#f7d14c" - }, - "500": { - "value": "#f5c828" - }, - "600": { - "value": "#daac0a" - }, - "700": { - "value": "#a38108" - }, - "800": { - "value": "#6d5605" - }, - "900": { - "value": "#362b03" - } - }, - "orange": { - "50": { - "value": "#ffe9d9" - }, - "100": { - "value": "#ffd3b3" - }, - "200": { - "value": "#ffbd8d" - }, - "300": { - "value": "#ffa666" - }, - "400": { - "value": "#ff9040" - }, - "500": { - "value": "#ff7a1a" - }, - "600": { - "value": "#e15e00" - }, - "700": { - "value": "#a94700" - }, - "800": { - "value": "#702f00" - }, - "900": { - "value": "#381800" - } - }, - "red": { - "50": { - "value": "#ffdbd9" - }, - "100": { - "value": "#ffb7b3" - }, - "200": { - "value": "#ff948d" - }, - "300": { - "value": "#ff7066" - }, - "400": { - "value": "#ff4c40" - }, - "500": { - "value": "#ff281a" - }, - "600": { - "value": "#e10e00" - }, - "700": { - "value": "#a90a00" - }, - "800": { - "value": "#700700" - }, - "900": { - "value": "#380300" - } - }, - "pear": { - "50": { - "value": "#f7f8dc" - }, - "100": { - "value": "#eff0ba" - }, - "200": { - "value": "#e8e997" - }, - "300": { - "value": "#e0e274" - }, - "400": { - "value": "#d8da52" - }, - "500": { - "value": "#d0d32f" - }, - "600": { - "value": "#a8aa24" - }, - "700": { - "value": "#7e801b" - }, - "800": { - "value": "#545512" - }, - "900": { - "value": "#2a2b09" - } - }, - "teal": { - "50": { - "value": "#d7faf8" - }, - "100": { - "value": "#aff4f0" - }, - "200": { - "value": "#87efe9" - }, - "300": { - "value": "#5fe9e1" - }, - "400": { - "value": "#36e4da" - }, - "500": { - "value": "#1cd1c6" - }, - "600": { - "value": "#16a79e" - }, - "700": { - "value": "#117d77" - }, - "800": { - "value": "#0b544f" - }, - "900": { - "value": "#062a28" - } - }, - "lightblue": { - "50": { - "value": "#d9f8ff" - }, - "100": { - "value": "#b3f1ff" - }, - "200": { - "value": "#8deaff" - }, - "300": { - "value": "#66e4ff" - }, - "400": { - "value": "#40ddff" - }, - "500": { - "value": "#1ad6ff" - }, - "600": { - "value": "#00b9e1" - }, - "700": { - "value": "#008aa9" - }, - "800": { - "value": "#005c70" - }, - "900": { - "value": "#002e38" - } - }, - "blue": { - "50": { - "value": "#d9f1ff" - }, - "100": { - "value": "#b3e4ff" - }, - "200": { - "value": "#8dd6ff" - }, - "300": { - "value": "#66c8ff" - }, - "400": { - "value": "#40bbff" - }, - "500": { - "value": "#1aadff" - }, - "600": { - "value": "#0090e1" - }, - "700": { - "value": "#006ca9" - }, - "800": { - "value": "#004870" - }, - "900": { - "value": "#002438" - } - }, - "indigoblue": { - "50": { - "value": "#d9e5ff" - }, - "100": { - "value": "#b3cbff" - }, - "200": { - "value": "#8db0ff" - }, - "300": { - "value": "#6696ff" - }, - "400": { - "value": "#407cff" - }, - "500": { - "value": "#1a62ff" - }, - "600": { - "value": "#0047e1" - }, - "700": { - "value": "#0035a9" - }, - "800": { - "value": "#002370" - }, - "900": { - "value": "#001238" - } - }, - "royalblue": { - "50": { - "value": "#dfdbfb" - }, - "100": { - "value": "#c0b7f7" - }, - "200": { - "value": "#a093f3" - }, - "300": { - "value": "#806ff0" - }, - "400": { - "value": "#614bec" - }, - "500": { - "value": "#4127e8" - }, - "600": { - "value": "#2c15c4" - }, - "700": { - "value": "#211093" - }, - "800": { - "value": "#160a62" - }, - "900": { - "value": "#0b0531" - } - }, - "purple": { - "50": { - "value": "#ead9ff" - }, - "100": { - "value": "#d5b3ff" - }, - "200": { - "value": "#c08dff" - }, - "300": { - "value": "#ab66ff" - }, - "400": { - "value": "#9640ff" - }, - "500": { - "value": "#811aff" - }, - "600": { - "value": "#6500e1" - }, - "700": { - "value": "#4c00a9" - }, - "800": { - "value": "#330070" - }, - "900": { - "value": "#190038" - } - }, - "pink": { - "50": { - "value": "#ffd9f2" - }, - "100": { - "value": "#ffb3e5" - }, - "200": { - "value": "#ff8dd8" - }, - "300": { - "value": "#ff66cc" - }, - "400": { - "value": "#ff40bf" - }, - "500": { - "value": "#ff1ab2" - }, - "600": { - "value": "#e10095" - }, - "700": { - "value": "#a90070" - }, - "800": { - "value": "#70004b" - }, - "900": { - "value": "#380025" - } - }, - "ruby": { - "50": { - "value": "#ffd9e4" - }, - "100": { - "value": "#ffb3c9" - }, - "200": { - "value": "#ff8dae" - }, - "300": { - "value": "#ff6694" - }, - "400": { - "value": "#ff4079" - }, - "500": { - "value": "#ff1a5e" - }, - "600": { - "value": "#e10043" - }, - "700": { - "value": "#a90032" - }, - "800": { - "value": "#700021" - }, - "900": { - "value": "#380011" - } - } - }, - "elements": { - "text": { - "primary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - }, - "secondary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - }, - "container": { - "maxWidth": { - "value": "80rem" - }, - "padding": { - "mobile": { - "value": "{space.4}" - }, - "xs": { - "value": "{space.4}" - }, - "sm": { - "value": "{space.6}" - }, - "md": { - "value": "{space.6}" - } - } - }, - "backdrop": { - "filter": { - "value": "saturate(200%) blur(20px)" - }, - "background": { - "value": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - }, - "border": { - "primary": { - "static": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "secondary": { - "static": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - }, - "hover": { - "value": { - "initial": "", - "dark": "" - } - } - } - }, - "surface": { - "background": { - "base": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - }, - "state": { - "primary": { - "color": { - "primary": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - }, - "info": { - "color": { - "primary": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - }, - "success": { - "color": { - "primary": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - }, - "warning": { - "color": { - "primary": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - }, - "danger": { - "color": { - "primary": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - } - }, - "typography": { - "verticalMargin": { - "sm": { - "value": "16px" - }, - "base": { - "value": "32px" - } - }, - "letterSpacing": { - "tight": { - "value": "-0.025em" - }, - "wide": { - "value": "0.025em" - } - }, - "fontSize": { - "xs": { - "value": "12px" - }, - "sm": { - "value": "14px" - }, - "base": { - "value": "16px" - }, - "lg": { - "value": "18px" - }, - "xl": { - "value": "20px" - }, - "2xl": { - "value": "24px" - }, - "3xl": { - "value": "30px" - }, - "4xl": { - "value": "36px" - }, - "5xl": { - "value": "48px" - }, - "6xl": { - "value": "60px" - }, - "7xl": { - "value": "72px" - }, - "8xl": { - "value": "96px" - }, - "9xl": { - "value": "128px" - } - }, - "fontWeight": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - }, - "lead": { - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - }, - "font": { - "display": { - "value": "{font.sans}" - }, - "body": { - "value": "{font.sans}" - }, - "code": { - "value": "{font.mono}" - } - }, - "color": { - "primary": { - "50": { - "value": "{color.primary.50}" - }, - "100": { - "value": "{color.primary.100}" - }, - "200": { - "value": "{color.primary.200}" - }, - "300": { - "value": "{color.primary.300}" - }, - "400": { - "value": "{color.primary.400}" - }, - "500": { - "value": "{color.primary.500}" - }, - "600": { - "value": "{color.primary.600}" - }, - "700": { - "value": "{color.primary.700}" - }, - "800": { - "value": "{color.primary.800}" - }, - "900": { - "value": "{color.primary.900}" - } - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - } - } - }, - "prose": { - "p": { - "fontSize": { - "value": "{typography.fontSize.base}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "br": { - "margin": { - "value": "{typography.verticalMargin.base} 0 0 0" - } - } - }, - "h1": { - "margin": { - "value": "0 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.5xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.bold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.3xl}" - } - }, - "h2": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.4xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.2xl}" - } - }, - "h3": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.3xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.xl}" - } - }, - "h4": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.2xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - }, - "h5": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - }, - "h6": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.lg}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.base}" - } - }, - "strong": { - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - }, - "img": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "a": { - "textDecoration": { - "value": "none" - }, - "color": { - "static": { - "value": { - "initial": "inherit", - "dark": "inherit" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "static": { - "value": "dashed" - }, - "hover": { - "value": "solid" - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "distance": { - "value": "2px" - } - }, - "fontWeight": { - "value": "{typography.fontWeight.medium}" - }, - "hasCode": { - "borderBottom": { - "value": "none" - } - }, - "code": { - "border": { - "width": { - "value": "{prose.a.border.width}" - }, - "style": { - "value": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "background": { - "static": {}, - "hover": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - }, - "blockquote": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 24px" - }, - "quotes": { - "value": "'201C' '201D' '2018' '2019'" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - }, - "border": { - "width": { - "value": "4px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "ul": { - "listStyleType": { - "value": "disc" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "ol": { - "listStyleType": { - "value": "decimal" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "li": { - "margin": { - "value": "{typography.verticalMargin.sm} 0" - }, - "listStylePosition": { - "value": "outside" - } - }, - "hr": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "style": { - "value": "solid" - }, - "width": { - "value": "1px" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "table": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "textAlign": { - "value": "left" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "lineHeight": { - "value": "inherit" - } - }, - "thead": { - "border": { - "width": { - "value": "0px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "th": { - "color": { - "value": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - }, - "padding": { - "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - }, - "tbody": { - "tr": { - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "dashed" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "td": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - }, - "code": { - "inline": { - "fontSize": { - "value": "{typography.fontSize.sm}" - } - } - } - }, - "code": { - "block": { - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - }, - "pre": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "inline": { - "borderRadius": { - "value": "0.375rem" - }, - "padding": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.normal}" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - } - }, - "radii": { - "sm": { - "value": "0.375rem" - }, - "md": { - "value": "0.5rem" - }, - "lg": { - "value": "0.75rem" - }, - "none": { - "value": "0px" - }, - "2xs": { - "value": "0.125rem" - }, - "xs": { - "value": "0.25rem" - }, - "xl": { - "value": "1rem" - }, - "2xl": { - "value": "1.5rem" - }, - "3xl": { - "value": "1.75rem" - }, - "full": { - "value": "9999px" - } - }, - "fontSize": { - "xs": { - "value": "0.75rem" - }, - "sm": { - "value": "0.875rem" - }, - "base": { - "value": "1rem" - }, - "lg": { - "value": "1.125rem" - }, - "xl": { - "value": "1.25rem" - }, - "2xl": { - "value": "1.5rem" - }, - "3xl": { - "value": "1.875rem" - }, - "4xl": { - "value": "2.25rem" - }, - "5xl": { - "value": "3rem" - }, - "6xl": { - "value": "3.75rem" - }, - "7xl": { - "value": "4.5rem" - }, - "8xl": { - "value": "6rem" - }, - "9xl": { - "value": "8rem" - } - }, - "lead": { - "1": { - "value": ".025rem" - }, - "2": { - "value": ".5rem" - }, - "3": { - "value": ".75rem" - }, - "4": { - "value": "1rem" - }, - "5": { - "value": "1.25rem" - }, - "6": { - "value": "1.5rem" - }, - "7": { - "value": "1.75rem" - }, - "8": { - "value": "2rem" - }, - "9": { - "value": "2.25rem" - }, - "10": { - "value": "2.5rem" - }, - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - }, - "font": { - "sans": { - "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" - }, - "serif": { - "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" - }, - "mono": { - "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" - } - }, - "docus": { - "header": { - "height": { - "value": "64px" - } - }, - "footer": { - "padding": { - "value": "{space.4} 0" - } - }, - "readableLine": { - "value": "78ch" - }, - "loadingBar": { - "height": { - "value": "3px" - }, - "gradientColorStop1": { - "value": "#00dc82" - }, - "gradientColorStop2": { - "value": "#34cdfe" - }, - "gradientColorStop3": { - "value": "#0047e1" - } - } - }, - "media": { - "xs": { - "value": "(min-width: 475px)" - }, - "sm": { - "value": "(min-width: 640px)" - }, - "md": { - "value": "(min-width: 768px)" - }, - "lg": { - "value": "(min-width: 1024px)" - }, - "xl": { - "value": "(min-width: 1280px)" - }, - "2xl": { - "value": "(min-width: 1536px)" - }, - "rm": { - "value": "(prefers-reduced-motion: reduce)" - }, - "landscape": { - "value": "only screen and (orientation: landscape)" - }, - "portrait": { - "value": "only screen and (orientation: portrait)" - } - }, - "width": { - "screen": { - "value": "100vw" - } - }, - "height": { - "screen": { - "value": "100vh" - } - }, - "shadow": { - "xs": { - "value": "0px 1px 2px 0px #000000" - }, - "sm": { - "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" - }, - "md": { - "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" - }, - "lg": { - "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" - }, - "xl": { - "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" - }, - "2xl": { - "value": "0px 25px 50px -12px {color.gray.900}" - }, - "none": { - "value": "0px 0px 0px 0px transparent" - } - }, - "size": { - "0": { - "value": "0px" - }, - "2": { - "value": "2px" - }, - "4": { - "value": "4px" - }, - "6": { - "value": "6px" - }, - "8": { - "value": "8px" - }, - "12": { - "value": "12px" - }, - "16": { - "value": "16px" - }, - "20": { - "value": "20px" - }, - "24": { - "value": "24px" - }, - "32": { - "value": "32px" - }, - "40": { - "value": "40px" - }, - "48": { - "value": "48px" - }, - "56": { - "value": "56px" - }, - "64": { - "value": "64px" - }, - "80": { - "value": "80px" - }, - "104": { - "value": "104px" - }, - "200": { - "value": "200px" - }, - "xs": { - "value": "20rem" - }, - "sm": { - "value": "24rem" - }, - "md": { - "value": "28rem" - }, - "lg": { - "value": "32rem" - }, - "xl": { - "value": "36rem" - }, - "2xl": { - "value": "42rem" - }, - "3xl": { - "value": "48rem" - }, - "4xl": { - "value": "56rem" - }, - "5xl": { - "value": "64rem" - }, - "6xl": { - "value": "72rem" - }, - "7xl": { - "value": "80rem" - }, - "full": { - "value": "100%" - } - }, - "space": { - "0": { - "value": "0px" - }, - "1": { - "value": "0.25rem" - }, - "2": { - "value": "0.5rem" - }, - "3": { - "value": "0.75rem" - }, - "4": { - "value": "1rem" - }, - "5": { - "value": "1.25rem" - }, - "6": { - "value": "1.5rem" - }, - "7": { - "value": "1.75rem" - }, - "8": { - "value": "2rem" - }, - "9": { - "value": "2.25rem" - }, - "10": { - "value": "2.5rem" - }, - "11": { - "value": "2.75rem" - }, - "12": { - "value": "3rem" - }, - "14": { - "value": "3.5rem" - }, - "16": { - "value": "4rem" - }, - "20": { - "value": "5rem" - }, - "24": { - "value": "6rem" - }, - "28": { - "value": "7rem" - }, - "32": { - "value": "8rem" - }, - "36": { - "value": "9rem" - }, - "40": { - "value": "10rem" - }, - "44": { - "value": "11rem" - }, - "48": { - "value": "12rem" - }, - "52": { - "value": "13rem" - }, - "56": { - "value": "14rem" - }, - "60": { - "value": "15rem" - }, - "64": { - "value": "16rem" - }, - "72": { - "value": "18rem" - }, - "80": { - "value": "20rem" - }, - "96": { - "value": "24rem" - }, - "px": { - "value": "1px" - }, - "rem": { - "125": { - "value": "0.125rem" - }, - "375": { - "value": "0.375rem" - }, - "625": { - "value": "0.625rem" - }, - "875": { - "value": "0.875rem" - } - } - }, - "borderWidth": { - "noBorder": { - "value": "0" - }, - "sm": { - "value": "1px" - }, - "md": { - "value": "2px" - }, - "lg": { - "value": "3px" - } - }, - "opacity": { - "noOpacity": { - "value": "0" - }, - "bright": { - "value": "0.1" - }, - "light": { - "value": "0.15" - }, - "soft": { - "value": "0.3" - }, - "medium": { - "value": "0.5" - }, - "high": { - "value": "0.8" - }, - "total": { - "value": "1" - } - }, - "fontWeight": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - }, - "letterSpacing": { - "tighter": { - "value": "-0.05em" - }, - "tight": { - "value": "-0.025em" - }, - "normal": { - "value": "0em" - }, - "wide": { - "value": "0.025em" - }, - "wider": { - "value": "0.05em" - }, - "widest": { - "value": "0.1em" - } - }, - "text": { - "xs": { - "fontSize": { - "value": "{fontSize.xs}" - }, - "lineHeight": { - "value": "{lead.4}" - } - }, - "sm": { - "fontSize": { - "value": "{fontSize.sm}" - }, - "lineHeight": { - "value": "{lead.5}" - } - }, - "base": { - "fontSize": { - "value": "{fontSize.base}" - }, - "lineHeight": { - "value": "{lead.6}" - } - }, - "lg": { - "fontSize": { - "value": "{fontSize.lg}" - }, - "lineHeight": { - "value": "{lead.7}" - } - }, - "xl": { - "fontSize": { - "value": "{fontSize.xl}" - }, - "lineHeight": { - "value": "{lead.7}" - } - }, - "2xl": { - "fontSize": { - "value": "{fontSize.2xl}" - }, - "lineHeight": { - "value": "{lead.8}" - } - }, - "3xl": { - "fontSize": { - "value": "{fontSize.3xl}" - }, - "lineHeight": { - "value": "{lead.9}" - } - }, - "4xl": { - "fontSize": { - "value": "{fontSize.4xl}" - }, - "lineHeight": { - "value": "{lead.10}" - } - }, - "5xl": { - "fontSize": { - "value": "{fontSize.5xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - }, - "6xl": { - "fontSize": { - "value": "{fontSize.6xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - } - } - } - }, - "default": { - "color": { - "primary": { - "50": { - "value": "#fff2cc" - }, - "100": { - "value": "#ffe599" - }, - "200": { - "value": "#ffd966" - }, - "300": { - "value": "#f1c232" - }, - "400": { - "value": "#f1c232" - }, - "500": { - "value": "#f1c232" - }, - "600": { - "value": "#f1c232" - }, - "700": { - "value": "#f1c232" - }, - "800": { - "value": "#f1c232" - }, - "900": { - "value": "#f1c232" - } - }, - "white": { - "value": "#ffffff" - }, - "black": { - "value": "#0c0c0d" - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - }, - "gray": { - "50": { - "value": "#fafafa" - }, - "100": { - "value": "#f4f4f5" - }, - "200": { - "value": "#e4e4e7" - }, - "300": { - "value": "#D4d4d8" - }, - "400": { - "value": "#a1a1aa" - }, - "500": { - "value": "#71717A" - }, - "600": { - "value": "#52525B" - }, - "700": { - "value": "#3f3f46" - }, - "800": { - "value": "#27272A" - }, - "900": { - "value": "#18181B" - } - }, - "green": { - "50": { - "value": "#d6ffee" - }, - "100": { - "value": "#acffdd" - }, - "200": { - "value": "#83ffcc" - }, - "300": { - "value": "#30ffaa" - }, - "400": { - "value": "#00dc82" - }, - "500": { - "value": "#00bd6f" - }, - "600": { - "value": "#009d5d" - }, - "700": { - "value": "#007e4a" - }, - "800": { - "value": "#005e38" - }, - "900": { - "value": "#003f25" - } - }, - "yellow": { - "50": { - "value": "#fdf6db" - }, - "100": { - "value": "#fcedb7" - }, - "200": { - "value": "#fae393" - }, - "300": { - "value": "#f8da70" - }, - "400": { - "value": "#f7d14c" - }, - "500": { - "value": "#f5c828" - }, - "600": { - "value": "#daac0a" - }, - "700": { - "value": "#a38108" - }, - "800": { - "value": "#6d5605" - }, - "900": { - "value": "#362b03" - } - }, - "orange": { - "50": { - "value": "#ffe9d9" - }, - "100": { - "value": "#ffd3b3" - }, - "200": { - "value": "#ffbd8d" - }, - "300": { - "value": "#ffa666" - }, - "400": { - "value": "#ff9040" - }, - "500": { - "value": "#ff7a1a" - }, - "600": { - "value": "#e15e00" - }, - "700": { - "value": "#a94700" - }, - "800": { - "value": "#702f00" - }, - "900": { - "value": "#381800" - } - }, - "red": { - "50": { - "value": "#ffdbd9" - }, - "100": { - "value": "#ffb7b3" - }, - "200": { - "value": "#ff948d" - }, - "300": { - "value": "#ff7066" - }, - "400": { - "value": "#ff4c40" - }, - "500": { - "value": "#ff281a" - }, - "600": { - "value": "#e10e00" - }, - "700": { - "value": "#a90a00" - }, - "800": { - "value": "#700700" - }, - "900": { - "value": "#380300" - } - }, - "pear": { - "50": { - "value": "#f7f8dc" - }, - "100": { - "value": "#eff0ba" - }, - "200": { - "value": "#e8e997" - }, - "300": { - "value": "#e0e274" - }, - "400": { - "value": "#d8da52" - }, - "500": { - "value": "#d0d32f" - }, - "600": { - "value": "#a8aa24" - }, - "700": { - "value": "#7e801b" - }, - "800": { - "value": "#545512" - }, - "900": { - "value": "#2a2b09" - } - }, - "teal": { - "50": { - "value": "#d7faf8" - }, - "100": { - "value": "#aff4f0" - }, - "200": { - "value": "#87efe9" - }, - "300": { - "value": "#5fe9e1" - }, - "400": { - "value": "#36e4da" - }, - "500": { - "value": "#1cd1c6" - }, - "600": { - "value": "#16a79e" - }, - "700": { - "value": "#117d77" - }, - "800": { - "value": "#0b544f" - }, - "900": { - "value": "#062a28" - } - }, - "lightblue": { - "50": { - "value": "#d9f8ff" - }, - "100": { - "value": "#b3f1ff" - }, - "200": { - "value": "#8deaff" - }, - "300": { - "value": "#66e4ff" - }, - "400": { - "value": "#40ddff" - }, - "500": { - "value": "#1ad6ff" - }, - "600": { - "value": "#00b9e1" - }, - "700": { - "value": "#008aa9" - }, - "800": { - "value": "#005c70" - }, - "900": { - "value": "#002e38" - } - }, - "blue": { - "50": { - "value": "#d9f1ff" - }, - "100": { - "value": "#b3e4ff" - }, - "200": { - "value": "#8dd6ff" - }, - "300": { - "value": "#66c8ff" - }, - "400": { - "value": "#40bbff" - }, - "500": { - "value": "#1aadff" - }, - "600": { - "value": "#0090e1" - }, - "700": { - "value": "#006ca9" - }, - "800": { - "value": "#004870" - }, - "900": { - "value": "#002438" - } - }, - "indigoblue": { - "50": { - "value": "#d9e5ff" - }, - "100": { - "value": "#b3cbff" - }, - "200": { - "value": "#8db0ff" - }, - "300": { - "value": "#6696ff" - }, - "400": { - "value": "#407cff" - }, - "500": { - "value": "#1a62ff" - }, - "600": { - "value": "#0047e1" - }, - "700": { - "value": "#0035a9" - }, - "800": { - "value": "#002370" - }, - "900": { - "value": "#001238" - } - }, - "royalblue": { - "50": { - "value": "#dfdbfb" - }, - "100": { - "value": "#c0b7f7" - }, - "200": { - "value": "#a093f3" - }, - "300": { - "value": "#806ff0" - }, - "400": { - "value": "#614bec" - }, - "500": { - "value": "#4127e8" - }, - "600": { - "value": "#2c15c4" - }, - "700": { - "value": "#211093" - }, - "800": { - "value": "#160a62" - }, - "900": { - "value": "#0b0531" - } - }, - "purple": { - "50": { - "value": "#ead9ff" - }, - "100": { - "value": "#d5b3ff" - }, - "200": { - "value": "#c08dff" - }, - "300": { - "value": "#ab66ff" - }, - "400": { - "value": "#9640ff" - }, - "500": { - "value": "#811aff" - }, - "600": { - "value": "#6500e1" - }, - "700": { - "value": "#4c00a9" - }, - "800": { - "value": "#330070" - }, - "900": { - "value": "#190038" - } - }, - "pink": { - "50": { - "value": "#ffd9f2" - }, - "100": { - "value": "#ffb3e5" - }, - "200": { - "value": "#ff8dd8" - }, - "300": { - "value": "#ff66cc" - }, - "400": { - "value": "#ff40bf" - }, - "500": { - "value": "#ff1ab2" - }, - "600": { - "value": "#e10095" - }, - "700": { - "value": "#a90070" - }, - "800": { - "value": "#70004b" - }, - "900": { - "value": "#380025" - } - }, - "ruby": { - "50": { - "value": "#ffd9e4" - }, - "100": { - "value": "#ffb3c9" - }, - "200": { - "value": "#ff8dae" - }, - "300": { - "value": "#ff6694" - }, - "400": { - "value": "#ff4079" - }, - "500": { - "value": "#ff1a5e" - }, - "600": { - "value": "#e10043" - }, - "700": { - "value": "#a90032" - }, - "800": { - "value": "#700021" - }, - "900": { - "value": "#380011" - } - } - }, - "elements": { - "text": { - "primary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.900}", - "dark": "{color.gray.50}" - } - }, - "hover": {} - } - }, - "secondary": { - "color": { - "static": { - "value": { - "initial": "{color.gray.500}", - "dark": "{color.gray.400}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.700}", - "dark": "{color.gray.200}" - } - } - } - } - }, - "container": { - "maxWidth": { - "value": "80rem" - }, - "padding": { - "mobile": { - "value": "{space.4}" - }, - "xs": { - "value": "{space.4}" - }, - "sm": { - "value": "{space.6}" - }, - "md": { - "value": "{space.6}" - } - } - }, - "backdrop": { - "filter": { - "value": "saturate(200%) blur(20px)" - }, - "background": { - "value": { - "initial": "#fffc", - "dark": "#0c0d0ccc" - } - } - }, - "border": { - "primary": { - "static": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - }, - "hover": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - } - }, - "secondary": { - "static": { - "value": { - "initial": "{color.gray.200}", - "dark": "{color.gray.800}" - } - }, - "hover": { - "value": { - "initial": "", - "dark": "" - } - } - } - }, - "surface": { - "background": { - "base": { - "value": { - "initial": "{color.gray.100}", - "dark": "{color.gray.900}" - } - } - } - }, - "state": { - "primary": { - "color": { - "primary": { - "value": { - "initial": "{color.primary.600}", - "dark": "{color.primary.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.700}", - "dark": "{color.primary.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.primary.50}", - "dark": "{color.primary.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.primary.100}", - "dark": "{color.primary.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.primary.200}", - "dark": "{color.primary.700}" - } - } - } - }, - "info": { - "color": { - "primary": { - "value": { - "initial": "{color.blue.500}", - "dark": "{color.blue.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.600}", - "dark": "{color.blue.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.blue.50}", - "dark": "{color.blue.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.blue.100}", - "dark": "{color.blue.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.blue.200}", - "dark": "{color.blue.700}" - } - } - } - }, - "success": { - "color": { - "primary": { - "value": { - "initial": "{color.green.500}", - "dark": "{color.green.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.600}", - "dark": "{color.green.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.green.50}", - "dark": "{color.green.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.green.100}", - "dark": "{color.green.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.green.200}", - "dark": "{color.green.700}" - } - } - } - }, - "warning": { - "color": { - "primary": { - "value": { - "initial": "{color.yellow.600}", - "dark": "{color.yellow.400}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.700}", - "dark": "{color.yellow.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.yellow.50}", - "dark": "{color.yellow.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.yellow.100}", - "dark": "{color.yellow.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.yellow.200}", - "dark": "{color.yellow.700}" - } - } - } - }, - "danger": { - "color": { - "primary": { - "value": { - "initial": "{color.red.500}", - "dark": "{color.red.300}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.600}", - "dark": "{color.red.200}" - } - } - }, - "backgroundColor": { - "primary": { - "value": { - "initial": "{color.red.50}", - "dark": "{color.red.900}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - } - }, - "borderColor": { - "primary": { - "value": { - "initial": "{color.red.100}", - "dark": "{color.red.800}" - } - }, - "secondary": { - "value": { - "initial": "{color.red.200}", - "dark": "{color.red.700}" - } - } - } - } - } - }, - "typography": { - "verticalMargin": { - "sm": { - "value": "16px" - }, - "base": { - "value": "32px" - } - }, - "letterSpacing": { - "tight": { - "value": "-0.025em" - }, - "wide": { - "value": "0.025em" - } - }, - "fontSize": { - "xs": { - "value": "12px" - }, - "sm": { - "value": "14px" - }, - "base": { - "value": "16px" - }, - "lg": { - "value": "18px" - }, - "xl": { - "value": "20px" - }, - "2xl": { - "value": "24px" - }, - "3xl": { - "value": "30px" - }, - "4xl": { - "value": "36px" - }, - "5xl": { - "value": "48px" - }, - "6xl": { - "value": "60px" - }, - "7xl": { - "value": "72px" - }, - "8xl": { - "value": "96px" - }, - "9xl": { - "value": "128px" - } - }, - "fontWeight": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - }, - "lead": { - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - }, - "font": { - "display": { - "value": "{font.sans}" - }, - "body": { - "value": "{font.sans}" - }, - "code": { - "value": "{font.mono}" - } - }, - "color": { - "primary": { - "50": { - "value": "{color.primary.50}" - }, - "100": { - "value": "{color.primary.100}" - }, - "200": { - "value": "{color.primary.200}" - }, - "300": { - "value": "{color.primary.300}" - }, - "400": { - "value": "{color.primary.400}" - }, - "500": { - "value": "{color.primary.500}" - }, - "600": { - "value": "{color.primary.600}" - }, - "700": { - "value": "{color.primary.700}" - }, - "800": { - "value": "{color.primary.800}" - }, - "900": { - "value": "{color.primary.900}" - } - }, - "secondary": { - "50": { - "value": "{color.gray.50}" - }, - "100": { - "value": "{color.gray.100}" - }, - "200": { - "value": "{color.gray.200}" - }, - "300": { - "value": "{color.gray.300}" - }, - "400": { - "value": "{color.gray.400}" - }, - "500": { - "value": "{color.gray.500}" - }, - "600": { - "value": "{color.gray.600}" - }, - "700": { - "value": "{color.gray.700}" - }, - "800": { - "value": "{color.gray.800}" - }, - "900": { - "value": "{color.gray.900}" - } - } - } - }, - "prose": { - "p": { - "fontSize": { - "value": "{typography.fontSize.base}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "br": { - "margin": { - "value": "{typography.verticalMargin.base} 0 0 0" - } - } - }, - "h1": { - "margin": { - "value": "0 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.5xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.bold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.3xl}" - } - }, - "h2": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.4xl}" - }, - "lineHeight": { - "value": "{typography.lead.tight}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.2xl}" - } - }, - "h3": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.3xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.xl}" - } - }, - "h4": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.2xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "letterSpacing": { - "value": "{typography.letterSpacing.tight}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - }, - "h5": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.xl}" - }, - "lineHeight": { - "value": "{typography.lead.snug}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.lg}" - } - }, - "h6": { - "margin": { - "value": "3rem 0 2rem" - }, - "fontSize": { - "value": "{typography.fontSize.lg}" - }, - "lineHeight": { - "value": "{typography.lead.normal}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - }, - "iconSize": { - "value": "{typography.fontSize.base}" - } - }, - "strong": { - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - }, - "img": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - } - }, - "a": { - "textDecoration": { - "value": "none" - }, - "color": { - "static": { - "value": { - "initial": "inherit", - "dark": "inherit" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.400}" - } - } - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "static": { - "value": "dashed" - }, - "hover": { - "value": "solid" - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "distance": { - "value": "2px" - } - }, - "fontWeight": { - "value": "{typography.fontWeight.medium}" - }, - "hasCode": { - "borderBottom": { - "value": "none" - } - }, - "code": { - "border": { - "width": { - "value": "{prose.a.border.width}" - }, - "style": { - "value": "{prose.a.border.style.static}" - }, - "color": { - "static": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.600}" - } - }, - "hover": { - "value": { - "initial": "{typography.color.primary.500}", - "dark": "{typography.color.primary.600}" - } - } - } - }, - "color": { - "static": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - }, - "hover": { - "value": { - "initial": "currentColor", - "dark": "currentColor" - } - } - }, - "background": { - "static": {}, - "hover": { - "value": { - "initial": "{typography.color.primary.50}", - "dark": "{typography.color.primary.900}" - } - } - } - } - }, - "blockquote": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 24px" - }, - "quotes": { - "value": "'201C' '201D' '2018' '2019'" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.400}" - } - }, - "border": { - "width": { - "value": "4px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "ul": { - "listStyleType": { - "value": "disc" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.400}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "ol": { - "listStyleType": { - "value": "decimal" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "padding": { - "value": "0 0 0 21px" - }, - "li": { - "markerColor": { - "value": { - "initial": "{typography.color.secondary.500}", - "dark": "{typography.color.secondary.500}" - } - } - } - }, - "li": { - "margin": { - "value": "{typography.verticalMargin.sm} 0" - }, - "listStylePosition": { - "value": "outside" - } - }, - "hr": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "style": { - "value": "solid" - }, - "width": { - "value": "1px" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "table": { - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "textAlign": { - "value": "left" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "lineHeight": { - "value": "inherit" - } - }, - "thead": { - "border": { - "width": { - "value": "0px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - }, - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.600}" - } - } - } - }, - "th": { - "color": { - "value": { - "initial": "{typography.color.secondary.600}", - "dark": "{typography.color.secondary.400}" - } - }, - "padding": { - "value": "0 {typography.verticalMargin.sm} {typography.verticalMargin.sm} {typography.verticalMargin.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.semibold}" - } - }, - "tbody": { - "tr": { - "borderBottom": { - "width": { - "value": "1px" - }, - "style": { - "value": "dashed" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.300}", - "dark": "{typography.color.secondary.700}" - } - } - } - }, - "td": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - }, - "code": { - "inline": { - "fontSize": { - "value": "{typography.fontSize.sm}" - } - } - } - }, - "code": { - "block": { - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "margin": { - "value": "{typography.verticalMargin.base} 0" - }, - "border": { - "width": { - "value": "1px" - }, - "style": { - "value": "solid" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.200}", - "dark": "{typography.color.secondary.800}" - } - } - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - }, - "pre": { - "padding": { - "value": "{typography.verticalMargin.sm}" - } - } - }, - "inline": { - "borderRadius": { - "value": "0.375rem" - }, - "padding": { - "value": "0.25rem 0.375rem 0.25rem 0.375rem" - }, - "fontSize": { - "value": "{typography.fontSize.sm}" - }, - "fontWeight": { - "value": "{typography.fontWeight.normal}" - }, - "color": { - "value": { - "initial": "{typography.color.secondary.700}", - "dark": "{typography.color.secondary.200}" - } - }, - "backgroundColor": { - "value": { - "initial": "{typography.color.secondary.100}", - "dark": "{typography.color.secondary.900}" - } - } - } - } - }, - "radii": { - "sm": { - "value": "0.375rem" - }, - "md": { - "value": "0.5rem" - }, - "lg": { - "value": "0.75rem" - }, - "none": { - "value": "0px" - }, - "2xs": { - "value": "0.125rem" - }, - "xs": { - "value": "0.25rem" - }, - "xl": { - "value": "1rem" - }, - "2xl": { - "value": "1.5rem" - }, - "3xl": { - "value": "1.75rem" - }, - "full": { - "value": "9999px" - } - }, - "fontSize": { - "xs": { - "value": "0.75rem" - }, - "sm": { - "value": "0.875rem" - }, - "base": { - "value": "1rem" - }, - "lg": { - "value": "1.125rem" - }, - "xl": { - "value": "1.25rem" - }, - "2xl": { - "value": "1.5rem" - }, - "3xl": { - "value": "1.875rem" - }, - "4xl": { - "value": "2.25rem" - }, - "5xl": { - "value": "3rem" - }, - "6xl": { - "value": "3.75rem" - }, - "7xl": { - "value": "4.5rem" - }, - "8xl": { - "value": "6rem" - }, - "9xl": { - "value": "8rem" - } - }, - "lead": { - "1": { - "value": ".025rem" - }, - "2": { - "value": ".5rem" - }, - "3": { - "value": ".75rem" - }, - "4": { - "value": "1rem" - }, - "5": { - "value": "1.25rem" - }, - "6": { - "value": "1.5rem" - }, - "7": { - "value": "1.75rem" - }, - "8": { - "value": "2rem" - }, - "9": { - "value": "2.25rem" - }, - "10": { - "value": "2.5rem" - }, - "none": { - "value": "1" - }, - "tight": { - "value": "1.25" - }, - "snug": { - "value": "1.375" - }, - "normal": { - "value": "1.5" - }, - "relaxed": { - "value": "1.625" - }, - "loose": { - "value": "2" - } - }, - "font": { - "sans": { - "value": "ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji" - }, - "serif": { - "value": "ui-serif, Georgia, Cambria, Times New Roman, Times, serif" - }, - "mono": { - "value": "ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace" - } - }, - "docus": { - "header": { - "height": { - "value": "64px" - } - }, - "footer": { - "padding": { - "value": "{space.4} 0" - } - }, - "readableLine": { - "value": "78ch" - }, - "loadingBar": { - "height": { - "value": "3px" - }, - "gradientColorStop1": { - "value": "#00dc82" - }, - "gradientColorStop2": { - "value": "#34cdfe" - }, - "gradientColorStop3": { - "value": "#0047e1" - } - } - }, - "media": { - "xs": { - "value": "(min-width: 475px)" - }, - "sm": { - "value": "(min-width: 640px)" - }, - "md": { - "value": "(min-width: 768px)" - }, - "lg": { - "value": "(min-width: 1024px)" - }, - "xl": { - "value": "(min-width: 1280px)" - }, - "2xl": { - "value": "(min-width: 1536px)" - }, - "rm": { - "value": "(prefers-reduced-motion: reduce)" - }, - "landscape": { - "value": "only screen and (orientation: landscape)" - }, - "portrait": { - "value": "only screen and (orientation: portrait)" - } - }, - "width": { - "screen": { - "value": "100vw" - } - }, - "height": { - "screen": { - "value": "100vh" - } - }, - "shadow": { - "xs": { - "value": "0px 1px 2px 0px #000000" - }, - "sm": { - "value": "0px 1px 3px 0px #000000, 0px 1px 2px -1px #000000" - }, - "md": { - "value": "0px 4px 6px -1px #000000, 0px 2px 4px -2px #000000" - }, - "lg": { - "value": "0px 10px 15px -3px #000000, 0px 4px 6px -4px #000000" - }, - "xl": { - "value": "0px 20px 25px -5px {color.gray.400}, 0px 8px 10px -6px #000000" - }, - "2xl": { - "value": "0px 25px 50px -12px {color.gray.900}" - }, - "none": { - "value": "0px 0px 0px 0px transparent" - } - }, - "size": { - "0": { - "value": "0px" - }, - "2": { - "value": "2px" - }, - "4": { - "value": "4px" - }, - "6": { - "value": "6px" - }, - "8": { - "value": "8px" - }, - "12": { - "value": "12px" - }, - "16": { - "value": "16px" - }, - "20": { - "value": "20px" - }, - "24": { - "value": "24px" - }, - "32": { - "value": "32px" - }, - "40": { - "value": "40px" - }, - "48": { - "value": "48px" - }, - "56": { - "value": "56px" - }, - "64": { - "value": "64px" - }, - "80": { - "value": "80px" - }, - "104": { - "value": "104px" - }, - "200": { - "value": "200px" - }, - "xs": { - "value": "20rem" - }, - "sm": { - "value": "24rem" - }, - "md": { - "value": "28rem" - }, - "lg": { - "value": "32rem" - }, - "xl": { - "value": "36rem" - }, - "2xl": { - "value": "42rem" - }, - "3xl": { - "value": "48rem" - }, - "4xl": { - "value": "56rem" - }, - "5xl": { - "value": "64rem" - }, - "6xl": { - "value": "72rem" - }, - "7xl": { - "value": "80rem" - }, - "full": { - "value": "100%" - } - }, - "space": { - "0": { - "value": "0px" - }, - "1": { - "value": "0.25rem" - }, - "2": { - "value": "0.5rem" - }, - "3": { - "value": "0.75rem" - }, - "4": { - "value": "1rem" - }, - "5": { - "value": "1.25rem" - }, - "6": { - "value": "1.5rem" - }, - "7": { - "value": "1.75rem" - }, - "8": { - "value": "2rem" - }, - "9": { - "value": "2.25rem" - }, - "10": { - "value": "2.5rem" - }, - "11": { - "value": "2.75rem" - }, - "12": { - "value": "3rem" - }, - "14": { - "value": "3.5rem" - }, - "16": { - "value": "4rem" - }, - "20": { - "value": "5rem" - }, - "24": { - "value": "6rem" - }, - "28": { - "value": "7rem" - }, - "32": { - "value": "8rem" - }, - "36": { - "value": "9rem" - }, - "40": { - "value": "10rem" - }, - "44": { - "value": "11rem" - }, - "48": { - "value": "12rem" - }, - "52": { - "value": "13rem" - }, - "56": { - "value": "14rem" - }, - "60": { - "value": "15rem" - }, - "64": { - "value": "16rem" - }, - "72": { - "value": "18rem" - }, - "80": { - "value": "20rem" - }, - "96": { - "value": "24rem" - }, - "px": { - "value": "1px" - }, - "rem": { - "125": { - "value": "0.125rem" - }, - "375": { - "value": "0.375rem" - }, - "625": { - "value": "0.625rem" - }, - "875": { - "value": "0.875rem" - } - } - }, - "borderWidth": { - "noBorder": { - "value": "0" - }, - "sm": { - "value": "1px" - }, - "md": { - "value": "2px" - }, - "lg": { - "value": "3px" - } - }, - "opacity": { - "noOpacity": { - "value": "0" - }, - "bright": { - "value": "0.1" - }, - "light": { - "value": "0.15" - }, - "soft": { - "value": "0.3" - }, - "medium": { - "value": "0.5" - }, - "high": { - "value": "0.8" - }, - "total": { - "value": "1" - } - }, - "fontWeight": { - "thin": { - "value": "100" - }, - "extralight": { - "value": "200" - }, - "light": { - "value": "300" - }, - "normal": { - "value": "400" - }, - "medium": { - "value": "500" - }, - "semibold": { - "value": "600" - }, - "bold": { - "value": "700" - }, - "extrabold": { - "value": "800" - }, - "black": { - "value": "900" - } - }, - "letterSpacing": { - "tighter": { - "value": "-0.05em" - }, - "tight": { - "value": "-0.025em" - }, - "normal": { - "value": "0em" - }, - "wide": { - "value": "0.025em" - }, - "wider": { - "value": "0.05em" - }, - "widest": { - "value": "0.1em" - } - }, - "text": { - "xs": { - "fontSize": { - "value": "{fontSize.xs}" - }, - "lineHeight": { - "value": "{lead.4}" - } - }, - "sm": { - "fontSize": { - "value": "{fontSize.sm}" - }, - "lineHeight": { - "value": "{lead.5}" - } - }, - "base": { - "fontSize": { - "value": "{fontSize.base}" - }, - "lineHeight": { - "value": "{lead.6}" - } - }, - "lg": { - "fontSize": { - "value": "{fontSize.lg}" - }, - "lineHeight": { - "value": "{lead.7}" - } - }, - "xl": { - "fontSize": { - "value": "{fontSize.xl}" - }, - "lineHeight": { - "value": "{lead.7}" - } - }, - "2xl": { - "fontSize": { - "value": "{fontSize.2xl}" - }, - "lineHeight": { - "value": "{lead.8}" - } - }, - "3xl": { - "fontSize": { - "value": "{fontSize.3xl}" - }, - "lineHeight": { - "value": "{lead.9}" - } - }, - "4xl": { - "fontSize": { - "value": "{fontSize.4xl}" - }, - "lineHeight": { - "value": "{lead.10}" - } - }, - "5xl": { - "fontSize": { - "value": "{fontSize.5xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - }, - "6xl": { - "fontSize": { - "value": "{fontSize.6xl}" - }, - "lineHeight": { - "value": "{lead.none}" - } - } - } - } -}; -const schema_server_zIxGbBm233 = defineNuxtPlugin(() => { - const event = useRequestEvent(); - if (event.path === "/__pinceau_tokens_config.json") { - event.node.res.setHeader("Content-Type", "application/json"); - event.node.res.statusCode = 200; - event.node.res.end(JSON.stringify(theme, null, 2)); - } - if (event.path === "/__pinceau_tokens_schema.json") { - event.node.res.setHeader("Content-Type", "application/json"); - event.node.res.statusCode = 200; - event.node.res.end(JSON.stringify(schema, null, 2)); - } -}); -const preference = "dark"; -const componentName = "ColorScheme"; -const dataValue = "theme"; -const plugin_server_XNCxeHyTuP = defineNuxtPlugin((nuxtApp) => { - const colorMode = useState("color-mode", () => reactive({ - preference, - value: preference, - unknown: true, - forced: false - })).value; - const htmlAttrs = {}; - { - useHead({ htmlAttrs }); - } - useRouter().afterEach((to) => { - const forcedColorMode = to.meta.colorMode; - if (forcedColorMode && forcedColorMode !== "system") { - colorMode.value = htmlAttrs["data-color-mode-forced"] = forcedColorMode; - { - htmlAttrs[`data-${dataValue}`] = colorMode.value; - } - colorMode.forced = true; - } else if (forcedColorMode === "system") { - console.warn("You cannot force the colorMode to system at the page level."); - } - }); - nuxtApp.provide("colorMode", colorMode); -}); -const app_config_server_3EJd2il4WQ = defineNuxtPlugin(() => { - const event = useRequestEvent(); - if (event.path === "/__app_config.json") { - event.node.res.setHeader("Content-Type", "application/json"); - event.node.res.statusCode = 200; - event.node.res.end(JSON.stringify(useAppConfig(), null, 2)); - } -}); -const preview_detector_wuXocrN5Sn = defineNuxtPlugin((nuxtApp) => { - const runtimeConfig = useRuntimeConfig$1().public.studio || {}; - const route = useRoute(); - const previewToken = useCookie("previewToken", { sameSite: "none", secure: true }); - async function initializePreview() { - const useStudio = await import('./_nuxt/useStudio-7ec450fb.mjs').then((m) => m.useStudio); - const { mountPreviewUI } = useStudio(); - mountPreviewUI(); - queryContent("/non-existing-path").findOne(); - } - if (runtimeConfig.apiURL) { - if (Object.prototype.hasOwnProperty.call(route.query, "preview") && !route.query.preview) { - return; - } - if (!route.query.preview && !previewToken.value) { - return; - } - if (route.query.preview && previewToken.value !== route.query.preview) { - previewToken.value = String(route.query.preview); - } - nuxtApp.hook("app:mounted", async () => { - await initializePreview(); - }); - } -}); -const menu_13PGuw7IWk = defineNuxtPlugin((ctx) => { - const visible = ref(false); - const open = () => visible.value = true; - const close = () => visible.value = false; - const toggle = () => visible.value = !visible.value; - ctx.$router.afterEach(() => setTimeout(close, 50)); - return { - provide: { - menu: { - visible, - close, - open, - toggle - } - } - }; -}); -const _plugins = [ - components_plugin_KR1HBZs4kY, - vueuse_head_plugin_D7WGfuP1A0, - router_Pg0DINazwm, - docsearch_hvQai9BtgI, - documentDriven_9cX98v59ZY, - pinceau_nuxt_plugin_server_KEuz79zT4K, - schema_server_zIxGbBm233, - plugin_server_XNCxeHyTuP, - app_config_server_3EJd2il4WQ, - preview_detector_wuXocrN5Sn, - menu_13PGuw7IWk -]; -const _sfc_main$d = { - __name: "AppLoadingBar", - __ssrInlineRender: true, - props: { - throttle: { - type: Number, - default: 200 - }, - duration: { - type: Number, - default: 2e3 - } - }, - setup(__props) { - const props = __props; - const nuxtApp = useNuxtApp(); - const data = reactive({ - percent: 0, - show: false, - canSucceed: true - }); - let _timer = null; - let _throttle = null; - let _cut; - function clear() { - _timer && clearInterval(_timer); - _throttle && clearTimeout(_throttle); - _timer = null; - } - function start() { - if (data.show) { - return; - } - clear(); - data.percent = 0; - data.canSucceed = true; - if (props.throttle) { - _throttle = setTimeout(startTimer, props.throttle); - } else { - startTimer(); - } - } - function increase(num) { - data.percent = Math.min(100, Math.floor(data.percent + num)); - } - function finish() { - data.percent = 100; - hide(); - } - function hide() { - clear(); - setTimeout(() => { - data.show = false; - setTimeout(() => { - data.percent = 0; - }, 400); - }, 500); - } - function startTimer() { - data.show = true; - _cut = 1e4 / Math.floor(props.duration); - _timer = setInterval(() => { - increase(_cut); - }, 100); - } - nuxtApp.hook("content:middleware:start", start); - nuxtApp.hook("page:start", start); - nuxtApp.hook("page:finish", finish); - return (_ctx, _push, _parent, _attrs) => { - _push(``); - }; - } -}; -const _sfc_setup$d = _sfc_main$d.setup; -_sfc_main$d.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue"); - return _sfc_setup$d ? _sfc_setup$d(props, ctx) : void 0; -}; -const AppLoadingBar = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: _sfc_main$d -}); -const _sfc_main$c = /* @__PURE__ */ defineComponent({ - __name: "AppSocialIcons", - __ssrInlineRender: true, - setup(__props) { - const socials = ["twitter", "facebook", "instagram", "youtube", "github", "medium"]; - const { config } = useDocus(); - const icons = computed(() => { - return Object.entries(config.value.socials || {}).map(([key, value]) => { - if (typeof value === "object") { - return value; - } else if (typeof value === "string" && value && socials.includes(key)) { - return { - href: `https://${key}.com/${value}`, - icon: `fa-brands:${key}`, - label: value - }; - } else { - return null; - } - }).filter(Boolean); - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0$2; - const _component_Icon = __nuxt_component_0$1$1; - _push(``); - ssrRenderList(unref(icons), (icon) => { - _push(ssrRenderComponent(_component_NuxtLink, { - key: icon.label, - rel: "noopener noreferrer", - title: icon.label, - "aria-label": icon.label, - href: icon.href, - target: "_blank" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - if (icon.icon) { - _push2(ssrRenderComponent(_component_Icon, { - name: icon.icon - }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - } else { - return [ - icon.icon ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: icon.icon - }, null, 8, ["name"])) : createCommentVNode("", true) - ]; - } - }), - _: 2 - }, _parent)); - }); - _push(``); - }; - } -}); -const _sfc_setup$c = _sfc_main$c.setup; -_sfc_main$c.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue"); - return _sfc_setup$c ? _sfc_setup$c(props, ctx) : void 0; -}; -const __nuxt_component_3$1 = /* @__PURE__ */ _export_sfc(_sfc_main$c, [["__scopeId", "data-v-224b171c"]]); -const AppSocialIcons = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_3$1 -}); -const useMenu = () => { - const { $menu } = useNuxtApp(); - return $menu; -}; -const _sfc_main$b = /* @__PURE__ */ defineComponent({ - __name: "AppHeaderDialog", - __ssrInlineRender: true, - setup(__props) { - const { navigation } = useContent(); - const { config } = useDocus(); - const filtered = computed(() => { - var _a; - return ((_a = config.value.aside) == null ? void 0 : _a.exclude) || []; - }); - const links = computed(() => { - return (navigation.value || []).filter((item) => { - if (filtered.value.includes(item._path)) { - return false; - } - return true; - }); - }); - const { visible, open, close } = useMenu(); - watch(visible, (v) => v ? open() : close()); - return (_ctx, _push, _parent, _attrs) => { - const _component_Icon = __nuxt_component_0$1$1; - const _component_AppSocialIcons = __nuxt_component_3$1; - const _component_DocsAsideTree = __nuxt_component_0$3; - _push(``); - ssrRenderTeleport(_push, (_push2) => { - if (unref(visible)) { - _push2(``); - } else { - _push2(``); - } - }, "body", false, _parent); - _push(``); - }; - } -}); -const _sfc_setup$b = _sfc_main$b.setup; -_sfc_main$b.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue"); - return _sfc_setup$b ? _sfc_setup$b(props, ctx) : void 0; -}; -const __nuxt_component_1$3 = /* @__PURE__ */ _export_sfc(_sfc_main$b, [["__scopeId", "data-v-291983a4"]]); -const AppHeaderDialog = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_1$3 -}); -const _sfc_main$a = {}; -function _sfc_ssrRender$2(_ctx, _push, _parent, _attrs) { - _push(``); -} -const _sfc_setup$a = _sfc_main$a.setup; -_sfc_main$a.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("components/content/Logo.vue"); - return _sfc_setup$a ? _sfc_setup$a(props, ctx) : void 0; -}; -const __nuxt_component_1$2 = /* @__PURE__ */ _export_sfc(_sfc_main$a, [["ssrRender", _sfc_ssrRender$2]]); -const Logo = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_1$2 -}); -const _sfc_main$9 = /* @__PURE__ */ defineComponent({ - __name: "AppHeaderLogo", - __ssrInlineRender: true, - setup(__props) { - const { config } = useDocus(); - const logo = computed(() => { - var _a; - return ((_a = config.value.header) == null ? void 0 : _a.logo) || false; - }); - const title = computed(() => { - var _a; - return ((_a = config.value.header) == null ? void 0 : _a.title) || config.value.title; - }); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0$2; - const _component_Logo = __nuxt_component_1$2; - _push(ssrRenderComponent(_component_NuxtLink, mergeProps({ - class: "navbar-logo", - to: "/", - "aria-label": unref(title) - }, _attrs), { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - if (unref(logo) && typeof unref(logo) === "string") { - ssrRenderVNode(_push2, createVNode(resolveDynamicComponent(unref(logo)), null, null), _parent2, _scopeId); - } else if (unref(logo)) { - _push2(ssrRenderComponent(_component_Logo, null, null, _parent2, _scopeId)); - } else { - _push2(`${ssrInterpolate(unref(title))}`); - } - } else { - return [ - unref(logo) && typeof unref(logo) === "string" ? (openBlock(), createBlock(resolveDynamicComponent(unref(logo)), { key: 0 })) : unref(logo) ? (openBlock(), createBlock(_component_Logo, { key: 1 })) : (openBlock(), createBlock("span", { key: 2 }, toDisplayString(unref(title)), 1)) - ]; - } - }), - _: 1 - }, _parent)); - }; - } -}); -const _sfc_setup$9 = _sfc_main$9.setup; -_sfc_main$9.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue"); - return _sfc_setup$9 ? _sfc_setup$9(props, ctx) : void 0; -}; -const __nuxt_component_2$1 = /* @__PURE__ */ _export_sfc(_sfc_main$9, [["__scopeId", "data-v-0e437bbb"]]); -const AppHeaderLogo = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_2$1 -}); -const _sfc_main$8 = /* @__PURE__ */ defineComponent({ - __name: "AppHeaderNavigation", - __ssrInlineRender: true, - setup(__props) { - const route = useRoute(); - const { navBottomLink } = useContentHelpers(); - const { navigation } = useContent(); - const { config } = useDocus(); - const hasNavigation = computed(() => { - var _a; - return !!((_a = config.value.aside) == null ? void 0 : _a.level); - }); - const filtered = computed(() => { - var _a; - return ((_a = config.value.header) == null ? void 0 : _a.exclude) || []; - }); - const tree = computed(() => { - return (navigation.value || []).filter((item) => { - if (filtered.value.includes(item._path)) { - return false; - } - return true; - }); - }); - const isActive = (link) => link.exact ? route.fullPath === link._path : route.fullPath.startsWith(link._path); - return (_ctx, _push, _parent, _attrs) => { - const _component_NuxtLink = __nuxt_component_0$2; - const _component_Icon = __nuxt_component_0$1$1; - if (unref(hasNavigation)) { - _push(`
      `); - ssrRenderList(unref(tree), (link) => { - _push(`
    • `); - _push(ssrRenderComponent(_component_NuxtLink, { - class: ["link", { active: isActive(link) }], - to: link.redirect ? link.redirect : unref(navBottomLink)(link) - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - var _a, _b, _c, _d; - if (_push2) { - if (link.icon && ((_b = (_a = unref(config)) == null ? void 0 : _a.header) == null ? void 0 : _b.showLinkIcon)) { - _push2(ssrRenderComponent(_component_Icon, { - name: link.icon - }, null, _parent2, _scopeId)); - } else { - _push2(``); - } - _push2(` ${ssrInterpolate(link.title)}`); - } else { - return [ - link.icon && ((_d = (_c = unref(config)) == null ? void 0 : _c.header) == null ? void 0 : _d.showLinkIcon) ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: link.icon - }, null, 8, ["name"])) : createCommentVNode("", true), - createTextVNode(" " + toDisplayString(link.title), 1) - ]; - } - }), - _: 2 - }, _parent)); - _push(`
    • `); - }); - _push(`
    `); - } else { - _push(``); - } - }; - } -}); -const _sfc_setup$8 = _sfc_main$8.setup; -_sfc_main$8.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue"); - return _sfc_setup$8 ? _sfc_setup$8(props, ctx) : void 0; -}; -const __nuxt_component_3 = /* @__PURE__ */ _export_sfc(_sfc_main$8, [["__scopeId", "data-v-01b60614"]]); -const AppHeaderNavigation = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_3 -}); -const useDocSearch = () => { - const { $docSearch } = useNuxtApp(); - if (!$docSearch) { - return { - hasDocSearch: ref(false) - }; - } - return $docSearch; -}; -const _sfc_main$7 = /* @__PURE__ */ defineComponent({ - __name: "AppSearch", - __ssrInlineRender: true, - setup(__props) { - useDocSearch(); - return (_ctx, _push, _parent, _attrs) => { - const _component_Icon = __nuxt_component_0$1$1; - _push(``); - }; - } -}); -const _sfc_setup$7 = _sfc_main$7.setup; -_sfc_main$7.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppSearch.vue"); - return _sfc_setup$7 ? _sfc_setup$7(props, ctx) : void 0; -}; -const __nuxt_component_4 = /* @__PURE__ */ _export_sfc(_sfc_main$7, [["__scopeId", "data-v-1e99f08b"]]); -const AppSearch = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_4 -}); -const __nuxt_component_0$1 = defineComponent({ - name: "ClientOnly", - inheritAttrs: false, - // eslint-disable-next-line vue/require-prop-types - props: ["fallback", "placeholder", "placeholderTag", "fallbackTag"], - setup(_, { slots, attrs }) { - const mounted = ref(false); - return (props) => { - var _a; - if (mounted.value) { - return (_a = slots.default) == null ? void 0 : _a.call(slots); - } - const slot = slots.fallback || slots.placeholder; - if (slot) { - return slot(); - } - const fallbackStr = props.fallback || props.placeholder || ""; - const fallbackTag = props.fallbackTag || props.placeholderTag || "span"; - return createElementBlock(fallbackTag, attrs, fallbackStr); - }; - } -}); -const cache = /* @__PURE__ */ new WeakMap(); -function createClientOnly(component) { - if (cache.has(component)) { - return cache.get(component); - } - const clone = { ...component }; - if (clone.render) { - clone.render = (ctx, ...args) => { - if (ctx.mounted$) { - const res = component.render(ctx, ...args); - return res.children === null || typeof res.children === "string" ? createElementVNode(res.type, res.props, res.children, res.patchFlag, res.dynamicProps, res.shapeFlag) : h(res); - } else { - return h("div", ctx.$attrs ?? ctx._.attrs); - } - }; - } else if (clone.template) { - clone.template = ` - - - `; - } - clone.setup = (props, ctx) => { - var _a; - const mounted$ = ref(false); - return Promise.resolve(((_a = component.setup) == null ? void 0 : _a.call(component, props, ctx)) || {}).then((setupState) => { - return typeof setupState !== "function" ? { ...setupState, mounted$ } : (...args) => { - if (mounted$.value) { - const res = setupState(...args); - return res.children === null || typeof res.children === "string" ? createElementVNode(res.type, res.props, res.children, res.patchFlag, res.dynamicProps, res.shapeFlag) : h(res); - } else { - return h("div", ctx.attrs); - } - }; - }); - }; - cache.set(component, clone); - return clone; -} -const clientOnly = /* @__PURE__ */ Object.freeze({ - __proto__: null, - createClientOnly, - default: __nuxt_component_0$1 -}); -const _sfc_main$6 = { - name: componentName, - props: { - placeholder: String, - tag: { - type: String, - default: "span" - } - } -}; -function _sfc_ssrRender$1(_ctx, _push, _parent, _attrs, $props, $setup, $data, $options) { - const _component_ClientOnly = __nuxt_component_0$1; - _push(ssrRenderComponent(_component_ClientOnly, mergeProps({ - placeholder: $props.placeholder, - "placeholder-tag": $props.tag - }, _attrs), null, _parent)); -} -const _sfc_setup$6 = _sfc_main$6.setup; -_sfc_main$6.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxtjs/color-mode/dist/runtime/component.vue3.vue"); - return _sfc_setup$6 ? _sfc_setup$6(props, ctx) : void 0; -}; -const __nuxt_component_0 = /* @__PURE__ */ _export_sfc(_sfc_main$6, [["ssrRender", _sfc_ssrRender$1]]); -const component_vue3 = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_0 -}); -const useColorMode = () => { - return useState("color-mode").value; -}; -const _sfc_main$5 = /* @__PURE__ */ defineComponent({ - __name: "ThemeSelect", - __ssrInlineRender: true, - setup(__props) { - const colorMode = useColorMode(); - return (_ctx, _push, _parent, _attrs) => { - const _component_ColorScheme = __nuxt_component_0; - const _component_Icon = __nuxt_component_0$1$1; - _push(``); - _push(ssrRenderComponent(_component_ColorScheme, { placeholder: "..." }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - if (unref(colorMode).preference === "dark") { - _push2(ssrRenderComponent(_component_Icon, { name: "uil:moon" }, null, _parent2, _scopeId)); - } else if (unref(colorMode).preference === "light") { - _push2(ssrRenderComponent(_component_Icon, { name: "uil:sun" }, null, _parent2, _scopeId)); - } else { - _push2(ssrRenderComponent(_component_Icon, { name: "uil:desktop" }, null, _parent2, _scopeId)); - } - } else { - return [ - unref(colorMode).preference === "dark" ? (openBlock(), createBlock(_component_Icon, { - key: 0, - name: "uil:moon" - })) : unref(colorMode).preference === "light" ? (openBlock(), createBlock(_component_Icon, { - key: 1, - name: "uil:sun" - })) : (openBlock(), createBlock(_component_Icon, { - key: 2, - name: "uil:desktop" - })) - ]; - } - }), - _: 1 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup$5 = _sfc_main$5.setup; -_sfc_main$5.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue"); - return _sfc_setup$5 ? _sfc_setup$5(props, ctx) : void 0; -}; -const __nuxt_component_5 = /* @__PURE__ */ _export_sfc(_sfc_main$5, [["__scopeId", "data-v-4a6c39b0"]]); -const ThemeSelect = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_5 -}); -const _sfc_main$4 = /* @__PURE__ */ defineComponent({ - __name: "AppHeader", - __ssrInlineRender: true, - props: {}, - setup(__props) { - const { config } = useDocus(); - const { navigation } = useContent(); - const { hasDocSearch } = useDocSearch(); - const hasDialog = computed(() => { - var _a; - return ((_a = navigation.value) == null ? void 0 : _a.length) > 1; - }); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b; - const _component_Container = __nuxt_component_0$4; - const _component_AppHeaderDialog = __nuxt_component_1$3; - const _component_AppHeaderLogo = __nuxt_component_2$1; - const _component_AppHeaderNavigation = __nuxt_component_3; - const _component_AppSearch = __nuxt_component_4; - const _component_ThemeSelect = __nuxt_component_5; - const _component_AppSocialIcons = __nuxt_component_3$1; - _push(``); - _push(ssrRenderComponent(_component_Container, { - fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.header) == null ? void 0 : _b.fluid - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(`
    `); - if (unref(hasDialog)) { - _push2(ssrRenderComponent(_component_AppHeaderDialog, null, null, _parent2, _scopeId)); - } else { - _push2(``); - } - _push2(ssrRenderComponent(_component_AppHeaderLogo, null, null, _parent2, _scopeId)); - _push2(`
    `); - if (unref(hasDialog)) { - _push2(ssrRenderComponent(_component_AppHeaderLogo, null, null, _parent2, _scopeId)); - } else { - _push2(``); - } - _push2(ssrRenderComponent(_component_AppHeaderNavigation, null, null, _parent2, _scopeId)); - _push2(`
    `); - if (unref(hasDocSearch)) { - _push2(ssrRenderComponent(_component_AppSearch, null, null, _parent2, _scopeId)); - } else { - _push2(``); - } - _push2(ssrRenderComponent(_component_ThemeSelect, null, null, _parent2, _scopeId)); - _push2(`
    `); - } else { - return [ - createVNode("div", { class: "section left" }, [ - unref(hasDialog) ? (openBlock(), createBlock(_component_AppHeaderDialog, { key: 0 })) : createCommentVNode("", true), - createVNode(_component_AppHeaderLogo) - ]), - createVNode("div", { class: "section center" }, [ - unref(hasDialog) ? (openBlock(), createBlock(_component_AppHeaderLogo, { key: 0 })) : createCommentVNode("", true), - createVNode(_component_AppHeaderNavigation) - ]), - createVNode("div", { class: "section right" }, [ - unref(hasDocSearch) ? (openBlock(), createBlock(_component_AppSearch, { key: 0 })) : createCommentVNode("", true), - createVNode(_component_ThemeSelect), - createVNode("div", { class: "social-icons" }, [ - createVNode(_component_AppSocialIcons) - ]) - ]) - ]; - } - }), - _: 1 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup$4 = _sfc_main$4.setup; -_sfc_main$4.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppHeader.vue"); - return _sfc_setup$4 ? _sfc_setup$4(props, ctx) : void 0; -}; -const __nuxt_component_1$1 = /* @__PURE__ */ _export_sfc(_sfc_main$4, [["__scopeId", "data-v-8375ebf7"]]); -const AppHeader = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_1$1 -}); -const _sfc_main$3 = /* @__PURE__ */ defineComponent({ - __name: "AppFooter", - __ssrInlineRender: true, - setup(__props) { - const { config } = useDocus(); - const socialIcons = ref(null); - const icons = computed(() => { - var _a, _b; - return ((_b = (_a = config.value) == null ? void 0 : _a.footer) == null ? void 0 : _b.iconLinks) || []; - }); - const textLinks = computed(() => { - var _a, _b; - return ((_b = (_a = config.value) == null ? void 0 : _a.footer) == null ? void 0 : _b.textLinks) || []; - }); - const socialIconsCount = computed(() => { - var _a; - return Object.entries(((_a = config.value) == null ? void 0 : _a.socials) || {}).filter(([_, v]) => v).length; - }); - const nbSocialIcons = computed(() => socialIcons.value ? socialIconsCount.value : 0); - return (_ctx, _push, _parent, _attrs) => { - var _a, _b; - const _component_Container = __nuxt_component_0$4; - const _component_NuxtLink = __nuxt_component_0$2; - const _component_Icon = __nuxt_component_0$1$1; - const _component_AppSocialIcons = __nuxt_component_3$1; - _push(``); - _push(ssrRenderComponent(_component_Container, { - fluid: (_b = (_a = unref(config)) == null ? void 0 : _a.footer) == null ? void 0 : _b.fluid, - padded: "", - class: "footer-container" - }, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - var _a2, _b2, _c, _d, _e, _f, _g, _h, _i, _j, _k, _l, _m, _n, _o, _p, _q, _r, _s, _t, _u, _v, _w, _x, _y, _z, _A, _B; - if (_push2) { - _push2(`
    `); - if ((_b2 = (_a2 = unref(config)) == null ? void 0 : _a2.footer) == null ? void 0 : _b2.credits) { - _push2(``); - if ((_h = (_g = (_f = unref(config)) == null ? void 0 : _f.footer) == null ? void 0 : _g.credits) == null ? void 0 : _h.icon) { - ssrRenderVNode(_push2, createVNode(resolveDynamicComponent((_k = (_j = (_i = unref(config)) == null ? void 0 : _i.footer) == null ? void 0 : _j.credits) == null ? void 0 : _k.icon), { class: "left-icon" }, null), _parent2, _scopeId); - } else { - _push2(``); - } - if ((_n = (_m = (_l = unref(config)) == null ? void 0 : _l.footer) == null ? void 0 : _m.credits) == null ? void 0 : _n.text) { - _push2(`

    ${ssrInterpolate(unref(config).footer.credits.text)}

    `); - } else { - _push2(``); - } - _push2(``); - } else { - _push2(``); - } - _push2(`
    `); - ssrRenderList(unref(textLinks), (link) => { - _push2(ssrRenderComponent(_component_NuxtLink, { - key: link.href, - class: "text-link", - "aria-label": link.text, - href: link.href, - target: link.target || "_self" - }, { - default: withCtx((_2, _push3, _parent3, _scopeId2) => { - if (_push3) { - _push3(`${ssrInterpolate(link.text)}`); - } else { - return [ - createTextVNode(toDisplayString(link.text), 1) - ]; - } - }), - _: 2 - }, _parent2, _scopeId)); - }); - _push2(`
    `); - ssrRenderList(unref(icons).slice(0, 6 - unref(nbSocialIcons)), (icon) => { - _push2(``); - _push2(ssrRenderComponent(_component_Icon, { - name: icon.icon - }, null, _parent2, _scopeId)); - _push2(``); - }); - _push2(``); - _push2(ssrRenderComponent(_component_AppSocialIcons, { - ref_key: "socialIcons", - ref: socialIcons - }, null, _parent2, _scopeId)); - _push2(`
    `); - } else { - return [ - createVNode("div", { class: "left" }, [ - ((_p = (_o = unref(config)) == null ? void 0 : _o.footer) == null ? void 0 : _p.credits) ? (openBlock(), createBlock("a", { - key: 0, - href: ((_s = (_r = (_q = unref(config)) == null ? void 0 : _q.footer) == null ? void 0 : _r.credits) == null ? void 0 : _s.href) || "#", - rel: "noopener", - target: "_blank" - }, [ - ((_v = (_u = (_t = unref(config)) == null ? void 0 : _t.footer) == null ? void 0 : _u.credits) == null ? void 0 : _v.icon) ? (openBlock(), createBlock(resolveDynamicComponent((_y = (_x = (_w = unref(config)) == null ? void 0 : _w.footer) == null ? void 0 : _x.credits) == null ? void 0 : _y.icon), { - key: 0, - class: "left-icon" - })) : createCommentVNode("", true), - ((_B = (_A = (_z = unref(config)) == null ? void 0 : _z.footer) == null ? void 0 : _A.credits) == null ? void 0 : _B.text) ? (openBlock(), createBlock("p", { key: 1 }, toDisplayString(unref(config).footer.credits.text), 1)) : createCommentVNode("", true) - ], 8, ["href"])) : createCommentVNode("", true) - ]), - createVNode("div", { class: "center" }, [ - (openBlock(true), createBlock(Fragment$1, null, renderList(unref(textLinks), (link) => { - return openBlock(), createBlock(_component_NuxtLink, { - key: link.href, - class: "text-link", - "aria-label": link.text, - href: link.href, - target: link.target || "_self" - }, { - default: withCtx(() => [ - createTextVNode(toDisplayString(link.text), 1) - ]), - _: 2 - }, 1032, ["aria-label", "href", "target"]); - }), 128)) - ]), - createVNode("div", { class: "right" }, [ - (openBlock(true), createBlock(Fragment$1, null, renderList(unref(icons).slice(0, 6 - unref(nbSocialIcons)), (icon) => { - return openBlock(), createBlock("a", { - key: icon.label, - class: "icon-link", - rel: "noopener", - "aria-label": icon.label, - href: icon.href, - target: "_blank" - }, [ - createVNode(_component_Icon, { - name: icon.icon - }, null, 8, ["name"]) - ], 8, ["aria-label", "href"]); - }), 128)), - createVNode(_component_AppSocialIcons, { - ref_key: "socialIcons", - ref: socialIcons - }, null, 512) - ]) - ]; - } - }), - _: 1 - }, _parent)); - _push(``); - }; - } -}); -const _sfc_setup$3 = _sfc_main$3.setup; -_sfc_main$3.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppFooter.vue"); - return _sfc_setup$3 ? _sfc_setup$3(props, ctx) : void 0; -}; -const __nuxt_component_2 = /* @__PURE__ */ _export_sfc(_sfc_main$3, [["__scopeId", "data-v-eebf8ee0"]]); -const AppFooter = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_2 -}); -const useContentHead = (_content, to = useRoute()) => { - const content = unref(_content); - const config = useRuntimeConfig$1(); - const refreshHead = (data = content) => { - if (!to.path || !data) { - return; - } - const head = Object.assign({}, (data == null ? void 0 : data.head) || {}); - head.meta = [...head.meta || []]; - head.link = [...head.link || []]; - const title = head.title || (data == null ? void 0 : data.title); - if (title) { - head.title = title; - if (!head.meta.some((m) => m.property === "og:title")) { - head.meta.push({ - name: "og:title", - content: title - }); - } - } - const host = config.public.content.host; - if (host) { - const _url = joinURL(host ?? "/", config.app.baseURL, to.fullPath); - const url = config.public.content.trailingSlash ? withTrailingSlash(_url) : withoutTrailingSlash(_url); - if (!head.meta.some((m) => m.property === "og:url")) { - head.meta.push({ - name: "og:url", - content: url - }); - } - if (!head.link.some((m) => m.rel === "canonical")) { - head.link.push({ - rel: "canonical", - href: url - }); - } - } - const description = (head == null ? void 0 : head.description) || (data == null ? void 0 : data.description); - if (description && head.meta.filter((m) => m.name === "description").length === 0) { - head.meta.push({ - name: "description", - content: description - }); - } - if (description && !head.meta.some((m) => m.property === "og:description")) { - head.meta.push({ - name: "og:description", - content: description - }); - } - const image = (head == null ? void 0 : head.image) || (data == null ? void 0 : data.image); - if (image && head.meta.filter((m) => m.property === "og:image").length === 0) { - if (typeof image === "string") { - head.meta.push({ - property: "og:image", - // @ts-ignore - We expect `head.image` from Nuxt configurations... - content: host && !hasProtocol(image) ? new URL(joinURL(config.app.baseURL, image), host).href : image - }); - } - if (typeof image === "object") { - const imageKeys = [ - "src", - "secure_url", - "type", - "width", - "height", - "alt" - ]; - for (const key of imageKeys) { - if (key === "src" && image.src) { - const isAbsoluteURL = hasProtocol(image.src); - const imageURL = isAbsoluteURL ? image.src : joinURL(config.app.baseURL, image.src ?? "/"); - head.meta.push({ - property: "og:image", - content: host && !isAbsoluteURL ? new URL(imageURL, host).href : imageURL - }); - } else if (image[key]) { - head.meta.push({ - property: `og:image:${key}`, - content: image[key] - }); - } - } - } - } - { - useHead(head); - } - }; - watch(() => unref(_content), refreshHead, { immediate: true }); -}; -const _sfc_main$2 = /* @__PURE__ */ defineComponent({ - __name: "AppLayout", - __ssrInlineRender: true, - setup(__props) { - const { config } = useDocus(); - useHead({ - titleTemplate: config.value.titleTemplate, - meta: [ - { name: "twitter:card", content: "summary_large_image" } - ] - }); - watch( - () => config.value.titleTemplate, - () => useHead({ titleTemplate: config.value.titleTemplate }) - ); - useContentHead(config.value); - return (_ctx, _push, _parent, _attrs) => { - const _component_AppLoadingBar = _sfc_main$d; - const _component_AppHeader = __nuxt_component_1$1; - const _component_AppFooter = __nuxt_component_2; - _push(``); - _push(ssrRenderComponent(_component_AppLoadingBar, null, null, _parent)); - _push(ssrRenderComponent(_component_AppHeader, null, null, _parent)); - ssrRenderSlot(_ctx.$slots, "default", {}, null, _push, _parent); - _push(ssrRenderComponent(_component_AppFooter, null, null, _parent)); - _push(``); - }; - } -}); -const _sfc_setup$2 = _sfc_main$2.setup; -_sfc_main$2.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/components/app/AppLayout.vue"); - return _sfc_setup$2 ? _sfc_setup$2(props, ctx) : void 0; -}; -const AppLayout = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: _sfc_main$2 -}); -const interpolatePath = (route, match) => { - return match.path.replace(/(:\w+)\([^)]+\)/g, "$1").replace(/(:\w+)[?+*]/g, "$1").replace(/:\w+/g, (r) => { - var _a; - return ((_a = route.params[r.slice(1)]) == null ? void 0 : _a.toString()) || ""; - }); -}; -const generateRouteKey = (routeProps, override) => { - const matchedRoute = routeProps.route.matched.find((m) => { - var _a; - return ((_a = m.components) == null ? void 0 : _a.default) === routeProps.Component.type; - }); - const source = override ?? (matchedRoute == null ? void 0 : matchedRoute.meta.key) ?? (matchedRoute && interpolatePath(routeProps.route, matchedRoute)); - return typeof source === "function" ? source(routeProps.route) : source; -}; -const wrapInKeepAlive = (props, children) => { - return { default: () => children }; -}; -const Fragment = defineComponent({ - name: "FragmentWrapper", - setup(_props, { slots }) { - return () => { - var _a; - return (_a = slots.default) == null ? void 0 : _a.call(slots); - }; - } -}); -const _wrapIf = (component, props, slots) => { - return { default: () => props ? h(component, props === true ? {} : props, slots) : h(Fragment, {}, slots) }; -}; -const __nuxt_component_1 = defineComponent({ - name: "NuxtPage", - inheritAttrs: false, - props: { - name: { - type: String - }, - transition: { - type: [Boolean, Object], - default: void 0 - }, - keepalive: { - type: [Boolean, Object], - default: void 0 - }, - route: { - type: Object - }, - pageKey: { - type: [Function, String], - default: null - } - }, - setup(props, { attrs }) { - const nuxtApp = useNuxtApp(); - return () => { - return h(RouterView, { name: props.name, route: props.route, ...attrs }, { - default: (routeProps) => { - if (!routeProps.Component) { - return; - } - const key = generateRouteKey(routeProps, props.pageKey); - const done = nuxtApp.deferHydration(); - const hasTransition = !!(props.transition ?? routeProps.route.meta.pageTransition ?? appPageTransition); - const transitionProps = hasTransition && _mergeTransitionProps([ - props.transition, - routeProps.route.meta.pageTransition, - appPageTransition, - { onAfterLeave: () => { - nuxtApp.callHook("page:transition:finish", routeProps.Component); - } } - ].filter(Boolean)); - return _wrapIf( - Transition, - hasTransition && transitionProps, - wrapInKeepAlive( - props.keepalive ?? routeProps.route.meta.keepalive ?? appKeepalive, - h(Suspense, { - onPending: () => nuxtApp.callHook("page:start", routeProps.Component), - onResolve: () => { - nextTick(() => nuxtApp.callHook("page:finish", routeProps.Component).finally(done)); - } - }, { default: () => h(RouteProvider, { key, routeProps, pageKey: key, hasTransition }) }) - ) - ).default(); - } - }); - }; - } -}); -function _toArray(val) { - return Array.isArray(val) ? val : val ? [val] : []; -} -function _mergeTransitionProps(routeProps) { - const _props = routeProps.map((prop) => ({ - ...prop, - onAfterLeave: _toArray(prop.onAfterLeave) - })); - return defu(..._props); -} -const RouteProvider = defineComponent({ - name: "RouteProvider", - // TODO: Type props - // eslint-disable-next-line vue/require-prop-types - props: ["routeProps", "pageKey", "hasTransition"], - setup(props) { - const previousKey = props.pageKey; - const previousRoute = props.routeProps.route; - const route = {}; - for (const key in props.routeProps.route) { - route[key] = computed(() => previousKey === props.pageKey ? props.routeProps.route[key] : previousRoute[key]); - } - provide("_route", reactive(route)); - return () => { - return h(props.routeProps.Component); - }; - } -}); -const page = /* @__PURE__ */ Object.freeze({ - __proto__: null, - default: __nuxt_component_1 -}); -const _sfc_main$1 = {}; -function _sfc_ssrRender(_ctx, _push, _parent, _attrs) { - const _component_AppLayout = _sfc_main$2; - const _component_NuxtPage = __nuxt_component_1; - _push(ssrRenderComponent(_component_AppLayout, _attrs, { - default: withCtx((_, _push2, _parent2, _scopeId) => { - if (_push2) { - _push2(ssrRenderComponent(_component_NuxtPage, null, null, _parent2, _scopeId)); - } else { - return [ - createVNode(_component_NuxtPage) - ]; - } - }), - _: 1 - }, _parent)); -} -const _sfc_setup$1 = _sfc_main$1.setup; -_sfc_main$1.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/@nuxt-themes/docus/app.vue"); - return _sfc_setup$1 ? _sfc_setup$1(props, ctx) : void 0; -}; -const AppComponent = /* @__PURE__ */ _export_sfc(_sfc_main$1, [["ssrRender", _sfc_ssrRender]]); -const _sfc_main = { - __name: "nuxt-root", - __ssrInlineRender: true, - setup(__props) { - const ErrorComponent = defineAsyncComponent(() => import('./_nuxt/error-component-969bdc5d.mjs').then((r) => r.default || r)); - const IslandRendererer = defineAsyncComponent(() => import('./_nuxt/island-renderer-862b92a0.mjs').then((r) => r.default || r)); - const nuxtApp = useNuxtApp(); - nuxtApp.deferHydration(); - provide("_route", useRoute()); - nuxtApp.hooks.callHookWith((hooks) => hooks.map((hook) => hook()), "vue:setup"); - const error = useError(); - onErrorCaptured((err, target, info) => { - nuxtApp.hooks.callHook("vue:error", err, target, info).catch((hookError) => console.error("[nuxt] Error in `vue:error` hook", hookError)); - { - const p = callWithNuxt(nuxtApp, showError, [err]); - onServerPrefetch(() => p); - } - }); - const { islandContext } = nuxtApp.ssrContext; - return (_ctx, _push, _parent, _attrs) => { - ssrRenderSuspense(_push, { - default: () => { - if (unref(error)) { - _push(ssrRenderComponent(unref(ErrorComponent), { error: unref(error) }, null, _parent)); - } else if (unref(islandContext)) { - _push(ssrRenderComponent(unref(IslandRendererer), { context: unref(islandContext) }, null, _parent)); - } else { - _push(ssrRenderComponent(unref(AppComponent), null, null, _parent)); - } - }, - _: 1 - }); - }; - } -}; -const _sfc_setup = _sfc_main.setup; -_sfc_main.setup = (props, ctx) => { - const ssrContext = useSSRContext(); - (ssrContext.modules || (ssrContext.modules = /* @__PURE__ */ new Set())).add("node_modules/nuxt/dist/app/components/nuxt-root.vue"); - return _sfc_setup ? _sfc_setup(props, ctx) : void 0; -}; -if (!globalThis.$fetch) { - globalThis.$fetch = $fetch$1.create({ - baseURL: baseURL() - }); -} -let entry; -const plugins = normalizePlugins(_plugins); -{ - entry = async function createNuxtAppServer(ssrContext) { - const vueApp = createApp(_sfc_main); - const nuxt = createNuxtApp({ vueApp, ssrContext }); - try { - await applyPlugins(nuxt, plugins); - await nuxt.hooks.callHook("app:created", vueApp); - } catch (err) { - await nuxt.callHook("app:error", err); - nuxt.payload.error = nuxt.payload.error || err; - } - return vueApp; - }; -} -const entry$1 = (ctx) => entry(ctx); - -export { AppLoadingBar as A, Logo as L, ThemeSelect as T, _wrapIf as _, useContentHead as a, useHead as b, createError as c, appLayoutTransition as d, entry$1 as default, AppSocialIcons as e, fetchContentNavigation as f, AppHeaderDialog as g, AppHeaderLogo as h, AppHeaderNavigation as i, AppSearch as j, clientOnly as k, layouts as l, component_vue3 as m, AppHeader as n, AppFooter as o, AppLayout as p, queryContent as q, page as r, useColorMode as u }; -//# sourceMappingURL=server.mjs.map diff --git a/docs/.output/server/chunks/app/server.mjs.map b/docs/.output/server/chunks/app/server.mjs.map deleted file mode 100644 index 9b3cbf01..00000000 --- a/docs/.output/server/chunks/app/server.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"server.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/server.mjs"],"sourcesContent":null,"names":["__nuxt_component_0$3","__nuxt_component_0$4","__nuxt_component_0$5"],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/app/styles.mjs b/docs/.output/server/chunks/app/styles.mjs deleted file mode 100644 index 7d9aca0d..00000000 --- a/docs/.output/server/chunks/app/styles.mjs +++ /dev/null @@ -1,74 +0,0 @@ -const interopDefault = r => r.default || r || []; -const styles = { - "virtual:nuxt:/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/pinceau-nuxt-plugin.server.mjs": () => import('./_nuxt/pinceau-nuxt-plugin.server-styles.1bf5bf59.mjs').then(interopDefault), - "components/content/HeroAnnouncement.vue": () => import('./_nuxt/HeroAnnouncement-styles.a73a7723.mjs').then(interopDefault), - "components/content/MyButton.vue": () => import('./_nuxt/MyButton-styles.0da530f8.mjs').then(interopDefault), - "components/content/PropInspector.vue": () => import('./_nuxt/PropInspector-styles.ad1f0c4f.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppLoadingBar.vue": () => import('./_nuxt/AppLoadingBar-styles.b242e2e9.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/DocumentDrivenNotFound.vue": () => import('./_nuxt/DocumentDrivenNotFound-styles.a8b03708.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseBlockquote.vue": () => import('./_nuxt/ProseBlockquote-styles.c0f9c45a.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseCodeInline.vue": () => import('./_nuxt/ProseCodeInline-styles.4873b751.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseEm.vue": () => import('./_nuxt/ProseEm-styles.0ce5f2c8.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseHr.vue": () => import('./_nuxt/ProseHr-styles.22aa3717.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseH1.vue": () => import('./_nuxt/ProseH1-styles.086fd4ea.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseH2.vue": () => import('./_nuxt/ProseH2-styles.8ba56a52.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseH3.vue": () => import('./_nuxt/ProseH3-styles.492ea689.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseH4.vue": () => import('./_nuxt/ProseH4-styles.68f135ad.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseH5.vue": () => import('./_nuxt/ProseH5-styles.c63d0e8d.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseH6.vue": () => import('./_nuxt/ProseH6-styles.92c4d496.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseLi.vue": () => import('./_nuxt/ProseLi-styles.29062533.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseOl.vue": () => import('./_nuxt/ProseOl-styles.c085ed74.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseP.vue": () => import('./_nuxt/ProseP-styles.b304bfc7.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseTable.vue": () => import('./_nuxt/ProseTable-styles.b377f50f.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseStrong.vue": () => import('./_nuxt/ProseStrong-styles.ec17e85f.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseTd.vue": () => import('./_nuxt/ProseTd-styles.2b89033a.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseTh.vue": () => import('./_nuxt/ProseTh-styles.9ccb956b.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseThead.vue": () => import('./_nuxt/ProseThead-styles.319de3db.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseTr.vue": () => import('./_nuxt/ProseTr-styles.755e9793.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseUl.vue": () => import('./_nuxt/ProseUl-styles.2d31952c.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseImg.vue": () => import('./_nuxt/ProseImg-styles.cfb4616f.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppFooter.vue": () => import('./_nuxt/AppFooter-styles.775a1c05.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppHeader.vue": () => import('./_nuxt/AppHeader-styles.5fd39c5b.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppHeaderDialog.vue": () => import('./_nuxt/AppHeaderDialog-styles.9903b5a9.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppHeaderNavigation.vue": () => import('./_nuxt/AppHeaderNavigation-styles.80a8cd0f.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/Alert.vue": () => import('./_nuxt/Alert-styles.484d4e78.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/Badge.vue": () => import('./_nuxt/Badge-styles.8af74ce4.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppHeaderLogo.vue": () => import('./_nuxt/AppHeaderLogo-styles.795405cc.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/ButtonLink.vue": () => import('./_nuxt/ButtonLink-styles.2eab8dff.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/icons/IconNuxtStudio.vue": () => import('./_nuxt/IconNuxtStudio-styles.d164db17.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/Callout.vue": () => import('./_nuxt/Callout-styles.966d42ad.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/CodeBlock.vue": () => import('./_nuxt/CodeBlock-styles.cac949de.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppSearch.vue": () => import('./_nuxt/AppSearch-styles.36eea8dd.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/CodeGroup.vue": () => import('./_nuxt/CodeGroup-styles.0da0e60b.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/AppSocialIcons.vue": () => import('./_nuxt/AppSocialIcons-styles.994e800b.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/app/ThemeSelect.vue": () => import('./_nuxt/ThemeSelect-styles.d47092b1.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/Ellipsis.vue": () => import('./_nuxt/Ellipsis-styles.3bef1bdd.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/docs/DocsAside.vue": () => import('./_nuxt/DocsAside-styles.764ece99.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/List.vue": () => import('./_nuxt/List-styles.ff61b956.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/docs/DocsPageLayout.vue": () => import('./_nuxt/DocsPageLayout-styles.1c5b6bba.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/docs/DocsPrevNext.vue": () => import('./_nuxt/DocsPrevNext-styles.23bc8fd8.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/docs/DocsToc.vue": () => import('./_nuxt/DocsToc-styles.dfd8d9f4.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/Sandbox.vue": () => import('./_nuxt/Sandbox-styles.b322716f.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/docs/DocsTocLinks.vue": () => import('./_nuxt/DocsTocLinks-styles.79413e66.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/components/docs/DocsPageBottom.vue": () => import('./_nuxt/DocsPageBottom-styles.e97de530.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/TabsHeader.vue": () => import('./_nuxt/TabsHeader-styles.06000801.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/Terminal.vue": () => import('./_nuxt/Terminal-styles.a4b76b2e.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/globals/VideoPlayer.vue": () => import('./_nuxt/VideoPlayer-styles.956d04fb.mjs').then(interopDefault), - "node_modules/@nuxt-themes/typography/components/global/ProseA.vue": () => import('./_nuxt/ProseA-styles.ac6b0f84.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/landing/BlockHero.vue": () => import('./_nuxt/BlockHero-styles.df4a0a32.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/landing/Card.vue": () => import('./_nuxt/Card-styles.29530cd8.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/landing/CardGrid.vue": () => import('./_nuxt/CardGrid-styles.65f28427.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/volta/VoltaBoard.vue": () => import('./_nuxt/VoltaBoard-styles.0de509eb.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlayground.vue": () => import('./_nuxt/ComponentPlayground-styles.249b42e4.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundData.vue": () => import('./_nuxt/ComponentPlaygroundData-styles.9bdce5c2.mjs').then(interopDefault), - "node_modules/@nuxt-themes/elements/components/meta/ComponentPlaygroundProps.vue": () => import('./_nuxt/ComponentPlaygroundProps-styles.82745445.mjs').then(interopDefault), - "layouts/docs-page.vue": () => import('./_nuxt/docs-page-styles.bb658b38.mjs').then(interopDefault), - "node_modules/@nuxt/ui-templates/dist/templates/welcome.vue": () => import('./_nuxt/welcome-styles.85286bcd.mjs').then(interopDefault), - "node_modules/@nuxt/ui-templates/dist/templates/error-404.vue": () => import('./_nuxt/error-404-styles.1b6f35f0.mjs').then(interopDefault), - "node_modules/@nuxt/ui-templates/dist/templates/error-500.vue": () => import('./_nuxt/error-500-styles.17df0758.mjs').then(interopDefault), - "node_modules/@nuxt-themes/docus/layouts/page.vue": () => import('./_nuxt/page-styles.df5d38b1.mjs').then(interopDefault), - "node_modules/@nuxthq/studio/dist/runtime/components/ContentPreviewMode.vue": () => import('./_nuxt/ContentPreviewMode-styles.4b29600c.mjs').then(interopDefault) -}; - -export { styles as default }; -//# sourceMappingURL=styles.mjs.map diff --git a/docs/.output/server/chunks/app/styles.mjs.map b/docs/.output/server/chunks/app/styles.mjs.map deleted file mode 100644 index 3d6ab5de..00000000 --- a/docs/.output/server/chunks/app/styles.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"styles.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/.nuxt/dist/server/styles.mjs"],"sourcesContent":null,"names":[],"mappings":"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"} \ No newline at end of file diff --git a/docs/.output/server/chunks/error-500.mjs b/docs/.output/server/chunks/error-500.mjs deleted file mode 100644 index e5d8fd03..00000000 --- a/docs/.output/server/chunks/error-500.mjs +++ /dev/null @@ -1,21 +0,0 @@ -const _messages = {"appName":"Nuxt","version":"","statusCode":500,"statusMessage":"Server error","description":"This page is temporarily unavailable."}; -const _render = function({ messages }) { -var __t, __p = ''; -__p += '' + -((__t = ( messages.statusCode )) == null ? '' : __t) + -' - ' + -((__t = ( messages.statusMessage )) == null ? '' : __t) + -' | ' + -((__t = ( messages.appName )) == null ? '' : __t) + -'

    ' + -((__t = ( messages.statusCode )) == null ? '' : __t) + -'

    ' + -((__t = ( messages.description )) == null ? '' : __t) + -'

    '; -return __p -}; -const _template = (messages) => _render({ messages: { ..._messages, ...messages } }); -const template = _template; - -export { template }; -//# sourceMappingURL=error-500.mjs.map diff --git a/docs/.output/server/chunks/error-500.mjs.map b/docs/.output/server/chunks/error-500.mjs.map deleted file mode 100644 index 8b0824ca..00000000 --- a/docs/.output/server/chunks/error-500.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"error-500.mjs","sources":["/Users/davanedavis/Projects/ncb/ob-embedded-finance-customer-mobile-app/frontier/docs/node_modules/@nuxt/ui-templates/dist/templates/error-500.mjs"],"sourcesContent":null,"names":[],"mappings":"AAAA,MAAM,SAAS,GAAG,CAAC,SAAS,CAAC,MAAM,CAAC,SAAS,CAAC,EAAE,CAAC,YAAY,CAAC,GAAG,CAAC,eAAe,CAAC,cAAc,CAAC,aAAa,CAAC,uCAAuC,EAAC;AACvJ,MAAM,OAAO,GAAG,SAAS,EAAE,QAAQ,EAAE,EAAE;AACvC,IAAI,GAAG,EAAE,GAAG,GAAG,EAAE,CAAC;AAClB,GAAG,IAAI,oCAAoC;AAC3C,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,UAAU,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACpD,KAAK;AACL,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,aAAa,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACvD,KAAK;AACL,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,OAAO,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACjD,i1GAAi1G;AACj1G,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,UAAU,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACpD,kFAAkF;AAClF,CAAC,CAAC,GAAG,KAAK,QAAQ,CAAC,WAAW,EAAE,KAAK,IAAI,GAAG,EAAE,GAAG,GAAG,CAAC;AACrD,0BAA0B,CAAC;AAC3B,OAAO,GAAG;AACV,EAAC;AACD,MAAM,SAAS,GAAG,CAAC,QAAQ,KAAK,OAAO,CAAC,EAAE,QAAQ,EAAE,EAAE,GAAG,SAAS,EAAE,GAAG,QAAQ,EAAE,EAAE,EAAC;AACxE,MAAC,QAAQ,GAAG;;;;"} \ No newline at end of file diff --git a/docs/.output/server/chunks/handlers/renderer.mjs b/docs/.output/server/chunks/handlers/renderer.mjs deleted file mode 100644 index a2af31d2..00000000 --- a/docs/.output/server/chunks/handlers/renderer.mjs +++ /dev/null @@ -1,528 +0,0 @@ -import { createRenderer } from 'vue-bundle-renderer/runtime'; -import { eventHandler, getQuery, createError } from 'h3'; -import { renderToString } from 'vue/server-renderer'; -import { joinURL } from 'ufo'; -import { u as useRuntimeConfig } from '../nitro/config.mjs'; -import { u as useNitroApp, g as getRouteRules } from '../nitro/node-server.mjs'; -import 'destr'; -import 'scule'; -import 'node-fetch-native/polyfill'; -import 'node:http'; -import 'node:https'; -import 'ofetch'; -import 'unenv/runtime/fetch/index'; -import 'hookable'; -import 'ohash'; -import 'unstorage'; -import 'unstorage/drivers/overlay'; -import 'unstorage/drivers/memory'; -import 'defu'; -import 'radix3'; -import 'node:fs'; -import 'node:url'; -import 'pathe'; -import '@octokit/graphql'; -import 'remark-github'; -import 'unified'; -import 'mdast-util-to-string'; -import 'micromark/lib/preprocess.js'; -import 'micromark/lib/postprocess.js'; -import 'unist-util-stringify-position'; -import 'micromark-util-character'; -import 'micromark-util-chunked'; -import 'micromark-util-resolve-all'; -import 'remark-emoji'; -import 'rehype-slug'; -import 'remark-squeeze-paragraphs'; -import 'rehype-external-links'; -import 'remark-gfm'; -import 'rehype-sort-attribute-values'; -import 'rehype-sort-attributes'; -import 'rehype-raw'; -import 'remark-mdc'; -import 'remark-parse'; -import 'remark-rehype'; -import 'mdast-util-to-hast'; -import 'detab'; -import 'unist-builder'; -import 'mdurl'; -import 'slugify'; -import 'unist-util-position'; -import 'unist-util-visit'; -import 'shiki-es'; -import 'unenv/runtime/npm/consola'; - -function defineRenderHandler(handler) { - return eventHandler(async (event) => { - if (event.node.req.url.endsWith("/favicon.ico")) { - event.node.res.setHeader("Content-Type", "image/x-icon"); - event.node.res.end( - "data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7" - ); - return; - } - const response = await handler(event); - if (!response) { - if (!event.node.res.writableEnded) { - event.node.res.statusCode = event.node.res.statusCode === 200 ? 500 : event.node.res.statusCode; - event.node.res.end( - "No response returned from render handler: " + event.node.req.url - ); - } - return; - } - const nitroApp = useNitroApp(); - await nitroApp.hooks.callHook("render:response", response, { event }); - if (!event.node.res.headersSent && response.headers) { - for (const header in response.headers) { - event.node.res.setHeader(header, response.headers[header]); - } - if (response.statusCode) { - event.node.res.statusCode = response.statusCode; - } - if (response.statusMessage) { - event.node.res.statusMessage = response.statusMessage; - } - } - return typeof response.body === "string" ? response.body : JSON.stringify(response.body); - }); -} - -function buildAssetsURL(...path) { - return joinURL(publicAssetsURL(), useRuntimeConfig().app.buildAssetsDir, ...path); -} -function publicAssetsURL(...path) { - const publicBase = useRuntimeConfig().app.cdnURL || useRuntimeConfig().app.baseURL; - return path.length ? joinURL(publicBase, ...path) : publicBase; -} - -const chars = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ_$"; -const unsafeChars = /[<>\b\f\n\r\t\0\u2028\u2029]/g; -const reserved = /^(?:do|if|in|for|int|let|new|try|var|byte|case|char|else|enum|goto|long|this|void|with|await|break|catch|class|const|final|float|short|super|throw|while|yield|delete|double|export|import|native|return|switch|throws|typeof|boolean|default|extends|finally|package|private|abstract|continue|debugger|function|volatile|interface|protected|transient|implements|instanceof|synchronized)$/; -const escaped = { - "<": "\\u003C", - ">": "\\u003E", - "/": "\\u002F", - "\\": "\\\\", - "\b": "\\b", - "\f": "\\f", - "\n": "\\n", - "\r": "\\r", - " ": "\\t", - "\0": "\\0", - "\u2028": "\\u2028", - "\u2029": "\\u2029" -}; -const objectProtoOwnPropertyNames = Object.getOwnPropertyNames(Object.prototype).sort().join("\0"); -function devalue(value) { - const counts = new Map(); - let logNum = 0; - function log(message) { - if (logNum < 100) { - console.warn(message); - logNum += 1; - } - } - function walk(thing) { - if (typeof thing === "function") { - log(`Cannot stringify a function ${thing.name}`); - return; - } - if (counts.has(thing)) { - counts.set(thing, counts.get(thing) + 1); - return; - } - counts.set(thing, 1); - if (!isPrimitive(thing)) { - const type = getType(thing); - switch (type) { - case "Number": - case "String": - case "Boolean": - case "Date": - case "RegExp": - return; - case "Array": - thing.forEach(walk); - break; - case "Set": - case "Map": - Array.from(thing).forEach(walk); - break; - default: - const proto = Object.getPrototypeOf(thing); - if (proto !== Object.prototype && proto !== null && Object.getOwnPropertyNames(proto).sort().join("\0") !== objectProtoOwnPropertyNames) { - if (typeof thing.toJSON !== "function") { - log(`Cannot stringify arbitrary non-POJOs ${thing.constructor.name}`); - } - } else if (Object.getOwnPropertySymbols(thing).length > 0) { - log(`Cannot stringify POJOs with symbolic keys ${Object.getOwnPropertySymbols(thing).map((symbol) => symbol.toString())}`); - } else { - Object.keys(thing).forEach((key) => walk(thing[key])); - } - } - } - } - walk(value); - const names = new Map(); - Array.from(counts).filter((entry) => entry[1] > 1).sort((a, b) => b[1] - a[1]).forEach((entry, i) => { - names.set(entry[0], getName(i)); - }); - function stringify(thing) { - if (names.has(thing)) { - return names.get(thing); - } - if (isPrimitive(thing)) { - return stringifyPrimitive(thing); - } - const type = getType(thing); - switch (type) { - case "Number": - case "String": - case "Boolean": - return `Object(${stringify(thing.valueOf())})`; - case "RegExp": - return thing.toString(); - case "Date": - return `new Date(${thing.getTime()})`; - case "Array": - const members = thing.map((v, i) => i in thing ? stringify(v) : ""); - const tail = thing.length === 0 || thing.length - 1 in thing ? "" : ","; - return `[${members.join(",")}${tail}]`; - case "Set": - case "Map": - return `new ${type}([${Array.from(thing).map(stringify).join(",")}])`; - default: - if (thing.toJSON) { - let json = thing.toJSON(); - if (getType(json) === "String") { - try { - json = JSON.parse(json); - } catch (e) { - } - } - return stringify(json); - } - if (Object.getPrototypeOf(thing) === null) { - if (Object.keys(thing).length === 0) { - return "Object.create(null)"; - } - return `Object.create(null,{${Object.keys(thing).map((key) => `${safeKey(key)}:{writable:true,enumerable:true,value:${stringify(thing[key])}}`).join(",")}})`; - } - return `{${Object.keys(thing).map((key) => `${safeKey(key)}:${stringify(thing[key])}`).join(",")}}`; - } - } - const str = stringify(value); - if (names.size) { - const params = []; - const statements = []; - const values = []; - names.forEach((name, thing) => { - params.push(name); - if (isPrimitive(thing)) { - values.push(stringifyPrimitive(thing)); - return; - } - const type = getType(thing); - switch (type) { - case "Number": - case "String": - case "Boolean": - values.push(`Object(${stringify(thing.valueOf())})`); - break; - case "RegExp": - values.push(thing.toString()); - break; - case "Date": - values.push(`new Date(${thing.getTime()})`); - break; - case "Array": - values.push(`Array(${thing.length})`); - thing.forEach((v, i) => { - statements.push(`${name}[${i}]=${stringify(v)}`); - }); - break; - case "Set": - values.push("new Set"); - statements.push(`${name}.${Array.from(thing).map((v) => `add(${stringify(v)})`).join(".")}`); - break; - case "Map": - values.push("new Map"); - statements.push(`${name}.${Array.from(thing).map(([k, v]) => `set(${stringify(k)}, ${stringify(v)})`).join(".")}`); - break; - default: - values.push(Object.getPrototypeOf(thing) === null ? "Object.create(null)" : "{}"); - Object.keys(thing).forEach((key) => { - statements.push(`${name}${safeProp(key)}=${stringify(thing[key])}`); - }); - } - }); - statements.push(`return ${str}`); - return `(function(${params.join(",")}){${statements.join(";")}}(${values.join(",")}))`; - } else { - return str; - } -} -function getName(num) { - let name = ""; - do { - name = chars[num % chars.length] + name; - num = ~~(num / chars.length) - 1; - } while (num >= 0); - return reserved.test(name) ? `${name}0` : name; -} -function isPrimitive(thing) { - return Object(thing) !== thing; -} -function stringifyPrimitive(thing) { - if (typeof thing === "string") { - return stringifyString(thing); - } - if (thing === void 0) { - return "void 0"; - } - if (thing === 0 && 1 / thing < 0) { - return "-0"; - } - const str = String(thing); - if (typeof thing === "number") { - return str.replace(/^(-)?0\./, "$1."); - } - return str; -} -function getType(thing) { - return Object.prototype.toString.call(thing).slice(8, -1); -} -function escapeUnsafeChar(c) { - return escaped[c] || c; -} -function escapeUnsafeChars(str) { - return str.replace(unsafeChars, escapeUnsafeChar); -} -function safeKey(key) { - return /^[_$a-zA-Z][_$a-zA-Z0-9]*$/.test(key) ? key : escapeUnsafeChars(JSON.stringify(key)); -} -function safeProp(key) { - return /^[_$a-zA-Z][_$a-zA-Z0-9]*$/.test(key) ? `.${key}` : `[${escapeUnsafeChars(JSON.stringify(key))}]`; -} -function stringifyString(str) { - let result = '"'; - for (let i = 0; i < str.length; i += 1) { - const char = str.charAt(i); - const code = char.charCodeAt(0); - if (char === '"') { - result += '\\"'; - } else if (char in escaped) { - result += escaped[char]; - } else if (code >= 55296 && code <= 57343) { - const next = str.charCodeAt(i + 1); - if (code <= 56319 && (next >= 56320 && next <= 57343)) { - result += char + str[++i]; - } else { - result += `\\u${code.toString(16).toUpperCase()}`; - } - } else { - result += char; - } - } - result += '"'; - return result; -} - -const appRootId = "__nuxt"; - -const appRootTag = "div"; - -globalThis.__buildAssetsURL = buildAssetsURL; -globalThis.__publicAssetsURL = publicAssetsURL; -const getClientManifest = () => import('../app/client.manifest.mjs').then((r) => r.default || r).then((r) => typeof r === "function" ? r() : r); -const getStaticRenderedHead = () => import('../rollup/_virtual_head-static.mjs').then((r) => r.default || r); -const getServerEntry = () => import('../app/server.mjs').then((r) => r.default || r); -const getSSRStyles = lazyCachedFunction(() => import('../app/styles.mjs').then((r) => r.default || r)); -const getSSRRenderer = lazyCachedFunction(async () => { - const manifest = await getClientManifest(); - if (!manifest) { - throw new Error("client.manifest is not available"); - } - const createSSRApp = await getServerEntry(); - if (!createSSRApp) { - throw new Error("Server bundle is not available"); - } - const options = { - manifest, - renderToString: renderToString$1, - buildAssetsURL - }; - const renderer = createRenderer(createSSRApp, options); - async function renderToString$1(input, context) { - const html = await renderToString(input, context); - return `<${appRootTag} id="${appRootId}">${html}`; - } - return renderer; -}); -const getSPARenderer = lazyCachedFunction(async () => { - const manifest = await getClientManifest(); - const options = { - manifest, - renderToString: () => `<${appRootTag} id="${appRootId}">`, - buildAssetsURL - }; - const renderer = createRenderer(() => () => { - }, options); - const result = await renderer.renderToString({}); - const renderToString = (ssrContext) => { - const config = useRuntimeConfig(); - ssrContext.payload = { - serverRendered: false, - config: { - public: config.public, - app: config.app - }, - data: {}, - state: {} - }; - ssrContext.renderMeta = ssrContext.renderMeta ?? getStaticRenderedHead; - return Promise.resolve(result); - }; - return { - rendererContext: renderer.rendererContext, - renderToString - }; -}); -const PAYLOAD_URL_RE = /\/_payload(\.[a-zA-Z0-9]+)?.js(\?.*)?$/; -const renderer = defineRenderHandler(async (event) => { - const nitroApp = useNitroApp(); - const ssrError = event.node.req.url?.startsWith("/__nuxt_error") ? getQuery(event) : null; - if (ssrError && event.node.req.socket.readyState !== "readOnly") { - throw createError("Cannot directly render error page!"); - } - const islandContext = void 0; - let url = ssrError?.url || islandContext?.url || event.node.req.url; - const isRenderingPayload = PAYLOAD_URL_RE.test(url); - if (isRenderingPayload) { - url = url.substring(0, url.lastIndexOf("/")) || "/"; - event.node.req.url = url; - } - const routeOptions = getRouteRules(event); - const ssrContext = { - url, - event, - runtimeConfig: useRuntimeConfig(), - noSSR: !!event.node.req.headers["x-nuxt-no-ssr"] || routeOptions.ssr === false || (false), - error: !!ssrError, - nuxt: void 0, - /* NuxtApp */ - payload: ssrError ? { error: ssrError } : {}, - islandContext - }; - const renderer = ssrContext.noSSR ? await getSPARenderer() : await getSSRRenderer(); - const _rendered = await renderer.renderToString(ssrContext).catch((error) => { - throw !ssrError && ssrContext.payload?.error || error; - }); - await ssrContext.nuxt?.hooks.callHook("app:rendered", { ssrContext }); - if (ssrContext.payload?.error && !ssrError) { - throw ssrContext.payload.error; - } - if (isRenderingPayload) { - const response2 = renderPayloadResponse(ssrContext); - return response2; - } - const renderedMeta = await ssrContext.renderMeta?.() ?? {}; - const inlinedStyles = await renderInlineStyles(ssrContext.modules ?? ssrContext._registeredComponents ?? []) ; - const htmlContext = { - island: Boolean(islandContext), - htmlAttrs: normalizeChunks([renderedMeta.htmlAttrs]), - head: normalizeChunks([ - renderedMeta.headTags, - null, - _rendered.renderResourceHints(), - _rendered.renderStyles(), - inlinedStyles, - ssrContext.styles - ]), - bodyAttrs: normalizeChunks([renderedMeta.bodyAttrs]), - bodyPrepend: normalizeChunks([ - renderedMeta.bodyScriptsPrepend, - ssrContext.teleports?.body - ]), - body: [_rendered.html], - bodyAppend: normalizeChunks([ - `","bodyTags":"","bodyTagsOpen":"","htmlAttrs":"","bodyAttrs":""}; - -export { _virtual__headStatic as default }; -//# sourceMappingURL=_virtual_head-static.mjs.map diff --git a/docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map b/docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map deleted file mode 100644 index 412e2818..00000000 --- a/docs/.output/server/chunks/rollup/_virtual_head-static.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"_virtual_head-static.mjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;;;"} \ No newline at end of file diff --git a/docs/.output/server/index.mjs b/docs/.output/server/index.mjs deleted file mode 100644 index 844adc66..00000000 --- a/docs/.output/server/index.mjs +++ /dev/null @@ -1,52 +0,0 @@ -globalThis._importMeta_={url:import.meta.url,env:process.env};import 'node-fetch-native/polyfill'; -import 'node:http'; -import 'node:https'; -import 'destr'; -import 'h3'; -export { n as default } from './chunks/nitro/node-server.mjs'; -import './chunks/nitro/config.mjs'; -import 'ofetch'; -import 'unenv/runtime/fetch/index'; -import 'hookable'; -import 'ohash'; -import 'ufo'; -import 'unstorage'; -import 'unstorage/drivers/overlay'; -import 'unstorage/drivers/memory'; -import 'defu'; -import 'radix3'; -import 'node:fs'; -import 'node:url'; -import 'pathe'; -import '@octokit/graphql'; -import 'remark-github'; -import 'scule'; -import 'unified'; -import 'mdast-util-to-string'; -import 'micromark/lib/preprocess.js'; -import 'micromark/lib/postprocess.js'; -import 'unist-util-stringify-position'; -import 'micromark-util-character'; -import 'micromark-util-chunked'; -import 'micromark-util-resolve-all'; -import 'remark-emoji'; -import 'rehype-slug'; -import 'remark-squeeze-paragraphs'; -import 'rehype-external-links'; -import 'remark-gfm'; -import 'rehype-sort-attribute-values'; -import 'rehype-sort-attributes'; -import 'rehype-raw'; -import 'remark-mdc'; -import 'remark-parse'; -import 'remark-rehype'; -import 'mdast-util-to-hast'; -import 'detab'; -import 'unist-builder'; -import 'mdurl'; -import 'slugify'; -import 'unist-util-position'; -import 'unist-util-visit'; -import 'shiki-es'; -import 'unenv/runtime/npm/consola'; -//# sourceMappingURL=index.mjs.map diff --git a/docs/.output/server/index.mjs.map b/docs/.output/server/index.mjs.map deleted file mode 100644 index 5c7e298f..00000000 --- a/docs/.output/server/index.mjs.map +++ /dev/null @@ -1 +0,0 @@ -{"version":3,"file":"index.mjs","sources":[],"sourcesContent":null,"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"} \ No newline at end of file diff --git a/docs/.output/server/package.json b/docs/.output/server/package.json deleted file mode 100644 index 04fee29f..00000000 --- a/docs/.output/server/package.json +++ /dev/null @@ -1,174 +0,0 @@ -{ - "name": "nitro-output", - "version": "0.0.0", - "private": true, - "bundledDependencies": { - "source-map-support": "0.5.21", - "vue": "3.2.47", - "nanoid": "4.0.1", - "remark-github": "11.2.4", - "slugify": "1.6.5", - "unified": "10.1.2", - "remark-emoji": "3.0.2", - "rehype-raw": "6.1.1", - "remark-gfm": "3.0.1", - "remark-squeeze-paragraphs": "5.0.1", - "rehype-sort-attribute-values": "4.0.0", - "rehype-slug": "5.1.0", - "rehype-external-links": "2.0.1", - "rehype-sort-attributes": "4.0.0", - "mdast-util-to-string": "3.1.1", - "unist-util-stringify-position": "3.0.3", - "unist-util-visit": "4.1.2", - "property-information": "6.2.0", - "micromark-util-character": "1.1.0", - "remark-parse": "10.0.1", - "remark-rehype": "10.1.0", - "micromark-util-resolve-all": "1.0.0", - "micromark-util-chunked": "1.0.0", - "unist-builder": "3.0.1", - "mdast-util-to-hast": "12.3.0", - "detab": "3.0.2", - "unist-util-position": "4.0.4", - "mdurl": "1.0.1", - "h3": "1.4.0", - "node-fetch-native": "1.0.1", - "destr": "1.2.2", - "ofetch": "1.0.0", - "hookable": "5.4.2", - "unstorage": "1.1.4", - "radix3": "1.0.0", - "defu": "6.1.2", - "pathe": "1.1.0", - "scule": "1.0.0", - "ufo": "1.0.1", - "ohash": "1.0.0", - "vue-bundle-renderer": "1.0.1", - "vue-router": "4.1.6", - "unctx": "2.1.1", - "cookie-es": "0.5.0", - "remark-mdc": "1.1.3", - "json5": "2.2.3", - "shiki-es": "0.2.0", - "micromark": "3.1.0", - "unenv": "1.1.1", - "@unhead/ssr": "1.0.21", - "@unhead/dom": "1.0.21", - "@unhead/vue": "1.0.21", - "@iconify/vue": "4.1.0", - "@octokit/graphql": "5.0.5", - "is-absolute-url": "4.0.1", - "uncrypto": "0.1.2", - "iron-webcrypto": "0.4.0", - "js-yaml": "4.1.0", - "micromark-factory-space": "1.0.0", - "micromark-core-commonmark": "1.0.6", - "micromark-factory-whitespace": "1.0.0", - "micromark-util-subtokenize": "1.0.2", - "mdast-util-to-markdown": "1.5.0", - "node-emoji": "1.11.0", - "emoticon": "4.0.1", - "micromark-extension-gfm": "2.0.1", - "mdast-squeeze-paragraphs": "5.2.1", - "mdast-util-gfm": "2.0.2", - "hast-util-raw": "7.2.3", - "hast-util-has-property": "2.0.1", - "github-slugger": "2.0.0", - "hast-util-is-element": "2.1.3", - "hast-util-to-string": "2.0.0", - "space-separated-tokens": "2.0.2", - "stringify-entities": "4.0.3", - "hast-util-heading-rank": "2.1.1", - "parse-entities": "4.0.1", - "flat": "5.0.2", - "extend": "3.0.2", - "@vue/server-renderer": "3.2.47", - "is-plain-obj": "4.1.0", - "mdast-util-from-markdown": "1.3.0", - "micromark-util-sanitize-uri": "1.1.0", - "@octokit/request": "6.2.3", - "universal-user-agent": "6.0.0", - "source-map": "0.6.1", - "buffer-from": "1.1.2", - "unist-util-visit-parents": "5.1.3", - "mdast-util-definitions": "5.1.2", - "unist-util-generated": "2.0.1", - "mdast-util-find-and-replace": "2.2.2", - "bail": "2.0.2", - "vfile": "5.3.7", - "trough": "2.1.0", - "is-buffer": "2.0.5", - "@vue/devtools-api": "6.5.0", - "@vue/compiler-dom": "3.2.47", - "@vue/runtime-dom": "3.2.47", - "@vue/shared": "3.2.47", - "trim-lines": "3.0.1", - "micromark-extension-gfm-autolink-literal": "1.0.3", - "micromark-extension-gfm-footnote": "1.0.4", - "micromark-util-combine-extensions": "1.0.0", - "micromark-extension-gfm-strikethrough": "1.0.4", - "micromark-extension-gfm-table": "1.0.5", - "micromark-extension-gfm-task-list-item": "1.0.3", - "micromark-util-encode": "1.0.1", - "micromark-extension-gfm-tagfilter": "1.0.1", - "micromark-util-classify-character": "1.0.0", - "decode-named-character-reference": "1.0.2", - "micromark-factory-destination": "1.0.0", - "micromark-util-normalize-identifier": "1.0.0", - "micromark-factory-title": "1.0.2", - "micromark-factory-label": "1.0.2", - "micromark-util-html-tag-name": "1.1.0", - "is-plain-object": "5.0.0", - "@octokit/endpoint": "7.0.5", - "@octokit/request-error": "3.0.3", - "node-fetch": "2.6.9", - "parse5": "6.0.1", - "micromark-util-decode-numeric-character-reference": "1.0.0", - "micromark-util-decode-string": "1.0.2", - "lodash": "4.17.21", - "mdast-util-phrasing": "3.0.1", - "longest-streak": "3.1.0", - "mdast-util-gfm-autolink-literal": "1.0.3", - "mdast-util-gfm-table": "1.0.7", - "mdast-util-gfm-footnote": "1.0.2", - "mdast-util-gfm-task-list-item": "1.0.2", - "hast-util-to-parse5": "7.1.0", - "mdast-util-gfm-strikethrough": "1.0.3", - "zwitch": "2.0.4", - "html-void-elements": "2.0.1", - "hast-util-from-parse5": "7.1.1", - "web-namespaces": "2.0.1", - "character-entities-legacy": "3.0.0", - "is-alphanumerical": "2.0.1", - "is-hexadecimal": "2.0.1", - "character-reference-invalid": "2.0.1", - "is-decimal": "2.0.1", - "escape-string-regexp": "5.0.0", - "@vue/compiler-ssr": "3.2.47", - "unist-util-is": "5.2.0", - "vfile-message": "3.1.4", - "@vue/compiler-core": "3.2.47", - "character-entities": "2.0.2", - "character-entities-html4": "2.1.0", - "@vue/runtime-core": "3.2.47", - "once": "1.4.0", - "deprecation": "2.3.1", - "whatwg-url": "5.0.0", - "is-alphabetical": "2.0.1", - "hastscript": "7.2.0", - "encoding": "0.1.13", - "ccount": "2.0.1", - "markdown-table": "3.0.3", - "comma-separated-tokens": "2.0.3", - "vfile-location": "4.1.0", - "estree-walker": "2.0.2", - "wrappy": "1.0.2", - "@babel/parser": "7.20.15", - "@vue/reactivity": "3.2.47", - "tr46": "0.0.3", - "webidl-conversions": "3.0.1", - "iconv-lite": "0.6.3", - "hast-util-parse-selector": "3.1.1", - "safer-buffer": "2.1.2" - } -} \ No newline at end of file diff --git a/docs/app.config.ts b/docs/app.config.ts index 06a227e2..6c72a145 100644 --- a/docs/app.config.ts +++ b/docs/app.config.ts @@ -6,8 +6,8 @@ export default defineAppConfig({ }, docus: { title: 'Frontier', - description: 'Write pages in markdown, use Vue components and enjoy the power of Nuxt with a blazing fast developer experience.', - image: 'https://content.nuxtjs.org/preview.png', + description: '', + image: '', url: 'https://realdecoy.com', socials: { github: 'realdecoy/frontier' diff --git a/docs/content/5.mobile/1.getting-started/1.overview.md b/docs/content/5.mobile/1.getting-started/1.overview.md index e88a6a06..e0ea3f4f 100644 --- a/docs/content/5.mobile/1.getting-started/1.overview.md +++ b/docs/content/5.mobile/1.getting-started/1.overview.md @@ -1,6 +1,6 @@ # Getting Started -[Mobile](https://github.com/realdecoy/rdmobile) is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models, +[Mobile](https://github.com/realdecoy/frontier/tree/main/packages/frontier-plugins/plugin-mobile) is an opinionated CLI for generating React Native Expo projects. We do so by adopting a development style guide which enforces strong typing with TypeScript, standardized Component, Layout and Screen models, and a data-layer design promoting unified consumption through React Contexts and Services. Follow the [installation guide](#installation) below to set up the Stripe CLI. diff --git a/docs/content/5.mobile/2.cli-commands/1.usage.md b/docs/content/5.mobile/2.cli-commands/1.usage.md index 7e49b0ff..6e4980b8 100644 --- a/docs/content/5.mobile/2.cli-commands/1.usage.md +++ b/docs/content/5.mobile/2.cli-commands/1.usage.md @@ -10,7 +10,7 @@ Run the CLI option below for a list of commands and options **Usage** ```bash -$ npx mobile: --help +$ frontier mobile: --help ``` | **Option** | **Description** | @@ -52,15 +52,14 @@ Adds a feature to the project. Usage ```bash -$ npx mobile:add: +$ frontier mobile:add: ``` **Features** Learn more below about each feature the CLI provides: -* [Component](features.md#components) -* [Page](features.md#pages) -* [Screen](features.md#screens) -* [Layout](features.md#layouts) -* [Service](features.md#services) -* [Store](features.md#stores) +* [Component](/mobile/features/components) +* [Page](/mobile/features/pages) +* [Screen](/mobile/features/screens) +* [Service](/mobile/features/services) +* [Store](/mobile/features/stores) diff --git a/docs/content/5.mobile/3.features/1.features.md b/docs/content/5.mobile/3.features/1.features.md index bd1cda80..0c008fe6 100644 --- a/docs/content/5.mobile/3.features/1.features.md +++ b/docs/content/5.mobile/3.features/1.features.md @@ -8,237 +8,4 @@ Reading through this section will get you comfortable with the CLI. An in depth > It is recommended to read through the [CLI Reference](cli-reference.md#add) before continuing with this document. -* * * - - -## Components - -Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by [Screens](#screens) and [Layout](#layouts). Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide. - -### Usage - -```bash -$ frontier mobile:add:component - -# Example -$ frontier mobile:add:component fancy-text -``` - -### Technical - -A Component folder consists of for two files. These file include: - -* \[component\]**.tsx**: This file holds actual functional logic and view hierarchy for the component you are trying to create.. - - -* \[component\]**.styles.tsx**: This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all. - -See below for example of folder structure after creating a component called `fancy-text`: - - - - -**Example** - -Below is an example of a component called `fancy-text.tsx` - -```tsx -// @/component/fancy-text/fancy-text.tsx - -import { Component } from "react"; -import styles from "./fancy-text.styles"; - -class FancyText extends Component { - render() { - return Some Fancy Text - } -} - -``` - -This is an example of the stylesheet `fancy-text.styles.tsx`. - -```tsx -// @/component/fancy-text/fancy-text.style.tsx - -import { StyleSheet } from "react-native"; - -export StyleSheet.create({ - text: { - color: "red", - fontSize: 18, - } - }); -}; -``` - -### Choosing between Class and Function components - -There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier. - -**When to choose Class-Based components:** - -1. If you want to work with components lifecycle functions - Even though react provides hooks like `useEffect()`, this can get quite cumbersome when the components grows. - -2. If you are creating a [Screen](#screens). - -3. If you are creating a [Context Provider](#stores--context). - -4. If your component has a lot a **state** variables - A general rule of thump is to keep state variable count at a max of 5. - -5. If your component has a lot a **props** variables - A general rule of thump is to keep props variable count at a max of 5. - -6. If you intend on making API calls from within the component. - -**When to choose Function-Based components:** - -1. If the component is mostly visual with little to no functional logic. - - -Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers. - - -* * * - - -## Screens - -A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are **not** to be imported by other Screen, Components or Layouts. - -A Screen needs to be added to the [Navigator](#nagivation) before it can be used within a mobile application. -### Usage - -```bash -$ frontier mobile:add:screen - -# Example -$ frontier mobile:add:screen login -``` -### Technical - -Each generated Screen is contained within it's own sub-folder within the **src/screens** directory. The directory contains the following files which each carry out a specific role in developing a Screen: - -* \[screen\].**tsx**: This is similar to a [Component](#component) but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation. - - -* \[screen\].**styles.tsx**: All Stylesheet file are the same as the stylesheet used shown in [Component](#component). - - -*** - - -## Services - -Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should: - -* Only interact with a single domain - -* Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation. - -```bash -$ frontier mobile:add:service - -# Example -$ frontier mobile:add:service auth - -# Output File -> src/services/auth.service.tsx -``` - -### Technical - -Each generated serive is contained within the sub-folder `src/services` directory. The directory contains a file for each service that has been created: - -* \[service-name\].**serivce.tsx**: The file will contain a related grouping of http functions. - -* While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality. - -* Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage). - - - -*** - -## Nagivation - -A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The [Layouts](#layouts) section goes into more detail on this approach. - -?> A Page needs to be added to the [Router](#routing) before it can be previewed within a web browser. - -### Technical - -Each generated context is contained within the sub-folder `src/contexts` directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components. - -* \[page\].**vue**: This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation. - -* \[page\].**ts**: This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements. - -* \[page\].**scss**: This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the \[page\].vue template file. - - -?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory. - -* \[page\].**spec.ts**: This contains the unit-level tests for the page. Read the [testing section](Testing.md#unit-tests-with-jest) for more details about writing tests. - -## Routing - -In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings. - -Below is an example of a Route definition for a sample Login page: - -```jsx - - - -``` - - -The **name** field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency. - -The **component** property specifies the Screen component to load for the given name. - -Navigation should be centralized within the **src/core/navigation** directory. This is where the [React Navigation](https://reactnavigation.org/) library is configured and where the `Stack`. - -For more details on the available options for configuring a Stack, please refer to the [React Navigation](https://reactnavigation.org/docs/stack-navigator/) documentation, and more specifically, the [API Definition](https://reactnavigation.org/docs/stack-navigator/#api-definition). - - -* * * - - -## Stores / Context - -A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for \[re\]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways: - -* Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them. - - -An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them. - -### Usage - -```bash -$ frontier mobile:add:store - -# Example -$ frontier mobile:add:store auth - -# Output File -> src/contexts/auth.context.tsx -``` - -### Technical - -Each generated serive is contained within the sub-folder `src/contexts` directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components. - -| **Member** | **Type** | **Description** | -| ---------------------------------------------- | ----------------| ------------------------------------------------------------------------------------------------------------------------------------ | -| `ContextName`ContextProvider | React Component | Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes. | -| `ContextName`Consumer | React Component | Allows components to subscribe to changes in the global state endpoint. | -| with`ContextName` | HOC[^1] | Used when Class-based components would like to consume data from the a context | -| use`ContextName` | HOC[^1] | Used when function-based components would like to consume data from the a contextresponse. | - -
    - -- `ContextName` - This is the provided name for the context when created using the CLI's `add` command above. - -- [^1]_HOC (High-Order Component)_ - a higher-order component is a function that takes a component and returns a new enhanced component. +* * * \ No newline at end of file diff --git a/docs/content/5.mobile/3.features/1.screens.md b/docs/content/5.mobile/3.features/1.screens.md new file mode 100644 index 00000000..5a28c2d8 --- /dev/null +++ b/docs/content/5.mobile/3.features/1.screens.md @@ -0,0 +1,24 @@ +# Screens + +A Screen is a conceptual grouping for React Native Components used in nagivation. Technically a screen is a component but in order to standardize how we work with react we want you to think of screen as its own thing. Screen are **not** to be imported by other Screen, Components or Layouts. + +A Screen needs to be added to the [Navigator](#nagivation) before it can be used within a mobile application. +### Usage + +```bash +$ frontier mobile:add:screen + +# Example +$ frontier mobile:add:screen login +``` +### Technical + +Each generated Screen is contained within it's own sub-folder within the **src/screens** directory. The directory contains the following files which each carry out a specific role in developing a Screen: + +* \[screen\].**tsx**: This is similar to a [Component](#component) but this is generally where we make API calls to fetch data to populate the views and import other components. Screen are also used within navigation. + + +* \[screen\].**styles.tsx**: All Stylesheet file are the same as the stylesheet used shown in [Component](#component). + + +*** \ No newline at end of file diff --git a/docs/content/5.mobile/3.features/2.components.md b/docs/content/5.mobile/3.features/2.components.md new file mode 100644 index 00000000..ac78ca89 --- /dev/null +++ b/docs/content/5.mobile/3.features/2.components.md @@ -0,0 +1,88 @@ +# Components + +Components are independent and reusable bits of code. They include the functional logic of the component along with styling and are imported by [Screens](#screens) and [Layout](#layouts). Unlike Screens, Components are never used in Nagivation. That would deviate from our development style guide. + +### Usage + +```bash +$ frontier mobile:add:component + +# Example +$ frontier mobile:add:component fancy-text +``` + +### Technical + +A Component folder consists of for two files. These file include: + +* \[component\]**.tsx**: This file holds actual functional logic and view hierarchy for the component you are trying to create.. + + +* \[component\]**.styles.tsx**: This contains the styling of the component. It is an abstraction similar to CSS StyleSheets with some of the attribute but not all. + +See below for example of folder structure after creating a component called `fancy-text`: + + + + +**Example** + +Below is an example of a component called `fancy-text.tsx` + +```tsx +// @/component/fancy-text/fancy-text.tsx + +import { Component } from "react"; +import styles from "./fancy-text.styles"; + +class FancyText extends Component { + render() { + return Some Fancy Text + } +} + +``` + +This is an example of the stylesheet `fancy-text.styles.tsx`. + +```tsx +// @/component/fancy-text/fancy-text.style.tsx + +import { StyleSheet } from "react-native"; + +export StyleSheet.create({ + text: { + color: "red", + fontSize: 18, + } + }); +}; +``` + +### Choosing between Class and Function components + +There are two ways in which components can be create in React / React Native. We can use Class or Function based components. Function based components are generally quicker to create for simple use cases. However, as the components get more complicated and require more logic Class based components make this a bit easier to work with. Here are some reasons how to help make your decision a bit easier. + +**When to choose Class-Based components:** + +1. If you want to work with components lifecycle functions - Even though react provides hooks like `useEffect()`, this can get quite cumbersome when the components grows. + +2. If you are creating a [Screen](#screens). + +3. If you are creating a [Context Provider](#stores--context). + +4. If your component has a lot a **state** variables - A general rule of thump is to keep state variable count at a max of 5. + +5. If your component has a lot a **props** variables - A general rule of thump is to keep props variable count at a max of 5. + +6. If you intend on making API calls from within the component. + +**When to choose Function-Based components:** + +1. If the component is mostly visual with little to no functional logic. + + +Applying these to your development are not aim at providing technical benefit (for most scenarios) but these will help to ensure the code is more readable and easier to adapt for new developers. + + +* * * \ No newline at end of file diff --git a/docs/content/5.mobile/3.features/3.services.md b/docs/content/5.mobile/3.features/3.services.md new file mode 100644 index 00000000..c8090131 --- /dev/null +++ b/docs/content/5.mobile/3.features/3.services.md @@ -0,0 +1,28 @@ +# Services + +Services are focused classed designed to interact with web API endpoints. As a good design pattern a service should: + +* Only interact with a single domain + +* Only provide features from the domain which are relevant to the theme of the service. Eg. A user service should be focused on methods that support such; adding order related data would make for poor encapsulation. + +```bash +$ frontier mobile:add:service + +# Example +$ frontier mobile:add:service auth + +# Output File +> src/services/auth.service.tsx +``` + +### Technical + +Each generated serive is contained within the sub-folder `src/services` directory. The directory contains a file for each service that has been created: + +* \[service-name\].**serivce.tsx**: The file will contain a related grouping of http functions. + +* While each generated service resides in its own file and class, all services extend a predefined BaseService class in order to provide centralized functionality. + +* Each service is able to specify a unique web API endpoint with which to interact - or none at all for services providing local functionality (Eg. wrapper storage mechanism over AsyncStorage). + \ No newline at end of file diff --git a/docs/content/5.mobile/3.features/4.navigation.md b/docs/content/5.mobile/3.features/4.navigation.md new file mode 100644 index 00000000..87603adc --- /dev/null +++ b/docs/content/5.mobile/3.features/4.navigation.md @@ -0,0 +1,44 @@ +# Nagivation + +A special feature of Pages are that they can benefit from Layouts to automatically add a parent container with common pieces of UI/State that’s shared throughout the application - like Headers and Footers. The [Layouts](#layouts) section goes into more detail on this approach. + +?> A Page needs to be added to the [Router](#routing) before it can be previewed within a web browser. + +### Technical + +Each generated context is contained within the sub-folder `src/contexts` directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components. + +* \[page\].**vue**: This contains the Vue template markup used to implement the structure and layout of a Page. It is a mix of HTML and special Vue syntaxes which allow declarative databinding and structural manipulation. + +* \[page\].**ts**: This contains the TypeScript controller which provides the procedural code-behind logical needed to add integrations to a page. Through this file you may expose data and handle events generated by Page elements. + +* \[page\].**scss**: This contains the SASS stylesheet to be applied to the page - and that page only. The styles within this file are scoped, meaning they cannot be used to target any elements except those defined directly within the \[page\].vue template file. + + +?> Scoped CSS may seem weird at first because regular CSS operates with global impunity, however it is a great approach for compartmentalizing styles so they do not jump their intended scope and affect other elements. Global level styles can be added in the Theme directory. + +* \[page\].**spec.ts**: This contains the unit-level tests for the page. Read the [testing section](Testing.md#unit-tests-with-jest) for more details about writing tests. + +## Routing + +In order to determine the Pages that get loaded for a particular path within the browser, Routes are setup to create the respective mappings. + +Below is an example of a Route definition for a sample Login page: + +```jsx + + + +``` + + +The **name** field provides an alternative means of identifying and navigating to defined pages programatically. This approach is preferable because the route names can be externalized into global constants and shared throughout your code for navigational consistency. + +The **component** property specifies the Screen component to load for the given name. + +Navigation should be centralized within the **src/core/navigation** directory. This is where the [React Navigation](https://reactnavigation.org/) library is configured and where the `Stack`. + +For more details on the available options for configuring a Stack, please refer to the [React Navigation](https://reactnavigation.org/docs/stack-navigator/) documentation, and more specifically, the [API Definition](https://reactnavigation.org/docs/stack-navigator/#api-definition). + + +* * * \ No newline at end of file diff --git a/docs/content/5.mobile/3.features/5.stores.md b/docs/content/5.mobile/3.features/5.stores.md new file mode 100644 index 00000000..7437aced --- /dev/null +++ b/docs/content/5.mobile/3.features/5.stores.md @@ -0,0 +1,37 @@ +# Stores / Context + +A Context is a mechanism for maintain application state in a way which is globally accessible to all components. We use them as intermediary layers to issue API calls to relevant services, and cache the results for \[re\]use. Though the thought may occur to use a plain JavaScript object to achieve state management, a React Context differs in one distinct ways: + +* Properties are reactive. Changing Context values will automatically propagate to the component-level bindings which use them. + + +An application can have as many Contexts as needed to logically group state concerns. The Frontier CLI creates strongly typed Contexts, enabling full Intellisense and compiler support when writing code against them. + +### Usage + +```bash +$ frontier mobile:add:store + +# Example +$ frontier mobile:add:store auth + +# Output File +> src/contexts/auth.context.tsx +``` + +### Technical + +Each generated serive is contained within the sub-folder `src/contexts` directory. The context will provide high order functions that will help you to inject global state within you Class based components. It will also provide you will hooks for you to use in your function based components. + +| **Member** | **Type** | **Description** | +| ---------------------------------------------- | ----------------| ------------------------------------------------------------------------------------------------------------------------------------ | +| `ContextName`ContextProvider | React Component | Every Context object comes with a Provider React component that allows consuming components to subscribe to context changes. | +| `ContextName`Consumer | React Component | Allows components to subscribe to changes in the global state endpoint. | +| with`ContextName` | HOC[^1] | Used when Class-based components would like to consume data from the a context | +| use`ContextName` | HOC[^1] | Used when function-based components would like to consume data from the a contextresponse. | + +
    + +- `ContextName` - This is the provided name for the context when created using the CLI's `add` command above. + +- [^1]_HOC (High-Order Component)_ - a higher-order component is a function that takes a component and returns a new enhanced component.