sprof 0.0.168 → 0.0.170
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/core/auth/Auth.d.ts +7 -0
- package/dist/core/auth/fields/AuthField.d.ts +1 -0
- package/dist/core/index.d.ts +7 -0
- package/dist/sprof.js +153 -150
- package/dist/sprof.umd.cjs +7 -7
- package/dist/style.css +1 -1
- package/package.json +1 -1
package/dist/core/auth/Auth.d.ts
CHANGED
|
@@ -64,6 +64,7 @@ declare class Auth<UserT> {
|
|
|
64
64
|
validate: (value?: string | number | undefined) => string[];
|
|
65
65
|
} | undefined;
|
|
66
66
|
method: import('.').AuthMethods;
|
|
67
|
+
readonly IsPassword: boolean;
|
|
67
68
|
value: string;
|
|
68
69
|
Validate: () => string[];
|
|
69
70
|
Reset: () => void;
|
|
@@ -77,6 +78,7 @@ declare class Auth<UserT> {
|
|
|
77
78
|
placeholder: string;
|
|
78
79
|
id: import('.').AuthFieldsIds;
|
|
79
80
|
method?: import('.').AuthMethods | undefined;
|
|
81
|
+
readonly IsPassword: boolean;
|
|
80
82
|
value: string;
|
|
81
83
|
Validate: () => string[];
|
|
82
84
|
Reset: () => void;
|
|
@@ -132,6 +134,7 @@ declare class Auth<UserT> {
|
|
|
132
134
|
validate: (value?: string | number | undefined) => string[];
|
|
133
135
|
} | undefined;
|
|
134
136
|
method: import('.').AuthMethods;
|
|
137
|
+
readonly IsPassword: boolean;
|
|
135
138
|
value: string;
|
|
136
139
|
Validate: () => string[];
|
|
137
140
|
Reset: () => void;
|
|
@@ -145,6 +148,7 @@ declare class Auth<UserT> {
|
|
|
145
148
|
placeholder: string;
|
|
146
149
|
id: import('.').AuthFieldsIds;
|
|
147
150
|
method?: import('.').AuthMethods | undefined;
|
|
151
|
+
readonly IsPassword: boolean;
|
|
148
152
|
value: string;
|
|
149
153
|
Validate: () => string[];
|
|
150
154
|
Reset: () => void;
|
|
@@ -153,6 +157,7 @@ declare class Auth<UserT> {
|
|
|
153
157
|
id: import('.').AuthFieldsIds;
|
|
154
158
|
method?: import('.').AuthMethods | undefined;
|
|
155
159
|
name: string;
|
|
160
|
+
readonly IsPassword: boolean;
|
|
156
161
|
value: string;
|
|
157
162
|
placeholder: string;
|
|
158
163
|
validator?: {
|
|
@@ -193,6 +198,7 @@ declare class Auth<UserT> {
|
|
|
193
198
|
validate: (value?: string | number | undefined) => string[];
|
|
194
199
|
} | undefined;
|
|
195
200
|
method: import('.').AuthMethods;
|
|
201
|
+
readonly IsPassword: boolean;
|
|
196
202
|
value: string;
|
|
197
203
|
Validate: () => string[];
|
|
198
204
|
Reset: () => void;
|
|
@@ -226,6 +232,7 @@ declare class Auth<UserT> {
|
|
|
226
232
|
placeholder: string;
|
|
227
233
|
id: import('.').AuthFieldsIds;
|
|
228
234
|
method?: import('.').AuthMethods | undefined;
|
|
235
|
+
readonly IsPassword: boolean;
|
|
229
236
|
value: string;
|
|
230
237
|
Validate: () => string[];
|
|
231
238
|
Reset: () => void;
|
package/dist/core/index.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export default abstract class PF {
|
|
|
66
66
|
validate: (value?: string | number | undefined) => string[];
|
|
67
67
|
} | undefined;
|
|
68
68
|
method: import('./auth').AuthMethods;
|
|
69
|
+
readonly IsPassword: boolean;
|
|
69
70
|
value: string;
|
|
70
71
|
Validate: () => string[];
|
|
71
72
|
Reset: () => void;
|
|
@@ -79,6 +80,7 @@ export default abstract class PF {
|
|
|
79
80
|
placeholder: string;
|
|
80
81
|
id: import('./auth').AuthFieldsIds;
|
|
81
82
|
method?: import('./auth').AuthMethods | undefined;
|
|
83
|
+
readonly IsPassword: boolean;
|
|
82
84
|
value: string;
|
|
83
85
|
Validate: () => string[];
|
|
84
86
|
Reset: () => void;
|
|
@@ -134,6 +136,7 @@ export default abstract class PF {
|
|
|
134
136
|
validate: (value?: string | number | undefined) => string[];
|
|
135
137
|
} | undefined;
|
|
136
138
|
method: import('./auth').AuthMethods;
|
|
139
|
+
readonly IsPassword: boolean;
|
|
137
140
|
value: string;
|
|
138
141
|
Validate: () => string[];
|
|
139
142
|
Reset: () => void;
|
|
@@ -147,6 +150,7 @@ export default abstract class PF {
|
|
|
147
150
|
placeholder: string;
|
|
148
151
|
id: import('./auth').AuthFieldsIds;
|
|
149
152
|
method?: import('./auth').AuthMethods | undefined;
|
|
153
|
+
readonly IsPassword: boolean;
|
|
150
154
|
value: string;
|
|
151
155
|
Validate: () => string[];
|
|
152
156
|
Reset: () => void;
|
|
@@ -155,6 +159,7 @@ export default abstract class PF {
|
|
|
155
159
|
id: import('./auth').AuthFieldsIds;
|
|
156
160
|
method?: import('./auth').AuthMethods | undefined;
|
|
157
161
|
name: string;
|
|
162
|
+
readonly IsPassword: boolean;
|
|
158
163
|
value: string;
|
|
159
164
|
placeholder: string;
|
|
160
165
|
validator?: {
|
|
@@ -195,6 +200,7 @@ export default abstract class PF {
|
|
|
195
200
|
validate: (value?: string | number | undefined) => string[];
|
|
196
201
|
} | undefined;
|
|
197
202
|
method: import('./auth').AuthMethods;
|
|
203
|
+
readonly IsPassword: boolean;
|
|
198
204
|
value: string;
|
|
199
205
|
Validate: () => string[];
|
|
200
206
|
Reset: () => void;
|
|
@@ -228,6 +234,7 @@ export default abstract class PF {
|
|
|
228
234
|
placeholder: string;
|
|
229
235
|
id: import('./auth').AuthFieldsIds;
|
|
230
236
|
method?: import('./auth').AuthMethods | undefined;
|
|
237
|
+
readonly IsPassword: boolean;
|
|
231
238
|
value: string;
|
|
232
239
|
Validate: () => string[];
|
|
233
240
|
Reset: () => void;
|