Skip to content

Commit

Permalink
feat: add password field
Browse files Browse the repository at this point in the history
  • Loading branch information
yann.lesage committed Mar 1, 2021
1 parent a2fd057 commit 15006ec
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/Material-Design-Lite-Components/MDLPasswordFieldInput.class.st
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
Class {
#name : #MDLPasswordFieldInput,
#superclass : #MDLTextFieldInput,
#category : #'Material-Design-Lite-Components-Forms'
}

{ #category : #accessing }
MDLPasswordFieldInput >> type [
^ 'password'
]
5 changes: 5 additions & 0 deletions src/Material-Design-Lite-Components/WAHtmlCanvas.extension.st
Original file line number Diff line number Diff line change
Expand Up @@ -957,6 +957,11 @@ WAHtmlCanvas >> mdlNavigationLink: aBlock [
yourself
]

{ #category : #'*Material-Design-Lite-Components' }
WAHtmlCanvas >> mdlPasswordFieldInput [
^ self brush: MDLPasswordFieldInput new
]

{ #category : #'*Material-Design-Lite-Components' }
WAHtmlCanvas >> mdlProgressBar [
^ self brush: MDLProgressBar new
Expand Down

0 comments on commit 15006ec

Please sign in to comment.