Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarkov committed Aug 11, 2019
1 parent da081f7 commit 48b7892
Show file tree
Hide file tree
Showing 43 changed files with 772 additions and 0 deletions.
16 changes: 16 additions & 0 deletions source/modules/smart.accordion.js
@@ -0,0 +1,16 @@
import "../smart.element.js";
import "../smart.scrollbar.js";
import "../smart.button.js";
import "../smart.accordion.js";

export class smartAccordion extends Smart.Component {
get name() {
return 'smartAccordion';
}
}

export class smartAccordionItem extends Smart.Component {
get name() {
return 'smartAccordionItem';
}
}
10 changes: 10 additions & 0 deletions source/modules/smart.breadcrumb.js
@@ -0,0 +1,10 @@
import "../smart.element.js";
import "../smart.scrollbar.js";
import "../smart.button.js";
import "../smart.breadcrumb.js";

export class smartBreadCrumb extends Smart.Component {
get name() {
return 'smartBreadCrumb';
}
}
52 changes: 52 additions & 0 deletions source/modules/smart.button.js
@@ -0,0 +1,52 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.powerbutton.js";
import "../smart.radiobutton.js";
import "../smart.checkbox.js";
import "../smart.dropdownbutton.js";
import "../smart.switchbutton.js";

export class smartButton extends Smart.Component {
get name() {
return 'smartButton';
}
}

export class smartToggleButton extends Smart.Component {
get name() {
return 'smartToggleButton';
}
}

export class smartRepeatButton extends Smart.Component {
get name() {
return 'smartRepeatButton';
}
}

export class smartSwitchButton extends Smart.Component {
get name() {
return 'smartSwitchButton';
}
}

export class smartCheckBox extends Smart.Component {
get name() {
return 'smartCheckBox';
}
};
export class smartPowerButton extends Smart.Component{
get name() {
return 'smartPowerButton';
}
};
export class smartRadioButton extends Smart.Component{
get name() {
return 'smartRadioButton';
}
};
export class smartDropDownButton extends Smart.Component{
get name() {
return 'smartDropDownButton';
}
};
14 changes: 14 additions & 0 deletions source/modules/smart.calendar.js
@@ -0,0 +1,14 @@
import "../smart.element.js";
import "../smart.scrollbar.js";
import "../smart.button.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.date.js";
import "../smart.tooltip.js";
import "../smart.calendar.js";

export class smartCalendar extends Smart.Component {
get name() {
return 'smartCalendar';
}
}
8 changes: 8 additions & 0 deletions source/modules/smart.card.js
@@ -0,0 +1,8 @@
import "../smart.element.js";
import "../smart.card.js";

export class smartCard extends Smart.Component {
get name() {
return 'smartCard';
}
}
21 changes: 21 additions & 0 deletions source/modules/smart.cardview.js
@@ -0,0 +1,21 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.data.js";
import "../smart.date.js";
import "../smart.listbox.js";
import "../smart.input.js";
import "../smart.dropdownlist.js";
import "../smart.calendar.js";
import "../smart.datetimepicker.js";
import "../smart.switchbutton.js";
import "../smart.cardview.js";

export class smartCardView extends Smart.Component {
get name() {
return 'smartCardView';
}
}

export class smartDataAdapter extends Smart.DataAdapter {
}
10 changes: 10 additions & 0 deletions source/modules/smart.carousel.js
@@ -0,0 +1,10 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.carousel.js";

export class smartCarousel extends Smart.Component {
get name() {
return 'smartCarousel';
}
}
20 changes: 20 additions & 0 deletions source/modules/smart.chart.js
@@ -0,0 +1,20 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.data.js";
import "../smart.draw.js";
import "../smart.chart.core.js";
import "../smart.chart.rangeselector.js";
import "../smart.chart.api.js";
import "../smart.chart.waterfall.js";
import "../smart.chart.annotations.js";
import "../smart.export.js";

export class smartChart extends Smart.Component {
get name() {
return 'smartChart';
}
}

export class smartDataAdapter extends Smart.DataAdapter {
}
9 changes: 9 additions & 0 deletions source/modules/smart.chip.js
@@ -0,0 +1,9 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.chip.js";

export class smartChip extends Smart.Component {
get name() {
return 'smartChip';
}
}
16 changes: 16 additions & 0 deletions source/modules/smart.colorpanel.js
@@ -0,0 +1,16 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.draw.js";
import "../smart.scrollbar.js";
import "../smart.checkbox.js";
import "../smart.radiobutton.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.tooltip.js";
import "../smart.colorpanel.js";

export class smartColorPanel extends Smart.Component {
get name() {
return 'smartColorPanel';
}
}
18 changes: 18 additions & 0 deletions source/modules/smart.colorpicker.js
@@ -0,0 +1,18 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.draw.js";
import "../smart.checkbox.js";
import "../smart.radiobutton.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.tooltip.js";
import "../smart.dropdownbutton.js";
import "../smart.colorpanel.js";
import "../smart.colorpicker.js";

