@saasquatch/mint-components 1.6.2-15 → 1.6.2-16
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-big-stat_35.cjs.entry.js +2 -0
- package/dist/cjs/sqm-portal-logout.cjs.entry.js +2 -1
- package/dist/cjs/sqm-portal-registration-form.cjs.entry.js +1 -0
- package/dist/cjs/sqm-portal-reset-password.cjs.entry.js +2 -0
- package/dist/cjs/sqm-portal-verify-email.cjs.entry.js +2 -0
- package/dist/collection/components/sqm-portal-login/sqm-portal-login.js +4 -0
- package/dist/collection/components/sqm-portal-logout/sqm-portal-logout.js +5 -1
- package/dist/collection/components/sqm-portal-register/sqm-portal-register.js +4 -0
- package/dist/collection/components/sqm-portal-registration-form/sqm-portal-registration-form.js +4 -0
- package/dist/collection/components/sqm-portal-reset-password/sqm-portal-reset-password.js +8 -0
- package/dist/collection/components/sqm-portal-verify-email/sqm-portal-verify-email.js +8 -0
- package/dist/esm/sqm-big-stat_35.entry.js +2 -0
- package/dist/esm/sqm-portal-logout.entry.js +2 -1
- package/dist/esm/sqm-portal-registration-form.entry.js +1 -0
- package/dist/esm/sqm-portal-reset-password.entry.js +2 -0
- package/dist/esm/sqm-portal-verify-email.entry.js +2 -0
- package/dist/types/components/sqm-portal-login/sqm-portal-login.d.ts +1 -0
- package/dist/types/components/sqm-portal-logout/sqm-portal-logout.d.ts +2 -1
- package/dist/types/components/sqm-portal-register/sqm-portal-register.d.ts +1 -0
- package/dist/types/components/sqm-portal-registration-form/sqm-portal-registration-form.d.ts +1 -0
- package/dist/types/components/sqm-portal-reset-password/sqm-portal-reset-password.d.ts +2 -0
- package/dist/types/components/sqm-portal-verify-email/sqm-portal-verify-email.d.ts +2 -0
- package/dist/types/components.d.ts +16 -0
- package/docs/docs.docx +0 -0
- package/docs/raisins.json +1 -1
- package/grapesjs/grapesjs.js +1 -1
- package/package.json +1 -1
|
@@ -1455,6 +1455,7 @@ const PortalLogin = class {
|
|
|
1455
1455
|
* Page participants are navigated to after login.
|
|
1456
1456
|
*
|
|
1457
1457
|
* @uiName Login Redirect Path
|
|
1458
|
+
* @uiWidget pageSelect
|
|
1458
1459
|
*/
|
|
1459
1460
|
this.nextPage = "/";
|
|
1460
1461
|
/**
|
|
@@ -1646,6 +1647,7 @@ const PortalRegister = class {
|
|
|
1646
1647
|
* Page participants are navigated to after registration.
|
|
1647
1648
|
*
|
|
1648
1649
|
* @uiName Registration Redirect Path
|
|
1650
|
+
* @uiWidget pageSelect
|
|
1649
1651
|
*/
|
|
1650
1652
|
this.nextPage = "/";
|
|
1651
1653
|
/**
|
|
@@ -96,12 +96,14 @@ const PortalResetPassword = class {
|
|
|
96
96
|
* The page that participants are redirected to when the password reset succeeds.
|
|
97
97
|
*
|
|
98
98
|
* @uiName Reset Successful Redirect Path
|
|
99
|
+
* @uiWidget pageSelect
|
|
99
100
|
*/
|
|
100
101
|
this.nextPage = "/";
|
|
101
102
|
/**
|
|
102
103
|
* The page that participants are redirected to if the reset fails due to outdated password reset attempt.
|
|
103
104
|
*
|
|
104
105
|
* @uiName Reset Failed Redirect Path
|
|
106
|
+
* @uiWidget pageSelect
|
|
105
107
|
*/
|
|
106
108
|
this.failedPage = "/";
|
|
107
109
|
/**
|
|
@@ -79,12 +79,14 @@ const PortalVerifyEmail = class {
|
|
|
79
79
|
* The page that participants are redirected to when the verification succeeds.
|
|
80
80
|
*
|
|
81
81
|
* @uiName Verification Redirect Path
|
|
82
|
+
* @uiWidget pageSelect
|
|
82
83
|
*/
|
|
83
84
|
this.nextPage = "/";
|
|
84
85
|
/**
|
|
85
86
|
* The page that participants are redirected to if verification fails due to outdated verification attempt.
|
|
86
87
|
*
|
|
87
88
|
* @uiName Verification Failed Redirect Path
|
|
89
|
+
* @uiWidget pageSelect
|
|
88
90
|
*/
|
|
89
91
|
this.failedPage = "/";
|
|
90
92
|
stencilHooks_module.h$1(this);
|
|
@@ -14,6 +14,7 @@ export class PortalLogin {
|
|
|
14
14
|
* Page participants are navigated to after login.
|
|
15
15
|
*
|
|
16
16
|
* @uiName Login Redirect Path
|
|
17
|
+
* @uiWidget pageSelect
|
|
17
18
|
*/
|
|
18
19
|
this.nextPage = "/";
|
|
19
20
|
/**
|
|
@@ -87,6 +88,9 @@ export class PortalLogin {
|
|
|
87
88
|
"tags": [{
|
|
88
89
|
"text": "Login Redirect Path",
|
|
89
90
|
"name": "uiName"
|
|
91
|
+
}, {
|
|
92
|
+
"text": "pageSelect",
|
|
93
|
+
"name": "uiWidget"
|
|
90
94
|
}],
|
|
91
95
|
"text": "Page participants are navigated to after login."
|
|
92
96
|
},
|
|
@@ -11,7 +11,8 @@ export class PortalLogout {
|
|
|
11
11
|
/**
|
|
12
12
|
* Redirect participants to this path when they log out
|
|
13
13
|
*
|
|
14
|
-
*
|
|
14
|
+
* @uiName Logout Redirect Path
|
|
15
|
+
* @uiWidget pageSelect
|
|
15
16
|
*/
|
|
16
17
|
this.nextPage = "/";
|
|
17
18
|
withHooks(this);
|
|
@@ -37,6 +38,9 @@ export class PortalLogout {
|
|
|
37
38
|
"tags": [{
|
|
38
39
|
"text": "Logout Redirect Path",
|
|
39
40
|
"name": "uiName"
|
|
41
|
+
}, {
|
|
42
|
+
"text": "pageSelect",
|
|
43
|
+
"name": "uiWidget"
|
|
40
44
|
}],
|
|
41
45
|
"text": "Redirect participants to this path when they log out"
|
|
42
46
|
},
|
|
@@ -15,6 +15,7 @@ export class PortalRegister {
|
|
|
15
15
|
* Page participants are navigated to after registration.
|
|
16
16
|
*
|
|
17
17
|
* @uiName Registration Redirect Path
|
|
18
|
+
* @uiWidget pageSelect
|
|
18
19
|
*/
|
|
19
20
|
this.nextPage = "/";
|
|
20
21
|
/**
|
|
@@ -108,6 +109,9 @@ export class PortalRegister {
|
|
|
108
109
|
"tags": [{
|
|
109
110
|
"text": "Registration Redirect Path",
|
|
110
111
|
"name": "uiName"
|
|
112
|
+
}, {
|
|
113
|
+
"text": "pageSelect",
|
|
114
|
+
"name": "uiWidget"
|
|
111
115
|
}],
|
|
112
116
|
"text": "Page participants are navigated to after registration."
|
|
113
117
|
},
|
package/dist/collection/components/sqm-portal-registration-form/sqm-portal-registration-form.js
CHANGED
|
@@ -15,6 +15,7 @@ export class PortalRegistrationForm {
|
|
|
15
15
|
* Page participants are navigated to after registration.
|
|
16
16
|
*
|
|
17
17
|
* @uiName Registration Redirect Path
|
|
18
|
+
* @uiWidget pageSelect
|
|
18
19
|
*/
|
|
19
20
|
this.nextPage = "/";
|
|
20
21
|
/**
|
|
@@ -114,6 +115,9 @@ export class PortalRegistrationForm {
|
|
|
114
115
|
"tags": [{
|
|
115
116
|
"text": "Registration Redirect Path",
|
|
116
117
|
"name": "uiName"
|
|
118
|
+
}, {
|
|
119
|
+
"text": "pageSelect",
|
|
120
|
+
"name": "uiWidget"
|
|
117
121
|
}],
|
|
118
122
|
"text": "Page participants are navigated to after registration."
|
|
119
123
|
},
|
|
@@ -14,12 +14,14 @@ export class PortalResetPassword {
|
|
|
14
14
|
* The page that participants are redirected to when the password reset succeeds.
|
|
15
15
|
*
|
|
16
16
|
* @uiName Reset Successful Redirect Path
|
|
17
|
+
* @uiWidget pageSelect
|
|
17
18
|
*/
|
|
18
19
|
this.nextPage = "/";
|
|
19
20
|
/**
|
|
20
21
|
* The page that participants are redirected to if the reset fails due to outdated password reset attempt.
|
|
21
22
|
*
|
|
22
23
|
* @uiName Reset Failed Redirect Path
|
|
24
|
+
* @uiWidget pageSelect
|
|
23
25
|
*/
|
|
24
26
|
this.failedPage = "/";
|
|
25
27
|
/**
|
|
@@ -83,6 +85,9 @@ export class PortalResetPassword {
|
|
|
83
85
|
"tags": [{
|
|
84
86
|
"text": "Reset Successful Redirect Path",
|
|
85
87
|
"name": "uiName"
|
|
88
|
+
}, {
|
|
89
|
+
"text": "pageSelect",
|
|
90
|
+
"name": "uiWidget"
|
|
86
91
|
}],
|
|
87
92
|
"text": "The page that participants are redirected to when the password reset succeeds."
|
|
88
93
|
},
|
|
@@ -104,6 +109,9 @@ export class PortalResetPassword {
|
|
|
104
109
|
"tags": [{
|
|
105
110
|
"text": "Reset Failed Redirect Path",
|
|
106
111
|
"name": "uiName"
|
|
112
|
+
}, {
|
|
113
|
+
"text": "pageSelect",
|
|
114
|
+
"name": "uiWidget"
|
|
107
115
|
}],
|
|
108
116
|
"text": "The page that participants are redirected to if the reset fails due to outdated password reset attempt."
|
|
109
117
|
},
|
|
@@ -14,12 +14,14 @@ export class PortalVerifyEmail {
|
|
|
14
14
|
* The page that participants are redirected to when the verification succeeds.
|
|
15
15
|
*
|
|
16
16
|
* @uiName Verification Redirect Path
|
|
17
|
+
* @uiWidget pageSelect
|
|
17
18
|
*/
|
|
18
19
|
this.nextPage = "/";
|
|
19
20
|
/**
|
|
20
21
|
* The page that participants are redirected to if verification fails due to outdated verification attempt.
|
|
21
22
|
*
|
|
22
23
|
* @uiName Verification Failed Redirect Path
|
|
24
|
+
* @uiWidget pageSelect
|
|
23
25
|
*/
|
|
24
26
|
this.failedPage = "/";
|
|
25
27
|
withHooks(this);
|
|
@@ -48,6 +50,9 @@ export class PortalVerifyEmail {
|
|
|
48
50
|
"tags": [{
|
|
49
51
|
"text": "Verification Redirect Path",
|
|
50
52
|
"name": "uiName"
|
|
53
|
+
}, {
|
|
54
|
+
"text": "pageSelect",
|
|
55
|
+
"name": "uiWidget"
|
|
51
56
|
}],
|
|
52
57
|
"text": "The page that participants are redirected to when the verification succeeds."
|
|
53
58
|
},
|
|
@@ -69,6 +74,9 @@ export class PortalVerifyEmail {
|
|
|
69
74
|
"tags": [{
|
|
70
75
|
"text": "Verification Failed Redirect Path",
|
|
71
76
|
"name": "uiName"
|
|
77
|
+
}, {
|
|
78
|
+
"text": "pageSelect",
|
|
79
|
+
"name": "uiWidget"
|
|
72
80
|
}],
|
|
73
81
|
"text": "The page that participants are redirected to if verification fails due to outdated verification attempt."
|
|
74
82
|
},
|
|
@@ -1451,6 +1451,7 @@ const PortalLogin = class {
|
|
|
1451
1451
|
* Page participants are navigated to after login.
|
|
1452
1452
|
*
|
|
1453
1453
|
* @uiName Login Redirect Path
|
|
1454
|
+
* @uiWidget pageSelect
|
|
1454
1455
|
*/
|
|
1455
1456
|
this.nextPage = "/";
|
|
1456
1457
|
/**
|
|
@@ -1642,6 +1643,7 @@ const PortalRegister = class {
|
|
|
1642
1643
|
* Page participants are navigated to after registration.
|
|
1643
1644
|
*
|
|
1644
1645
|
* @uiName Registration Redirect Path
|
|
1646
|
+
* @uiWidget pageSelect
|
|
1645
1647
|
*/
|
|
1646
1648
|
this.nextPage = "/";
|
|
1647
1649
|
/**
|
|
@@ -92,12 +92,14 @@ const PortalResetPassword = class {
|
|
|
92
92
|
* The page that participants are redirected to when the password reset succeeds.
|
|
93
93
|
*
|
|
94
94
|
* @uiName Reset Successful Redirect Path
|
|
95
|
+
* @uiWidget pageSelect
|
|
95
96
|
*/
|
|
96
97
|
this.nextPage = "/";
|
|
97
98
|
/**
|
|
98
99
|
* The page that participants are redirected to if the reset fails due to outdated password reset attempt.
|
|
99
100
|
*
|
|
100
101
|
* @uiName Reset Failed Redirect Path
|
|
102
|
+
* @uiWidget pageSelect
|
|
101
103
|
*/
|
|
102
104
|
this.failedPage = "/";
|
|
103
105
|
/**
|
|
@@ -75,12 +75,14 @@ const PortalVerifyEmail = class {
|
|
|
75
75
|
* The page that participants are redirected to when the verification succeeds.
|
|
76
76
|
*
|
|
77
77
|
* @uiName Verification Redirect Path
|
|
78
|
+
* @uiWidget pageSelect
|
|
78
79
|
*/
|
|
79
80
|
this.nextPage = "/";
|
|
80
81
|
/**
|
|
81
82
|
* The page that participants are redirected to if verification fails due to outdated verification attempt.
|
|
82
83
|
*
|
|
83
84
|
* @uiName Verification Failed Redirect Path
|
|
85
|
+
* @uiWidget pageSelect
|
|
84
86
|
*/
|
|
85
87
|
this.failedPage = "/";
|
|
86
88
|
h(this);
|
|
@@ -9,12 +9,14 @@ export declare class PortalResetPassword {
|
|
|
9
9
|
* The page that participants are redirected to when the password reset succeeds.
|
|
10
10
|
*
|
|
11
11
|
* @uiName Reset Successful Redirect Path
|
|
12
|
+
* @uiWidget pageSelect
|
|
12
13
|
*/
|
|
13
14
|
nextPage: string;
|
|
14
15
|
/**
|
|
15
16
|
* The page that participants are redirected to if the reset fails due to outdated password reset attempt.
|
|
16
17
|
*
|
|
17
18
|
* @uiName Reset Failed Redirect Path
|
|
19
|
+
* @uiWidget pageSelect
|
|
18
20
|
*/
|
|
19
21
|
failedPage: string;
|
|
20
22
|
/**
|
|
@@ -9,12 +9,14 @@ export declare class PortalVerifyEmail {
|
|
|
9
9
|
* The page that participants are redirected to when the verification succeeds.
|
|
10
10
|
*
|
|
11
11
|
* @uiName Verification Redirect Path
|
|
12
|
+
* @uiWidget pageSelect
|
|
12
13
|
*/
|
|
13
14
|
nextPage: string;
|
|
14
15
|
/**
|
|
15
16
|
* The page that participants are redirected to if verification fails due to outdated verification attempt.
|
|
16
17
|
*
|
|
17
18
|
* @uiName Verification Failed Redirect Path
|
|
19
|
+
* @uiWidget pageSelect
|
|
18
20
|
*/
|
|
19
21
|
failedPage: string;
|
|
20
22
|
/**
|
|
@@ -917,6 +917,7 @@ export namespace Components {
|
|
|
917
917
|
/**
|
|
918
918
|
* Page participants are navigated to after login.
|
|
919
919
|
* @uiName Login Redirect Path
|
|
920
|
+
* @uiWidget pageSelect
|
|
920
921
|
*/
|
|
921
922
|
"nextPage": string;
|
|
922
923
|
/**
|
|
@@ -946,6 +947,7 @@ export namespace Components {
|
|
|
946
947
|
/**
|
|
947
948
|
* Redirect participants to this path when they log out
|
|
948
949
|
* @uiName Logout Redirect Path
|
|
950
|
+
* @uiWidget pageSelect
|
|
949
951
|
*/
|
|
950
952
|
"nextPage": string;
|
|
951
953
|
}
|
|
@@ -1046,6 +1048,7 @@ export namespace Components {
|
|
|
1046
1048
|
/**
|
|
1047
1049
|
* Page participants are navigated to after registration.
|
|
1048
1050
|
* @uiName Registration Redirect Path
|
|
1051
|
+
* @uiWidget pageSelect
|
|
1049
1052
|
*/
|
|
1050
1053
|
"nextPage": string;
|
|
1051
1054
|
/**
|
|
@@ -1113,6 +1116,7 @@ export namespace Components {
|
|
|
1113
1116
|
/**
|
|
1114
1117
|
* Page participants are navigated to after registration.
|
|
1115
1118
|
* @uiName Registration Redirect Path
|
|
1119
|
+
* @uiWidget pageSelect
|
|
1116
1120
|
*/
|
|
1117
1121
|
"nextPage": string;
|
|
1118
1122
|
/**
|
|
@@ -1157,11 +1161,13 @@ export namespace Components {
|
|
|
1157
1161
|
/**
|
|
1158
1162
|
* The page that participants are redirected to if the reset fails due to outdated password reset attempt.
|
|
1159
1163
|
* @uiName Reset Failed Redirect Path
|
|
1164
|
+
* @uiWidget pageSelect
|
|
1160
1165
|
*/
|
|
1161
1166
|
"failedPage": string;
|
|
1162
1167
|
/**
|
|
1163
1168
|
* The page that participants are redirected to when the password reset succeeds.
|
|
1164
1169
|
* @uiName Reset Successful Redirect Path
|
|
1170
|
+
* @uiWidget pageSelect
|
|
1165
1171
|
*/
|
|
1166
1172
|
"nextPage": string;
|
|
1167
1173
|
/**
|
|
@@ -1192,11 +1198,13 @@ export namespace Components {
|
|
|
1192
1198
|
/**
|
|
1193
1199
|
* The page that participants are redirected to if verification fails due to outdated verification attempt.
|
|
1194
1200
|
* @uiName Verification Failed Redirect Path
|
|
1201
|
+
* @uiWidget pageSelect
|
|
1195
1202
|
*/
|
|
1196
1203
|
"failedPage": string;
|
|
1197
1204
|
/**
|
|
1198
1205
|
* The page that participants are redirected to when the verification succeeds.
|
|
1199
1206
|
* @uiName Verification Redirect Path
|
|
1207
|
+
* @uiWidget pageSelect
|
|
1200
1208
|
*/
|
|
1201
1209
|
"nextPage": string;
|
|
1202
1210
|
}
|
|
@@ -3787,6 +3795,7 @@ declare namespace LocalJSX {
|
|
|
3787
3795
|
/**
|
|
3788
3796
|
* Page participants are navigated to after login.
|
|
3789
3797
|
* @uiName Login Redirect Path
|
|
3798
|
+
* @uiWidget pageSelect
|
|
3790
3799
|
*/
|
|
3791
3800
|
"nextPage"?: string;
|
|
3792
3801
|
/**
|
|
@@ -3816,6 +3825,7 @@ declare namespace LocalJSX {
|
|
|
3816
3825
|
/**
|
|
3817
3826
|
* Redirect participants to this path when they log out
|
|
3818
3827
|
* @uiName Logout Redirect Path
|
|
3828
|
+
* @uiWidget pageSelect
|
|
3819
3829
|
*/
|
|
3820
3830
|
"nextPage"?: string;
|
|
3821
3831
|
}
|
|
@@ -3916,6 +3926,7 @@ declare namespace LocalJSX {
|
|
|
3916
3926
|
/**
|
|
3917
3927
|
* Page participants are navigated to after registration.
|
|
3918
3928
|
* @uiName Registration Redirect Path
|
|
3929
|
+
* @uiWidget pageSelect
|
|
3919
3930
|
*/
|
|
3920
3931
|
"nextPage"?: string;
|
|
3921
3932
|
/**
|
|
@@ -3983,6 +3994,7 @@ declare namespace LocalJSX {
|
|
|
3983
3994
|
/**
|
|
3984
3995
|
* Page participants are navigated to after registration.
|
|
3985
3996
|
* @uiName Registration Redirect Path
|
|
3997
|
+
* @uiWidget pageSelect
|
|
3986
3998
|
*/
|
|
3987
3999
|
"nextPage"?: string;
|
|
3988
4000
|
/**
|
|
@@ -4027,11 +4039,13 @@ declare namespace LocalJSX {
|
|
|
4027
4039
|
/**
|
|
4028
4040
|
* The page that participants are redirected to if the reset fails due to outdated password reset attempt.
|
|
4029
4041
|
* @uiName Reset Failed Redirect Path
|
|
4042
|
+
* @uiWidget pageSelect
|
|
4030
4043
|
*/
|
|
4031
4044
|
"failedPage"?: string;
|
|
4032
4045
|
/**
|
|
4033
4046
|
* The page that participants are redirected to when the password reset succeeds.
|
|
4034
4047
|
* @uiName Reset Successful Redirect Path
|
|
4048
|
+
* @uiWidget pageSelect
|
|
4035
4049
|
*/
|
|
4036
4050
|
"nextPage"?: string;
|
|
4037
4051
|
/**
|
|
@@ -4062,11 +4076,13 @@ declare namespace LocalJSX {
|
|
|
4062
4076
|
/**
|
|
4063
4077
|
* The page that participants are redirected to if verification fails due to outdated verification attempt.
|
|
4064
4078
|
* @uiName Verification Failed Redirect Path
|
|
4079
|
+
* @uiWidget pageSelect
|
|
4065
4080
|
*/
|
|
4066
4081
|
"failedPage"?: string;
|
|
4067
4082
|
/**
|
|
4068
4083
|
* The page that participants are redirected to when the verification succeeds.
|
|
4069
4084
|
* @uiName Verification Redirect Path
|
|
4085
|
+
* @uiWidget pageSelect
|
|
4070
4086
|
*/
|
|
4071
4087
|
"nextPage"?: string;
|
|
4072
4088
|
}
|
package/docs/docs.docx
CHANGED
|
Binary file
|