Skip to content
This repository was archived by the owner on Mar 1, 2024. It is now read-only.

Commit 198e49c

Browse files
committed
fix(forms): fix build error
1 parent 6439924 commit 198e49c

File tree

2 files changed

+11
-12
lines changed

2 files changed

+11
-12
lines changed

libs/angular-forms/src/helpers/fields.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ export class Field {
1515
* @param templateType: string. Type variant (input type=range, input type=number)
1616
* @param key: the key for this field in the object model
1717
* @param options:
18-
* @returns {}
1918
*/
2019
public static field(type: string, templateType: string, key: string, options: any = {}) {
2120
const hideExpression = options.hideExpression || false

libs/angular-ui/src/services/ui.service.ts

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ export class UiService {
6262

6363
/**
6464
* Define the link to Home
65-
* @param {string} link
65+
* @param link
6666
*/
6767
public set appLink(link: string) {
6868
this.config.appLink = link
6969
}
7070

7171
/**
7272
* Set the link to the app logo image
73-
* @param {string} logo
73+
* @param logo
7474
*/
7575
public set appLogo(logo: string) {
7676
this.config.appLogo = logo
@@ -86,55 +86,55 @@ export class UiService {
8686

8787
/**
8888
* Set the main navigation items
89-
* @param {UiLink[]} items
89+
* @param items
9090
*/
9191
public set headerNav(items: UiLink[]) {
9292
this.config.headerNav = items
9393
}
9494

9595
/**
9696
* Set the secondary navigation items
97-
* @param {UiLink[]} items
97+
* @param items
9898
*/
9999
public set headerSubNav(items: UiLink[]) {
100100
this.config.headerSubNav = items
101101
}
102102

103103
/**
104104
* Set the User Profile
105-
* @param {UiProfile} profile
105+
* @param profile
106106
*/
107107
public set profile(profile: UiProfile) {
108108
this.config.profile = profile
109109
}
110110

111111
/**
112112
* Set the links in the user profile menu
113-
* @param {UiLink[]} items
113+
* @param items
114114
*/
115115
public set profileNav(items: UiLink[]) {
116116
this.config.profileNav = items
117117
}
118118

119119
/**
120120
* Set the notifications items dropdown
121-
* @param {UiNotification[]} notifications
121+
* @param notifications
122122
*/
123123
public set notifications(notifications: UiNotification[]) {
124124
this.config.notifications = notifications
125125
}
126126

127127
/**
128128
* Set the Navigation Items in the footer
129-
* @param {UiLink[]} items
129+
* @param items
130130
*/
131131
public set footerNav(items: UiLink[]) {
132132
this.config.footerNav = items
133133
}
134134

135135
/**
136136
* Set the footer text, good for a copyright/disclaimer message
137-
* @param {string} text
137+
* @param text
138138
*/
139139
public set footerText(text: string) {
140140
this.config.footerText = text
@@ -144,15 +144,15 @@ export class UiService {
144144
* Set the footer sub navigation.
145145
*
146146
* Accepts an Array of UiLink Arrays
147-
* @param {[UiLink[]]} items
147+
* @param items
148148
*/
149149
public set footerSubNav(items: [UiLink[]]) {
150150
this.config.footerSubNav = items
151151
}
152152

153153
/**
154154
* Set the footer sub text
155-
* @param {string} text
155+
* @param text
156156
*/
157157
public set footerSubText(text: string) {
158158
this.config.footerSubText = text

0 commit comments

Comments
 (0)