@regulaforensics/idv-gui 2.3.129-nightly → 2.3.131-nightly
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/index.d.ts +2 -2
- package/dist/main.js +14024 -13913
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -340,7 +340,7 @@ declare type UITextQuestion = QuestionItem & {
|
|
|
340
340
|
};
|
|
341
341
|
|
|
342
342
|
declare type Validator = {
|
|
343
|
-
type: typeof VALIDATOR_TYPE.
|
|
343
|
+
type: typeof VALIDATOR_TYPE.NOT_EMPTY;
|
|
344
344
|
message: string;
|
|
345
345
|
} | {
|
|
346
346
|
type: typeof VALIDATOR_TYPE.REGEX;
|
|
@@ -349,7 +349,7 @@ declare type Validator = {
|
|
|
349
349
|
};
|
|
350
350
|
|
|
351
351
|
declare const VALIDATOR_TYPE: {
|
|
352
|
-
readonly
|
|
352
|
+
readonly NOT_EMPTY: "notEmpty";
|
|
353
353
|
readonly REGEX: "regex";
|
|
354
354
|
};
|
|
355
355
|
|