@isoftdata/svelte-user-configuration 1.1.2 → 1.1.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.
@@ -27,6 +27,7 @@ export let usernameInput = void 0;
27
27
  export let cardHeight = 0;
28
28
  export let myAccountMode = false;
29
29
  export let passwordValidationRules = void 0;
30
+ export let cardTitle = translate("configuration.user.accountInfoHeader", "Account");
30
31
  export let showPasswordChange = false;
31
32
  export let passwordMismatch = false;
32
33
  let isLoading = false;
@@ -35,7 +36,6 @@ let deactivateUserModal;
35
36
  let passwordRecoveryModal;
36
37
  let activationPINInput;
37
38
  let currentPasswordField;
38
- let cardTitle = translate("configuration.user.accountInfoHeader", "Account");
39
39
  let confirmPassword = "";
40
40
  async function getNewActivationPIN(sendEmail = false) {
41
41
  let confirmationMessage = sendEmail ? translate("configuration.user.permissions.sendNewActivationPINMessage", "Are you sure you want to send a new activation PIN? The user will receive an email with the new activation PIN.") : translate("configuration.user.permissions.generateNewActivationPINMessage", "Are you sure you want to generate a new activation PIN?");
@@ -28,6 +28,7 @@ declare const __propDef: {
28
28
  myAccountMode?: boolean;
29
29
  passwordValidationRules?: PasswordValidationRules | undefined;
30
30
  cardTitle?: string;
31
+ showPasswordChange?: boolean;
31
32
  passwordMismatch?: boolean;
32
33
  };
33
34
  events: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@isoftdata/svelte-user-configuration",
3
- "version": "1.1.2",
3
+ "version": "1.1.3",
4
4
  "scripts": {
5
5
  "dev": "vite dev",
6
6
  "build": "vite build && npm run package",