@base-framework/ui 1.2.49 → 1.2.51
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/atoms.es.js +1 -1
- package/dist/{confirmation-kPMxirr9.js → confirmation-tFjGo_pD.js} +1 -1
- package/dist/{full-page-C72g6t7s.js → full-page-BSJ6rkbe.js} +175 -175
- package/dist/index.es.js +5 -5
- package/dist/molecules.es.js +2 -2
- package/dist/organisms.es.js +3 -3
- package/dist/pages.es.js +2 -2
- package/dist/{sidebar-menu-CIOu7Ezf.js → sidebar-menu-Qw5a8TeQ.js} +1 -1
- package/dist/{sidebar-menu-page-YxQ1ybaW.js → sidebar-menu-page-CPoNqLGD.js} +2 -2
- package/dist/{signature-panel-9WjCJ3-6.js → signature-panel-C0enb6BJ.js} +191 -209
- package/dist/types/components/atoms/buttons/back-navigation.d.ts +3 -0
- package/dist/types/components/organisms/tabs/tab-navigation.d.ts +1 -6
- package/dist/types/components/organisms/tabs/underlined-tab-navigation.d.ts +1 -6
- package/package.json +1 -1
|
@@ -24,6 +24,7 @@ export class TabNavigation extends Veil {
|
|
|
24
24
|
*/
|
|
25
25
|
onSelect: any;
|
|
26
26
|
links: any[];
|
|
27
|
+
activeLink: any;
|
|
27
28
|
/**
|
|
28
29
|
* This will render the component.
|
|
29
30
|
*
|
|
@@ -37,12 +38,6 @@ export class TabNavigation extends Veil {
|
|
|
37
38
|
* @returns {void}
|
|
38
39
|
*/
|
|
39
40
|
updateLinks(value: string): void;
|
|
40
|
-
/**
|
|
41
|
-
* This will deactivate all links.
|
|
42
|
-
*
|
|
43
|
-
* @returns {void}
|
|
44
|
-
*/
|
|
45
|
-
deactivateAllLinks(): void;
|
|
46
41
|
/**
|
|
47
42
|
* This will update the link.
|
|
48
43
|
*
|
|
@@ -32,6 +32,7 @@ export class UnderlinedTabNavigation extends Veil {
|
|
|
32
32
|
*/
|
|
33
33
|
scrollable: boolean;
|
|
34
34
|
links: any[];
|
|
35
|
+
activeLink: any;
|
|
35
36
|
/**
|
|
36
37
|
* This will render the component.
|
|
37
38
|
*
|
|
@@ -45,12 +46,6 @@ export class UnderlinedTabNavigation extends Veil {
|
|
|
45
46
|
* @returns {void}
|
|
46
47
|
*/
|
|
47
48
|
updateLinks(value: string): void;
|
|
48
|
-
/**
|
|
49
|
-
* This will deactivate all links.
|
|
50
|
-
*
|
|
51
|
-
* @returns {void}
|
|
52
|
-
*/
|
|
53
|
-
deactivateAllLinks(): void;
|
|
54
49
|
/**
|
|
55
50
|
* This will update the link.
|
|
56
51
|
*
|
package/package.json
CHANGED