shinkansen-sprockets 1.1.431 → 1.1.432

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": "shinkansen-sprockets",
3
- "version": "1.1.431",
3
+ "version": "1.1.432",
4
4
  "description": "Shinkansen Sprockets",
5
5
  "keywords": [
6
6
  "Shinkansen",
@@ -53,7 +53,7 @@
53
53
  "@babel/preset-env": "^7.26.0",
54
54
  "@babel/preset-react": "^7.25.9",
55
55
  "@babel/register": "^7.25.9",
56
- "@modernpoacher/design-system": "1.1.16",
56
+ "@modernpoacher/design-system": "1.1.17",
57
57
  "@storybook/addon-actions": "7.6.20",
58
58
  "@storybook/addon-essentials": "7.6.20",
59
59
  "@storybook/addon-links": "7.6.20",
@@ -1,16 +1,11 @@
1
1
  import React from 'react'
2
2
  import PropTypes from 'prop-types'
3
- import debug from 'debug'
4
-
5
- const log = debug('shinkansen-sprockets/sprockets/check-answers/group')
6
3
 
7
4
  /**
8
5
  * @param {SprocketsTypes.AnswerDefinitionType}
9
6
  * @returns {React.JSX.Element}
10
7
  */
11
8
  export default function AnswerTitle ({ answer: { title } }) {
12
- log('AnswerTitle')
13
-
14
9
  return (
15
10
  <dt className='answer-title'>
16
11
  {title}
@@ -1,8 +1,5 @@
1
1
  import React from 'react'
2
2
  import PropTypes from 'prop-types'
3
- import debug from 'debug'
4
-
5
- const log = debug('shinkansen-sprockets/sprockets/check-answers/group')
6
3
 
7
4
  /**
8
5
  * @param {string | string[]}
@@ -32,8 +29,6 @@ function getAnswerValue (value) {
32
29
  * @returns {React.JSX.Element}
33
30
  */
34
31
  export default function AnswerValue ({ answer: { value } }) {
35
- log('AnswerValue')
36
-
37
32
  return (
38
33
  <dd className='answer-value'>
39
34
  {getAnswerValue(value)}