@abgov/angular-components 5.2.0 → 5.2.2
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
|
@@ -1864,11 +1864,11 @@ declare class GoabWorkSideMenu implements OnInit {
|
|
|
1864
1864
|
/** Sets a data-testid attribute for automated testing. */
|
|
1865
1865
|
testId?: string;
|
|
1866
1866
|
/** Template reference for the primary navigation slot content. */
|
|
1867
|
-
primaryContent: TemplateRef<
|
|
1867
|
+
primaryContent: TemplateRef<unknown>;
|
|
1868
1868
|
/** Template reference for the secondary navigation slot content. */
|
|
1869
|
-
secondaryContent: TemplateRef<
|
|
1869
|
+
secondaryContent: TemplateRef<unknown>;
|
|
1870
1870
|
/** Template reference for the account slot content. */
|
|
1871
|
-
accountContent: TemplateRef<
|
|
1871
|
+
accountContent: TemplateRef<unknown>;
|
|
1872
1872
|
/** Emits when the side menu is toggled open or closed. */
|
|
1873
1873
|
onToggle: EventEmitter<void>;
|
|
1874
1874
|
/** Emits when a navigation link is clicked. Emits the URL as a string. */
|