powerpagestoolkit 2.7.1402 → 2.7.1411

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/dist/bundle.css DELETED
@@ -1,36 +0,0 @@
1
- /* src/style.css */
2
- .info-icon {
3
- position: relative;
4
- display: inline-block;
5
- }
6
- .info-icon .fa-info-circle {
7
- cursor: pointer;
8
- }
9
- .info-icon .flyout-content {
10
- max-width: calc(100vw - 20px);
11
- display: none;
12
- position: absolute;
13
- left: 50%;
14
- transform: translateX(-50%);
15
- color: #000;
16
- background-color: #f9f9f9;
17
- padding: 10px;
18
- border: 1px solid #ddd;
19
- z-index: 1;
20
- min-width: 200px;
21
- box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
22
- border-radius: 4px;
23
- }
24
- @media (max-width: 600px) {
25
- .info-icon .flyout-content {
26
- max-width: 95vw;
27
- padding: 12px;
28
- font-size: 0.9em;
29
- display: block;
30
- right: auto;
31
- }
32
- }
33
- .required-field::after {
34
- content: " *" !important;
35
- color: #f00 !important;
36
- }
@@ -1,13 +0,0 @@
1
- import DOMNodeReference from "./DOMNodeReference.js";
2
- import DOMNodeReferenceArray from "./DOMNodeReferenceArray.js";
3
- declare type BoundForm = DOMNodeReferenceArray & Record<string, DOMNodeReference>;
4
- /**
5
- * Get all controls related to the form for manipulating with the
6
- * DOMNodeReference class. Rather than having to instantiate each fields that you need manually,
7
- * you can call this method once with the form ID and gain access to all fields
8
- * @param formId The string GUID of the form you want to bind to
9
- * @returns An array of DOMNodeReferences, accessible as properties of a Record<string, DOMNodeReference> i.e. formProp = form["some_logicalName"]
10
- * @see {@link BoundForm}
11
- */
12
- export default function bindForm(formId: string): Promise<BoundForm>;
13
- export {};
@@ -1,6 +0,0 @@
1
- import "./style.css";
2
- import API from "./core/API.js";
3
- import createRef from "./core/createDOMNodeReferences.js";
4
- import waitFor from "./core/waitFor.js";
5
- import bindForm from "./core/bindForm.js";
6
- export { API, createRef, waitFor, bindForm };
@@ -1,3 +0,0 @@
1
- import DOMNodeReference from "@/core/DOMNodeReference.js";
2
- import DOMNodeReferenceArray from "@/core/DOMNodeReferenceArray.js";
3
- export default function enhanceArray<T extends string>(array: DOMNodeReference[]): DOMNodeReferenceArray & Record<T, DOMNodeReference>;
File without changes
File without changes
File without changes