From 48b7892c4e5484a9a7b59a7131a24109dad7a7ff Mon Sep 17 00:00:00 2001 From: bmarkov Date: Sun, 11 Aug 2019 23:34:53 +0300 Subject: [PATCH] Add files via upload --- source/modules/smart.accordion.js | 16 ++++++++ source/modules/smart.breadcrumb.js | 10 +++++ source/modules/smart.button.js | 52 ++++++++++++++++++++++++ source/modules/smart.calendar.js | 14 +++++++ source/modules/smart.card.js | 8 ++++ source/modules/smart.cardview.js | 21 ++++++++++ source/modules/smart.carousel.js | 10 +++++ source/modules/smart.chart.js | 20 +++++++++ source/modules/smart.chip.js | 9 ++++ source/modules/smart.colorpanel.js | 16 ++++++++ source/modules/smart.colorpicker.js | 18 ++++++++ source/modules/smart.combobox.js | 14 +++++++ source/modules/smart.common.js | 33 +++++++++++++++ source/modules/smart.datetimepicker.js | 19 +++++++++ source/modules/smart.dockinglayout.js | 14 +++++++ source/modules/smart.dropdownlist.js | 11 +++++ source/modules/smart.element.js | 9 ++++ source/modules/smart.fileupload.js | 12 ++++++ source/modules/smart.ganttchart.js | 24 +++++++++++ source/modules/smart.gauge.js | 13 ++++++ source/modules/smart.grid.js | 38 +++++++++++++++++ source/modules/smart.input.js | 9 ++++ source/modules/smart.listbox.js | 17 ++++++++ source/modules/smart.listmenu.js | 23 +++++++++++ source/modules/smart.menu.js | 22 ++++++++++ source/modules/smart.multisplitbutton.js | 12 ++++++ source/modules/smart.pager.js | 12 ++++++ source/modules/smart.progressbar.js | 16 ++++++++ source/modules/smart.querybuilder.js | 38 +++++++++++++++++ source/modules/smart.scrollbar.js | 9 ++++ source/modules/smart.slider.js | 14 +++++++ source/modules/smart.sortable.js | 10 +++++ source/modules/smart.splitter.js | 16 ++++++++ source/modules/smart.table.js | 11 +++++ source/modules/smart.tabs.js | 16 ++++++++ source/modules/smart.tank.js | 14 +++++++ source/modules/smart.textbox.js | 47 +++++++++++++++++++++ source/modules/smart.timepicker.js | 13 ++++++ source/modules/smart.toast.js | 9 ++++ source/modules/smart.tooltip.js | 9 ++++ source/modules/smart.tree.js | 13 ++++++ source/modules/smart.validator.js | 9 ++++ source/modules/smart.window.js | 52 ++++++++++++++++++++++++ 43 files changed, 772 insertions(+) create mode 100644 source/modules/smart.accordion.js create mode 100644 source/modules/smart.breadcrumb.js create mode 100644 source/modules/smart.button.js create mode 100644 source/modules/smart.calendar.js create mode 100644 source/modules/smart.card.js create mode 100644 source/modules/smart.cardview.js create mode 100644 source/modules/smart.carousel.js create mode 100644 source/modules/smart.chart.js create mode 100644 source/modules/smart.chip.js create mode 100644 source/modules/smart.colorpanel.js create mode 100644 source/modules/smart.colorpicker.js create mode 100644 source/modules/smart.combobox.js create mode 100644 source/modules/smart.common.js create mode 100644 source/modules/smart.datetimepicker.js create mode 100644 source/modules/smart.dockinglayout.js create mode 100644 source/modules/smart.dropdownlist.js create mode 100644 source/modules/smart.element.js create mode 100644 source/modules/smart.fileupload.js create mode 100644 source/modules/smart.ganttchart.js create mode 100644 source/modules/smart.gauge.js create mode 100644 source/modules/smart.grid.js create mode 100644 source/modules/smart.input.js create mode 100644 source/modules/smart.listbox.js create mode 100644 source/modules/smart.listmenu.js create mode 100644 source/modules/smart.menu.js create mode 100644 source/modules/smart.multisplitbutton.js create mode 100644 source/modules/smart.pager.js create mode 100644 source/modules/smart.progressbar.js create mode 100644 source/modules/smart.querybuilder.js create mode 100644 source/modules/smart.scrollbar.js create mode 100644 source/modules/smart.slider.js create mode 100644 source/modules/smart.sortable.js create mode 100644 source/modules/smart.splitter.js create mode 100644 source/modules/smart.table.js create mode 100644 source/modules/smart.tabs.js create mode 100644 source/modules/smart.tank.js create mode 100644 source/modules/smart.textbox.js create mode 100644 source/modules/smart.timepicker.js create mode 100644 source/modules/smart.toast.js create mode 100644 source/modules/smart.tooltip.js create mode 100644 source/modules/smart.tree.js create mode 100644 source/modules/smart.validator.js create mode 100644 source/modules/smart.window.js diff --git a/source/modules/smart.accordion.js b/source/modules/smart.accordion.js new file mode 100644 index 0000000..9b14fec --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.breadcrumb.js b/source/modules/smart.breadcrumb.js new file mode 100644 index 0000000..fd604f4 --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.button.js b/source/modules/smart.button.js new file mode 100644 index 0000000..f584482 --- /dev/null +++ b/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'; + } +}; diff --git a/source/modules/smart.calendar.js b/source/modules/smart.calendar.js new file mode 100644 index 0000000..d612341 --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.card.js b/source/modules/smart.card.js new file mode 100644 index 0000000..5f630fb --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.cardview.js b/source/modules/smart.cardview.js new file mode 100644 index 0000000..0b6c8ee --- /dev/null +++ b/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 { +} diff --git a/source/modules/smart.carousel.js b/source/modules/smart.carousel.js new file mode 100644 index 0000000..7ff4a60 --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.chart.js b/source/modules/smart.chart.js new file mode 100644 index 0000000..6acde12 --- /dev/null +++ b/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 { +} diff --git a/source/modules/smart.chip.js b/source/modules/smart.chip.js new file mode 100644 index 0000000..0fa9ec8 --- /dev/null +++ b/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'; + } +} \ No newline at end of file diff --git a/source/modules/smart.colorpanel.js b/source/modules/smart.colorpanel.js new file mode 100644 index 0000000..ef092cd --- /dev/null +++ b/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'; + } +} \ No newline at end of file diff --git a/source/modules/smart.colorpicker.js b/source/modules/smart.colorpicker.js new file mode 100644 index 0000000..4afca15 --- /dev/null +++ b/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'; + } +} \ No newline at end of file diff --git a/source/modules/smart.combobox.js b/source/modules/smart.combobox.js new file mode 100644 index 0000000..fd37aa0 --- /dev/null +++ b/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'; + } +} \ No newline at end of file diff --git a/source/modules/smart.common.js b/source/modules/smart.common.js new file mode 100644 index 0000000..3faa417 --- /dev/null +++ b/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{} + + + diff --git a/source/modules/smart.datetimepicker.js b/source/modules/smart.datetimepicker.js new file mode 100644 index 0000000..879fa2c --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.dockinglayout.js b/source/modules/smart.dockinglayout.js new file mode 100644 index 0000000..7a77783 --- /dev/null +++ b/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'; + } +} + diff --git a/source/modules/smart.dropdownlist.js b/source/modules/smart.dropdownlist.js new file mode 100644 index 0000000..e72d2b0 --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.element.js b/source/modules/smart.element.js new file mode 100644 index 0000000..2cb5644 --- /dev/null +++ b/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 {} diff --git a/source/modules/smart.fileupload.js b/source/modules/smart.fileupload.js new file mode 100644 index 0000000..cc8f855 --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.ganttchart.js b/source/modules/smart.ganttchart.js new file mode 100644 index 0000000..b2932dc --- /dev/null +++ b/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'; + } +} + + diff --git a/source/modules/smart.gauge.js b/source/modules/smart.gauge.js new file mode 100644 index 0000000..3e97434 --- /dev/null +++ b/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'; + } +} diff --git a/source/modules/smart.grid.js b/source/modules/smart.grid.js new file mode 100644 index 0000000..fbb1e04 --- /dev/null +++ b/source/modules/smart.grid.js @@ -0,0 +1,38 @@ +import "../smart.element.js"; +import "../smart.scrollbar.js"; +import "../smart.filter.js"; +import "../smart.data.js"; +import "../smart.export.js"; +import "../smart.button.js"; +import "../smart.listbox.js"; +import "../smart.dropdownlist.js"; +import "../smart.pager.js"; +import "../smart.menu.js"; +import "../smart.input.js"; +import "../smart.date.js"; +import "../smart.calendar.js"; +import "../smart.datetimepicker.js"; +import "../smart.gridpanel.js"; +import "../smart.filterbuilder.js"; +import "../smart.grid.column.js"; +import "../smart.grid.row.js"; +import "../smart.grid.cell.js"; +import "../smart.grid.menu.js"; +import "../smart.grid.filter.js"; +import "../smart.grid.sort.js"; +import "../smart.grid.group.js"; +import "../smart.grid.select.js"; +import "../smart.grid.edit.js"; +import "../smart.grid.tree.js"; +import "../smart.grid.core.js" + +export class smartGrid extends Smart.Component { + get name() { + return 'smartGrid'; + } +} + +export class smartDataAdapter extends Smart.DataAdapter { + +} + diff --git a/source/modules/smart.input.js b/source/modules/smart.input.js new file mode 100644 index 0000000..69b5dad --- /dev/null +++ b/source/modules/smart.input.js @@ -0,0 +1,9 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.input.js"; + +export class smartInput extends Smart.Component { + get name() { + return 'smartInput'; + } +} diff --git a/source/modules/smart.listbox.js b/source/modules/smart.listbox.js new file mode 100644 index 0000000..0f3b7c7 --- /dev/null +++ b/source/modules/smart.listbox.js @@ -0,0 +1,17 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.listbox.js"; + +export class smartListBox extends Smart.Component { + get name() { + return 'smartListBox'; + } +} + +export class smartListItem extends Smart.Component { + get name() { + return 'smartListItem'; + } +} + diff --git a/source/modules/smart.listmenu.js b/source/modules/smart.listmenu.js new file mode 100644 index 0000000..6938ec6 --- /dev/null +++ b/source/modules/smart.listmenu.js @@ -0,0 +1,23 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.menu.js"; +import "../smart.listmenu.js"; + +export class smartMenuItem extends Smart.Component { + get name() { + return 'smartMenuItem'; + } +} + +export class smartMenuItemsGroup extends Smart.Component { + get name() { + return 'smartMenuItemsGroup'; + } +} + +export class smartListMenu extends Smart.Component { + get name() { + return 'smartListMenu'; + } +} diff --git a/source/modules/smart.menu.js b/source/modules/smart.menu.js new file mode 100644 index 0000000..f941a86 --- /dev/null +++ b/source/modules/smart.menu.js @@ -0,0 +1,22 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.menu.js"; + +export class smartMenuItem extends Smart.Component { + get name() { + return 'smartMenuItem'; + } +} + +export class smartMenuItemsGroup extends Smart.Component { + get name() { + return 'smartMenuItemsGroup'; + } +} + +export class smartMenu extends Smart.Component { + get name() { + return 'smartMenu'; + } +} diff --git a/source/modules/smart.multisplitbutton.js b/source/modules/smart.multisplitbutton.js new file mode 100644 index 0000000..7cd1d58 --- /dev/null +++ b/source/modules/smart.multisplitbutton.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.multisplitbutton.js"; + +export class smartMultiSplitButton extends Smart.Component { + get name() { + return 'smartMultiSplitButton'; + } +} \ No newline at end of file diff --git a/source/modules/smart.pager.js b/source/modules/smart.pager.js new file mode 100644 index 0000000..2b46263 --- /dev/null +++ b/source/modules/smart.pager.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.pager.js"; + +export class smartPager extends Smart.Component { + get name() { + return 'smartPager'; + } +} diff --git a/source/modules/smart.progressbar.js b/source/modules/smart.progressbar.js new file mode 100644 index 0000000..1c9a43b --- /dev/null +++ b/source/modules/smart.progressbar.js @@ -0,0 +1,16 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.draw.js"; +import "../smart.progressbar.js"; + +export class smartCircularProgressBar extends Smart.Component { + get name() { + return 'smartCircularProgressBar'; + } +} + +export class smartProgressBar extends Smart.Component { + get name() { + return 'smartProgressBar'; + } +} \ No newline at end of file diff --git a/source/modules/smart.querybuilder.js b/source/modules/smart.querybuilder.js new file mode 100644 index 0000000..6b95273 --- /dev/null +++ b/source/modules/smart.querybuilder.js @@ -0,0 +1,38 @@ +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"; +import "../smart.numeric.js"; +import "../smart.math.js"; +import "../smart.complex.js"; +import "../smart.textbox.js"; +import "../smart.maskedtextbox.js"; +import "../smart.passwordtextbox.js"; +import "../smart.multilinetextbox.js"; +import "../smart.numerictextbox.js"; +import "../smart.date.js"; +import "../smart.input.js"; +import "../smart.draw.js"; +import "../smart.timepicker.js"; +import "../smart.tooltip.js"; +import "../smart.calendar.js"; +import "../smart.datetimepicker.js"; +import "../smart.menu.js"; +import "../smart.filterbuilder.js"; + +export class smartQueryBuilder extends Smart.Component { + get name() { + return 'smartQueryBuilder'; + } +} + +export class smartFilterBuilder extends Smart.Component { + get name() { + return 'smartFilterBuilder'; + } +} + diff --git a/source/modules/smart.scrollbar.js b/source/modules/smart.scrollbar.js new file mode 100644 index 0000000..103442a --- /dev/null +++ b/source/modules/smart.scrollbar.js @@ -0,0 +1,9 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; + +export class smartScrollBar extends Smart.Component { + get name() { + return 'smartScrollBar'; + } +} diff --git a/source/modules/smart.slider.js b/source/modules/smart.slider.js new file mode 100644 index 0000000..1aa1bb4 --- /dev/null +++ b/source/modules/smart.slider.js @@ -0,0 +1,14 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.tickintervalhandler.js"; +import "../smart.tank.js"; +import "../smart.slider.js"; +import "../smart.math.js"; +import "../smart.numeric.js"; + +export class smartSlider extends Smart.Component { + get name() { + return 'smartSlider'; + } +} diff --git a/source/modules/smart.sortable.js b/source/modules/smart.sortable.js new file mode 100644 index 0000000..193a969 --- /dev/null +++ b/source/modules/smart.sortable.js @@ -0,0 +1,10 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.sortable.js"; + +export class smartSortable extends Smart.Component { + get name() { + return 'smartSortable'; + } +} diff --git a/source/modules/smart.splitter.js b/source/modules/smart.splitter.js new file mode 100644 index 0000000..a99180f --- /dev/null +++ b/source/modules/smart.splitter.js @@ -0,0 +1,16 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.splitter.js"; + +export class smartSplitter extends Smart.Component { + get name() { + return 'smartSplitter'; + } +} + +export class smartSplitterItem extends Smart.Component { + get name() { + return 'smartSplitterItem'; + } +} \ No newline at end of file diff --git a/source/modules/smart.table.js b/source/modules/smart.table.js new file mode 100644 index 0000000..0930ba7 --- /dev/null +++ b/source/modules/smart.table.js @@ -0,0 +1,11 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.data.js"; +import "../smart.table.js"; + +export class smartTable extends Smart.Component { + get name() { + return 'smartTable'; + } +} \ No newline at end of file diff --git a/source/modules/smart.tabs.js b/source/modules/smart.tabs.js new file mode 100644 index 0000000..cbfb39e --- /dev/null +++ b/source/modules/smart.tabs.js @@ -0,0 +1,16 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.tabs.js"; + +export class smartTabs extends Smart.Component { + get name() { + return 'smartTabs'; + } +} + +export class smartTabItem extends Smart.Component { + get name() { + return 'smartTabItem'; + } +} \ No newline at end of file diff --git a/source/modules/smart.tank.js b/source/modules/smart.tank.js new file mode 100644 index 0000000..dd9ebfd --- /dev/null +++ b/source/modules/smart.tank.js @@ -0,0 +1,14 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.math.js"; +import "../smart.numeric.js"; +import "../smart.tickintervalhandler.js"; +import "../smart.tank.js"; + + +export class smartTank extends Smart.Component { + get name() { + return 'smartTank'; + } +} \ No newline at end of file diff --git a/source/modules/smart.textbox.js b/source/modules/smart.textbox.js new file mode 100644 index 0000000..fe8e323 --- /dev/null +++ b/source/modules/smart.textbox.js @@ -0,0 +1,47 @@ +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"; +import "../smart.tooltip.js"; +import "../smart.numeric.js"; +import "../smart.math.js"; +import "../smart.complex.js"; +import "../smart.textbox.js"; +import "../smart.maskedtextbox.js"; +import "../smart.passwordtextbox.js"; +import "../smart.multilinetextbox.js"; +import "../smart.numerictextbox.js"; + +export class smartTextBox extends Smart.Component { + get name() { + return 'smartTextBox'; + } +} + +export class smartMaskedTextBox extends Smart.Component { + get name() { + return 'smartMaskedTextBox'; + } +} + +export class smartPasswordTextBox extends Smart.Component { + get name() { + return 'smartPasswordTextBox'; + } +} + +export class smartNumericTextBox extends Smart.Component { + get name() { + return 'smartNumericTextBox'; + } +} + +export class smartMultilineTextBox extends Smart.Component { + get name() { + return 'smartMultilineTextBox'; + } +} \ No newline at end of file diff --git a/source/modules/smart.timepicker.js b/source/modules/smart.timepicker.js new file mode 100644 index 0000000..a722397 --- /dev/null +++ b/source/modules/smart.timepicker.js @@ -0,0 +1,13 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.draw.js"; +import "../smart.math.js"; +import "../smart.numeric.js"; +import "../smart.tickintervalhandler.js"; +import "../smart.timepicker.js"; + +export class smartTimePicker extends Smart.Component { + get name() { + return 'smartTimePicker'; + } +} \ No newline at end of file diff --git a/source/modules/smart.toast.js b/source/modules/smart.toast.js new file mode 100644 index 0000000..a0553d5 --- /dev/null +++ b/source/modules/smart.toast.js @@ -0,0 +1,9 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.toast.js"; + +export class smartToast extends Smart.Component { + get name() { + return 'smartToast'; + } +} \ No newline at end of file diff --git a/source/modules/smart.tooltip.js b/source/modules/smart.tooltip.js new file mode 100644 index 0000000..a812bbf --- /dev/null +++ b/source/modules/smart.tooltip.js @@ -0,0 +1,9 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.tooltip.js"; + +export class smartTooltip extends Smart.Component { + get name() { + return 'smartTooltip'; + } +} \ No newline at end of file diff --git a/source/modules/smart.tree.js b/source/modules/smart.tree.js new file mode 100644 index 0000000..1f7af70 --- /dev/null +++ b/source/modules/smart.tree.js @@ -0,0 +1,13 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.radiobutton.js"; +import "../smart.checkbox.js"; +import "../smart.scrollbar.js"; +import "../smart.menu.js"; +import "../smart.tree.js"; + +export class smartTree extends Smart.Component { + get name() { + return 'smartTree'; + } +} \ No newline at end of file diff --git a/source/modules/smart.validator.js b/source/modules/smart.validator.js new file mode 100644 index 0000000..dbb06a8 --- /dev/null +++ b/source/modules/smart.validator.js @@ -0,0 +1,9 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.validator.js"; + +export class smartValidator extends Smart.Utilities.Validator { + get name() { + return 'smartValidator'; + } +} \ No newline at end of file diff --git a/source/modules/smart.window.js b/source/modules/smart.window.js new file mode 100644 index 0000000..67e461d --- /dev/null +++ b/source/modules/smart.window.js @@ -0,0 +1,52 @@ +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.window.js"; + +export class smartWindow extends Smart.Component { + get name() { + return 'smartWindow'; + } +} + +export class smartDialogWindow extends Smart.Component { + get name() { + return 'smartDialogWindow'; + } +} + +export class smartAlertWindow extends Smart.Component { + get name() { + return 'smartAlertWindow'; + } +} + +export class smartPromptWindow extends Smart.Component { + get name() { + return 'smartPromptWindow'; + } +} + +export class smartMultiLinePromptWindow extends Smart.Component { + get name() { + return 'smartMultiLinePromptWindow'; + } +} + +export class smartProgressWindow extends Smart.Component { + get name() { + return 'smartProgressWindow'; + } +} + +export class smartTabsWindow extends Smart.Component { + get name() { + return 'smartTabsWindow'; + } +} + +export class smartWaitWindow extends Smart.Component { + get name() { + return 'smartWaitWindow'; + } +} +