Skip to content

Commit

Permalink
5.4.0-beta.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nolimits4web committed Jan 25, 2020
1 parent aeecabe commit 8da87a3
Show file tree
Hide file tree
Showing 1,283 changed files with 294,369 additions and 13 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

# Change Log

# [v5.4.0-beta.2](https://github.com/framework7io/framework7/compare/v5.4.0-beta.1...v5.4.0-beta.2) - January 25, 2020
* Fix missing packages

# [v5.4.0-beta.1](https://github.com/framework7io/framework7/compare/v5.3.2...v5.4.0-beta.1) - January 25, 2020
* Card
* New `scrollabelEl` parameter that allows to define child scrollable element (if used) to correctly handle expandable card close with touch move
Expand Down
1 change: 1 addition & 0 deletions packages/core/components/accordion.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/core/components/accordion.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/core/components/accordion.rtl.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions packages/core/components/accordion/accordion-aurora.less
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.aurora {}
1 change: 1 addition & 0 deletions packages/core/components/accordion/accordion-ios.less
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.ios {}
1 change: 1 addition & 0 deletions packages/core/components/accordion/accordion-md.less
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.md {}
Empty file.
43 changes: 43 additions & 0 deletions packages/core/components/accordion/accordion.d.ts
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;
Loading

0 comments on commit 8da87a3

Please sign in to comment.