Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Element
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
CI / CD Analytics
Repository Analytics
Value Stream Analytics
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
林焕东
Element
Commits
3997df08
Commit
3997df08
authored
Mar 18, 2018
by
杨奕
Committed by
GitHub
Mar 18, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Chore: declare focus method in form component types (#10221)
parent
84bb3397
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
35 additions
and
0 deletions
+35
-0
types/autocomplete.d.ts
types/autocomplete.d.ts
+5
-0
types/date-picker.d.ts
types/date-picker.d.ts
+5
-0
types/input-number.d.ts
types/input-number.d.ts
+5
-0
types/input.d.ts
types/input.d.ts
+5
-0
types/select.d.ts
types/select.d.ts
+5
-0
types/time-picker.d.ts
types/time-picker.d.ts
+5
-0
types/time-select.d.ts
types/time-select.d.ts
+5
-0
No files found.
types/autocomplete.d.ts
View file @
3997df08
...
...
@@ -50,4 +50,9 @@ export declare class ElAutocomplete extends ElementUIComponent {
/** Whether show suggestions when input focus */
triggerOnFocus
:
boolean
/**
* Focus the Input component
*/
focus
():
void
}
types/date-picker.d.ts
View file @
3997df08
...
...
@@ -116,4 +116,9 @@ export declare class ElDatePicker extends ElementUIComponent {
/** name for the inner native input */
name
:
string
/**
* Focus the Input component
*/
focus
():
void
}
types/input-number.d.ts
View file @
3997df08
...
...
@@ -33,4 +33,9 @@ export declare class ElInputNumber extends ElementUIComponent {
/** Same as name in native input */
name
:
string
/**
* Focus the Input component
*/
focus
():
void
}
types/input.d.ts
View file @
3997df08
...
...
@@ -74,4 +74,9 @@ export declare class ElInput extends ElementUIComponent {
/** Same as form in native input */
form
:
string
/**
* Focus the Input component
*/
focus
():
void
}
types/select.d.ts
View file @
3997df08
...
...
@@ -68,4 +68,9 @@ export declare class ElSelect extends ElementUIComponent {
/** Select first matching option on enter key. Use with filterable or remote */
defaultFirstOption
:
boolean
/**
* Focus the Input component
*/
focus
():
void
}
types/time-picker.d.ts
View file @
3997df08
...
...
@@ -55,4 +55,9 @@ export declare class ElTimePicker extends ElementUIComponent {
/** Range separator */
rangeSeparator
:
string
/**
* Focus the Input component
*/
focus
():
void
}
types/time-select.d.ts
View file @
3997df08
...
...
@@ -48,4 +48,9 @@ export declare class ElTimeSelect extends ElementUIComponent {
/** Additional options, check the table below */
pickerOptions
:
TimeSelectOptions
/**
* Focus the Input component
*/
focus
():
void
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment