@isoftdata/svelte-user-configuration 1.1.0 → 1.1.2

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.
@@ -28,6 +28,7 @@ export let cardHeight = 0;
28
28
  export let myAccountMode = false;
29
29
  export let passwordValidationRules = void 0;
30
30
  export let showPasswordChange = false;
31
+ export let passwordMismatch = false;
31
32
  let isLoading = false;
32
33
  let passwordSetModal;
33
34
  let deactivateUserModal;
@@ -310,6 +311,7 @@ $: isCreatingNewUser = userAccount.id === null;
310
311
  <PasswordFields
311
312
  bind:password={userAccount.newPassword}
312
313
  bind:confirmPassword
314
+ bind:passwordMismatch
313
315
  columnClass="col-12"
314
316
  passwordLabel={translate('configuration.user.accountInfo.passwordManagementModal.newPassword', 'New Password')}
315
317
  confirmPasswordLabel={translate('configuration.user.accountInfo.passwordManagementModal.confirmNewPassword', 'Confirm New Password')}
@@ -27,6 +27,8 @@ declare const __propDef: {
27
27
  cardHeight?: number;
28
28
  myAccountMode?: boolean;
29
29
  passwordValidationRules?: PasswordValidationRules | undefined;
30
+ cardTitle?: string;
31
+ passwordMismatch?: boolean;
30
32
  };
31
33
  events: {
32
34
  [evt: string]: CustomEvent<any>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isoftdata/svelte-user-configuration",
3
- "version": "1.1.0",
3
+ "version": "1.1.2",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",