You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docusaurus.config.js
+12-12Lines changed: 12 additions & 12 deletions
Original file line number
Diff line number
Diff line change
@@ -86,7 +86,7 @@ const config = {
86
86
return{
87
87
filename: readmeToNamedMd(filename),
88
88
content: `---
89
-
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.
89
+
description: Automatically calculates a read-only field in forms
90
90
title: Computed Form Fields
91
91
id: computed-form-fields
92
92
---
@@ -124,7 +124,7 @@ ${content}`,
124
124
return{
125
125
filename: readmeToNamedMd(filename),
126
126
content: `---
127
-
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.
127
+
description: Dynamically show/hide fields based on other inputs
128
128
title: Conditional Form Fields
129
129
id: conditional-form-fields
130
130
---
@@ -162,7 +162,7 @@ ${content}`,
162
162
return{
163
163
filename: readmeToNamedMd(filename),
164
164
content: `---
165
-
description: This example demonstrates how to enforce field validation logic on certain fields within your form.
165
+
description: Enforce validation logic, like disallowing numbers
166
166
title: Field Validators
167
167
id: field-validators
168
168
---
@@ -200,7 +200,7 @@ ${content}`,
200
200
return{
201
201
filename: readmeToNamedMd(filename),
202
202
content: `---
203
-
description: This example shows you how to detect if a user has network connectivity.
203
+
description: Detect network connectivity and display offline alerts
204
204
title: Network Status
205
205
id: network-status
206
206
---
@@ -238,7 +238,7 @@ ${content}`,
238
238
return{
239
239
filename: readmeToNamedMd(filename),
240
240
content: `---
241
-
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.
241
+
description: Mock API for frontend development with MSW and fetch
242
242
title: Mock API
243
243
id: mock-api
244
244
---
@@ -276,7 +276,7 @@ ${content}`,
276
276
return{
277
277
filename: readmeToNamedMd(filename),
278
278
content: `---
279
-
description: This example includes how to setup and use the on-device storage using IndexedDB and Dexie.js.
279
+
description: Use IndexedDB/Dexie.js for offline or local storage
280
280
title: On Device Storage
281
281
id: on-device-storage
282
282
---
@@ -314,7 +314,7 @@ ${content}`,
314
314
return{
315
315
filename: readmeToNamedMd(filename),
316
316
content: `---
317
-
description: This example includes an example on how to build a form that includes multiple "steps"
317
+
description: Multi-step form saving progress and inputs locally
318
318
title: Multistep Form
319
319
id: multistep-form
320
320
---
@@ -352,7 +352,7 @@ ${content}`,
352
352
return{
353
353
filename: readmeToNamedMd(filename),
354
354
content: `---
355
-
description: The ServerSync component is responsible for synchronizing data between a client application and a remote server.
355
+
description: Sync client-server data with offline storage support
356
356
title: ServerSync
357
357
id: server-sync
358
358
---
@@ -390,7 +390,7 @@ ${content}`,
390
390
return{
391
391
filename: readmeToNamedMd(filename),
392
392
content: `---
393
-
description: This example shows you how you could use the React Query library to manage state in your application.
393
+
description: Manage app state with React Query's simplified API
394
394
title: React Query
395
395
id: react-query
396
396
---
@@ -428,7 +428,7 @@ ${content}`,
428
428
return{
429
429
filename: readmeToNamedMd(filename),
430
430
content: `---
431
-
description: This example shows you how to configure a persisted form that saves the data locally.
431
+
description: Save and persist form data locally with FormWrapper
432
432
title: Persisted Form
433
433
id: persisted-form
434
434
---
@@ -466,7 +466,7 @@ ${content}`,
466
466
return{
467
467
filename: readmeToNamedMd(filename),
468
468
content: `---
469
-
description: This example demonstrates how to use the <Table> component to display tabular data.
469
+
description: Display tabular data using the <Table> component
470
470
title: Simple Table
471
471
id: simple-table
472
472
---
@@ -504,7 +504,7 @@ ${content}`,
504
504
return{
505
505
filename: readmeToNamedMd(filename),
506
506
content: `---
507
-
description: This example demonstrates how build a non-trivial form using Trussworks components.
507
+
description: Build complex forms using Trussworks core components
0 commit comments