Skip to content

Commit 88185f1

Browse files
committed
...
1 parent 9be5738 commit 88185f1

File tree

2 files changed

+7
-13
lines changed

2 files changed

+7
-13
lines changed

website/docs/packages/reference/ui-module.md

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -78,14 +78,6 @@ When a UI Module is added to an application, its outputs become available throug
7878

7979
*Example:* If you have a login module that generates an authentication token, you can access it in the parent app using `{{LoginModule.authToken}}` for subsequent API calls.
8080

81-
*Example:* To display data from a module in a Table widget on your application:
82-
83-
```javascript
84-
// In your Table widget's Data property:
85-
{{DataModule.tableData}}
86-
```
87-
88-
This allows you to populate application tables with data processed or filtered inside your module without exposing the internal implementation details.
8981

9082
</dd>
9183

website/docs/packages/tutorial/query-module.md

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
---
2-
title: Package and query modules
2+
title: Query Modules
33
hide_title: true
44
---
55

66
<!-- vale off -->
77

88
<div className="tag-wrapper">
9-
<h1>Package and query modules</h1>
9+
<h1>Query Modules</h1>
1010

1111
<Tags
1212
tags={[
@@ -18,10 +18,12 @@ tags={[
1818

1919
<!-- vale on -->
2020

21-
A package is a collection of query and JS modules that can be versioned and distributed across instances. Inside packages, you can create multiple query and JS modules, allowing you to bundle and organize your application logic efficiently.
21+
A package is a collection of reusable query, JavaScript, and UI modules that can be versioned and shared across applications in the same workspace. Packages help you organize and maintain logic consistently across your projects.
2222

23-
:::tip What will I learn? 📝
24-
You'll create a reusable query module using product inventory data and display that data in a Table widget. By the end of this tutorial, you will learn:
23+
In this tutorial, we will create a query module, which allows you to define reusable queries that accept dynamic inputs and can be used across multiple applications.
24+
25+
:::tip ⏳ Estimated Time: 10 minutes
26+
By the end of this tutorial, you will learn to:
2527

2628
* 🔧 **Basics:** Learn how to create and configure the query module
2729
* 🔄 **Dynamic Data:** Learn how to pass data between the app and query module

0 commit comments

Comments
 (0)