powerpagestoolkit 1.3.0 → 1.3.102
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 +4 -4
- package/package.json +24 -1
package/README.md
CHANGED
|
@@ -20,11 +20,11 @@ import {
|
|
|
20
20
|
|
|
21
21
|
# Modules
|
|
22
22
|
|
|
23
|
-
|
|
23
|
+
### `DOMNodereference`
|
|
24
24
|
|
|
25
25
|
The `DOMNodeReference` module simplifies DOM element management. It provides functionalities for creating and interacting with DOM elements:
|
|
26
26
|
|
|
27
|
-
|
|
27
|
+
#### Usage
|
|
28
28
|
|
|
29
29
|
- **`createDOMNodeReference(selector)`**: Creates a `DOMNodeReference` instance for a single DOM element specified by a CSS selector or HTMLElement. Returns a `DOMNodeReference` instance.
|
|
30
30
|
|
|
@@ -119,7 +119,7 @@ onceLoaded(callback: (instance: DOMNodeReference) => void)
|
|
|
119
119
|
|
|
120
120
|
```
|
|
121
121
|
|
|
122
|
-
|
|
122
|
+
### `API`
|
|
123
123
|
|
|
124
124
|
The `API` module provides functions for creating and retrieving records from a DataVerse. It includes the following methods:
|
|
125
125
|
|
|
@@ -128,7 +128,7 @@ The `API` module provides functions for creating and retrieving records from a D
|
|
|
128
128
|
|
|
129
129
|
- **`getMultiple(tableSetName, queryParameters)`**: Retrieves multiple records from the DataVerse based on specified query parameters. Returns a Promise that resolves with the list of retrieved records or rejects with an error.
|
|
130
130
|
|
|
131
|
-
|
|
131
|
+
#### Usage
|
|
132
132
|
|
|
133
133
|
###### 1. Creating a Record
|
|
134
134
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "powerpagestoolkit",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.102",
|
|
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/index.bundle.js",
|
|
6
6
|
"types": "index.d.ts",
|
|
@@ -31,6 +31,29 @@
|
|
|
31
31
|
"type": "git",
|
|
32
32
|
"url": "https://github.com/Keaton-Brewster/PowerPagesToolKit"
|
|
33
33
|
},
|
|
34
|
+
"keywords": [
|
|
35
|
+
"powerpages",
|
|
36
|
+
"power pages",
|
|
37
|
+
"power platform",
|
|
38
|
+
"dynamics 365",
|
|
39
|
+
"power apps portal",
|
|
40
|
+
"dynamics 365 portal",
|
|
41
|
+
"portal",
|
|
42
|
+
"portal management",
|
|
43
|
+
"api",
|
|
44
|
+
"javascript",
|
|
45
|
+
"ajax",
|
|
46
|
+
"dataverse",
|
|
47
|
+
"dom-manipulation",
|
|
48
|
+
"node",
|
|
49
|
+
"http-request",
|
|
50
|
+
"json",
|
|
51
|
+
"rest-api",
|
|
52
|
+
"ajax-wrapper",
|
|
53
|
+
"form-management",
|
|
54
|
+
"frontend",
|
|
55
|
+
"web-development"
|
|
56
|
+
],
|
|
34
57
|
"files": [
|
|
35
58
|
"dist",
|
|
36
59
|
"index.d.ts"
|