-
Notifications
You must be signed in to change notification settings - Fork 439
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
44 changed files
with
629 additions
and
278 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
export * from './mobiscroll.angular'; | ||
export { MbscFormBase as ɵf, MbscFormValueBase as ɵg, MbscInputBase as ɵh, MbscRadioGroupBase as ɵj, MbscRadioService as ɵi } from '../src/js/forms.angular'; | ||
export { MbscBase as ɵc, MbscControlBase as ɵe, MbscInputService as ɵb, MbscOptionsService as ɵa, MbscValueBase as ɵd } from '../src/js/frameworks/angular'; | ||
export { MbscFormBase as ɵg, MbscFormValueBase as ɵh, MbscInputBase as ɵi, MbscRadioGroupBase as ɵk, MbscRadioService as ɵj } from '../src/js/forms.angular'; | ||
export { MbscBase as ɵc, MbscCloneBase as ɵe, MbscControlBase as ɵf, MbscInputService as ɵb, MbscOptionsService as ɵa, MbscValueBase as ɵd } from '../src/js/frameworks/angular'; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,23 @@ | ||
declare namespace mobiscroll { | ||
let settings: any; | ||
let $: any; | ||
let apiKey: string; | ||
let apiUrl: string; | ||
let uid: string; | ||
let util: { | ||
datetime: { | ||
export interface IMobiscroll { | ||
settings?: any, | ||
$?: any, | ||
apiKey?: string, | ||
apiUrl?: string, | ||
uid?: string, | ||
util?: { | ||
datetime?: { | ||
parseDate: (format: string, value: string, settings?: any) => Date, | ||
formatDate: (format: string, value: Date, settings?: any) => string | ||
} | ||
}; | ||
}, | ||
|
||
function alert(config: any): Promise<boolean>; | ||
function confirm(config: any): Promise<boolean>; | ||
function prompt(config: any): Promise<string>; | ||
function toast(config: any): Promise<boolean>; | ||
function snackbar(config: any): Promise<boolean>; | ||
alert?: (config: any) => Promise<boolean>, | ||
confirm?: (config: any) => Promise<boolean>, | ||
prompt?: (config: any) => Promise<string>, | ||
toast?: (config: any) => Promise<boolean>, | ||
snackbar?: (config: any) => Promise<boolean>, | ||
|
||
function customTheme(name: string, baseTheme: string): void; | ||
customTheme: (name: string, baseTheme: string) => void | ||
} | ||
export { mobiscroll }; | ||
|
||
export const mobiscroll: IMobiscroll; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
var mobiscroll = mobiscroll || {}; | ||
var mobiscroll = mobiscroll || {}, | ||
util = {}; | ||
|
||
export { mobiscroll }; | ||
export { mobiscroll, util }; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.