-
-
Notifications
You must be signed in to change notification settings - Fork 3.2k
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
1 parent
aeecabe
commit 8da87a3
Showing
1,283 changed files
with
294,369 additions
and
13 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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.aurora {} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.ios {} |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
.md {} |
Empty file.
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 |
---|---|---|
@@ -0,0 +1,43 @@ | ||
import Framework7 from '../app/app-class'; | ||
import { CSSSelector, Framework7Plugin } from '../app/app-class'; | ||
|
||
export namespace Accordion { | ||
interface AppMethods { | ||
accordion: { | ||
/** open specified accordion item */ | ||
open(el : HTMLElement | CSSSelector) : void | ||
|
||
/** close specified accordion item */ | ||
close(el : HTMLElement | CSSSelector) : void | ||
|
||
/** toggle specified accordion item */ | ||
toggle(el : HTMLElement | CSSSelector) : void | ||
} | ||
} | ||
interface AppParams { | ||
|
||
} | ||
interface AppEvents { | ||
/** Event will be triggered before accordion content starts its opening animation */ | ||
accordionBeforeOpen : (el : HTMLElement | CSSSelector, prevent: () => void) => void | ||
|
||
/** Event will be triggered when accordion content starts its opening animation */ | ||
accordionOpen : (el : HTMLElement | CSSSelector) => void | ||
|
||
/** Event will be triggered after accordion content completes its opening animation */ | ||
accordionOpened : (el : HTMLElement | CSSSelector) => void | ||
|
||
/** Event will be triggered before accordion content starts its closing animation */ | ||
accordionBeforeClose : (el : HTMLElement | CSSSelector, prevent: () => void) => void | ||
|
||
/** Event will be triggered when accordion content starts its closing animation */ | ||
accordionClose : (el : HTMLElement | CSSSelector) => void | ||
|
||
/** Event will be triggered after accordion content completes its closing animation */ | ||
accordionClosed : (el : HTMLElement | CSSSelector) => void | ||
} | ||
} | ||
|
||
declare const AccordionComponent: Framework7Plugin; | ||
|
||
export default AccordionComponent; |
Oops, something went wrong.