Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ const config = {
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example includes an example on how to build a form where the values of certain input fields compute the value of a separate readOnly input field elsewhere in the form.
description: Automatically calculates a read-only field in forms
title: Computed Form Fields
id: computed-form-fields
---
Expand Down Expand Up @@ -117,7 +117,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example includes an example on how to build a form where the values of certain input fields control the visibility of other fields within that form.
description: Dynamically show/hide fields based on other inputs
title: Conditional Form Fields
id: conditional-form-fields
---
Expand Down Expand Up @@ -155,7 +155,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example demonstrates how to enforce field validation logic on certain fields within your form.
description: Enforce validation logic, like disallowing numbers
title: Field Validators
id: field-validators
---
Expand Down Expand Up @@ -193,7 +193,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example shows you how to detect if a user has network connectivity.
description: Detect network connectivity and display offline alerts
title: Network Status
id: network-status
---
Expand Down Expand Up @@ -231,7 +231,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example includes how to setup and use mock service worker and the native fetch API to build out a mock API on the frontend to consume without needing to rely on a backend system.
description: Mock API for frontend development with MSW and fetch
title: Mock API
id: mock-api
---
Expand Down Expand Up @@ -269,7 +269,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example includes how to setup and use the on-device storage using IndexedDB and Dexie.js.
description: Use IndexedDB/Dexie.js for offline or local storage
title: On Device Storage
id: on-device-storage
---
Expand Down Expand Up @@ -307,7 +307,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example includes an example on how to build a form that includes multiple "steps"
description: Multi-step form saving progress and inputs locally
title: Multistep Form
id: multistep-form
---
Expand Down Expand Up @@ -345,7 +345,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: The ServerSync component is responsible for synchronizing data between a client application and a remote server.
description: Sync client-server data with offline storage support
title: ServerSync
id: server-sync
---
Expand Down Expand Up @@ -383,7 +383,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example shows you how you could use the React Query library to manage state in your application.
description: Manage app state with React Query's simplified API
title: React Query
id: react-query
---
Expand Down Expand Up @@ -421,7 +421,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example shows you how to configure a persisted form that saves the data locally.
description: Save and persist form data locally with FormWrapper
title: Persisted Form
id: persisted-form
---
Expand Down Expand Up @@ -459,7 +459,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example demonstrates how to use the <Table> component to display tabular data.
description: Display tabular data using the <Table> component
title: Simple Table
id: simple-table
---
Expand Down Expand Up @@ -497,7 +497,7 @@ ${content}`,
return {
filename: readmeToNamedMd(filename),
content: `---
description: This example demonstrates how build a non-trivial form using Trussworks components.
description: Build complex forms using Trussworks core components
title: Form Structure
id: form-structure
---
Expand Down
Loading