@base-framework/base 3.0.133 → 3.0.134

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.
@@ -5,11 +5,24 @@
5
5
  * class when the browser route path matches the link
6
6
  * href.
7
7
  *
8
+ * @property {string} activeClass - The active class to add.
9
+ * @property {string} class - The class
10
+ * @property {string} exact - The exact match
11
+ * @property {string|object} href - The href or watcher object
12
+ * @property {string|object} text - The text or watcher object
13
+ * @property {array|string} nest - The nested elements
14
+ *
8
15
  * @class
9
16
  * @extends Component
10
17
  */
11
18
  export class NavLink extends Component {
12
19
  selectedClass: any;
20
+ /**
21
+ * This will get the link path.
22
+ *
23
+ * @returns {string|null}
24
+ */
25
+ getLinkPath(): string | null;
13
26
  /**
14
27
  * This will get string.
15
28
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@base-framework/base",
3
- "version": "3.0.133",
3
+ "version": "3.0.134",
4
4
  "description": "This is a javascript framework.",
5
5
  "main": "./dist/base.js",
6
6
  "type": "module",