@commercetools-uikit/password-field 17.0.0 → 17.1.0
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/README.md +8 -0
- package/dist/commercetools-uikit-password-field.cjs.d.ts +1 -1
- package/dist/commercetools-uikit-password-field.cjs.dev.js +19 -3
- package/dist/commercetools-uikit-password-field.cjs.prod.js +17 -3
- package/dist/commercetools-uikit-password-field.esm.js +18 -3
- package/dist/declarations/src/password-field.d.ts +3 -0
- package/package.json +13 -12
- package/dist/commercetools-uikit-password-field.cjs.d.ts.map +0 -1
package/README.md
CHANGED
|
@@ -50,7 +50,9 @@ export default Example;
|
|
|
50
50
|
| `id` | `string` | | | Used as HTML id property. An id is auto-generated when it is not specified. |
|
|
51
51
|
| `horizontalConstraint` | `union`<br/>Possible values:<br/>`, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 'scale', 'auto'` | | `'scale'` | Horizontal size limit of the input fields. |
|
|
52
52
|
| `errors` | `Record` | | | A map of errors. Error messages for known errors are rendered automatically.
<br />
Unknown errors will be forwarded to `renderError` |
|
|
53
|
+
| `warnings` | `Record` | | | A map of warnings. Warning messages for known warnings are rendered automatically.
<br/>
Unknown warnings will be forwarded to renderWarning. |
|
|
53
54
|
| `renderError` | `Function`<br/>[See signature.](#signature-renderError) | | | Called with custom errors. This function can return a message which will be wrapped in an ErrorMessage. It can also return null to show no error. |
|
|
55
|
+
| `renderWarning` | `Function`<br/>[See signature.](#signature-renderWarning) | | | Called with custom warnings, as renderWarning(key, warning). This function can return a message which will be wrapped in a WarningMessage.
<br />
It can also return null to show no warning. |
|
|
54
56
|
| `isRequired` | `boolean` | | | Indicates if the value is required. Shows an the "required asterisk" if so. |
|
|
55
57
|
| `touched` | `boolean` | | | Indicates whether the field was touched. Errors will only be shown when the field was touched. |
|
|
56
58
|
| `name` | `string` | | | Used as HTML name of the input component. property |
|
|
@@ -78,6 +80,12 @@ export default Example;
|
|
|
78
80
|
(key: string, error?: boolean) => ReactNode;
|
|
79
81
|
```
|
|
80
82
|
|
|
83
|
+
### Signature `renderWarning`
|
|
84
|
+
|
|
85
|
+
```ts
|
|
86
|
+
(key: string, warning?: boolean) => ReactNode;
|
|
87
|
+
```
|
|
88
|
+
|
|
81
89
|
### Signature `onInfoButtonClick`
|
|
82
90
|
|
|
83
91
|
```ts
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
export * from "./declarations/src/index";
|
|
2
2
|
export { default } from "./declarations/src/index";
|
|
3
|
-
//# sourceMappingURL=
|
|
3
|
+
//# sourceMappingURL=data:application/json;charset=utf-8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY29tbWVyY2V0b29scy11aWtpdC1wYXNzd29yZC1maWVsZC5janMuZC50cyIsInNvdXJjZVJvb3QiOiIiLCJzb3VyY2VzIjpbIi4vZGVjbGFyYXRpb25zL3NyYy9pbmRleC5kLnRzIl0sIm5hbWVzIjpbXSwibWFwcGluZ3MiOiJBQUFBIn0=
|
|
@@ -27,6 +27,7 @@ var PasswordInput = require('@commercetools-uikit/password-input');
|
|
|
27
27
|
var FlatButton = require('@commercetools-uikit/flat-button');
|
|
28
28
|
var icons = require('@commercetools-uikit/icons');
|
|
29
29
|
var FieldErrors = require('@commercetools-uikit/field-errors');
|
|
30
|
+
var FieldWarnings = require('@commercetools-uikit/field-warnings');
|
|
30
31
|
var jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
31
32
|
|
|
32
33
|
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
|
@@ -49,6 +50,7 @@ var FieldLabel__default = /*#__PURE__*/_interopDefault(FieldLabel);
|
|
|
49
50
|
var PasswordInput__default = /*#__PURE__*/_interopDefault(PasswordInput);
|
|
50
51
|
var FlatButton__default = /*#__PURE__*/_interopDefault(FlatButton);
|
|
51
52
|
var FieldErrors__default = /*#__PURE__*/_interopDefault(FieldErrors);
|
|
53
|
+
var FieldWarnings__default = /*#__PURE__*/_interopDefault(FieldWarnings);
|
|
52
54
|
|
|
53
55
|
var messages = reactIntl.defineMessages({
|
|
54
56
|
show: {
|
|
@@ -63,10 +65,11 @@ var messages = reactIntl.defineMessages({
|
|
|
63
65
|
}
|
|
64
66
|
});
|
|
65
67
|
|
|
66
|
-
function ownKeys(
|
|
67
|
-
function _objectSpread(
|
|
68
|
+
function ownKeys(e, r) { var t = _Object$keys__default["default"](e); if (_Object$getOwnPropertySymbols__default["default"]) { var o = _Object$getOwnPropertySymbols__default["default"](e); r && (o = _filterInstanceProperty__default["default"](o).call(o, function (r) { return _Object$getOwnPropertyDescriptor__default["default"](e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
69
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context3, _context4; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty__default["default"](_context3 = ownKeys(Object(t), !0)).call(_context3, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors__default["default"] ? _Object$defineProperties__default["default"](e, _Object$getOwnPropertyDescriptors__default["default"](t)) : _forEachInstanceProperty__default["default"](_context4 = ownKeys(Object(t))).call(_context4, function (r) { _Object$defineProperty__default["default"](e, r, _Object$getOwnPropertyDescriptor__default["default"](t, r)); }); } return e; }
|
|
68
70
|
const sequentialId = utils.createSequentialId('password-field-');
|
|
69
71
|
const sequentialErrorsId = utils.createSequentialId('password-field-error-')();
|
|
72
|
+
const sequentialWarningsId = utils.createSequentialId('password-field-warning-')();
|
|
70
73
|
|
|
71
74
|
// Similar shape of `FormikErrors` but values are `TFieldErrors` objects.
|
|
72
75
|
|
|
@@ -74,6 +77,10 @@ const hasErrors = errors => {
|
|
|
74
77
|
var _context;
|
|
75
78
|
return errors && _someInstanceProperty__default["default"](_context = _Object$values__default["default"](errors)).call(_context, Boolean);
|
|
76
79
|
};
|
|
80
|
+
const hasWarnings = warnings => {
|
|
81
|
+
var _context2;
|
|
82
|
+
return warnings && _someInstanceProperty__default["default"](_context2 = _Object$values__default["default"](warnings)).call(_context2, Boolean);
|
|
83
|
+
};
|
|
77
84
|
const defaultProps = {
|
|
78
85
|
horizontalConstraint: 'scale'
|
|
79
86
|
};
|
|
@@ -85,6 +92,7 @@ const PasswordField = props => {
|
|
|
85
92
|
togglePasswordVisibility = _useToggleState2[1];
|
|
86
93
|
const id = hooks.useFieldId(props.id, sequentialId);
|
|
87
94
|
const hasError = props.touched && hasErrors(props.errors);
|
|
95
|
+
const hasWarning = props.touched && hasWarnings(props.warnings);
|
|
88
96
|
const canInteract = !props.isDisabled && !props.isReadOnly;
|
|
89
97
|
if (!props.isReadOnly) {
|
|
90
98
|
process.env.NODE_ENV !== "production" ? utils.warning(Boolean(props.onChange), 'PasswordField: `onChange` is required when field is not read only.') : void 0;
|
|
@@ -126,6 +134,7 @@ const PasswordField = props => {
|
|
|
126
134
|
isDisabled: props.isDisabled,
|
|
127
135
|
isReadOnly: props.isReadOnly,
|
|
128
136
|
hasError: hasError,
|
|
137
|
+
hasWarning: hasWarning,
|
|
129
138
|
placeholder: props.placeholder,
|
|
130
139
|
autoComplete: props.autoComplete,
|
|
131
140
|
horizontalConstraint: "scale"
|
|
@@ -138,6 +147,11 @@ const PasswordField = props => {
|
|
|
138
147
|
errors: props.errors,
|
|
139
148
|
isVisible: hasError,
|
|
140
149
|
renderError: props.renderError
|
|
150
|
+
}), jsxRuntime.jsx(FieldWarnings__default["default"], {
|
|
151
|
+
id: sequentialWarningsId,
|
|
152
|
+
warnings: props.warnings,
|
|
153
|
+
isVisible: hasWarning,
|
|
154
|
+
renderWarning: props.renderWarning
|
|
141
155
|
})]
|
|
142
156
|
})
|
|
143
157
|
});
|
|
@@ -146,7 +160,9 @@ PasswordField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
146
160
|
id: _pt__default["default"].string,
|
|
147
161
|
horizontalConstraint: _pt__default["default"].oneOf([3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 'scale', 'auto']),
|
|
148
162
|
errors: _pt__default["default"].objectOf(_pt__default["default"].bool),
|
|
163
|
+
warnings: _pt__default["default"].objectOf(_pt__default["default"].bool),
|
|
149
164
|
renderError: _pt__default["default"].func,
|
|
165
|
+
renderWarning: _pt__default["default"].func,
|
|
150
166
|
isRequired: _pt__default["default"].bool,
|
|
151
167
|
touched: _pt__default["default"].bool,
|
|
152
168
|
name: _pt__default["default"].string,
|
|
@@ -179,7 +195,7 @@ PasswordField.toFieldErrors = function toFieldErrors(errors) {
|
|
|
179
195
|
var PasswordField$1 = PasswordField;
|
|
180
196
|
|
|
181
197
|
// NOTE: This string will be replaced on build time with the package version.
|
|
182
|
-
var version = "17.
|
|
198
|
+
var version = "17.1.0";
|
|
183
199
|
|
|
184
200
|
exports["default"] = PasswordField$1;
|
|
185
201
|
exports.version = version;
|
|
@@ -27,6 +27,7 @@ var PasswordInput = require('@commercetools-uikit/password-input');
|
|
|
27
27
|
var FlatButton = require('@commercetools-uikit/flat-button');
|
|
28
28
|
var icons = require('@commercetools-uikit/icons');
|
|
29
29
|
var FieldErrors = require('@commercetools-uikit/field-errors');
|
|
30
|
+
var FieldWarnings = require('@commercetools-uikit/field-warnings');
|
|
30
31
|
var jsxRuntime = require('@emotion/react/jsx-runtime');
|
|
31
32
|
|
|
32
33
|
function _interopDefault (e) { return e && e.__esModule ? e : { 'default': e }; }
|
|
@@ -48,6 +49,7 @@ var FieldLabel__default = /*#__PURE__*/_interopDefault(FieldLabel);
|
|
|
48
49
|
var PasswordInput__default = /*#__PURE__*/_interopDefault(PasswordInput);
|
|
49
50
|
var FlatButton__default = /*#__PURE__*/_interopDefault(FlatButton);
|
|
50
51
|
var FieldErrors__default = /*#__PURE__*/_interopDefault(FieldErrors);
|
|
52
|
+
var FieldWarnings__default = /*#__PURE__*/_interopDefault(FieldWarnings);
|
|
51
53
|
|
|
52
54
|
var messages = reactIntl.defineMessages({
|
|
53
55
|
show: {
|
|
@@ -62,10 +64,11 @@ var messages = reactIntl.defineMessages({
|
|
|
62
64
|
}
|
|
63
65
|
});
|
|
64
66
|
|
|
65
|
-
function ownKeys(
|
|
66
|
-
function _objectSpread(
|
|
67
|
+
function ownKeys(e, r) { var t = _Object$keys__default["default"](e); if (_Object$getOwnPropertySymbols__default["default"]) { var o = _Object$getOwnPropertySymbols__default["default"](e); r && (o = _filterInstanceProperty__default["default"](o).call(o, function (r) { return _Object$getOwnPropertyDescriptor__default["default"](e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
68
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context3, _context4; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty__default["default"](_context3 = ownKeys(Object(t), !0)).call(_context3, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors__default["default"] ? _Object$defineProperties__default["default"](e, _Object$getOwnPropertyDescriptors__default["default"](t)) : _forEachInstanceProperty__default["default"](_context4 = ownKeys(Object(t))).call(_context4, function (r) { _Object$defineProperty__default["default"](e, r, _Object$getOwnPropertyDescriptor__default["default"](t, r)); }); } return e; }
|
|
67
69
|
const sequentialId = utils.createSequentialId('password-field-');
|
|
68
70
|
const sequentialErrorsId = utils.createSequentialId('password-field-error-')();
|
|
71
|
+
const sequentialWarningsId = utils.createSequentialId('password-field-warning-')();
|
|
69
72
|
|
|
70
73
|
// Similar shape of `FormikErrors` but values are `TFieldErrors` objects.
|
|
71
74
|
|
|
@@ -73,6 +76,10 @@ const hasErrors = errors => {
|
|
|
73
76
|
var _context;
|
|
74
77
|
return errors && _someInstanceProperty__default["default"](_context = _Object$values__default["default"](errors)).call(_context, Boolean);
|
|
75
78
|
};
|
|
79
|
+
const hasWarnings = warnings => {
|
|
80
|
+
var _context2;
|
|
81
|
+
return warnings && _someInstanceProperty__default["default"](_context2 = _Object$values__default["default"](warnings)).call(_context2, Boolean);
|
|
82
|
+
};
|
|
76
83
|
const defaultProps = {
|
|
77
84
|
horizontalConstraint: 'scale'
|
|
78
85
|
};
|
|
@@ -84,6 +91,7 @@ const PasswordField = props => {
|
|
|
84
91
|
togglePasswordVisibility = _useToggleState2[1];
|
|
85
92
|
const id = hooks.useFieldId(props.id, sequentialId);
|
|
86
93
|
const hasError = props.touched && hasErrors(props.errors);
|
|
94
|
+
const hasWarning = props.touched && hasWarnings(props.warnings);
|
|
87
95
|
const canInteract = !props.isDisabled && !props.isReadOnly;
|
|
88
96
|
if (!props.isReadOnly) ;
|
|
89
97
|
if (props.hintIcon) ;
|
|
@@ -121,6 +129,7 @@ const PasswordField = props => {
|
|
|
121
129
|
isDisabled: props.isDisabled,
|
|
122
130
|
isReadOnly: props.isReadOnly,
|
|
123
131
|
hasError: hasError,
|
|
132
|
+
hasWarning: hasWarning,
|
|
124
133
|
placeholder: props.placeholder,
|
|
125
134
|
autoComplete: props.autoComplete,
|
|
126
135
|
horizontalConstraint: "scale"
|
|
@@ -133,6 +142,11 @@ const PasswordField = props => {
|
|
|
133
142
|
errors: props.errors,
|
|
134
143
|
isVisible: hasError,
|
|
135
144
|
renderError: props.renderError
|
|
145
|
+
}), jsxRuntime.jsx(FieldWarnings__default["default"], {
|
|
146
|
+
id: sequentialWarningsId,
|
|
147
|
+
warnings: props.warnings,
|
|
148
|
+
isVisible: hasWarning,
|
|
149
|
+
renderWarning: props.renderWarning
|
|
136
150
|
})]
|
|
137
151
|
})
|
|
138
152
|
});
|
|
@@ -151,7 +165,7 @@ PasswordField.toFieldErrors = function toFieldErrors(errors) {
|
|
|
151
165
|
var PasswordField$1 = PasswordField;
|
|
152
166
|
|
|
153
167
|
// NOTE: This string will be replaced on build time with the package version.
|
|
154
|
-
var version = "17.
|
|
168
|
+
var version = "17.1.0";
|
|
155
169
|
|
|
156
170
|
exports["default"] = PasswordField$1;
|
|
157
171
|
exports.version = version;
|
|
@@ -23,6 +23,7 @@ import PasswordInput from '@commercetools-uikit/password-input';
|
|
|
23
23
|
import FlatButton from '@commercetools-uikit/flat-button';
|
|
24
24
|
import { EyeCrossedIcon, EyeIcon } from '@commercetools-uikit/icons';
|
|
25
25
|
import FieldErrors from '@commercetools-uikit/field-errors';
|
|
26
|
+
import FieldWarnings from '@commercetools-uikit/field-warnings';
|
|
26
27
|
import { jsx, jsxs } from '@emotion/react/jsx-runtime';
|
|
27
28
|
|
|
28
29
|
var messages = defineMessages({
|
|
@@ -38,10 +39,11 @@ var messages = defineMessages({
|
|
|
38
39
|
}
|
|
39
40
|
});
|
|
40
41
|
|
|
41
|
-
function ownKeys(
|
|
42
|
-
function _objectSpread(
|
|
42
|
+
function ownKeys(e, r) { var t = _Object$keys(e); if (_Object$getOwnPropertySymbols) { var o = _Object$getOwnPropertySymbols(e); r && (o = _filterInstanceProperty(o).call(o, function (r) { return _Object$getOwnPropertyDescriptor(e, r).enumerable; })), t.push.apply(t, o); } return t; }
|
|
43
|
+
function _objectSpread(e) { for (var r = 1; r < arguments.length; r++) { var _context3, _context4; var t = null != arguments[r] ? arguments[r] : {}; r % 2 ? _forEachInstanceProperty(_context3 = ownKeys(Object(t), !0)).call(_context3, function (r) { _defineProperty(e, r, t[r]); }) : _Object$getOwnPropertyDescriptors ? _Object$defineProperties(e, _Object$getOwnPropertyDescriptors(t)) : _forEachInstanceProperty(_context4 = ownKeys(Object(t))).call(_context4, function (r) { _Object$defineProperty(e, r, _Object$getOwnPropertyDescriptor(t, r)); }); } return e; }
|
|
43
44
|
const sequentialId = createSequentialId('password-field-');
|
|
44
45
|
const sequentialErrorsId = createSequentialId('password-field-error-')();
|
|
46
|
+
const sequentialWarningsId = createSequentialId('password-field-warning-')();
|
|
45
47
|
|
|
46
48
|
// Similar shape of `FormikErrors` but values are `TFieldErrors` objects.
|
|
47
49
|
|
|
@@ -49,6 +51,10 @@ const hasErrors = errors => {
|
|
|
49
51
|
var _context;
|
|
50
52
|
return errors && _someInstanceProperty(_context = _Object$values(errors)).call(_context, Boolean);
|
|
51
53
|
};
|
|
54
|
+
const hasWarnings = warnings => {
|
|
55
|
+
var _context2;
|
|
56
|
+
return warnings && _someInstanceProperty(_context2 = _Object$values(warnings)).call(_context2, Boolean);
|
|
57
|
+
};
|
|
52
58
|
const defaultProps = {
|
|
53
59
|
horizontalConstraint: 'scale'
|
|
54
60
|
};
|
|
@@ -60,6 +66,7 @@ const PasswordField = props => {
|
|
|
60
66
|
togglePasswordVisibility = _useToggleState2[1];
|
|
61
67
|
const id = useFieldId(props.id, sequentialId);
|
|
62
68
|
const hasError = props.touched && hasErrors(props.errors);
|
|
69
|
+
const hasWarning = props.touched && hasWarnings(props.warnings);
|
|
63
70
|
const canInteract = !props.isDisabled && !props.isReadOnly;
|
|
64
71
|
if (!props.isReadOnly) {
|
|
65
72
|
process.env.NODE_ENV !== "production" ? warning(Boolean(props.onChange), 'PasswordField: `onChange` is required when field is not read only.') : void 0;
|
|
@@ -101,6 +108,7 @@ const PasswordField = props => {
|
|
|
101
108
|
isDisabled: props.isDisabled,
|
|
102
109
|
isReadOnly: props.isReadOnly,
|
|
103
110
|
hasError: hasError,
|
|
111
|
+
hasWarning: hasWarning,
|
|
104
112
|
placeholder: props.placeholder,
|
|
105
113
|
autoComplete: props.autoComplete,
|
|
106
114
|
horizontalConstraint: "scale"
|
|
@@ -113,6 +121,11 @@ const PasswordField = props => {
|
|
|
113
121
|
errors: props.errors,
|
|
114
122
|
isVisible: hasError,
|
|
115
123
|
renderError: props.renderError
|
|
124
|
+
}), jsx(FieldWarnings, {
|
|
125
|
+
id: sequentialWarningsId,
|
|
126
|
+
warnings: props.warnings,
|
|
127
|
+
isVisible: hasWarning,
|
|
128
|
+
renderWarning: props.renderWarning
|
|
116
129
|
})]
|
|
117
130
|
})
|
|
118
131
|
});
|
|
@@ -121,7 +134,9 @@ PasswordField.propTypes = process.env.NODE_ENV !== "production" ? {
|
|
|
121
134
|
id: _pt.string,
|
|
122
135
|
horizontalConstraint: _pt.oneOf([3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 'scale', 'auto']),
|
|
123
136
|
errors: _pt.objectOf(_pt.bool),
|
|
137
|
+
warnings: _pt.objectOf(_pt.bool),
|
|
124
138
|
renderError: _pt.func,
|
|
139
|
+
renderWarning: _pt.func,
|
|
125
140
|
isRequired: _pt.bool,
|
|
126
141
|
touched: _pt.bool,
|
|
127
142
|
name: _pt.string,
|
|
@@ -154,6 +169,6 @@ PasswordField.toFieldErrors = function toFieldErrors(errors) {
|
|
|
154
169
|
var PasswordField$1 = PasswordField;
|
|
155
170
|
|
|
156
171
|
// NOTE: This string will be replaced on build time with the package version.
|
|
157
|
-
var version = "17.
|
|
172
|
+
var version = "17.1.0";
|
|
158
173
|
|
|
159
174
|
export { PasswordField$1 as default, version };
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { type ReactElement, type ReactNode, type MouseEvent, type KeyboardEvent, type ChangeEventHandler, type FocusEventHandler } from 'react';
|
|
2
|
+
type TFieldWarnings = Record<string, boolean>;
|
|
2
3
|
type TFieldErrors = Record<string, boolean>;
|
|
3
4
|
type TCustomFormErrors<Values> = {
|
|
4
5
|
[K in keyof Values]?: TFieldErrors;
|
|
@@ -8,7 +9,9 @@ export type TPasswordField = {
|
|
|
8
9
|
id?: string;
|
|
9
10
|
horizontalConstraint?: 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 'scale' | 'auto';
|
|
10
11
|
errors?: TFieldErrors;
|
|
12
|
+
warnings?: TFieldWarnings;
|
|
11
13
|
renderError?: TErrorRenderer;
|
|
14
|
+
renderWarning?: (key: string, warning?: boolean) => ReactNode;
|
|
12
15
|
isRequired?: boolean;
|
|
13
16
|
touched?: boolean;
|
|
14
17
|
name?: string;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@commercetools-uikit/password-field",
|
|
3
3
|
"description": "A controlled text input component for passwords with validation states.",
|
|
4
|
-
"version": "17.
|
|
4
|
+
"version": "17.1.0",
|
|
5
5
|
"bugs": "https://github.com/commercetools/ui-kit/issues",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -21,17 +21,18 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@babel/runtime": "^7.20.13",
|
|
23
23
|
"@babel/runtime-corejs3": "^7.20.13",
|
|
24
|
-
"@commercetools-uikit/constraints": "17.
|
|
25
|
-
"@commercetools-uikit/design-system": "17.
|
|
26
|
-
"@commercetools-uikit/field-errors": "17.
|
|
27
|
-
"@commercetools-uikit/field-label": "17.
|
|
28
|
-
"@commercetools-uikit/
|
|
29
|
-
"@commercetools-uikit/
|
|
30
|
-
"@commercetools-uikit/
|
|
31
|
-
"@commercetools-uikit/
|
|
32
|
-
"@commercetools-uikit/
|
|
33
|
-
"@commercetools-uikit/spacings-
|
|
34
|
-
"@commercetools-uikit/
|
|
24
|
+
"@commercetools-uikit/constraints": "17.1.0",
|
|
25
|
+
"@commercetools-uikit/design-system": "17.1.0",
|
|
26
|
+
"@commercetools-uikit/field-errors": "17.1.0",
|
|
27
|
+
"@commercetools-uikit/field-label": "17.1.0",
|
|
28
|
+
"@commercetools-uikit/field-warnings": "17.1.0",
|
|
29
|
+
"@commercetools-uikit/flat-button": "17.1.0",
|
|
30
|
+
"@commercetools-uikit/hooks": "17.1.0",
|
|
31
|
+
"@commercetools-uikit/icons": "17.1.0",
|
|
32
|
+
"@commercetools-uikit/password-input": "17.1.0",
|
|
33
|
+
"@commercetools-uikit/spacings-inline": "17.1.0",
|
|
34
|
+
"@commercetools-uikit/spacings-stack": "17.1.0",
|
|
35
|
+
"@commercetools-uikit/utils": "17.1.0",
|
|
35
36
|
"@emotion/react": "^11.10.5",
|
|
36
37
|
"@emotion/styled": "^11.10.5",
|
|
37
38
|
"prop-types": "15.8.1"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"commercetools-uikit-password-field.cjs.d.ts","sourceRoot":"","sources":["./declarations/src/index.d.ts"],"names":[],"mappings":"AAAA"}
|