powerpagestoolkit 3.20.300 → 3.20.301
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +12 -15
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -114,15 +114,15 @@ const nodes2 = await get("#target", {
|
|
|
114
114
|
|
|
115
115
|
#### Properties
|
|
116
116
|
|
|
117
|
-
| Property | Type
|
|
118
|
-
| -------- |
|
|
119
|
-
| element | HTMLElement
|
|
120
|
-
| value | any
|
|
121
|
-
| isLoaded | boolean
|
|
122
|
-
| target | HTMLElement
|
|
123
|
-
| yesRadio | Radio
|
|
124
|
-
| noRadio | Radio
|
|
125
|
-
| checked | boolean
|
|
117
|
+
| Property | Type | Description |
|
|
118
|
+
| -------- | -------------------- | -------------------------------------------- |
|
|
119
|
+
| element | HTMLElement | The referenced DOM element |
|
|
120
|
+
| value | any | Current synchronized value of the element |
|
|
121
|
+
| isLoaded | boolean | Element load status |
|
|
122
|
+
| target | HTMLElement\| string | Original target selector or element |
|
|
123
|
+
| yesRadio | Radio\| null | Reference to 'yes' radio (for yes/no fields) |
|
|
124
|
+
| noRadio | Radio\| null | Reference to 'no' radio (for yes/no fields) |
|
|
125
|
+
| checked | boolean | Checkbox/radio checked state |
|
|
126
126
|
|
|
127
127
|
#### Key Methods
|
|
128
128
|
|
|
@@ -316,8 +316,6 @@ title.addTooltip("This is an Example of a tooltip!", { color: "red" });
|
|
|
316
316
|
|
|
317
317
|

|
|
318
318
|
|
|
319
|
-
Here's an improved markdown documentation with more comprehensive details:
|
|
320
|
-
|
|
321
319
|
### BindForm Method
|
|
322
320
|
|
|
323
321
|
The `bindForm` method simplifies form element management in DataVerse by providing a semantic and efficient way to access form controls, sections, and tabs.
|
|
@@ -334,9 +332,9 @@ The `bindForm` method simplifies form element management in DataVerse by providi
|
|
|
334
332
|
|
|
335
333
|
| Element Type | Description | Accessibility |
|
|
336
334
|
| ------------ | ------------------------------------------- | ------------------------- |
|
|
337
|
-
| `control`
|
|
338
|
-
| `section`
|
|
339
|
-
| `tab`
|
|
335
|
+
| `control` | Includes all form fields and sub-grids | Accessed via logical name |
|
|
336
|
+
| `section` | Standard PowerApps form sections | Accessed via logical name |
|
|
337
|
+
| `tab` | Form tabs corresponding to PowerApps layout | Accessed via logical name |
|
|
340
338
|
|
|
341
339
|
##### Usage Example
|
|
342
340
|
|
|
@@ -462,7 +460,6 @@ node.configureConditionalRendering(
|
|
|
462
460
|
```
|
|
463
461
|
|
|
464
462
|
3. Use TypeScript for better type safety and IntelliSense support.
|
|
465
|
-
|
|
466
463
|
4. Use proper error handling with API operations:
|
|
467
464
|
|
|
468
465
|
```typescript
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "powerpagestoolkit",
|
|
3
|
-
"version": "3.20.
|
|
3
|
+
"version": "3.20.301",
|
|
4
4
|
"description": "Reference, manipulate, and engage with Power Pages sites through the nodes in the DOM; use a variety of custom methods that allow customizing your power pages site quicker and easier. ",
|
|
5
5
|
"main": "./dist/src/index.js",
|
|
6
6
|
"module": "./dist/src/index.js",
|