Skip to content

Commit 48b7892

Browse files
authored
Add files via upload
1 parent da081f7 commit 48b7892

Some content is hidden

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

43 files changed

+772
-0
lines changed

source/modules/smart.accordion.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import "../smart.element.js";
2+
import "../smart.scrollbar.js";
3+
import "../smart.button.js";
4+
import "../smart.accordion.js";
5+
6+
export class smartAccordion extends Smart.Component {
7+
get name() {
8+
return 'smartAccordion';
9+
}
10+
}
11+
12+
export class smartAccordionItem extends Smart.Component {
13+
get name() {
14+
return 'smartAccordionItem';
15+
}
16+
}

source/modules/smart.breadcrumb.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import "../smart.element.js";
2+
import "../smart.scrollbar.js";
3+
import "../smart.button.js";
4+
import "../smart.breadcrumb.js";
5+
6+
export class smartBreadCrumb extends Smart.Component {
7+
get name() {
8+
return 'smartBreadCrumb';
9+
}
10+
}

source/modules/smart.button.js

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
import "../smart.element.js";
2+
import "../smart.button.js";
3+
import "../smart.powerbutton.js";
4+
import "../smart.radiobutton.js";
5+
import "../smart.checkbox.js";
6+
import "../smart.dropdownbutton.js";
7+
import "../smart.switchbutton.js";
8+
9+
export class smartButton extends Smart.Component {
10+
get name() {
11+
return 'smartButton';
12+
}
13+
}
14+
15+
export class smartToggleButton extends Smart.Component {
16+
get name() {
17+
return 'smartToggleButton';
18+
}
19+
}
20+
21+
export class smartRepeatButton extends Smart.Component {
22+
get name() {
23+
return 'smartRepeatButton';
24+
}
25+
}
26+
27+
export class smartSwitchButton extends Smart.Component {
28+
get name() {
29+
return 'smartSwitchButton';
30+
}
31+
}
32+
33+
export class smartCheckBox extends Smart.Component {
34+
get name() {
35+
return 'smartCheckBox';
36+
}
37+
};
38+
export class smartPowerButton extends Smart.Component{
39+
get name() {
40+
return 'smartPowerButton';
41+
}
42+
};
43+
export class smartRadioButton extends Smart.Component{
44+
get name() {
45+
return 'smartRadioButton';
46+
}
47+
};
48+
export class smartDropDownButton extends Smart.Component{
49+
get name() {
50+
return 'smartDropDownButton';
51+
}
52+
};

source/modules/smart.calendar.js

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
import "../smart.element.js";
2+
import "../smart.scrollbar.js";
3+
import "../smart.button.js";
4+
import "../smart.listbox.js";
5+
import "../smart.dropdownlist.js";
6+
import "../smart.date.js";
7+
import "../smart.tooltip.js";
8+
import "../smart.calendar.js";
9+
10+
export class smartCalendar extends Smart.Component {
11+
get name() {
12+
return 'smartCalendar';
13+
}
14+
}

source/modules/smart.card.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
import "../smart.element.js";
2+
import "../smart.card.js";
3+
4+
export class smartCard extends Smart.Component {
5+
get name() {
6+
return 'smartCard';
7+
}
8+
}

source/modules/smart.cardview.js

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
import "../smart.element.js";
2+
import "../smart.button.js";
3+
import "../smart.scrollbar.js";
4+
import "../smart.data.js";
5+
import "../smart.date.js";
6+
import "../smart.listbox.js";
7+
import "../smart.input.js";
8+
import "../smart.dropdownlist.js";
9+
import "../smart.calendar.js";
10+
import "../smart.datetimepicker.js";
11+
import "../smart.switchbutton.js";
12+
import "../smart.cardview.js";
13+
14+
export class smartCardView extends Smart.Component {
15+
get name() {
16+
return 'smartCardView';
17+
}
18+
}
19+
20+
export class smartDataAdapter extends Smart.DataAdapter {
21+
}

source/modules/smart.carousel.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
import "../smart.element.js";
2+
import "../smart.button.js";
3+
import "../smart.scrollbar.js";
4+
import "../smart.carousel.js";
5+
6+
export class smartCarousel extends Smart.Component {
7+
get name() {
8+
return 'smartCarousel';
9+
}
10+
}

source/modules/smart.chart.js

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
import "../smart.element.js";
2+
import "../smart.button.js";
3+
import "../smart.scrollbar.js";
4+
import "../smart.data.js";
5+
import "../smart.draw.js";
6+
import "../smart.chart.core.js";
7+
import "../smart.chart.rangeselector.js";
8+
import "../smart.chart.api.js";
9+
import "../smart.chart.waterfall.js";
10+
import "../smart.chart.annotations.js";
11+
import "../smart.export.js";
12+
13+
export class smartChart extends Smart.Component {
14+
get name() {
15+
return 'smartChart';
16+
}
17+
}
18+
19+
export class smartDataAdapter extends Smart.DataAdapter {
20+
}

source/modules/smart.chip.js

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import "../smart.element.js";
2+
import "../smart.button.js";
3+
import "../smart.chip.js";
4+
5+
export class smartChip extends Smart.Component {
6+
get name() {
7+
return 'smartChip';
8+
}
9+
}

source/modules/smart.colorpanel.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import "../smart.element.js";
2+
import "../smart.button.js";
3+
import "../smart.draw.js";
4+
import "../smart.scrollbar.js";
5+
import "../smart.checkbox.js";
6+
import "../smart.radiobutton.js";
7+
import "../smart.listbox.js";
8+
import "../smart.dropdownlist.js";
9+
import "../smart.tooltip.js";
10+
import "../smart.colorpanel.js";
11+
12+
export class smartColorPanel extends Smart.Component {
13+
get name() {
14+
return 'smartColorPanel';
15+
}
16+
}

0 commit comments

Comments
 (0)