@kms-ngx-ui/presentational 20.8.2 → 20.8.3
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/index.d.ts
CHANGED
|
@@ -474,6 +474,11 @@ interface TextareaFieldOptions {
|
|
|
474
474
|
/** Options for FieldType.PASSWORD — passed to `kms-password`. */
|
|
475
475
|
interface PasswordFieldOptions {
|
|
476
476
|
withStrength?: boolean;
|
|
477
|
+
lowerCaseCriteriaMsg?: string;
|
|
478
|
+
upperCaseCriteriaMsg?: string;
|
|
479
|
+
numberCriteriaMsg?: string;
|
|
480
|
+
specialCharCriteriaMsg?: string;
|
|
481
|
+
minCharsCriteriaMsg?: string;
|
|
477
482
|
}
|
|
478
483
|
/** Position of the image preview relative to the upload button. */
|
|
479
484
|
type ImagePosition = 'top' | 'bottom' | 'left' | 'right';
|
package/package.json
CHANGED
package/src/assets/llms.txt
CHANGED
|
@@ -874,6 +874,11 @@ Usage: `value | kmsTypeOf`
|
|
|
874
874
|
- `min`: `number` (optional)
|
|
875
875
|
|
|
876
876
|
### PasswordFieldOptions
|
|
877
|
+
- `lowerCaseCriteriaMsg`: `string` (optional)
|
|
878
|
+
- `minCharsCriteriaMsg`: `string` (optional)
|
|
879
|
+
- `numberCriteriaMsg`: `string` (optional)
|
|
880
|
+
- `specialCharCriteriaMsg`: `string` (optional)
|
|
881
|
+
- `upperCaseCriteriaMsg`: `string` (optional)
|
|
877
882
|
- `withStrength`: `boolean` (optional)
|
|
878
883
|
|
|
879
884
|
### RadiobuttonInterface
|