@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.
- package/dist/base.js +1 -1
- package/dist/base.js.map +3 -3
- package/dist/types/modules/router/nav-link.d.ts +13 -0
- package/package.json +1 -1
|
@@ -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
|
*
|