Skip to content

Commit 8da87a3

Browse files
committed
5.4.0-beta.2 release
1 parent aeecabe commit 8da87a3

File tree

1,283 files changed

+294369
-13
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

1,283 files changed

+294369
-13
lines changed

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
# Change Log
44

5+
# [v5.4.0-beta.2](https://github.com/framework7io/framework7/compare/v5.4.0-beta.1...v5.4.0-beta.2) - January 25, 2020
6+
* Fix missing packages
7+
58
# [v5.4.0-beta.1](https://github.com/framework7io/framework7/compare/v5.3.2...v5.4.0-beta.1) - January 25, 2020
69
* Card
710
* New `scrollabelEl` parameter that allows to define child scrollable element (if used) to correctly handle expandable card close with touch move

packages/core/components/accordion.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/components/accordion.js

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/core/components/accordion.rtl.css

Lines changed: 1 addition & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.aurora {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.ios {}
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.md {}

packages/core/components/accordion/accordion-vars.less

Whitespace-only changes.
Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
import Framework7 from '../app/app-class';
2+
import { CSSSelector, Framework7Plugin } from '../app/app-class';
3+
4+
export namespace Accordion {
5+
interface AppMethods {
6+
accordion: {
7+
/** open specified accordion item */
8+
open(el : HTMLElement | CSSSelector) : void
9+
10+
/** close specified accordion item */
11+
close(el : HTMLElement | CSSSelector) : void
12+
13+
/** toggle specified accordion item */
14+
toggle(el : HTMLElement | CSSSelector) : void
15+
}
16+
}
17+
interface AppParams {
18+
19+
}
20+
interface AppEvents {
21+
/** Event will be triggered before accordion content starts its opening animation */
22+
accordionBeforeOpen : (el : HTMLElement | CSSSelector, prevent: () => void) => void
23+
24+
/** Event will be triggered when accordion content starts its opening animation */
25+
accordionOpen : (el : HTMLElement | CSSSelector) => void
26+
27+
/** Event will be triggered after accordion content completes its opening animation */
28+
accordionOpened : (el : HTMLElement | CSSSelector) => void
29+
30+
/** Event will be triggered before accordion content starts its closing animation */
31+
accordionBeforeClose : (el : HTMLElement | CSSSelector, prevent: () => void) => void
32+
33+
/** Event will be triggered when accordion content starts its closing animation */
34+
accordionClose : (el : HTMLElement | CSSSelector) => void
35+
36+
/** Event will be triggered after accordion content completes its closing animation */
37+
accordionClosed : (el : HTMLElement | CSSSelector) => void
38+
}
39+
}
40+
41+
declare const AccordionComponent: Framework7Plugin;
42+
43+
export default AccordionComponent;

0 commit comments

Comments
 (0)