powerpagestoolkit 2.0.104 → 2.0.106

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "powerpagestoolkit",
3
- "version": "2.0.104",
3
+ "version": "2.0.106",
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/bundle.js",
6
6
  "types": "./dist/@types",
@@ -53,12 +53,6 @@
53
53
  "frontend",
54
54
  "web-development"
55
55
  ],
56
- "exports": {
57
- ".": {
58
- "import": "./dist/bundle.js",
59
- "types": "./dist/index.d.ts"
60
- }
61
- },
62
56
  "files": [
63
57
  "dist/bundle.js",
64
58
  "dist/@types"
@@ -1,11 +0,0 @@
1
- import DOMNodeReference from "./DOMNodeReference.js";
2
- import ListItem from "./ListItem.js";
3
- export declare const _listInit: unique symbol;
4
- /******/ /******/ /******/ export default class List extends DOMNodeReference {
5
- /**
6
- * @property an array of List Items contained within this list
7
- */
8
- listItems: ListItem[];
9
- constructor(target: HTMLElement | string);
10
- [_listInit](): Promise<void>;
11
- }
@@ -1,10 +0,0 @@
1
- import DOMNodeReference from "./DOMNodeReference.js";
2
- /******/ /******/ /******/ export default class ListItem extends DOMNodeReference {
3
- /**
4
- * @property The First Column in this specific list item
5
- */
6
- firstColumn: HTMLElement;
7
- constructor(target: HTMLElement | string);
8
- removeTarget(): void;
9
- setFirstRowLink(path: string): ListItem;
10
- }
@@ -1,2 +0,0 @@
1
- import List from "./List.js";
2
- export default function (): Promise<List>;