From 1a599eb486b895d7be162a10837d098a057d9bf9 Mon Sep 17 00:00:00 2001 From: bmarkov Date: Fri, 11 Oct 2019 19:44:58 +0300 Subject: [PATCH] Add files via upload --- source/modules/smart.accordion.js | 32 +++---- source/modules/smart.breadcrumb.js | 20 ++--- source/modules/smart.button.js | 104 +++++++++++----------- source/modules/smart.calendar.js | 28 +++--- source/modules/smart.card.js | 16 ++-- source/modules/smart.cardview.js | 70 +++++++-------- source/modules/smart.carousel.js | 20 ++--- source/modules/smart.chart.js | 40 ++++----- source/modules/smart.checkbox.js | 52 +++++++++++ source/modules/smart.chip.js | 16 ++-- source/modules/smart.colorpanel.js | 30 +++---- source/modules/smart.colorpicker.js | 34 ++++---- source/modules/smart.combobox.js | 26 +++--- source/modules/smart.common.js | 66 +++++++------- source/modules/smart.datetimepicker.js | 38 ++++---- source/modules/smart.dockinglayout.js | 28 +++--- source/modules/smart.dropdownbutton.js | 52 +++++++++++ source/modules/smart.dropdownlist.js | 22 ++--- source/modules/smart.element.js | 18 ++-- source/modules/smart.fileupload.js | 25 +++--- source/modules/smart.ganttchart.js | 48 +++++------ source/modules/smart.gauge.js | 31 ++++--- source/modules/smart.grid.js | 96 +++++++++++---------- source/modules/smart.input.js | 18 ++-- source/modules/smart.listbox.js | 34 ++++---- source/modules/smart.listmenu.js | 46 +++++----- source/modules/smart.maskedtextbox.js | 47 ++++++++++ source/modules/smart.menu.js | 44 +++++----- source/modules/smart.multisplitbutton.js | 22 ++--- source/modules/smart.numerictextbox.js | 47 ++++++++++ source/modules/smart.pager.js | 24 +++--- source/modules/smart.passwordtextbox.js | 47 ++++++++++ source/modules/smart.progressbar.js | 30 +++---- source/modules/smart.querybuilder.js | 76 ++++++++-------- source/modules/smart.radiobutton.js | 52 +++++++++++ source/modules/smart.scrollbar.js | 18 ++-- source/modules/smart.slider.js | 29 ++++--- source/modules/smart.sortable.js | 20 ++--- source/modules/smart.splitter.js | 30 +++---- source/modules/smart.switchbutton.js | 52 +++++++++++ source/modules/smart.table.js | 20 ++--- source/modules/smart.tabs.js | 30 +++---- source/modules/smart.tank.js | 27 +++--- source/modules/smart.textbox.js | 92 ++++++++++---------- source/modules/smart.timepicker.js | 24 +++--- source/modules/smart.toast.js | 16 ++-- source/modules/smart.tooltip.js | 16 ++-- source/modules/smart.tree.js | 24 +++--- source/modules/smart.validator.js | 16 ++-- source/modules/smart.window.js | 105 ++++++++++++----------- 50 files changed, 1141 insertions(+), 777 deletions(-) create mode 100644 source/modules/smart.checkbox.js create mode 100644 source/modules/smart.dropdownbutton.js create mode 100644 source/modules/smart.maskedtextbox.js create mode 100644 source/modules/smart.numerictextbox.js create mode 100644 source/modules/smart.passwordtextbox.js create mode 100644 source/modules/smart.radiobutton.js create mode 100644 source/modules/smart.switchbutton.js diff --git a/source/modules/smart.accordion.js b/source/modules/smart.accordion.js index 9ae9d82e..9b14fec0 100644 --- a/source/modules/smart.accordion.js +++ b/source/modules/smart.accordion.js @@ -1,16 +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'; - } -} +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 index ca78fee1..fd604f41 100644 --- a/source/modules/smart.breadcrumb.js +++ b/source/modules/smart.breadcrumb.js @@ -1,10 +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'; - } -} +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 index 49dd88ad..f584482e 100644 --- a/source/modules/smart.button.js +++ b/source/modules/smart.button.js @@ -1,52 +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'; - } -}; +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 index 27b3631e..d6123413 100644 --- a/source/modules/smart.calendar.js +++ b/source/modules/smart.calendar.js @@ -1,14 +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'; - } -} +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 index 62875592..5f630fb7 100644 --- a/source/modules/smart.card.js +++ b/source/modules/smart.card.js @@ -1,8 +1,8 @@ -import "../smart.element.js"; -import "../smart.card.js"; - -export class smartCard extends Smart.Component { - get name() { - return 'smartCard'; - } -} +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 index c62fb1f3..a324f454 100644 --- a/source/modules/smart.cardview.js +++ b/source/modules/smart.cardview.js @@ -1,35 +1,35 @@ -import "../smart.element.js"; -import "../smart.button.js"; -import "../smart.card.js"; -import "../smart.carousel.js"; -import "../smart.checkbox.js"; -import "../smart.sortable.js"; -import "../smart.date.js"; -import "../smart.draw.js"; -import "../smart.math.js"; -import "../smart.numeric.js"; -import "../smart.dropdownlist.js"; -import "../smart.listbox.js"; -import "../smart.tooltip.js"; -import "../smart.calendar.js"; -import "../smart.timepicker.js"; -import "../smart.datetimepicker.js"; -import "../smart.filter.js"; -import "../smart.input.js"; -import "../smart.complex.js"; -import "../smart.numerictextbox.js"; -import "../smart.gridpanel.js"; -import "../smart.data.js"; -import "../smart.scrollbar.js"; -import "../smart.switchbutton.js"; -import "../smart.window.js"; -import "../smart.cardview.js"; - -export class smartCardView extends Smart.Component { - get name() { - return 'smartCardView'; - } -} - -export class smartDataAdapter extends Smart.DataAdapter { -} +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.card.js"; +import "../smart.carousel.js"; +import "../smart.checkbox.js"; +import "../smart.sortable.js"; +import "../smart.date.js"; +import "../smart.draw.js"; +import "../smart.math.js"; +import "../smart.numeric.js"; +import "../smart.dropdownlist.js"; +import "../smart.listbox.js"; +import "../smart.tooltip.js"; +import "../smart.calendar.js"; +import "../smart.timepicker.js"; +import "../smart.datetimepicker.js"; +import "../smart.filter.js"; +import "../smart.input.js"; +import "../smart.complex.js"; +import "../smart.numerictextbox.js"; +import "../smart.gridpanel.js"; +import "../smart.data.js"; +import "../smart.scrollbar.js"; +import "../smart.switchbutton.js"; +import "../smart.window.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 index 47e394e7..7ff4a60d 100644 --- a/source/modules/smart.carousel.js +++ b/source/modules/smart.carousel.js @@ -1,10 +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'; - } -} +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 index e905bc5d..6acde12f 100644 --- a/source/modules/smart.chart.js +++ b/source/modules/smart.chart.js @@ -1,20 +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 { -} +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.checkbox.js b/source/modules/smart.checkbox.js new file mode 100644 index 00000000..f584482e --- /dev/null +++ b/source/modules/smart.checkbox.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.chip.js b/source/modules/smart.chip.js index b9fc39be..0fa9ec89 100644 --- a/source/modules/smart.chip.js +++ b/source/modules/smart.chip.js @@ -1,9 +1,9 @@ -import "../smart.element.js"; -import "../smart.button.js"; -import "../smart.chip.js"; - -export class smartChip extends Smart.Component { - get name() { - return 'smartChip'; - } +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 index ccfb5461..ef092cdc 100644 --- a/source/modules/smart.colorpanel.js +++ b/source/modules/smart.colorpanel.js @@ -1,16 +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'; - } +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 index 46899356..4afca158 100644 --- a/source/modules/smart.colorpicker.js +++ b/source/modules/smart.colorpicker.js @@ -1,18 +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'; - } +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 index f0faf926..fd37aa03 100644 --- a/source/modules/smart.combobox.js +++ b/source/modules/smart.combobox.js @@ -1,14 +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'; - } +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 index 6eaad369..3faa4176 100644 --- a/source/modules/smart.common.js +++ b/source/modules/smart.common.js @@ -1,33 +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{} - - - +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 index df87248f..879fa2ca 100644 --- a/source/modules/smart.datetimepicker.js +++ b/source/modules/smart.datetimepicker.js @@ -1,19 +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'; - } -} +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 index 7561a372..7a77783b 100644 --- a/source/modules/smart.dockinglayout.js +++ b/source/modules/smart.dockinglayout.js @@ -1,14 +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'; - } -} - +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.dropdownbutton.js b/source/modules/smart.dropdownbutton.js new file mode 100644 index 00000000..f584482e --- /dev/null +++ b/source/modules/smart.dropdownbutton.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.dropdownlist.js b/source/modules/smart.dropdownlist.js index e7681815..e72d2b08 100644 --- a/source/modules/smart.dropdownlist.js +++ b/source/modules/smart.dropdownlist.js @@ -1,11 +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'; - } -} +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 index 38674abb..2cb56447 100644 --- a/source/modules/smart.element.js +++ b/source/modules/smart.element.js @@ -1,9 +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 {} +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 index 021623fe..dfdca39a 100644 --- a/source/modules/smart.fileupload.js +++ b/source/modules/smart.fileupload.js @@ -1,12 +1,13 @@ -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'; - } -} +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.listbox.js"; +import "../smart.dropdownlist.js"; +import "../smart.progressbar.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 index 420d951a..b2932dc3 100644 --- a/source/modules/smart.ganttchart.js +++ b/source/modules/smart.ganttchart.js @@ -1,24 +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'; - } -} - - +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 index d320383c..c0b7b7b2 100644 --- a/source/modules/smart.gauge.js +++ b/source/modules/smart.gauge.js @@ -1,13 +1,18 @@ -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'; - } -} +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.draw.js"; +import "../smart.tickintervalhandler.js"; +import "../smart.math.js"; +import "../smart.complex.js"; +import "../smart.date.js"; +import "../smart.numeric.js"; +import "../smart.numerictextbox.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 index 48084645..1bc1cc1d 100644 --- a/source/modules/smart.grid.js +++ b/source/modules/smart.grid.js @@ -1,45 +1,51 @@ -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.numeric.js"; -import "../smart.calendar.js"; -import "../smart.datetimepicker.js"; -import "../smart.gridpanel.js"; -import "../smart.filterbuilder.js"; -import "../smart.filterpanel.js"; -import "../smart.grid.column.js"; -import "../smart.grid.row.js"; -import "../smart.grid.cell.js"; -import "../smart.grid.menu.js"; -import "../smart.grid.pager.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.export.js"; -import "../smart.grid.resize.js"; -import "../smart.grid.chart.js"; - -import "../smart.grid.core.js" - -export class smartGrid extends Smart.Component { - get name() { - return 'smartGrid'; - } -} - -export class smartDataAdapter extends Smart.DataAdapter { - -} - +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.tree.js"; +import "../smart.tooltip.js"; +import "../smart.input.js"; +import "../smart.date.js"; +import "../smart.math.js"; +import "../smart.complex.js"; +import "../smart.numeric.js"; +import "../smart.numerictextbox.js"; +import "../smart.calendar.js"; +import "../smart.timepicker.js"; +import "../smart.draw.js"; +import "../smart.datetimepicker.js"; +import "../smart.gridpanel.js"; +import "../smart.filterbuilder.js"; +import "../smart.filterpanel.js"; +import "../smart.grid.column.js"; +import "../smart.grid.row.js"; +import "../smart.grid.cell.js"; +import "../smart.grid.resize.js"; +import "../smart.grid.menu.js"; +import "../smart.grid.pager.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.export.js"; +import "../smart.grid.chart.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 index 0744d319..69b5dad6 100644 --- a/source/modules/smart.input.js +++ b/source/modules/smart.input.js @@ -1,9 +1,9 @@ -import "../smart.element.js"; -import "../smart.button.js"; -import "../smart.input.js"; - -export class smartInput extends Smart.Component { - get name() { - return 'smartInput'; - } -} +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 index 0402006b..0f3b7c70 100644 --- a/source/modules/smart.listbox.js +++ b/source/modules/smart.listbox.js @@ -1,17 +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'; - } -} - +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 index 95163430..6938ec62 100644 --- a/source/modules/smart.listmenu.js +++ b/source/modules/smart.listmenu.js @@ -1,23 +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'; - } -} +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.maskedtextbox.js b/source/modules/smart.maskedtextbox.js new file mode 100644 index 00000000..fe8e3234 --- /dev/null +++ b/source/modules/smart.maskedtextbox.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.menu.js b/source/modules/smart.menu.js index 643fdbae..f941a862 100644 --- a/source/modules/smart.menu.js +++ b/source/modules/smart.menu.js @@ -1,22 +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'; - } -} +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 index 14541c5e..7cd1d585 100644 --- a/source/modules/smart.multisplitbutton.js +++ b/source/modules/smart.multisplitbutton.js @@ -1,12 +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'; - } +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.numerictextbox.js b/source/modules/smart.numerictextbox.js new file mode 100644 index 00000000..fe8e3234 --- /dev/null +++ b/source/modules/smart.numerictextbox.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.pager.js b/source/modules/smart.pager.js index 5506c1c3..2b462634 100644 --- a/source/modules/smart.pager.js +++ b/source/modules/smart.pager.js @@ -1,12 +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'; - } -} +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.passwordtextbox.js b/source/modules/smart.passwordtextbox.js new file mode 100644 index 00000000..fe8e3234 --- /dev/null +++ b/source/modules/smart.passwordtextbox.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.progressbar.js b/source/modules/smart.progressbar.js index 69e6de6b..1c9a43ba 100644 --- a/source/modules/smart.progressbar.js +++ b/source/modules/smart.progressbar.js @@ -1,16 +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'; - } +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 index ea99f733..6b95273e 100644 --- a/source/modules/smart.querybuilder.js +++ b/source/modules/smart.querybuilder.js @@ -1,38 +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'; - } -} - +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.radiobutton.js b/source/modules/smart.radiobutton.js new file mode 100644 index 00000000..f584482e --- /dev/null +++ b/source/modules/smart.radiobutton.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.scrollbar.js b/source/modules/smart.scrollbar.js index 64cd10f1..103442a7 100644 --- a/source/modules/smart.scrollbar.js +++ b/source/modules/smart.scrollbar.js @@ -1,9 +1,9 @@ -import "../smart.element.js"; -import "../smart.button.js"; -import "../smart.scrollbar.js"; - -export class smartScrollBar extends Smart.Component { - get name() { - return 'smartScrollBar'; - } -} +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 index 9a582893..701e2050 100644 --- a/source/modules/smart.slider.js +++ b/source/modules/smart.slider.js @@ -1,14 +1,15 @@ -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'; - } -} +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"; +import "../smart.date.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 index 2ced8d83..193a969e 100644 --- a/source/modules/smart.sortable.js +++ b/source/modules/smart.sortable.js @@ -1,10 +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'; - } -} +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 index 8d4ce00f..a99180f2 100644 --- a/source/modules/smart.splitter.js +++ b/source/modules/smart.splitter.js @@ -1,16 +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'; - } +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.switchbutton.js b/source/modules/smart.switchbutton.js new file mode 100644 index 00000000..f584482e --- /dev/null +++ b/source/modules/smart.switchbutton.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.table.js b/source/modules/smart.table.js index 73728269..0930ba7c 100644 --- a/source/modules/smart.table.js +++ b/source/modules/smart.table.js @@ -1,11 +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'; - } +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 index f55f5506..cbfb39e5 100644 --- a/source/modules/smart.tabs.js +++ b/source/modules/smart.tabs.js @@ -1,16 +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'; - } +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 index 2920fb83..e2597338 100644 --- a/source/modules/smart.tank.js +++ b/source/modules/smart.tank.js @@ -1,14 +1,15 @@ -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'; - } +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.scrollbar.js"; +import "../smart.math.js"; +import "../smart.numeric.js"; +import "../smart.date.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 index 577359ca..fe8e3234 100644 --- a/source/modules/smart.textbox.js +++ b/source/modules/smart.textbox.js @@ -1,47 +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'; - } +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 index 9b929a4f..a7223977 100644 --- a/source/modules/smart.timepicker.js +++ b/source/modules/smart.timepicker.js @@ -1,13 +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'; - } +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 index a967768b..a0553d53 100644 --- a/source/modules/smart.toast.js +++ b/source/modules/smart.toast.js @@ -1,9 +1,9 @@ -import "../smart.element.js"; -import "../smart.button.js"; -import "../smart.toast.js"; - -export class smartToast extends Smart.Component { - get name() { - return 'smartToast'; - } +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 index 515229c6..a812bbf2 100644 --- a/source/modules/smart.tooltip.js +++ b/source/modules/smart.tooltip.js @@ -1,9 +1,9 @@ -import "../smart.element.js"; -import "../smart.button.js"; -import "../smart.tooltip.js"; - -export class smartTooltip extends Smart.Component { - get name() { - return 'smartTooltip'; - } +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 index fcedb767..1f7af70e 100644 --- a/source/modules/smart.tree.js +++ b/source/modules/smart.tree.js @@ -1,13 +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'; - } +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 index 36c50f45..dbb06a81 100644 --- a/source/modules/smart.validator.js +++ b/source/modules/smart.validator.js @@ -1,9 +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'; - } +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 index 1251a449..c846d1ce 100644 --- a/source/modules/smart.window.js +++ b/source/modules/smart.window.js @@ -1,52 +1,53 @@ -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'; - } -} - +import "../smart.element.js"; +import "../smart.button.js"; +import "../smart.progressbar.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'; + } +} +