@scm-manager/ui-components 2.32.0 → 2.32.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@scm-manager/ui-components",
3
- "version": "2.32.0",
3
+ "version": "2.32.1",
4
4
  "description": "UI Components for SCM-Manager and its plugins",
5
5
  "main": "src/index.ts",
6
6
  "files": [
@@ -25,7 +25,7 @@
25
25
  "@scm-manager/jest-preset": "^2.13.0",
26
26
  "@scm-manager/prettier-config": "^2.10.1",
27
27
  "@scm-manager/tsconfig": "^2.12.0",
28
- "@scm-manager/ui-tests": "^2.32.0",
28
+ "@scm-manager/ui-tests": "^2.32.1",
29
29
  "@storybook/addon-actions": "^6.3.12",
30
30
  "@storybook/addon-storyshots": "^6.3.12",
31
31
  "@storybook/builder-webpack5": "^6.3.12",
@@ -66,9 +66,9 @@
66
66
  },
67
67
  "dependencies": {
68
68
  "@headlessui/react": "^1.4.3",
69
- "@scm-manager/ui-api": "^2.32.0",
70
- "@scm-manager/ui-extensions": "^2.32.0",
71
- "@scm-manager/ui-types": "^2.32.0",
69
+ "@scm-manager/ui-api": "^2.32.1",
70
+ "@scm-manager/ui-extensions": "^2.32.1",
71
+ "@scm-manager/ui-types": "^2.32.1",
72
72
  "classnames": "^2.2.6",
73
73
  "date-fns": "^2.4.1",
74
74
  "deepmerge": "^4.2.2",
@@ -82,6 +82,7 @@ const PasswordConfirmation: FC<InnerProps> = ({ passwordChanged, passwordValidat
82
82
  errorMessage={t("password.passwordInvalid")}
83
83
  ref={innerRef}
84
84
  onReturnPressed={onReturnPressed}
85
+ testId="input-password"
85
86
  />
86
87
  </div>
87
88
  <div className="column is-half">
@@ -93,6 +94,7 @@ const PasswordConfirmation: FC<InnerProps> = ({ passwordChanged, passwordValidat
93
94
  validationError={passwordConfirmationFailed}
94
95
  errorMessage={t("password.passwordConfirmFailed")}
95
96
  onReturnPressed={onReturnPressed}
97
+ testId="input-password-confirmation"
96
98
  />
97
99
  </div>
98
100
  </div>