Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Client
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
web-et-numerique
Factory
Resin
Client
Commits
74cfcdd3
Commit
74cfcdd3
authored
1 year ago
by
Pierre Ecarlat
Browse files
Options
Downloads
Patches
Plain Diff
Fixed comments syntax
parent
7d57de43
Branches
Branches containing commit
Tags
Tags containing commit
2 merge requests
!783
V3.0.0
,
!741
making onboarding-infos-covid-2 up to date
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/app/shared/components/member-card/member-card.component.ts
+7
-7
7 additions, 7 deletions
...pp/shared/components/member-card/member-card.component.ts
src/app/structure-list/components/card/card.component.ts
+7
-7
7 additions, 7 deletions
src/app/structure-list/components/card/card.component.ts
with
14 additions
and
14 deletions
src/app/shared/components/member-card/member-card.component.ts
+
7
−
7
View file @
74cfcdd3
...
...
@@ -10,25 +10,25 @@ import { User, UserAnnuary } from '../../../models/user.model';
styleUrls
:
[
'
./member-card.component.scss
'
],
})
export
class
MemberCardComponent
implements
OnInit
{
/
/
The user info to display
/
**
The user info to display
*/
@
Input
({
required
:
true
})
public
member
:
User
|
Owner
|
UserAnnuary
;
/
/
If true, shows the RDV icon if available
/
**
If true, shows the RDV icon if available
*/
@
Input
()
public
showAppointment
=
false
;
/
/
If true, shows the contact info (phone + email), if provided
/
**
If true, shows the contact info (phone + email), if provided
*/
@
Input
()
public
showContactInfo
=
true
;
/
/
If true, shows the employer
/
**
If true, shows the employer
*/
@
Input
()
public
showEmployer
=
true
;
/
/
If true, click event redirects to profile
/
**
If true, click event redirects to profile
*/
@
Input
()
public
redirectToProfile
=
true
;
/
/
If true, shows a radio button to select the card, disables the redirection to profile
/
**
If true, shows a radio button to select the card, disables the redirection to profile
*/
@
Input
()
public
showRadioButton
=
false
;
/
/
If true, checks the radioButton
/
**
If true, checks the radioButton
*/
@
Input
()
public
isChecked
=
false
;
@
Output
()
public
selectedCard
=
new
EventEmitter
<
string
>
();
...
...
This diff is collapsed.
Click to expand it.
src/app/structure-list/components/card/card.component.ts
+
7
−
7
View file @
74cfcdd3
...
...
@@ -9,23 +9,23 @@ import { ProfileService } from '../../../profile/services/profile.service';
styleUrls
:
[
'
./card.component.scss
'
],
})
export
class
CardComponent
implements
OnInit
{
/
/
The structure element to display
/
**
The structure element to display
*/
@
Input
()
public
structure
:
Structure
;
/
/
If true, click event redirects to profile
/
**
If true, click event redirects to profile
*/
@
Input
()
public
redirectToStructure
=
true
;
/
/
If true, shows a radio button to select the card, disables the redirection to structure
/
**
If true, shows a radio button to select the card, disables the redirection to structure
*/
@
Input
()
public
showRadioButton
=
false
;
/
/
If true, checks the radioButton
/
**
If true, checks the radioButton
*/
@
Input
()
public
isChecked
=
false
;
/
/
If true, the form comes from the orientation
/
**
If true, the form comes from the orientation
*/
@
Input
()
public
isOrientation
=
false
;
/
/
If in orientation, when we add to list, the card becomes selected
/
**
If in orientation, when we add to list, the card becomes selected
*/
@
Input
()
public
isSelected
=
false
;
/
/
If true, the form comes from the orientation and will propose to reserve an appointment
/
**
If true, the form comes from the orientation and will propose to reserve an appointment
*/
@
Input
()
public
isOrientationRdv
=
false
;
@
Output
()
public
showDetails
=
new
EventEmitter
<
Structure
>
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment