File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -4,6 +4,9 @@ import { proxyEvent } from '../util/util';
4
4
5
5
6
6
export class BackButtonEmitter extends EventEmitter < BackButtonDetail > {
7
+ constructor ( ) {
8
+ super ( ) ;
9
+ }
7
10
subscribeWithPriority ( priority : number , callback : ( ) => Promise < any > | void ) {
8
11
return this . subscribe ( ( ev : BackButtonDetail ) => {
9
12
ev . register ( priority , callback ) ;
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ export * from './global/config';
34
34
export * from './utils/overlays-interface' ;
35
35
36
36
// Global types
37
- export type TextFieldTypes = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' ;
37
+ export type TextFieldTypes = 'date' | 'email' | 'number' | 'password' | 'search' | 'tel' | 'text' | 'url' | 'time' ;
38
38
export type Side = 'start' | 'end' ;
39
39
export type PredefinedColors = 'primary' | 'secondary' | 'tertiary' | 'success' | 'warning' | 'danger' | 'light' | 'medium' | 'dark' ;
40
40
export type Color = PredefinedColors | string ;
You can’t perform that action at this time.
0 commit comments