├── README.md ├── bargauge ├── addandremovevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── autochangevalue │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── createComponent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customtooltips │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── negativevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sequentialgrowth │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── updatevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bulletchart ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── labelsformatting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multipleranges │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── negativevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rangesstyling │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── verticalbulletchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── buttongroup ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── buttons ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── imageposition │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── images │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── textposition │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── calendar ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── disabled │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── displayweekendsstyle │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── firstdayoftheweek │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── hideothermonthdays │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rangeselection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── restrictdaterange │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── restricteddates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showweekoftheyear │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── specialdates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── chart ├── 100stackedareaseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── website_analytics.txt ├── 100stackedcolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── 100stackedlineseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── website_analytics.txt ├── alternatingbackgroundcolor │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── areaseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── areasplineseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── axiscustomoffsets │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── axiscustomoffsetsandcolorbands │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── axisoffsettovalue │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── axisorientation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── axisposition │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── axissettings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── barseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bublechart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── candlestickchart │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500_detailed.txt ├── chartannotations │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── chartcrosshairs │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── chartevents │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── chartprinting │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── chartrangeselectorevents │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500_detailed.txt ├── chartwithgrid │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── chartwithtabs │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── nasdaq_vs_sp500.txt │ │ └── nasdaq_vs_sp500_detailed.txt ├── colorbands │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── colorbandsxaxis │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── us_homeownership_rate.csv ├── columnlocaldata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnrange │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── columnseriesspacing │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnserieswithlabels │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── columnserieswithmissingvalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnseriewithconditionalcolors │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── us_gdp_2008-2013.csv ├── columnsrange │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnswithbase10logarithmicaxis │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnswithlogarithmicaxis │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── createComponent │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── customdrawing │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── europe.txt ├── customstyling │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── darkbackground │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── dashboard │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── datetimexaxisrangeselection │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── TSLA_stockprice.csv ├── donutlabels │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── desktop_browsers_share_dec2011.txt ├── donutseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── desktop_browsers_share_dec2011.txt ├── exporttoimage │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── funnelchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── greyscaleseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── gridlinesdashstyle │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── intervalandsteps │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── lineseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── lineseriesmarkers │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── lineseriewithconditionalcolors │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── us_gdp_2008-2013.csv ├── lineseriewithmissingpoints │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── lineseriewithmultipledatasources │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── liveupdates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── liveupdateseverysecond │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── liveupdatesperformance │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── logarithmicXaxis │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── logarithmicaxisbaseline │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── logarithmicwaterfallseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multipleseriestypes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── negativebarseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── negativevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── weather_geneva.txt ├── nondatexaxisrangeselection │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── TSLA_stockprice.csv ├── ohlcchart │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500_detailed.txt ├── partialpieseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── partialpolarchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── percentagestackedcolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pieseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── desktop_browsers_share_dec2011.txt ├── pieserieslegend │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── mobile_browsers_share_dec2011.txt ├── polarseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── polarseriesbands │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── pyramidchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rigthtoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── scatterchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sparklines │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── spiderchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── splinearea │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── splineseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── stackedandgroupedcolumnseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── stackedareaseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── website_analytics.txt ├── stackedcolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── stackedcolumnseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── stackedfunnelchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── stackedlineseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── website_analytics.txt ├── stackedpyramidchart │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── stackedwaterfallseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── steplineseries │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── TSLA_stockprice.csv ├── textrotation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── textwrapping │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── gdp_dept_2010.txt ├── themes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tooltipformatting │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── waterfallseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── waterfallwithmultipleseries │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── checkbox ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── colorpicker ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── combobox ├── animation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── bindingtojson │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── bindingtoremotedata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtoxml │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── cascadingcomboboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── customers.txt │ │ └── orders.txt ├── categories │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── checkboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── createComponent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdownhorizontalalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── dropdownverticalalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multiselect │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── complexinput ├── changeevent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── exponentialnotation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── spinbuttons │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── validation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── datatable ├── advancedfiltering │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── aggregates │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── aggregatestemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── celledit │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetails.xml ├── columnalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── columnformatting │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── columnreorder │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── columnresize │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── columnshierarchy │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── columntemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── conditionalformatting │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── products.xml ├── createComponent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── csvdata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── customeditors │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataexport │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataprinting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dialog │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetails.xml ├── filtering │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── filteringapi │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── grouping │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── groupingserverpaging │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── headertemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── inlinerow │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetails.xml ├── jsondata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── localdata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── lockrow │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetails.xml ├── nestedtables │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── employees.xml │ │ └── orderdetails.xml ├── paging │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pagingapi │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pinnedfrozencolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── remotedata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rowdetails │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rowselectionhover │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rowtemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── searchfield │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── separatetables │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── employees.xml │ │ └── orderdetails.xml ├── serverfiltering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── serverpaging │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── serversorting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showorhidecolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── sorting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sortingapi │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tsvdata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── validation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetails.xml └── xmldata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ └── customers.xml ├── datetimeinput ├── animation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── createcomponent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── datetime │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── disabled │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdownhorizontalalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdownverticalalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── formatdate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rangeselection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── restrictdaterange │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── timeinput │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── docking ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── importlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dockinglayout ├── createcomponent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── idelikelayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── saveloadlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dragdrop ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── draw └── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdownbutton └── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdownlist ├── animation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── autoopen │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtojson │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── bindingtoxml │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── categories │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── checkboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── createcomponent │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdownhorizontalalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── dropdownverticalalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filtering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loaddatafromselect │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── saveloadselectionusingcookies │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── textwithicons │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── editor ├── customtools │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── importstyles │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── linebreakconfig │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── popupeditor │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── printing │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── toolbarposition │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── toolscustomization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── toolsvisibility │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── expander ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loadingdataondemand │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── jqxexpanderxmldata.xml ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── toggleondoubleclick │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fileupload ├── buttonsrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── selectedfilesrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── form ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── inputalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── inputlabelposition │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── inputtypes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── submit │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── formattedinput ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── exponentialnotation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── negativenumbers │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── simpleinput │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── uppercasehexadecimals │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── validation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── gauge ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── gaugesettings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── gaugewithslider │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── lineargauge │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── grid ├── addnewbottomrow │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── addnewrow │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── addremoveupdate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── aggregates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── aggregatesgrouping │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── aggregatesrenderer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── autorowheight │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── autosizecolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── bindingtoarray │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtocsv │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── bindingtojsarray │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtojson │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── bindingtojsonstring │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtoobservablearray │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtoremotedata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtotsv │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── bindingtoxml │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── cascadingcomboboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── cellsselection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── cellsstyling │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── products.xml ├── checkboxcolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── checkboxselection │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── columnshierarchy │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orderdetailsextended.xml ├── columnsreorder │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── columnsresize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columntemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── feed.xml ├── columntooltips │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── computedcolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── contextmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── createComponent │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── products.xml ├── createremoveupdate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customaggregates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customcolumneditor │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customcomboboxcolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customdropdownlistcolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customfiltermenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customizededitors │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── customkeyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── customlistitemswithkeyvalue │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customroweditor │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customsorting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataexport │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataprinting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── daterangefilter │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── products.xml ├── deferedscrolling │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── deferedscrollingonalargedataset │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── disableeditingofrows │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dragdrop │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdowngrid │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dynamiccolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── rows_and_columns.txt ├── editing │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── editmodes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── everpresentrowwithcolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── everpresentrowwithcustomwidgets │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── excellikefilter │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── filterconditions │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filtering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filtermenutypes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filterrow │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filterrowcustomlistitems │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── foreignkeycolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── employees.xml │ │ └── orders.xml ├── fullrowedit │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── gridinjqxtabs │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── grouping │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── groupingaggregates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── groupingwithpager │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── imagecolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── initialfilter │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── initialpageandpagesize │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── keysvaluescolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── employees.xml │ │ └── orders.xml ├── largedataset │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loadfromtable │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localizedaddnewrow │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── manycolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── masterdetails │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nestedgrids │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── employees.xml │ │ └── orderdetails.xml ├── pagermodes │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── paging │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── percentagewidthforcolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── pinnedfrozencolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── products.xml ├── popupediting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── positioning │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── refreshdata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── rowdetails │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── roweditwitheverpresentrow │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rownumbercolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rowselection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showhidecolumns │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── sorting │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── spreadsheet │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── statemaintenance │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── orders.xml ├── statusbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── textalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── togglesubrows │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── toolbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── updatingactionsatruntime │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── validation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── virtualpaging │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── virtualscrolling │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── widgetcolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── input ├── autocomplete │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtojsondata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── inputgroup │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multiplevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── kanban ├── addremoveupdateitems │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── disablecollapse │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── headertemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── itemtemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── kanbanediting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── kanbanevents │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── kanbanfluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multiplekanbans │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── knob ├── circlepointer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── infiniteknob │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── knobprogressranges │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── knobrotation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── knobwithcustomshape │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── knobwithinput │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── linepointer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multiplearrowpointes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multiplecirclepointers │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multipleknobs │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── radialgradient │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── semiknob │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── layout ├── dashboard │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithotherwidgets │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── saveloadlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── linkbutton └── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── listbox ├── bindingtoarray │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtojsondata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── bindingtoxml │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── categories │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── checkboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dragdrop │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filtering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── itemsreorder │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loaddatafromselect │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multipleselection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── remotesearch │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── selectionwithshiftctrl │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── textwithicons │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── listmenu ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nestedlists │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loader ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loaderwithjqxgrid │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showmodalloader │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showonlyicon │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── showonlytext │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── maskedinput ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── menu ├── centermenuitems │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── contextmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── images │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── jsonmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loadmenufromarray │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── minimizedmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── opendirection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── verticalmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── xmlmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ └── customers.xml ├── navbar ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── minimizednavbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── verticalnavbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── navigationbar ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── disabled │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fittocontainer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multipleexpanded │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── togglemode │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── notification ├── customicon │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── notificationcontainer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── numberinput ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── simpleinputmode │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── validation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── panel ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dockpanel │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── passwordinput ├── customstrengthrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pivotgrid ├── cell-values-alignment │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── custom-pivot-function │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── custom-rendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── designer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── drill-through │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── olap-tree-style-rows │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rows-columns-cells-css-styling │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── totals │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── values-on-columns │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── values-on-rows │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── popover ├── bottompositioning │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── modalpopover │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── positioning │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── progressbar ├── colorranges │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── layout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── radiobutton ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rangeselector ├── backgroundimage │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── chartonbackground │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── weather_geneva.txt ├── customizedmarkers │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── datascale │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── decimalscale │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── negativescale │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── numericscale │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rangeselectorasafilter │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── discoveries.txt ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── discoveries.txt └── timescale │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ └── discoveries.txt ├── rating ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── repeatbutton └── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── responsivepanel ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithjqxmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── ribbon ├── collapsible │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithotherwidgets │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── popuplayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── ribbonatthebottom │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── scrolling │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── verticalribbon │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── verticalrightposition │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── scheduler ├── agendaview │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── appointmentcustomization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── appointmentrestrictions │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── appointmentsexacttimerendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── appointmentstatuses │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtoicalendar │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── icalendar.txt ├── bindingtojson │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── contextmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataexport │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataprinting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── editdialog │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── hidetimeruler │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── hideweekends │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── monthviewweeknumbers │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── monthviewwithautorowheight │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── recurringappointments │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── resources │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── resourceswithcustomcolumnwidths │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleft │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── rowheight │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── rowheightconfiguration │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── timelineviews │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── timelineviewswithcustomslotwidth │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── timelineviewswithresources │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── timescalesconfiguration │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── timescaleszooming │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── timezones │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── appointments.txt ├── verticalresources │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── worktime │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ └── appointments.txt ├── scrollbar ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleft │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── scrollview └── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── slider ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── layout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rangeslider │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleft │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sliderlabels │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── slidertooltip │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── templates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── verticalslider │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sortable ├── connectedlist │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── displayastable │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── splitter ├── api │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ ├── cnn.txt │ │ ├── geek.txt │ │ └── sciencedaily.txt ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── horizontalsplitter │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithjqxgrid │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithjqxtabs │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithjqxtree │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── multiplesplitpanelswithjqxtabs │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nestedsidesplitters │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nestedsplitters │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── simplecontainer │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── splitterwithinjqxtabs │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── togglebottompanel │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── togglerightpanel │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── verticalsplitter │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── switchbutton ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tabs ├── closebuttons │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── collapsible │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── draganddrop │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── integrationwithotherwidgets │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── nasdaq_vs_sp500.txt ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── loadingtabcontentswithajax │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── mapinsidetab │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── saveloadselectionusingcookies │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── scrolling │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tabswithimages │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── wizard │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tagcloud ├── addremoveupdatetags │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtojson │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── beverages.txt ├── colorselection │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── customtags │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fontsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showhidetags │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── sortingfiltering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── textarea ├── bindingtojsondata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.txt ├── multiplevalues │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── twowaydatabinding │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── togglebutton └── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── toolbar ├── buttongroupsintoolbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── cascadingcomboboxesintoolbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nonminimizabletools │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── resizabletoolbar │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── toolevents │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tooltip ├── closeonclick │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── popover │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── tooltippositions │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tree ├── checkboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── contextmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── draganddrop │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dropdowntree │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── events │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── jsontree │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── navigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── settings │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── xmltree │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ └── customers.xml ├── treegrid ├── advancedfiltering │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.csv ├── aggregates │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── locations.tsv ├── aggregatestemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── celledit │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnalignment │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columncheckboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnformatting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnhierarchicalcheckboxes │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnicons │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnreorder │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnresize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnshierarchy │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── columnsmallicons │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── commandcolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── conditionalformatting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── conditionalrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── contextmenu │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.csv ├── createComponent │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.csv ├── csvdata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.csv ├── customeditors │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── dataexport │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── datagrouping │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── customers.xml ├── dataprinting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.csv ├── dialog │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── filtering │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.csv ├── filteringapi │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── headertemplate │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── inlinerow │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── locations.tsv ├── jsondata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── keyboardnavigation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localdata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── localization │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── lockrow │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── manualaggregates │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nestedjsondata │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── nestedxmldata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── employeesadv.xml ├── paging │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pagingapi │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pagingbyrootrecords │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── pinnedfrozencolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── propertyeditor │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── rowdetails │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── searchfield │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── showorhidecolumn │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sorting │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── sortingapi │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── tabdata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── locations.tsv ├── validation │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── virtualmode │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── locations.tsv ├── virtualmodewithajax │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── xmldata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ └── employees.xml ├── treemap ├── automaticrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtojson │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── bindingtotabdata │ ├── App.vue │ ├── index.html │ ├── main.js │ ├── package.json │ └── static │ │ └── homeprices.txt ├── customrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── fluidsize │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── rangesrendering │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── validator ├── defaultfunctionality │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json ├── errorlabels │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── righttoleftlayout │ ├── App.vue │ ├── index.html │ ├── main.js │ └── package.json └── window ├── defaultfunctionality ├── App.vue ├── index.html ├── main.js └── package.json ├── events ├── App.vue ├── index.html ├── main.js └── package.json ├── keyboardnavigation ├── App.vue ├── index.html ├── main.js └── package.json ├── multiplewindows ├── App.vue ├── index.html ├── main.js └── package.json ├── righttoleftlayout ├── App.vue ├── index.html ├── main.js └── package.json └── settings ├── App.vue ├── index.html ├── main.js └── package.json /bargauge/addandremovevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/autochangevalue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/createComponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/customtooltips/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/negativevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/sequentialgrowth/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bargauge/updatevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/labelsformatting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/multipleranges/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/negativevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/rangesstyling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /bulletchart/verticalbulletchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttongroup/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttongroup/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/imageposition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/images/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /buttons/textposition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/disabled/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/displayweekendsstyle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/firstdayoftheweek/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/hideothermonthdays/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/rangeselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/restrictdaterange/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/restricteddates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/showweekoftheyear/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/specialdates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /calendar/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/100stackedareaseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/100stackedcolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/100stackedlineseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/alternatingbackgroundcolor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/areaseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/areasplineseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/axiscustomoffsets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/axisoffsettovalue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/axisorientation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/axisposition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/axissettings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/barseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/bublechart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/candlestickchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartannotations/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartcrosshairs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartevents/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartprinting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartrangeselectorevents/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartwithgrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/chartwithtabs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/colorbands/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/colorbandsxaxis/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnlocaldata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnrange/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnseriesspacing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnserieswithlabels/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnsrange/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/columnswithlogarithmicaxis/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/createComponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/customdrawing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/customstyling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/darkbackground/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/dashboard/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/donutlabels/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/donutlabels/static/desktop_browsers_share_dec2011.txt: -------------------------------------------------------------------------------- 1 | Internet Explorer, 33.3 2 | Firefox, 26.5 3 | Chrome, 25.4 4 | Safari, 7.0 5 | Opera, 4.6 6 | Other, 3.2 -------------------------------------------------------------------------------- /chart/donutseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/donutseries/static/desktop_browsers_share_dec2011.txt: -------------------------------------------------------------------------------- 1 | Internet Explorer, 33.3 2 | Firefox, 26.5 3 | Chrome, 25.4 4 | Safari, 7.0 5 | Opera, 4.6 6 | Other, 3.2 -------------------------------------------------------------------------------- /chart/exporttoimage/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/funnelchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/greyscaleseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/gridlinesdashstyle/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/intervalandsteps/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/lineseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/lineseriesmarkers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/lineseriewithmissingpoints/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/liveupdates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/liveupdateseverysecond/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/liveupdatesperformance/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/logarithmicXaxis/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/logarithmicaxisbaseline/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/logarithmicwaterfallseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/multipleseriestypes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/negativebarseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/negativevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/nondatexaxisrangeselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/ohlcchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/partialpieseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/partialpolarchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/percentagestackedcolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/pieseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/pieseries/static/desktop_browsers_share_dec2011.txt: -------------------------------------------------------------------------------- 1 | Internet Explorer, 33.3 2 | Firefox, 26.5 3 | Chrome, 25.4 4 | Safari, 7.0 5 | Opera, 4.6 6 | Other, 3.2 -------------------------------------------------------------------------------- /chart/pieserieslegend/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/polarseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/polarseriesbands/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/pyramidchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/rigthtoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/scatterchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/sparklines/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/spiderchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/splinearea/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/splineseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedareaseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedcolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedcolumnseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedfunnelchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedlineseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedpyramidchart/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/stackedwaterfallseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/steplineseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/textrotation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/textwrapping/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/themes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/tooltipformatting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /chart/waterfallseries/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /checkbox/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /checkbox/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /colorpicker/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /colorpicker/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/animation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/bindingtojson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/bindingtoremotedata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/bindingtoxml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/cascadingcomboboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/categories/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/checkboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/createComponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/customrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/multiselect/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /combobox/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /complexinput/changeevent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /complexinput/exponentialnotation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /complexinput/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /complexinput/spinbuttons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /complexinput/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /complexinput/validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/advancedfiltering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/aggregates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/aggregatestemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/celledit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/columnalignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/columnformatting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/columnreorder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/columnresize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/columnshierarchy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/columntemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/conditionalformatting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/createComponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/csvdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/customeditors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/dataexport/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/dataprinting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/dialog/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/filtering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/filteringapi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/grouping/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/groupingserverpaging/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/headertemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/inlinerow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/jsondata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/localdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/lockrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/nestedtables/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/paging/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/pagingapi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/pinnedfrozencolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/remotedata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/rowdetails/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/rowselectionhover/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/rowtemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/searchfield/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/separatetables/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/serverfiltering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/serverpaging/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/serversorting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/showorhidecolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/sorting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/sortingapi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/tsvdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datatable/xmldata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/animation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/createcomponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/datetime/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/disabled/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/formatdate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/rangeselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/restrictdaterange/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/timeinput/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /datetimeinput/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /docking/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /docking/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /docking/importlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /docking/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /docking/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /docking/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dockinglayout/createcomponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dockinglayout/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dockinglayout/idelikelayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dockinglayout/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dockinglayout/saveloadlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dragdrop/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dragdrop/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /draw/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/animation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/autoopen/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/bindingtojson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/bindingtoxml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/categories/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/checkboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/createcomponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/customrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/filtering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/loaddatafromselect/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/textwithicons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /dropdownlist/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/customtools/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/importstyles/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/linebreakconfig/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/popupeditor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/printing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/toolbarposition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/toolscustomization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /editor/toolsvisibility/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /expander/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /expander/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /expander/loadingdataondemand/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /expander/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /expander/toggleondoubleclick/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /fileupload/buttonsrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /fileupload/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /fileupload/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /fileupload/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /form/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /form/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /form/inputalignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /form/inputlabelposition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /form/inputtypes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /form/submit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/negativenumbers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/simpleinput/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /formattedinput/validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /gauge/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /gauge/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /gauge/gaugesettings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /gauge/gaugewithslider/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /gauge/lineargauge/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/addnewbottomrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/addnewrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/addremoveupdate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/aggregates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/aggregatesgrouping/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/aggregatesrenderer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/autorowheight/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/autosizecolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtoarray/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtocsv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtojsarray/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtojson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtojsonstring/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtoobservablearray/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtoremotedata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtotsv/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/bindingtoxml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/cascadingcomboboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/cellsselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/cellsstyling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/checkboxcolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/checkboxselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/columnshierarchy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/columnsreorder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/columnsresize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/columntemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/columntooltips/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/computedcolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/contextmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/createComponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/createremoveupdate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customaggregates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customcolumneditor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customcomboboxcolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customdropdownlistcolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customfiltermenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customizededitors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customkeyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customlistitemswithkeyvalue/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customroweditor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/customsorting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/dataexport/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/dataprinting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/daterangefilter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/deferedscrolling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/disableeditingofrows/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/dragdrop/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/dropdowngrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/dynamiccolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/editing/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/editmodes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/everpresentrowwithcolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/excellikefilter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/filterconditions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/filtering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/filtermenutypes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/filterrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/filterrowcustomlistitems/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/foreignkeycolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/fullrowedit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/gridinjqxtabs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/grouping/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/groupingaggregates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/groupingwithpager/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/imagecolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/initialfilter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/initialpageandpagesize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/keysvaluescolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/largedataset/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/loadfromtable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/localizedaddnewrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/manycolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/masterdetails/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/nestedgrids/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/pagermodes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/paging/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/percentagewidthforcolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/pinnedfrozencolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/popupediting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/positioning/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/refreshdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/rowdetails/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/roweditwitheverpresentrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/rownumbercolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/rowselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/showhidecolumns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/sorting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/spreadsheet/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/statemaintenance/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/statusbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/textalignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/togglesubrows/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/toolbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/updatingactionsatruntime/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/virtualpaging/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/virtualscrolling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /grid/widgetcolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/autocomplete/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/bindingtojsondata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/inputgroup/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/multiplevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /input/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/addremoveupdateitems/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/disablecollapse/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/headertemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/itemtemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/kanbanediting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/kanbanevents/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/kanbanfluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/multiplekanbans/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /kanban/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/circlepointer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/infiniteknob/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/knobprogressranges/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/knobrotation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/knobwithcustomshape/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/knobwithinput/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/linepointer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/multiplearrowpointes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/multiplecirclepointers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/multipleknobs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/radialgradient/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /knob/semiknob/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /layout/dashboard/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /layout/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /layout/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /layout/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /layout/saveloadlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /linkbutton/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/bindingtoarray/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/bindingtojsondata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/bindingtoxml/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/categories/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/checkboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/customrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/dragdrop/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/filtering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/itemsreorder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/loaddatafromselect/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/multipleselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/remotesearch/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/selectionwithshiftctrl/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/textwithicons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listbox/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listmenu/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listmenu/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listmenu/nestedlists/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /listmenu/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /loader/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /loader/loaderwithjqxgrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /loader/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /loader/showmodalloader/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /loader/showonlyicon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /loader/showonlytext/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /maskedinput/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /maskedinput/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /maskedinput/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /maskedinput/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /maskedinput/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/centermenuitems/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/columns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/contextmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/images/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/jsonmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/loadmenufromarray/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/minimizedmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/opendirection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/verticalmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /menu/xmlmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navbar/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navbar/minimizednavbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navbar/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navbar/verticalnavbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/disabled/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/fittocontainer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/multipleexpanded/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /navigationbar/togglemode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /notification/customicon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /notification/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /notification/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /notification/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /notification/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/simpleinputmode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /numberinput/validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /panel/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /panel/dockpanel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /panel/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /panel/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /passwordinput/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /passwordinput/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /passwordinput/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/cell-values-alignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/custom-pivot-function/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/custom-rendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/designer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/drill-through/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/olap-tree-style-rows/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/totals/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/values-on-columns/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /pivotgrid/values-on-rows/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /popover/bottompositioning/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /popover/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /popover/modalpopover/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /popover/positioning/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /popover/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /progressbar/colorranges/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /progressbar/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /progressbar/layout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /progressbar/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /progressbar/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /radiobutton/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /radiobutton/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/backgroundimage/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/chartonbackground/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/customizedmarkers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/datascale/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/decimalscale/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/negativescale/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/numericscale/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rangeselector/timescale/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rating/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /rating/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /responsivepanel/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/collapsible/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/popuplayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/ribbonatthebottom/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/scrolling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/verticalribbon/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /ribbon/verticalrightposition/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/agendaview/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/appointmentstatuses/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/bindingtoicalendar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/bindingtojson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/contextmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/dataexport/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/dataprinting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/editdialog/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/hidetimeruler/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/hideweekends/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/monthviewweeknumbers/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/recurringappointments/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/resources/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/righttoleft/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/rowheight/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/rowheightconfiguration/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/timelineviews/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/timescaleszooming/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/timezones/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/verticalresources/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scheduler/worktime/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scrollbar/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scrollbar/righttoleft/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /scrollview/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/layout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/rangeslider/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/righttoleft/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/sliderlabels/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/slidertooltip/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/templates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /slider/verticalslider/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /sortable/connectedlist/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /sortable/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /sortable/displayastable/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /sortable/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/api/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/horizontalsplitter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/integrationwithjqxgrid/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/integrationwithjqxtabs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/integrationwithjqxtree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/nestedsidesplitters/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/nestedsplitters/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/simplecontainer/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/splitterwithinjqxtabs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/togglebottompanel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/togglerightpanel/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /splitter/verticalsplitter/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /switchbutton/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/closebuttons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/collapsible/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/draganddrop/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/integrationwithotherwidgets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/loadingtabcontentswithajax/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/mapinsidetab/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/scrolling/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/tabswithimages/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tabs/wizard/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/addremoveupdatetags/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/bindingtojson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/colorselection/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/customtags/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/fontsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/showhidetags/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tagcloud/sortingfiltering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /textarea/bindingtojsondata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /textarea/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /textarea/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /textarea/multiplevalues/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /textarea/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /textarea/twowaydatabinding/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/buttongroupsintoolbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/nonminimizabletools/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/resizabletoolbar/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /toolbar/toolevents/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tooltip/closeonclick/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tooltip/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tooltip/popover/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tooltip/tooltippositions/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/checkboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/contextmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/draganddrop/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/dropdowntree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/jsontree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/navigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /tree/xmltree/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/advancedfiltering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/aggregates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/aggregatestemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/celledit/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnalignment/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columncheckboxes/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnformatting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnicons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnreorder/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnresize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnshierarchy/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/columnsmallicons/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/commandcolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/conditionalformatting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/conditionalrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/contextmenu/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/createComponent/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/csvdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/customeditors/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/dataexport/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/datagrouping/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/dataprinting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/dialog/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/filtering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/filteringapi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/headertemplate/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/inlinerow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/jsondata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/localdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/localization/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/lockrow/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/manualaggregates/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/nestedjsondata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/nestedxmldata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/paging/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/pagingapi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/pinnedfrozencolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/propertyeditor/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/rowdetails/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/searchfield/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/showorhidecolumn/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/sorting/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/sortingapi/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/tabdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/validation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/virtualmode/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treegrid/xmldata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treemap/automaticrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treemap/bindingtojson/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treemap/bindingtotabdata/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treemap/customrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treemap/fluidsize/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /treemap/rangesrendering/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /validator/errorlabels/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /validator/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /window/defaultfunctionality/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /window/events/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /window/keyboardnavigation/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /window/multiplewindows/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /window/righttoleftlayout/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } -------------------------------------------------------------------------------- /window/settings/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "dependencies": { 3 | "jqwidgets-scripts": "^7.1.0", 4 | "vue": "^2.6.10" 5 | }, 6 | "main": "main.js" 7 | } --------------------------------------------------------------------------------