@saasquatch/mint-components 1.6.2-35 → 1.6.2-38
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.
- package/dist/cjs/sqm-portal-registration-form.cjs.entry.js +5 -0
- package/dist/collection/components/sqm-navigation-sidebar/sqm-navigation-sidebar.js +1 -1
- package/dist/collection/components/sqm-portal-registration-form/sqm-portal-registration-form.js +20 -0
- package/dist/esm/sqm-portal-registration-form.entry.js +5 -0
- package/dist/types/components/sqm-navigation-sidebar/sqm-navigation-sidebar.d.ts +1 -1
- package/dist/types/components/sqm-portal-registration-form/sqm-portal-registration-form.d.ts +5 -0
- package/dist/types/components.d.ts +10 -0
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
|
@@ -360,30 +360,35 @@ const PortalRegistrationForm = class {
|
|
|
360
360
|
* The message to be displayed when a required field is not filled.
|
|
361
361
|
*
|
|
362
362
|
* @uiName Required Field Message
|
|
363
|
+
* @uiWidget textArea
|
|
363
364
|
*/
|
|
364
365
|
this.requiredFieldErrorMessage = "Cannot be empty";
|
|
365
366
|
/**
|
|
366
367
|
* The message to be displayed when a the form submission fails unexpectedly.
|
|
367
368
|
*
|
|
368
369
|
* @uiName Network Error Message
|
|
370
|
+
* @uiWidget textArea
|
|
369
371
|
*/
|
|
370
372
|
this.networkErrorMessage = "Network request failed.";
|
|
371
373
|
/**
|
|
372
374
|
* The message to be displayed when password inputs do not match.
|
|
373
375
|
*
|
|
374
376
|
* @uiName Password Mismatch Message
|
|
377
|
+
* @uiWidget textArea
|
|
375
378
|
*/
|
|
376
379
|
this.passwordMismatchErrorMessage = "Passwords do not match.";
|
|
377
380
|
/**
|
|
378
381
|
* The message to be displayed when the email used is invalid or blocked.
|
|
379
382
|
*
|
|
380
383
|
* @uiName Invalid Email Message
|
|
384
|
+
* @uiWidget textArea
|
|
381
385
|
*/
|
|
382
386
|
this.invalidEmailErrorMessage = "Must be a valid email address";
|
|
383
387
|
/**
|
|
384
388
|
* The message to be displayed when the registration form is disabled.
|
|
385
389
|
*
|
|
386
390
|
* @uiName Form Disabled Message
|
|
391
|
+
* @uiWidget textArea
|
|
387
392
|
*/
|
|
388
393
|
this.formDisabledErrorMessage = "The registration form is currently disabled.";
|
|
389
394
|
stencilHooks_module.h$1(this);
|
|
@@ -3,7 +3,7 @@ import { Component, h, State } from "@stencil/core";
|
|
|
3
3
|
import { NavigationSidebarView } from "./sqm-navigation-sidebar-view";
|
|
4
4
|
/**
|
|
5
5
|
* @uiName Microsite Sidebar
|
|
6
|
-
* @slots [{"name":"", "title":"Sidebar Content"
|
|
6
|
+
* @slots [{"name":"", "title":"Sidebar Content"}]
|
|
7
7
|
*/
|
|
8
8
|
export class NavigationSidebar {
|
|
9
9
|
constructor() {
|
package/dist/collection/components/sqm-portal-registration-form/sqm-portal-registration-form.js
CHANGED
|
@@ -74,30 +74,35 @@ export class PortalRegistrationForm {
|
|
|
74
74
|
* The message to be displayed when a required field is not filled.
|
|
75
75
|
*
|
|
76
76
|
* @uiName Required Field Message
|
|
77
|
+
* @uiWidget textArea
|
|
77
78
|
*/
|
|
78
79
|
this.requiredFieldErrorMessage = "Cannot be empty";
|
|
79
80
|
/**
|
|
80
81
|
* The message to be displayed when a the form submission fails unexpectedly.
|
|
81
82
|
*
|
|
82
83
|
* @uiName Network Error Message
|
|
84
|
+
* @uiWidget textArea
|
|
83
85
|
*/
|
|
84
86
|
this.networkErrorMessage = "Network request failed.";
|
|
85
87
|
/**
|
|
86
88
|
* The message to be displayed when password inputs do not match.
|
|
87
89
|
*
|
|
88
90
|
* @uiName Password Mismatch Message
|
|
91
|
+
* @uiWidget textArea
|
|
89
92
|
*/
|
|
90
93
|
this.passwordMismatchErrorMessage = "Passwords do not match.";
|
|
91
94
|
/**
|
|
92
95
|
* The message to be displayed when the email used is invalid or blocked.
|
|
93
96
|
*
|
|
94
97
|
* @uiName Invalid Email Message
|
|
98
|
+
* @uiWidget textArea
|
|
95
99
|
*/
|
|
96
100
|
this.invalidEmailErrorMessage = "Must be a valid email address";
|
|
97
101
|
/**
|
|
98
102
|
* The message to be displayed when the registration form is disabled.
|
|
99
103
|
*
|
|
100
104
|
* @uiName Form Disabled Message
|
|
105
|
+
* @uiWidget textArea
|
|
101
106
|
*/
|
|
102
107
|
this.formDisabledErrorMessage = "The registration form is currently disabled.";
|
|
103
108
|
withHooks(this);
|
|
@@ -398,6 +403,9 @@ export class PortalRegistrationForm {
|
|
|
398
403
|
"tags": [{
|
|
399
404
|
"text": "Required Field Message",
|
|
400
405
|
"name": "uiName"
|
|
406
|
+
}, {
|
|
407
|
+
"text": "textArea",
|
|
408
|
+
"name": "uiWidget"
|
|
401
409
|
}],
|
|
402
410
|
"text": "The message to be displayed when a required field is not filled."
|
|
403
411
|
},
|
|
@@ -419,6 +427,9 @@ export class PortalRegistrationForm {
|
|
|
419
427
|
"tags": [{
|
|
420
428
|
"text": "Network Error Message",
|
|
421
429
|
"name": "uiName"
|
|
430
|
+
}, {
|
|
431
|
+
"text": "textArea",
|
|
432
|
+
"name": "uiWidget"
|
|
422
433
|
}],
|
|
423
434
|
"text": "The message to be displayed when a the form submission fails unexpectedly."
|
|
424
435
|
},
|
|
@@ -440,6 +451,9 @@ export class PortalRegistrationForm {
|
|
|
440
451
|
"tags": [{
|
|
441
452
|
"text": "Password Mismatch Message",
|
|
442
453
|
"name": "uiName"
|
|
454
|
+
}, {
|
|
455
|
+
"text": "textArea",
|
|
456
|
+
"name": "uiWidget"
|
|
443
457
|
}],
|
|
444
458
|
"text": "The message to be displayed when password inputs do not match."
|
|
445
459
|
},
|
|
@@ -461,6 +475,9 @@ export class PortalRegistrationForm {
|
|
|
461
475
|
"tags": [{
|
|
462
476
|
"text": "Invalid Email Message",
|
|
463
477
|
"name": "uiName"
|
|
478
|
+
}, {
|
|
479
|
+
"text": "textArea",
|
|
480
|
+
"name": "uiWidget"
|
|
464
481
|
}],
|
|
465
482
|
"text": "The message to be displayed when the email used is invalid or blocked."
|
|
466
483
|
},
|
|
@@ -482,6 +499,9 @@ export class PortalRegistrationForm {
|
|
|
482
499
|
"tags": [{
|
|
483
500
|
"text": "Form Disabled Message",
|
|
484
501
|
"name": "uiName"
|
|
502
|
+
}, {
|
|
503
|
+
"text": "textArea",
|
|
504
|
+
"name": "uiWidget"
|
|
485
505
|
}],
|
|
486
506
|
"text": "The message to be displayed when the registration form is disabled."
|
|
487
507
|
},
|
|
@@ -356,30 +356,35 @@ const PortalRegistrationForm = class {
|
|
|
356
356
|
* The message to be displayed when a required field is not filled.
|
|
357
357
|
*
|
|
358
358
|
* @uiName Required Field Message
|
|
359
|
+
* @uiWidget textArea
|
|
359
360
|
*/
|
|
360
361
|
this.requiredFieldErrorMessage = "Cannot be empty";
|
|
361
362
|
/**
|
|
362
363
|
* The message to be displayed when a the form submission fails unexpectedly.
|
|
363
364
|
*
|
|
364
365
|
* @uiName Network Error Message
|
|
366
|
+
* @uiWidget textArea
|
|
365
367
|
*/
|
|
366
368
|
this.networkErrorMessage = "Network request failed.";
|
|
367
369
|
/**
|
|
368
370
|
* The message to be displayed when password inputs do not match.
|
|
369
371
|
*
|
|
370
372
|
* @uiName Password Mismatch Message
|
|
373
|
+
* @uiWidget textArea
|
|
371
374
|
*/
|
|
372
375
|
this.passwordMismatchErrorMessage = "Passwords do not match.";
|
|
373
376
|
/**
|
|
374
377
|
* The message to be displayed when the email used is invalid or blocked.
|
|
375
378
|
*
|
|
376
379
|
* @uiName Invalid Email Message
|
|
380
|
+
* @uiWidget textArea
|
|
377
381
|
*/
|
|
378
382
|
this.invalidEmailErrorMessage = "Must be a valid email address";
|
|
379
383
|
/**
|
|
380
384
|
* The message to be displayed when the registration form is disabled.
|
|
381
385
|
*
|
|
382
386
|
* @uiName Form Disabled Message
|
|
387
|
+
* @uiWidget textArea
|
|
383
388
|
*/
|
|
384
389
|
this.formDisabledErrorMessage = "The registration form is currently disabled.";
|
|
385
390
|
h$1(this);
|
package/dist/types/components/sqm-portal-registration-form/sqm-portal-registration-form.d.ts
CHANGED
|
@@ -69,30 +69,35 @@ export declare class PortalRegistrationForm {
|
|
|
69
69
|
* The message to be displayed when a required field is not filled.
|
|
70
70
|
*
|
|
71
71
|
* @uiName Required Field Message
|
|
72
|
+
* @uiWidget textArea
|
|
72
73
|
*/
|
|
73
74
|
requiredFieldErrorMessage: string;
|
|
74
75
|
/**
|
|
75
76
|
* The message to be displayed when a the form submission fails unexpectedly.
|
|
76
77
|
*
|
|
77
78
|
* @uiName Network Error Message
|
|
79
|
+
* @uiWidget textArea
|
|
78
80
|
*/
|
|
79
81
|
networkErrorMessage: string;
|
|
80
82
|
/**
|
|
81
83
|
* The message to be displayed when password inputs do not match.
|
|
82
84
|
*
|
|
83
85
|
* @uiName Password Mismatch Message
|
|
86
|
+
* @uiWidget textArea
|
|
84
87
|
*/
|
|
85
88
|
passwordMismatchErrorMessage: string;
|
|
86
89
|
/**
|
|
87
90
|
* The message to be displayed when the email used is invalid or blocked.
|
|
88
91
|
*
|
|
89
92
|
* @uiName Invalid Email Message
|
|
93
|
+
* @uiWidget textArea
|
|
90
94
|
*/
|
|
91
95
|
invalidEmailErrorMessage: string;
|
|
92
96
|
/**
|
|
93
97
|
* The message to be displayed when the registration form is disabled.
|
|
94
98
|
*
|
|
95
99
|
* @uiName Form Disabled Message
|
|
100
|
+
* @uiWidget textArea
|
|
96
101
|
*/
|
|
97
102
|
formDisabledErrorMessage: string;
|
|
98
103
|
/**
|
|
@@ -1119,6 +1119,7 @@ export namespace Components {
|
|
|
1119
1119
|
/**
|
|
1120
1120
|
* The message to be displayed when the registration form is disabled.
|
|
1121
1121
|
* @uiName Form Disabled Message
|
|
1122
|
+
* @uiWidget textArea
|
|
1122
1123
|
*/
|
|
1123
1124
|
"formDisabledErrorMessage": string;
|
|
1124
1125
|
/**
|
|
@@ -1135,6 +1136,7 @@ export namespace Components {
|
|
|
1135
1136
|
/**
|
|
1136
1137
|
* The message to be displayed when the email used is invalid or blocked.
|
|
1137
1138
|
* @uiName Invalid Email Message
|
|
1139
|
+
* @uiWidget textArea
|
|
1138
1140
|
*/
|
|
1139
1141
|
"invalidEmailErrorMessage": string;
|
|
1140
1142
|
/**
|
|
@@ -1150,6 +1152,7 @@ export namespace Components {
|
|
|
1150
1152
|
/**
|
|
1151
1153
|
* The message to be displayed when a the form submission fails unexpectedly.
|
|
1152
1154
|
* @uiName Network Error Message
|
|
1155
|
+
* @uiWidget textArea
|
|
1153
1156
|
*/
|
|
1154
1157
|
"networkErrorMessage": string;
|
|
1155
1158
|
/**
|
|
@@ -1169,6 +1172,7 @@ export namespace Components {
|
|
|
1169
1172
|
/**
|
|
1170
1173
|
* The message to be displayed when password inputs do not match.
|
|
1171
1174
|
* @uiName Password Mismatch Message
|
|
1175
|
+
* @uiWidget textArea
|
|
1172
1176
|
*/
|
|
1173
1177
|
"passwordMismatchErrorMessage": string;
|
|
1174
1178
|
/**
|
|
@@ -1180,6 +1184,7 @@ export namespace Components {
|
|
|
1180
1184
|
/**
|
|
1181
1185
|
* The message to be displayed when a required field is not filled.
|
|
1182
1186
|
* @uiName Required Field Message
|
|
1187
|
+
* @uiWidget textArea
|
|
1183
1188
|
*/
|
|
1184
1189
|
"requiredFieldErrorMessage": string;
|
|
1185
1190
|
/**
|
|
@@ -4053,6 +4058,7 @@ declare namespace LocalJSX {
|
|
|
4053
4058
|
/**
|
|
4054
4059
|
* The message to be displayed when the registration form is disabled.
|
|
4055
4060
|
* @uiName Form Disabled Message
|
|
4061
|
+
* @uiWidget textArea
|
|
4056
4062
|
*/
|
|
4057
4063
|
"formDisabledErrorMessage"?: string;
|
|
4058
4064
|
/**
|
|
@@ -4069,6 +4075,7 @@ declare namespace LocalJSX {
|
|
|
4069
4075
|
/**
|
|
4070
4076
|
* The message to be displayed when the email used is invalid or blocked.
|
|
4071
4077
|
* @uiName Invalid Email Message
|
|
4078
|
+
* @uiWidget textArea
|
|
4072
4079
|
*/
|
|
4073
4080
|
"invalidEmailErrorMessage"?: string;
|
|
4074
4081
|
/**
|
|
@@ -4084,6 +4091,7 @@ declare namespace LocalJSX {
|
|
|
4084
4091
|
/**
|
|
4085
4092
|
* The message to be displayed when a the form submission fails unexpectedly.
|
|
4086
4093
|
* @uiName Network Error Message
|
|
4094
|
+
* @uiWidget textArea
|
|
4087
4095
|
*/
|
|
4088
4096
|
"networkErrorMessage"?: string;
|
|
4089
4097
|
/**
|
|
@@ -4103,6 +4111,7 @@ declare namespace LocalJSX {
|
|
|
4103
4111
|
/**
|
|
4104
4112
|
* The message to be displayed when password inputs do not match.
|
|
4105
4113
|
* @uiName Password Mismatch Message
|
|
4114
|
+
* @uiWidget textArea
|
|
4106
4115
|
*/
|
|
4107
4116
|
"passwordMismatchErrorMessage"?: string;
|
|
4108
4117
|
/**
|
|
@@ -4114,6 +4123,7 @@ declare namespace LocalJSX {
|
|
|
4114
4123
|
/**
|
|
4115
4124
|
* The message to be displayed when a required field is not filled.
|
|
4116
4125
|
* @uiName Required Field Message
|
|
4126
|
+
* @uiWidget textArea
|
|
4117
4127
|
*/
|
|
4118
4128
|
"requiredFieldErrorMessage"?: string;
|
|
4119
4129
|
/**
|
package/docs/docs.docx
CHANGED
|
Binary file
|