@saasquatch/mint-components 1.6.1-5 → 1.6.1-8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -26,21 +26,21 @@ const ShareButton = class {
26
26
  /**
27
27
  * Description here
28
28
  * @uiName Text Area Input
29
- * @uiWidget Text Area
29
+ * @uiWidget textArea
30
30
  */
31
31
  this.textAreaInput = "Really Really Really long text";
32
32
  /**
33
33
  * Description here
34
34
  * @uiName String Enum Select
35
- * @enum ["option1","option2","option3"]
36
- * @enumNames ["Option 1", "Option 2", "Option 3"]
35
+ * @uiEnum ["option1","option2","option3"]
36
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
37
37
  */
38
38
  this.stringEnumSelect = "option2";
39
39
  /**
40
40
  * Description here
41
41
  * @uiName Number Enum Select
42
- * @enum [1,2,3]
43
- * @enumNames ["Option 1", "Option 2", "Option 3"]
42
+ * @uiEnum [1,2,3]
43
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
44
44
  */
45
45
  this.numberEnumSelect = 3;
46
46
  /**
@@ -79,12 +79,13 @@ const ShareButton = class {
79
79
  /**
80
80
  * Description here
81
81
  * @uiName Number Max 7
82
+ * @maximum 7
82
83
  */
83
84
  this.max = 6;
84
85
  /**
85
86
  * Description here
86
87
  * @uiName Number Min 7
87
- * @min 7
88
+ * @minimum 7
88
89
  */
89
90
  this.min = 8;
90
91
  /**
@@ -23,21 +23,21 @@ export class ShareButton {
23
23
  /**
24
24
  * Description here
25
25
  * @uiName Text Area Input
26
- * @uiWidget Text Area
26
+ * @uiWidget textArea
27
27
  */
28
28
  this.textAreaInput = "Really Really Really long text";
29
29
  /**
30
30
  * Description here
31
31
  * @uiName String Enum Select
32
- * @enum ["option1","option2","option3"]
33
- * @enumNames ["Option 1", "Option 2", "Option 3"]
32
+ * @uiEnum ["option1","option2","option3"]
33
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
34
34
  */
35
35
  this.stringEnumSelect = "option2";
36
36
  /**
37
37
  * Description here
38
38
  * @uiName Number Enum Select
39
- * @enum [1,2,3]
40
- * @enumNames ["Option 1", "Option 2", "Option 3"]
39
+ * @uiEnum [1,2,3]
40
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
41
41
  */
42
42
  this.numberEnumSelect = 3;
43
43
  /**
@@ -76,12 +76,13 @@ export class ShareButton {
76
76
  /**
77
77
  * Description here
78
78
  * @uiName Number Max 7
79
+ * @maximum 7
79
80
  */
80
81
  this.max = 6;
81
82
  /**
82
83
  * Description here
83
84
  * @uiName Number Min 7
84
- * @min 7
85
+ * @minimum 7
85
86
  */
86
87
  this.min = 8;
87
88
  /**
@@ -184,7 +185,7 @@ export class ShareButton {
184
185
  "text": "Text Area Input",
185
186
  "name": "uiName"
186
187
  }, {
187
- "text": "Text Area",
188
+ "text": "textArea",
188
189
  "name": "uiWidget"
189
190
  }],
190
191
  "text": "Description here"
@@ -208,11 +209,11 @@ export class ShareButton {
208
209
  "text": "String Enum Select",
209
210
  "name": "uiName"
210
211
  }, {
211
- "text": undefined,
212
- "name": "enum"
212
+ "text": "[\"option1\",\"option2\",\"option3\"]",
213
+ "name": "uiEnum"
213
214
  }, {
214
215
  "text": "[\"Option 1\", \"Option 2\", \"Option 3\"]",
215
- "name": "enumNames"
216
+ "name": "uiEnumNames"
216
217
  }],
217
218
  "text": "Description here"
218
219
  },
@@ -235,11 +236,11 @@ export class ShareButton {
235
236
  "text": "Number Enum Select",
236
237
  "name": "uiName"
237
238
  }, {
238
- "text": undefined,
239
- "name": "enum"
239
+ "text": "[1,2,3]",
240
+ "name": "uiEnum"
240
241
  }, {
241
242
  "text": "[\"Option 1\", \"Option 2\", \"Option 3\"]",
242
- "name": "enumNames"
243
+ "name": "uiEnumNames"
243
244
  }],
244
245
  "text": "Description here"
245
246
  },
@@ -436,6 +437,9 @@ export class ShareButton {
436
437
  "tags": [{
437
438
  "text": "Number Max 7",
438
439
  "name": "uiName"
440
+ }, {
441
+ "text": "7",
442
+ "name": "maximum"
439
443
  }],
440
444
  "text": "Description here"
441
445
  },
@@ -459,7 +463,7 @@ export class ShareButton {
459
463
  "name": "uiName"
460
464
  }, {
461
465
  "text": "7",
462
- "name": "min"
466
+ "name": "minimum"
463
467
  }],
464
468
  "text": "Description here"
465
469
  },
@@ -22,21 +22,21 @@ const ShareButton = class {
22
22
  /**
23
23
  * Description here
24
24
  * @uiName Text Area Input
25
- * @uiWidget Text Area
25
+ * @uiWidget textArea
26
26
  */
27
27
  this.textAreaInput = "Really Really Really long text";
28
28
  /**
29
29
  * Description here
30
30
  * @uiName String Enum Select
31
- * @enum ["option1","option2","option3"]
32
- * @enumNames ["Option 1", "Option 2", "Option 3"]
31
+ * @uiEnum ["option1","option2","option3"]
32
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
33
33
  */
34
34
  this.stringEnumSelect = "option2";
35
35
  /**
36
36
  * Description here
37
37
  * @uiName Number Enum Select
38
- * @enum [1,2,3]
39
- * @enumNames ["Option 1", "Option 2", "Option 3"]
38
+ * @uiEnum [1,2,3]
39
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
40
40
  */
41
41
  this.numberEnumSelect = 3;
42
42
  /**
@@ -75,12 +75,13 @@ const ShareButton = class {
75
75
  /**
76
76
  * Description here
77
77
  * @uiName Number Max 7
78
+ * @maximum 7
78
79
  */
79
80
  this.max = 6;
80
81
  /**
81
82
  * Description here
82
83
  * @uiName Number Min 7
83
- * @min 7
84
+ * @minimum 7
84
85
  */
85
86
  this.min = 8;
86
87
  /**
@@ -20,21 +20,21 @@ export declare class ShareButton {
20
20
  /**
21
21
  * Description here
22
22
  * @uiName Text Area Input
23
- * @uiWidget Text Area
23
+ * @uiWidget textArea
24
24
  */
25
25
  textAreaInput?: string;
26
26
  /**
27
27
  * Description here
28
28
  * @uiName String Enum Select
29
- * @enum ["option1","option2","option3"]
30
- * @enumNames ["Option 1", "Option 2", "Option 3"]
29
+ * @uiEnum ["option1","option2","option3"]
30
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
31
31
  */
32
32
  stringEnumSelect?: string;
33
33
  /**
34
34
  * Description here
35
35
  * @uiName Number Enum Select
36
- * @enum [1,2,3]
37
- * @enumNames ["Option 1", "Option 2", "Option 3"]
36
+ * @uiEnum [1,2,3]
37
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
38
38
  */
39
39
  numberEnumSelect?: number;
40
40
  /**
@@ -85,12 +85,13 @@ export declare class ShareButton {
85
85
  /**
86
86
  * Description here
87
87
  * @uiName Number Max 7
88
+ * @maximum 7
88
89
  */
89
90
  max?: number;
90
91
  /**
91
92
  * Description here
92
93
  * @uiName Number Min 7
93
- * @min 7
94
+ * @minimum 7
94
95
  */
95
96
  min?: number;
96
97
  /**
@@ -1184,6 +1184,7 @@ export namespace Components {
1184
1184
  /**
1185
1185
  * Description here
1186
1186
  * @uiName Number Max 7
1187
+ * @maximum 7
1187
1188
  */
1188
1189
  "max"?: number;
1189
1190
  /**
@@ -1195,7 +1196,7 @@ export namespace Components {
1195
1196
  /**
1196
1197
  * Description here
1197
1198
  * @uiName Number Min 7
1198
- * @min 7
1199
+ * @minimum 7
1199
1200
  */
1200
1201
  "min"?: number;
1201
1202
  /**
@@ -1207,8 +1208,8 @@ export namespace Components {
1207
1208
  /**
1208
1209
  * Description here
1209
1210
  * @uiName Number Enum Select
1210
- * @enum
1211
- * @enumNames ["Option 1", "Option 2", "Option 3"]
1211
+ * @uiEnum [1,2,3]
1212
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
1212
1213
  */
1213
1214
  "numberEnumSelect"?: number;
1214
1215
  /**
@@ -1237,8 +1238,8 @@ export namespace Components {
1237
1238
  /**
1238
1239
  * Description here
1239
1240
  * @uiName String Enum Select
1240
- * @enum
1241
- * @enumNames ["Option 1", "Option 2", "Option 3"]
1241
+ * @uiEnum ["option1","option2","option3"]
1242
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
1242
1243
  */
1243
1244
  "stringEnumSelect"?: string;
1244
1245
  /**
@@ -1250,7 +1251,7 @@ export namespace Components {
1250
1251
  /**
1251
1252
  * Description here
1252
1253
  * @uiName Text Area Input
1253
- * @uiWidget Text Area
1254
+ * @uiWidget textArea
1254
1255
  */
1255
1256
  "textAreaInput"?: string;
1256
1257
  /**
@@ -4029,6 +4030,7 @@ declare namespace LocalJSX {
4029
4030
  /**
4030
4031
  * Description here
4031
4032
  * @uiName Number Max 7
4033
+ * @maximum 7
4032
4034
  */
4033
4035
  "max"?: number;
4034
4036
  /**
@@ -4040,7 +4042,7 @@ declare namespace LocalJSX {
4040
4042
  /**
4041
4043
  * Description here
4042
4044
  * @uiName Number Min 7
4043
- * @min 7
4045
+ * @minimum 7
4044
4046
  */
4045
4047
  "min"?: number;
4046
4048
  /**
@@ -4052,8 +4054,8 @@ declare namespace LocalJSX {
4052
4054
  /**
4053
4055
  * Description here
4054
4056
  * @uiName Number Enum Select
4055
- * @enum
4056
- * @enumNames ["Option 1", "Option 2", "Option 3"]
4057
+ * @uiEnum [1,2,3]
4058
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
4057
4059
  */
4058
4060
  "numberEnumSelect"?: number;
4059
4061
  /**
@@ -4082,8 +4084,8 @@ declare namespace LocalJSX {
4082
4084
  /**
4083
4085
  * Description here
4084
4086
  * @uiName String Enum Select
4085
- * @enum
4086
- * @enumNames ["Option 1", "Option 2", "Option 3"]
4087
+ * @uiEnum ["option1","option2","option3"]
4088
+ * @uiEnumNames ["Option 1", "Option 2", "Option 3"]
4087
4089
  */
4088
4090
  "stringEnumSelect"?: string;
4089
4091
  /**
@@ -4095,7 +4097,7 @@ declare namespace LocalJSX {
4095
4097
  /**
4096
4098
  * Description here
4097
4099
  * @uiName Text Area Input
4098
- * @uiWidget Text Area
4100
+ * @uiWidget textArea
4099
4101
  */
4100
4102
  "textAreaInput"?: string;
4101
4103
  /**
package/docs/docs.docx CHANGED
Binary file