@commercetools-uikit/radio-field 20.5.0 → 20.6.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/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <!-- THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. -->
2
- <!-- This file is created by the `yarn generate-readme` script. -->
2
+ <!-- This file is created by the `pnpm generate-readme` script. -->
3
3
 
4
4
  # RadioField
5
5
 
@@ -10,7 +10,7 @@ A controlled radio input component with validation states and a label.
10
10
  ## Installation
11
11
 
12
12
  ```
13
- yarn add @commercetools-uikit/radio-field
13
+ pnpm add @commercetools-uikit/radio-field
14
14
  ```
15
15
 
16
16
  ```
@@ -20,7 +20,7 @@ npm --save install @commercetools-uikit/radio-field
20
20
  Additionally install the peer dependencies (if not present)
21
21
 
22
22
  ```
23
- yarn add react
23
+ pnpm add react
24
24
  ```
25
25
 
26
26
  ```
@@ -89,8 +89,8 @@ let RadioField = /*#__PURE__*/function (_Component) {
89
89
  if (this.props.hintIcon) {
90
90
  process.env.NODE_ENV !== "production" ? utils.warning(typeof this.props.hint === 'string' || /*#__PURE__*/react.isValidElement(this.props.hint), 'RadioField: `hint` is required to be string or ReactNode if hintIcon is present') : void 0;
91
91
  }
92
- const errorsContainerId = "".concat(this.state.id, "-errors");
93
- const warningsContainerId = "".concat(this.state.id, "-warnings");
92
+ const errorsContainerId = `${this.state.id}-errors`;
93
+ const warningsContainerId = `${this.state.id}-warnings`;
94
94
  return jsxRuntime.jsx(Constraints__default["default"].Horizontal, {
95
95
  max: this.props.horizontalConstraint,
96
96
  children: jsxRuntime.jsxs(Stack__default["default"], {
@@ -160,7 +160,7 @@ RadioField.getDerivedStateFromProps = (props, state) => ({
160
160
  var RadioField$1 = RadioField;
161
161
 
162
162
  // NOTE: This string will be replaced on build time with the package version.
163
- var version = "20.5.0";
163
+ var version = "20.6.1";
164
164
 
165
165
  exports["default"] = RadioField$1;
166
166
  exports.version = version;
@@ -85,8 +85,8 @@ let RadioField = /*#__PURE__*/function (_Component) {
85
85
  const hasWarning = this.props.touched && hasWarnings(this.props.warnings);
86
86
  if (!this.props.isReadOnly) ;
87
87
  if (this.props.hintIcon) ;
88
- const errorsContainerId = "".concat(this.state.id, "-errors");
89
- const warningsContainerId = "".concat(this.state.id, "-warnings");
88
+ const errorsContainerId = `${this.state.id}-errors`;
89
+ const warningsContainerId = `${this.state.id}-warnings`;
90
90
  return jsxRuntime.jsx(Constraints__default["default"].Horizontal, {
91
91
  max: this.props.horizontalConstraint,
92
92
  children: jsxRuntime.jsxs(Stack__default["default"], {
@@ -156,7 +156,7 @@ RadioField.getDerivedStateFromProps = (props, state) => ({
156
156
  var RadioField$1 = RadioField;
157
157
 
158
158
  // NOTE: This string will be replaced on build time with the package version.
159
- var version = "20.5.0";
159
+ var version = "20.6.1";
160
160
 
161
161
  exports["default"] = RadioField$1;
162
162
  exports.version = version;
@@ -65,8 +65,8 @@ let RadioField = /*#__PURE__*/function (_Component) {
65
65
  if (this.props.hintIcon) {
66
66
  process.env.NODE_ENV !== "production" ? warning(typeof this.props.hint === 'string' || /*#__PURE__*/isValidElement(this.props.hint), 'RadioField: `hint` is required to be string or ReactNode if hintIcon is present') : void 0;
67
67
  }
68
- const errorsContainerId = "".concat(this.state.id, "-errors");
69
- const warningsContainerId = "".concat(this.state.id, "-warnings");
68
+ const errorsContainerId = `${this.state.id}-errors`;
69
+ const warningsContainerId = `${this.state.id}-warnings`;
70
70
  return jsx(Constraints.Horizontal, {
71
71
  max: this.props.horizontalConstraint,
72
72
  children: jsxs(Stack, {
@@ -136,6 +136,6 @@ RadioField.getDerivedStateFromProps = (props, state) => ({
136
136
  var RadioField$1 = RadioField;
137
137
 
138
138
  // NOTE: This string will be replaced on build time with the package version.
139
- var version = "20.5.0";
139
+ var version = "20.6.1";
140
140
 
141
141
  export { RadioField$1 as default, version };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@commercetools-uikit/radio-field",
3
3
  "description": "A controlled radio input component with validation states and a label.",
4
- "version": "20.5.0",
4
+ "version": "20.6.1",
5
5
  "bugs": "https://github.com/commercetools/ui-kit/issues",
6
6
  "repository": {
7
7
  "type": "git",
@@ -9,7 +9,13 @@
9
9
  "directory": "packages/components/fields/radio-field"
10
10
  },
11
11
  "homepage": "https://uikit.commercetools.com",
12
- "keywords": ["javascript", "typescript", "design-system", "react", "uikit"],
12
+ "keywords": [
13
+ "javascript",
14
+ "typescript",
15
+ "design-system",
16
+ "react",
17
+ "uikit"
18
+ ],
13
19
  "license": "MIT",
14
20
  "publishConfig": {
15
21
  "access": "public"
@@ -17,26 +23,29 @@
17
23
  "sideEffects": false,
18
24
  "main": "dist/commercetools-uikit-radio-field.cjs.js",
19
25
  "module": "dist/commercetools-uikit-radio-field.esm.js",
20
- "files": ["dist"],
26
+ "files": [
27
+ "dist"
28
+ ],
21
29
  "dependencies": {
22
30
  "@babel/runtime": "^7.20.13",
23
31
  "@babel/runtime-corejs3": "^7.20.13",
24
- "@commercetools-uikit/constraints": "20.5.0",
25
- "@commercetools-uikit/design-system": "20.5.0",
26
- "@commercetools-uikit/field-errors": "20.5.0",
27
- "@commercetools-uikit/field-label": "20.5.0",
28
- "@commercetools-uikit/field-warnings": "20.5.0",
29
- "@commercetools-uikit/radio-input": "20.5.0",
30
- "@commercetools-uikit/spacings-stack": "20.5.0",
31
- "@commercetools-uikit/utils": "20.5.0",
32
32
  "@emotion/react": "^11.10.5",
33
33
  "@emotion/styled": "^11.10.5",
34
- "react-intl": "^7.1.4"
34
+ "react-intl": "^7.1.4",
35
+ "@commercetools-uikit/constraints": "^20.6.1",
36
+ "@commercetools-uikit/design-system": "^20.6.1",
37
+ "@commercetools-uikit/field-errors": "^20.6.1",
38
+ "@commercetools-uikit/field-label": "^20.6.1",
39
+ "@commercetools-uikit/field-warnings": "^20.6.1",
40
+ "@commercetools-uikit/radio-input": "^20.6.1",
41
+ "@commercetools-uikit/spacings-stack": "^20.6.1",
42
+ "@commercetools-uikit/utils": "^20.6.1"
35
43
  },
36
44
  "devDependencies": {
37
- "react": "19.2.0"
45
+ "prop-types": "^15.8.1",
46
+ "react": "19.2.6"
38
47
  },
39
48
  "peerDependencies": {
40
49
  "react": "19.x"
41
50
  }
42
- }
51
+ }