@@ -239,13 +239,13 @@ class DsMUI {
239
239
AddCheckbox ( parent : DsLayout , list : lst , width : num_frc , height : num_frc , color : str_col ) : MuiCheckbox ;
240
240
241
241
/**
242
- * Adds an MUI checklist dialog. See CreateCheckList for a full documentation.{dso} parent ../app/CreateTextEdit
242
+ * Adds an MUI checklist dialog. See CreateCheckList for a full documentation
243
243
* @param list An array of objects of the form {name: string, check: boolean}
244
244
*/
245
- AddCheckList ( title : str , list : lst_obj , color : str_col , bottom : bin ) : MuiCheckList ;
245
+ AddCheckList ( parent : DsTextEdit , title : str , list : lst_obj , color : str_col , bottom : bin ) : MuiCheckList ;
246
246
247
247
/** Creates a color picker dialog where you can select a range of MUI predefined colors */
248
- AddColorPicker ( title : "Title" ) : MuiColorPicker ;
248
+ AddColorPicker ( parent : DsTextEdit , title : "Title" ) : MuiColorPicker ;
249
249
250
250
/**
251
251
* Adds a new DataTable Control
@@ -257,12 +257,12 @@ class DsMUI {
257
257
AddDataTable ( parent : DsLayout , columns : lst , values : lst , width : num , height : num , options : string | ( "Selectable" ) [ ] ) : MuiDataTable ;
258
258
259
259
/**
260
- * Adds a date picker dialog. See CreateDatePicker for a full documentation.{dso} parent ../app/CreateTextEdit
260
+ * Adds a date picker dialog. See CreateDatePicker for a full documentation
261
261
* @param yyyy Full year
262
262
* @param mm [0-11]
263
263
* @param dd [1-31]
264
264
*/
265
- AddDatePicker ( yyyy : num_int , mm : num_int , dd : num_int , color : str_col ) : MuiDatePicker ;
265
+ AddDatePicker ( parent : DsTextEdit , yyyy : num_int , mm : num_int , dd : num_int , color : str_col ) : MuiDatePicker ;
266
266
267
267
/**
268
268
* Adds a customizable materialize dialog. See CreateDialog for a full documentation
@@ -304,10 +304,10 @@ class DsMUI {
304
304
AddList ( parent : DsLayout , list : str , width : num , height : num , options : string | ( "simple" | "modern" | "default" | "divider" ) [ ] ) : MuiList ;
305
305
306
306
/**
307
- * Adds a more customizable list dialog or checklist dialog. See CreateListDialog and CreateCheckList for a full documentation on each type.{dso} parent ../app/CreateTextEdit
307
+ * Adds a more customizable list dialog or checklist dialog. See CreateListDialog and CreateCheckList for a full documentation on each type
308
308
* @param list An array of objects
309
309
*/
310
- AddListDialog ( title : str , list : lst , color : str_col , options : string | ( "CheckList" | "ListDialog" | "Bottom" ) [ ] ) : MuiListDialog ;
310
+ AddListDialog ( parent : DsTextEdit , title : str , list : lst , color : str_col , options : string | ( "CheckList" | "ListDialog" | "Bottom" ) [ ] ) : MuiListDialog ;
311
311
312
312
/**
313
313
* Adds a ListModern control on a given layout. See CreateListModern for a full documentation
@@ -340,8 +340,8 @@ class DsMUI {
340
340
*/
341
341
AddModal ( title : str , body : str , okTxt : str , cancelTxt : str , options : str ) : MuiModal ;
342
342
343
- /** Adds a picker dialog such as time, date or color. See CreateDatePicker, CreateTimePicker and CreateColorPicker for a full documentation.{dso} parent ../app/CreateTextEdit */
344
- AddPicker ( options : "Date" | "Color" | "Time" ) : MuiPicker ;
343
+ /** Adds a picker dialog such as time, date or color. See CreateDatePicker, CreateTimePicker and CreateColorPicker for a full documentation */
344
+ AddPicker ( parent : DsTextEdit , options : "Date" | "Color" | "Time" ) : MuiPicker ;
345
345
346
346
/** #AddRadio.md */
347
347
AddRadio ( parent : DsLayout , list : string | ( "strings" ) [ ] , width : num , height : num , options : string | ( "Buttons" | "Material" | "Normal" ) [ ] , p1 : "color" | "orientation" , color : str_col , backColor : str_col ) : MuiRadio ;
@@ -585,10 +585,10 @@ class DsMUI {
585
585
* @param hour [0-24]
586
586
* @param minute 0-59
587
587
*/
588
- AddTimePicker ( hour : num , minute : num , color : str_col ) : MuiTimePicker ;
588
+ AddTimePicker ( parent : DsTextEdit , hour : num , minute : num , color : str_col ) : MuiTimePicker ;
589
589
590
590
/** #colors.md */
591
- colors ( ) : obj ;
591
+ colors : obj ;
592
592
593
593
/**
594
594
* A nice pop-up at the top of your current layout
@@ -1016,7 +1016,7 @@ class DsMUI {
1016
1016
CreateTimePicker ( hour : num , minute : num , color : str_col ) : MuiTimePicker ;
1017
1017
1018
1018
/** #fonts.md */
1019
- fonts ( ) : obj ;
1019
+ fonts : obj ;
1020
1020
1021
1021
/** Show a menu on a given control */
1022
1022
ShowMenu ( control : dso , list : str_lst , width : num_frc ) : obj ;
@@ -1158,7 +1158,7 @@ class MuiBanner {
1158
1158
class MuiButtonContained {
1159
1159
1160
1160
/** Data */
1161
- data ( ) : obj ;
1161
+ data : obj ;
1162
1162
1163
1163
/** Get type */
1164
1164
GetType ( ) : "Button" ;
@@ -1171,7 +1171,7 @@ class MuiButtonContained {
1171
1171
class MuiButtonElegant {
1172
1172
1173
1173
/** Data */
1174
- data ( ) : obj ;
1174
+ data : obj ;
1175
1175
1176
1176
/** Get type */
1177
1177
GetType ( ) : "Button" ;
@@ -1184,7 +1184,7 @@ class MuiButtonElegant {
1184
1184
class MuiButtonFlat {
1185
1185
1186
1186
/** Data */
1187
- data ( ) : obj ;
1187
+ data : obj ;
1188
1188
1189
1189
/** Get type */
1190
1190
GetType ( ) : "Button" ;
@@ -1197,7 +1197,7 @@ class MuiButtonFlat {
1197
1197
class MuiButtonOutlined {
1198
1198
1199
1199
/** Data */
1200
- data ( ) : obj ;
1200
+ data : obj ;
1201
1201
1202
1202
/** Get type */
1203
1203
GetType ( ) : "Button" ;
@@ -1210,7 +1210,7 @@ class MuiButtonOutlined {
1210
1210
class MuiButtonRaised {
1211
1211
1212
1212
/** Data */
1213
- data ( ) : obj ;
1213
+ data : obj ;
1214
1214
1215
1215
/** Get type */
1216
1216
GetType ( ) : "Button" ;
@@ -1223,7 +1223,7 @@ class MuiButtonRaised {
1223
1223
class MuiButtonRaisedO {
1224
1224
1225
1225
/** Data */
1226
- data ( ) : obj ;
1226
+ data : obj ;
1227
1227
1228
1228
/** Get type */
1229
1229
GetType ( ) : "Button" ;
@@ -1236,7 +1236,7 @@ class MuiButtonRaisedO {
1236
1236
class MuiButtonRound {
1237
1237
1238
1238
/** Data */
1239
- data ( ) : obj ;
1239
+ data : obj ;
1240
1240
1241
1241
/** Get type */
1242
1242
GetType ( ) : "Button" ;
@@ -1249,7 +1249,7 @@ class MuiButtonRound {
1249
1249
class MuiButtonRoundO {
1250
1250
1251
1251
/** Data */
1252
- data ( ) : obj ;
1252
+ data : obj ;
1253
1253
1254
1254
/** Get type */
1255
1255
GetType ( ) : "Button" ;
@@ -1262,7 +1262,7 @@ class MuiButtonRoundO {
1262
1262
class MuiButtonToggle {
1263
1263
1264
1264
/** Data */
1265
- data ( ) : obj ;
1265
+ data : obj ;
1266
1266
1267
1267
/** Get type */
1268
1268
GetType ( ) : "Button" ;
@@ -1414,7 +1414,7 @@ class MuiFAB {
1414
1414
GetIcon ( ) : str ;
1415
1415
1416
1416
/** Data */
1417
- data ( ) : obj ;
1417
+ data : obj ;
1418
1418
1419
1419
/** Get type */
1420
1420
GetType ( ) : "Button" ;
@@ -1439,7 +1439,7 @@ class MuiFABElegant {
1439
1439
GetIcon ( ) : str ;
1440
1440
1441
1441
/** Data */
1442
- data ( ) : obj ;
1442
+ data : obj ;
1443
1443
1444
1444
/** Get type */
1445
1445
GetType ( ) : "Button" ;
@@ -1464,7 +1464,7 @@ class MuiFABOutline {
1464
1464
GetIcon ( ) : str ;
1465
1465
1466
1466
/** Data */
1467
- data ( ) : obj ;
1467
+ data : obj ;
1468
1468
1469
1469
/** Get type */
1470
1470
GetType ( ) : "Button" ;
@@ -2672,7 +2672,7 @@ class MuiTextEditUnique {
2672
2672
class MuiTextH1 {
2673
2673
2674
2674
/** Data */
2675
- data ( ) : obj ;
2675
+ data : obj ;
2676
2676
2677
2677
/** Get html */
2678
2678
GetHtml ( ) : obj ;
@@ -2703,7 +2703,7 @@ class MuiTextH1 {
2703
2703
class MuiTextH2 {
2704
2704
2705
2705
/** Data */
2706
- data ( ) : obj ;
2706
+ data : obj ;
2707
2707
2708
2708
/** Get html */
2709
2709
GetHtml ( ) : obj ;
@@ -2734,7 +2734,7 @@ class MuiTextH2 {
2734
2734
class MuiTextH3 {
2735
2735
2736
2736
/** Data */
2737
- data ( ) : obj ;
2737
+ data : obj ;
2738
2738
2739
2739
/** Get html */
2740
2740
GetHtml ( ) : obj ;
@@ -2765,7 +2765,7 @@ class MuiTextH3 {
2765
2765
class MuiTextH4 {
2766
2766
2767
2767
/** Data */
2768
- data ( ) : obj ;
2768
+ data : obj ;
2769
2769
2770
2770
/** Get html */
2771
2771
GetHtml ( ) : obj ;
@@ -2796,7 +2796,7 @@ class MuiTextH4 {
2796
2796
class MuiTextH5 {
2797
2797
2798
2798
/** Data */
2799
- data ( ) : obj ;
2799
+ data : obj ;
2800
2800
2801
2801
/** Get html */
2802
2802
GetHtml ( ) : obj ;
@@ -2827,7 +2827,7 @@ class MuiTextH5 {
2827
2827
class MuiTextH6 {
2828
2828
2829
2829
/** Data */
2830
- data ( ) : obj ;
2830
+ data : obj ;
2831
2831
2832
2832
/** Get html */
2833
2833
GetHtml ( ) : obj ;
@@ -2858,7 +2858,7 @@ class MuiTextH6 {
2858
2858
class MuiTextJumbo {
2859
2859
2860
2860
/** Data */
2861
- data ( ) : obj ;
2861
+ data : obj ;
2862
2862
2863
2863
/** Get html */
2864
2864
GetHtml ( ) : obj ;
@@ -2889,7 +2889,7 @@ class MuiTextJumbo {
2889
2889
class MuiTextParagraph {
2890
2890
2891
2891
/** Data */
2892
- data ( ) : obj ;
2892
+ data : obj ;
2893
2893
2894
2894
/** Get html */
2895
2895
GetHtml ( ) : obj ;
@@ -2920,7 +2920,7 @@ class MuiTextParagraph {
2920
2920
class MuiTextSecondary {
2921
2921
2922
2922
/** Data */
2923
- data ( ) : obj ;
2923
+ data : obj ;
2924
2924
2925
2925
/** Get html */
2926
2926
GetHtml ( ) : obj ;
0 commit comments