export class smartColorPicker extends Smart.Component {
get name() {
return 'smartColorPicker';
}
}
14 changes: 14 additions & 0 deletions source/modules/smart.combobox.js
@@ -0,0 +1,14 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.checkbox.js";
import "../smart.radiobutton.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.combobox.js";

export class smartComboBox extends Smart.Component {
get name() {
return 'smartComboBox';
}
}
33 changes: 33 additions & 0 deletions source/modules/smart.common.js
@@ -0,0 +1,33 @@
import "../smart.element.js"
import "../smart.format.js"
import "../smart.date.js"
import "../smart.numeric.js"
import "../smart.complex.js"
import "../smart.draw.js"
import "../smart.filter.js"
import "../smart.export.js";
import "../smart.data.js"

export class ConditionalFormatter extends Smart.Utilities.ConditionalFormatter {}
export class TimeSpan extends Smart.Utilities.TimeSpan{}
export class DateTime extends Smart.Utilities.DateTime{}
export class DataAdapter extends Smart.DataAdapter{}
export class SvgRenderer extends Smart.SvgRenderer{}
export class HTML5Renderer extends Smart.HTML5Renderer{}
export class Plot extends Smart.Plot{}
export class Complex extends Smart.Complex{}
export class FilterGroup extends Smart.Utilities.FilterGroup{}
export class StringFilter extends Smart.Utilities.StringFilter{}
export class BooleanFilter extends Smart.Utilities.BooleanFilter{}
export class NumericFilter extends Smart.Utilities.NumericFilter{}
export class DateFilter extends Smart.Utilities.DateFilter{}
export class CustomFilter extends Smart.Utilities.CustomFilter{}
export class DataExporter extends Smart.Utilities.DataExporter{}
export class NumericProcessor extends Smart.Utilities.NumericProcessor{}
export class IntegerNumericProcessor extends Smart.Utilities.IntegerNumericProcessor{}
export class DecimalNumericProcessor extends Smart.Utilities.DecimalNumericProcessor{}
export class ComplexNumericProcessor extends Smart.Utilities.ComplexNumericProcessor{}
export class NumberRenderer extends Smart.Utilities.NumberRenderer{}



19 changes: 19 additions & 0 deletions source/modules/smart.datetimepicker.js
@@ -0,0 +1,19 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.date.js";
import "../smart.scrollbar.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.draw.js";
import "../smart.tooltip.js";
import "../smart.timepicker.js";
import "../smart.calendar.js";
import "../smart.numeric.js";
import "../smart.math.js";
import "../smart.datetimepicker.js";

export class smartDateTimePicker extends Smart.Component {
get name() {
return 'smartDateTimePicker';
}
}
14 changes: 14 additions & 0 deletions source/modules/smart.dockinglayout.js
@@ -0,0 +1,14 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.splitter.js";
import "../smart.window.js";
import "../smart.tabs.js";
import "../smart.dockinglayout.js";

export class smartDockingLayout extends Smart.Component {
get name() {
return 'smartDockingLayout';
}
}

11 changes: 11 additions & 0 deletions source/modules/smart.dropdownlist.js
@@ -0,0 +1,11 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";

export class smartDropDownList extends Smart.Component {
get name() {
return 'smartDropDownList';
}
}
9 changes: 9 additions & 0 deletions source/modules/smart.element.js
@@ -0,0 +1,9 @@
import "../smart.element.js"

export class BaseElement extends Smart.BaseElement {}
export class Component extends Smart.Component {}
export class Import extends Smart.Import {}
export class Observable extends Smart.Observable {}
export class ObservableArray extends Smart.ObservableArray {}
export class Utilities extends Smart.Utilities {}
export class App extends Smart.App {}
12 changes: 12 additions & 0 deletions source/modules/smart.fileupload.js
@@ -0,0 +1,12 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.fileupload.js";

export class smartFileUpload extends Smart.Component {
get name() {
return 'smartFileUpload';
}
}
24 changes: 24 additions & 0 deletions source/modules/smart.ganttchart.js
@@ -0,0 +1,24 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.date.js";
import "../smart.scrollbar.js";
import "../smart.listbox.js";
import "../smart.dropdownlist.js";
import "../smart.draw.js";
import "../smart.tooltip.js";
import "../smart.timepicker.js";
import "../smart.calendar.js";
import "../smart.menu.js";
import "../smart.tree.js";
import "../smart.export.js";
import "../smart.splitter.js";
import "../smart.window.js";
import "../smart.ganttchart.js";

export class smartGanttChart extends Smart.Component {
get name() {
return 'smartGanttChart';
}
}


13 changes: 13 additions & 0 deletions source/modules/smart.gauge.js
@@ -0,0 +1,13 @@
import "../smart.element.js";
import "../smart.button.js";
import "../smart.scrollbar.js";
import "../smart.draw.js";
import "../smart.tickintervalhandler.js";
import "../smart.tank.js";
import "../smart.gauge.js";

export class smartGauge extends Smart.Component {
get name() {
return 'smartGauge';
}
}

0 comments on commit 48b7892

Please sign in to comment.