@financial-times/n-conversion-forms 32.8.0 → 32.9.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/.eslintignore +6 -2
- package/.prettierignore +1 -0
- package/.toolkitrc.yml +9 -3
- package/.toolkitstate/ci.json +2 -2
- package/components/__snapshots__/graduation-date.spec.js.snap +3 -3
- package/components/__snapshots__/industry.spec.js.snap +364 -16
- package/components/__snapshots__/position.spec.js.snap +64 -64
- package/components/__snapshots__/responsibility.spec.js.snap +270 -150
- package/components/accept-terms-subscription.jsx +8 -6
- package/components/confirmation.jsx +3 -5
- package/components/industry.jsx +2 -0
- package/components/industry.stories.js +3 -0
- package/components/position.jsx +2 -0
- package/components/position.stories.js +3 -0
- package/components/responsibility.jsx +2 -0
- package/components/responsibility.stories.js +3 -0
- package/dist/industry.jsx +3 -0
- package/dist/position.jsx +3 -0
- package/dist/responsibility.jsx +3 -0
- package/package.json +12 -14
package/.eslintignore
CHANGED
package/.prettierignore
CHANGED
package/.toolkitrc.yml
CHANGED
|
@@ -4,9 +4,9 @@ plugins:
|
|
|
4
4
|
- "@dotcom-tool-kit/jest"
|
|
5
5
|
- "@dotcom-tool-kit/eslint"
|
|
6
6
|
- "@dotcom-tool-kit/prettier"
|
|
7
|
-
- "@dotcom-tool-kit/lint-staged"
|
|
7
|
+
- "@dotcom-tool-kit/lint-staged-npm"
|
|
8
8
|
- "@dotcom-tool-kit/husky-npm"
|
|
9
|
-
-
|
|
9
|
+
- "./toolkit/run-storybook"
|
|
10
10
|
hooks:
|
|
11
11
|
test:local:
|
|
12
12
|
- Eslint
|
|
@@ -15,10 +15,16 @@ hooks:
|
|
|
15
15
|
- Eslint
|
|
16
16
|
- JestCI
|
|
17
17
|
run:local:
|
|
18
|
-
|
|
18
|
+
- RunStorybook
|
|
19
19
|
options:
|
|
20
20
|
"@dotcom-tool-kit/circleci":
|
|
21
21
|
nodeVersion: 18.17-browsers
|
|
22
22
|
"@dotcom-tool-kit/babel":
|
|
23
23
|
files: "components/{*.jsx,index.js}"
|
|
24
24
|
outputPath: dist
|
|
25
|
+
"@dotcom-tool-kit/lint-staged-npm":
|
|
26
|
+
testGlob: "**/*.{js,jsx,json,scss}"
|
|
27
|
+
formatGlob: "**/*.{js,jsx,json,scss}"
|
|
28
|
+
"@dotcom-tool-kit/prettier":
|
|
29
|
+
files: ["**/*.{js,jsx,json,scss}"]
|
|
30
|
+
configFile: ".prettierrc.js"
|
package/.toolkitstate/ci.json
CHANGED
|
@@ -71,9 +71,6 @@ exports[`GraduationDate renders with default props 1`] = `
|
|
|
71
71
|
name="graduationDateYear"
|
|
72
72
|
aria-required="false"
|
|
73
73
|
>
|
|
74
|
-
<option value="2019">
|
|
75
|
-
2019
|
|
76
|
-
</option>
|
|
77
74
|
<option value="2020">
|
|
78
75
|
2020
|
|
79
76
|
</option>
|
|
@@ -98,6 +95,9 @@ exports[`GraduationDate renders with default props 1`] = `
|
|
|
98
95
|
<option value="2027">
|
|
99
96
|
2027
|
|
100
97
|
</option>
|
|
98
|
+
<option value="2028">
|
|
99
|
+
2028
|
|
100
|
+
</option>
|
|
101
101
|
</select>
|
|
102
102
|
</span>
|
|
103
103
|
</div>
|