Skip to content
This repository was archived by the owner on Mar 29, 2023. It is now read-only.

Commit 4d75a8a

Browse files
committed
first commit with the same content with original framework7-4.5.1
0 parents  commit 4d75a8a

File tree

924 files changed

+167482
-0
lines changed

Some content is hidden

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

924 files changed

+167482
-0
lines changed

README.md

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
<a href="https://www.patreon.com/vladimirkharlampidi"><img src="https://cdn.framework7.io/i/support-badge.png" height="20"></a>
2+
3+
# Framework7
4+
5+
Full Featured Mobile HTML Framework For Building iOS & Android Apps
6+
7+
## Getting Started
8+
* [Getting Started Guide](https://framework7.io/docs/introduction.html)
9+
* [Installation Guide](https://framework7.io/docs/installation.html)
10+
* [App Layout](https://framework7.io/docs/app-layout.html)
11+
* [Initialize App](https://framework7.io/docs/init-app.html)
12+
13+
## Forum
14+
15+
If you have questions about Framework7 or want to help others you are welcome to special forum at https://forum.framework7.io/
16+
17+
## Docs
18+
19+
Documentation available at https://framework7.io/docs/
20+
21+
## Tutorials
22+
23+
Tutorials available at https://framework7.io/tutorials/
24+
25+
## Showcase
26+
27+
Appstore apps made with Framework7: https://framework7.io/showcase/

components/accordion.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/accordion.js

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/accordion.rtl.css

+1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
.aurora {
2+
.list .accordion-item-toggle .item-inner,
3+
.list:not(.media-list) .accordion-item:not(.media-item) .accordion-item-toggle .item-inner,
4+
.list:not(.media-list) .accordion-item:not(.media-item) > .item-link .item-inner,
5+
.media-list .accordion-item .accordion-item-toggle .item-title-row,
6+
.media-list .accordion-item > .item-link .item-title-row,
7+
.accordion-item.media-item .accordion-item-toggle .item-title-row,
8+
.accordion-item.media-item > .item-link .item-title-row,
9+
.links-list .accordion-item > a {
10+
&:before {
11+
content: 'chevron_down_aurora';
12+
}
13+
}
14+
.list .accordion-item-toggle.accordion-item-opened .item-inner,
15+
.list:not(.media-list) .accordion-item-opened:not(.media-item) .accordion-item-toggle .item-inner,
16+
.list:not(.media-list) .accordion-item-opened:not(.media-item) > .item-link .item-inner,
17+
.media-list .accordion-item-opened .accordion-item-toggle .item-title-row,
18+
.media-list .accordion-item-opened > .item-link .item-title-row,
19+
.accordion-item-opened.media-item .accordion-item-toggle .item-title-row,
20+
.accordion-item-opened.media-item > .item-link .item-title-row,
21+
.links-list .accordion-item-opened > a {
22+
&:before {
23+
content: 'chevron_up_aurora';
24+
}
25+
}
26+
}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.ios {}
+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
.md {}

components/accordion/accordion-vars.less

Whitespace-only changes.

components/accordion/accordion.d.ts

+43
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)