govuk_publishing_components 21.59.0 → 21.61.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (121) hide show
  1. checksums.yaml +4 -4
  2. data/README.md +31 -6
  3. data/app/assets/javascripts/component_guide/accessibility-test.js +21 -21
  4. data/app/assets/javascripts/component_guide/filter-components.js +19 -19
  5. data/app/assets/javascripts/component_guide/visual-regression.js +38 -37
  6. data/app/assets/javascripts/govuk_publishing_components/components/checkboxes.js +102 -73
  7. data/app/assets/javascripts/govuk_publishing_components/components/step-by-step-nav.js +4 -4
  8. data/app/assets/javascripts/govuk_publishing_components/ie.js +2 -0
  9. data/app/assets/javascripts/govuk_publishing_components/lib/auto-track-event.js +31 -0
  10. data/app/assets/javascripts/govuk_publishing_components/lib/cookie-functions.js +24 -24
  11. data/app/assets/javascripts/govuk_publishing_components/lib/govspeak/youtube-link-enhancement.js +17 -17
  12. data/app/assets/javascripts/govuk_publishing_components/vendor/html5shiv-printshiv.js +4 -0
  13. data/app/assets/javascripts/govuk_publishing_components/vendor/json2.js +487 -0
  14. data/app/assets/stylesheets/component_guide/application.scss +19 -15
  15. data/app/assets/stylesheets/govuk_publishing_components/_all_components.scss +1 -0
  16. data/app/assets/stylesheets/govuk_publishing_components/components/_action-link.scss +0 -8
  17. data/app/assets/stylesheets/govuk_publishing_components/components/_breadcrumbs.scss +1 -1
  18. data/app/assets/stylesheets/govuk_publishing_components/components/_checkboxes.scss +4 -0
  19. data/app/assets/stylesheets/govuk_publishing_components/components/_cookie-banner.scss +1 -8
  20. data/app/assets/stylesheets/govuk_publishing_components/components/_feedback.scss +0 -1
  21. data/app/assets/stylesheets/govuk_publishing_components/components/_govspeak-html-publication.scss +4 -5
  22. data/app/assets/stylesheets/govuk_publishing_components/components/_heading.scss +3 -8
  23. data/app/assets/stylesheets/govuk_publishing_components/components/_image-card.scss +1 -1
  24. data/app/assets/stylesheets/govuk_publishing_components/components/_input.scss +1 -1
  25. data/app/assets/stylesheets/govuk_publishing_components/components/_inverse-header.scss +5 -8
  26. data/app/assets/stylesheets/govuk_publishing_components/components/_layout-footer.scss +8 -0
  27. data/app/assets/stylesheets/govuk_publishing_components/components/_layout-for-public.scss +4 -0
  28. data/app/assets/stylesheets/govuk_publishing_components/components/_layout-header.scss +87 -1
  29. data/app/assets/stylesheets/govuk_publishing_components/components/_radio.scss +4 -0
  30. data/app/assets/stylesheets/govuk_publishing_components/components/_related-navigation.scss +2 -2
  31. data/app/assets/stylesheets/govuk_publishing_components/components/_search.scss +46 -1
  32. data/app/assets/stylesheets/govuk_publishing_components/components/_step-by-step-nav-header.scss +0 -5
  33. data/app/assets/stylesheets/govuk_publishing_components/components/_step-by-step-nav-related.scss +1 -4
  34. data/app/assets/stylesheets/govuk_publishing_components/components/_step-by-step-nav.scss +8 -12
  35. data/app/assets/stylesheets/govuk_publishing_components/components/_table.scss +21 -24
  36. data/app/assets/stylesheets/govuk_publishing_components/components/_tabs.scss +4 -8
  37. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_attachment.scss +2 -0
  38. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_button.scss +1 -4
  39. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_charts.scss +6 -6
  40. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_contact.scss +2 -0
  41. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_footnotes.scss +2 -0
  42. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_highlight-answer.scss +2 -0
  43. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_place.scss +1 -1
  44. data/app/assets/stylesheets/govuk_publishing_components/components/govspeak/_typography.scss +2 -0
  45. data/app/assets/stylesheets/govuk_publishing_components/components/helpers/_markdown-typography.scss +1 -1
  46. data/app/assets/stylesheets/govuk_publishing_components/components/print/_govspeak.scss +2 -0
  47. data/app/assets/stylesheets/govuk_publishing_components/components/print/_step-by-step-nav-header.scss +0 -4
  48. data/app/assets/stylesheets/govuk_publishing_components/components/print/_step-by-step-nav.scss +2 -10
  49. data/app/controllers/govuk_publishing_components/audit_controller.rb +2 -2
  50. data/app/controllers/govuk_publishing_components/component_guide_controller.rb +2 -2
  51. data/app/models/govuk_publishing_components/audit_applications.rb +45 -27
  52. data/app/models/govuk_publishing_components/audit_comparer.rb +77 -51
  53. data/app/models/govuk_publishing_components/audit_components.rb +25 -6
  54. data/app/models/govuk_publishing_components/component_example.rb +4 -0
  55. data/app/views/govuk_publishing_components/audit/show.html.erb +227 -190
  56. data/app/views/govuk_publishing_components/component_guide/component_doc/_component.html.erb +1 -0
  57. data/app/views/govuk_publishing_components/component_guide/index.html.erb +3 -1
  58. data/app/views/govuk_publishing_components/components/_breadcrumbs.html.erb +1 -1
  59. data/app/views/govuk_publishing_components/components/_image_card.html.erb +1 -1
  60. data/app/views/govuk_publishing_components/components/_layout_footer.html.erb +32 -21
  61. data/app/views/govuk_publishing_components/components/_layout_for_public.html.erb +76 -0
  62. data/app/views/govuk_publishing_components/components/_layout_header.html.erb +39 -51
  63. data/app/views/govuk_publishing_components/components/_machine_readable_metadata.html.erb +1 -1
  64. data/app/views/govuk_publishing_components/components/_radio.html.erb +13 -5
  65. data/app/views/govuk_publishing_components/components/_search.html.erb +10 -5
  66. data/app/views/govuk_publishing_components/components/_share_links.html.erb +9 -9
  67. data/app/views/govuk_publishing_components/components/_step_by_step_nav_header.html.erb +2 -2
  68. data/app/views/govuk_publishing_components/components/docs/checkboxes.yml +4 -0
  69. data/app/views/govuk_publishing_components/components/docs/govspeak.yml +45 -0
  70. data/app/views/govuk_publishing_components/components/docs/heading.yml +6 -3
  71. data/app/views/govuk_publishing_components/components/docs/image_card.yml +13 -1
  72. data/app/views/govuk_publishing_components/components/docs/layout_footer.yml +17 -0
  73. data/app/views/govuk_publishing_components/components/docs/layout_for_admin.yml +5 -1
  74. data/app/views/govuk_publishing_components/components/docs/layout_for_public.yml +29 -0
  75. data/app/views/govuk_publishing_components/components/docs/layout_header.yml +34 -0
  76. data/app/views/govuk_publishing_components/components/docs/radio.yml +4 -0
  77. data/app/views/govuk_publishing_components/components/docs/search.yml +6 -0
  78. data/app/views/govuk_publishing_components/components/layout_header/_header_logo.html.erb +23 -0
  79. data/app/views/govuk_publishing_components/components/layout_header/_navigation_items.html.erb +17 -0
  80. data/app/views/govuk_publishing_components/components/layout_header/_search.html.erb +9 -0
  81. data/config/initializers/assets.rb +8 -0
  82. data/lib/govuk_publishing_components.rb +1 -0
  83. data/lib/govuk_publishing_components/presenters/checkboxes_helper.rb +15 -7
  84. data/lib/govuk_publishing_components/presenters/content_breadcrumbs_based_on_priority.rb +1 -0
  85. data/lib/govuk_publishing_components/presenters/heading_helper.rb +21 -1
  86. data/lib/govuk_publishing_components/presenters/image_card_helper.rb +3 -2
  87. data/lib/govuk_publishing_components/presenters/public_layout_helper.rb +380 -0
  88. data/lib/govuk_publishing_components/version.rb +1 -1
  89. data/node_modules/axe-core/package.json +145 -220
  90. data/node_modules/govuk-frontend/govuk/all.js +160 -57
  91. data/node_modules/govuk-frontend/govuk/components/character-count/_index.scss +0 -4
  92. data/node_modules/govuk-frontend/govuk/components/character-count/character-count.js +16 -8
  93. data/node_modules/govuk-frontend/govuk/components/character-count/macro-options.json +6 -0
  94. data/node_modules/govuk-frontend/govuk/components/character-count/template.njk +1 -0
  95. data/node_modules/govuk-frontend/govuk/components/checkboxes/_index.scss +6 -5
  96. data/node_modules/govuk-frontend/govuk/components/checkboxes/checkboxes.js +68 -21
  97. data/node_modules/govuk-frontend/govuk/components/date-input/macro-options.json +1 -1
  98. data/node_modules/govuk-frontend/govuk/components/file-upload/_index.scss +0 -27
  99. data/node_modules/govuk-frontend/govuk/components/footer/_index.scss +0 -3
  100. data/node_modules/govuk-frontend/govuk/components/footer/template.njk +1 -1
  101. data/node_modules/govuk-frontend/govuk/components/header/template.njk +1 -1
  102. data/node_modules/govuk-frontend/govuk/components/hint/_index.scss +2 -2
  103. data/node_modules/govuk-frontend/govuk/components/hint/template.njk +2 -2
  104. data/node_modules/govuk-frontend/govuk/components/input/_index.scss +0 -3
  105. data/node_modules/govuk-frontend/govuk/components/input/macro-options.json +6 -0
  106. data/node_modules/govuk-frontend/govuk/components/input/template.njk +1 -0
  107. data/node_modules/govuk-frontend/govuk/components/radios/radios.js +76 -28
  108. data/node_modules/govuk-frontend/govuk/components/select/_index.scss +0 -3
  109. data/node_modules/govuk-frontend/govuk/components/skip-link/_index.scss +1 -0
  110. data/node_modules/govuk-frontend/govuk/components/textarea/_index.scss +0 -3
  111. data/node_modules/govuk-frontend/govuk/components/textarea/macro-options.json +6 -0
  112. data/node_modules/govuk-frontend/govuk/components/textarea/template.njk +1 -0
  113. data/node_modules/govuk-frontend/govuk/components/warning-text/_index.scss +4 -2
  114. data/node_modules/govuk-frontend/govuk/helpers/_colour.scss +1 -1
  115. data/node_modules/govuk-frontend/govuk/settings/_colours-applied.scss +2 -2
  116. data/node_modules/govuk-frontend/govuk/settings/_colours-palette.scss +33 -33
  117. data/node_modules/govuk-frontend/govuk/settings/_measurements.scss +4 -1
  118. data/node_modules/govuk-frontend/package.json +14 -81
  119. data/node_modules/jquery/package.json +44 -116
  120. metadata +34 -66
  121. data/Rakefile +0 -37
@@ -44,9 +44,6 @@
44
44
 
45
45
  &:focus {
46
46
  border-color: $govuk-input-border-colour;
47
- // Remove `box-shadow` inherited from `:focus` as `select--error`
48
- // already has the thicker border.
49
- box-shadow: none;
50
47
  }
51
48
  }
52
49
 
@@ -21,6 +21,7 @@
21
21
 
22
22
  &:focus {
23
23
  outline: $govuk-focus-width solid $govuk-focus-colour;
24
+ outline-offset: 0;
24
25
  background-color: $govuk-focus-colour;
25
26
 
26
27
  // Undo unwanted changes when global styles are enabled
@@ -42,9 +42,6 @@
42
42
 
43
43
  &:focus {
44
44
  border-color: $govuk-input-border-colour;
45
- // Remove `box-shadow` inherited from `:focus` as `textarea--error`
46
- // already has the thicker border.
47
- box-shadow: none;
48
45
  }
49
46
 
50
47
  }
@@ -11,6 +11,12 @@
11
11
  "required": true,
12
12
  "description": "The name of the textarea, which is submitted with the form data."
13
13
  },
14
+ {
15
+ "name": "spellcheck",
16
+ "type": "boolean",
17
+ "required": false,
18
+ "description": "Optional field to enable or disable the spellcheck attribute on the textarea."
19
+ },
14
20
  {
15
21
  "name": "rows",
16
22
  "type": "string",
@@ -38,6 +38,7 @@
38
38
  }) | indent(2) | trim }}
39
39
  {% endif %}
40
40
  <textarea class="govuk-textarea {{- ' govuk-textarea--error' if params.errorMessage }} {{- ' ' + params.classes if params.classes}}" id="{{ params.id }}" name="{{ params.name }}" rows="{%if params.rows %} {{- params.rows -}} {% else %}5{%endif %}"
41
+ {%- if (params.spellcheck === false) or (params.spellcheck === true) %} spellcheck="{{ params.spellcheck }}"{% endif %}
41
42
  {%- if describedBy %} aria-describedby="{{ describedBy }}"{% endif %}
42
43
  {%- if params.autocomplete %} autocomplete="{{ params.autocomplete}}"{% endif %}
43
44
  {%- for attribute, value in params.attributes %} {{attribute}}="{{value}}"{% endfor %}>{{ params.value }}</textarea>
@@ -13,13 +13,15 @@
13
13
  .govuk-warning-text__icon {
14
14
  @include govuk-font($size: false, $weight: bold);
15
15
 
16
+ box-sizing: border-box;
17
+
16
18
  display: inline-block;
17
19
 
18
20
  position: absolute;
19
21
  left: 0;
20
22
 
21
- min-width: 29px;
22
- min-height: 29px;
23
+ min-width: 35px;
24
+ min-height: 35px;
23
25
  margin-top: -7px;
24
26
 
25
27
  @include govuk-media-query($from: tablet) {
@@ -52,7 +52,7 @@
52
52
  /// colour will be returned which meets contrast requirements . If you want to
53
53
  /// use the non-websafe version you can set this to `false` but your should
54
54
  /// ensure that you still meets contrast requirements for accessibility - for
55
- /// example, don't use the non-websafe version for text.
55
+ /// example, do not use the non-websafe version for text.
56
56
  ///
57
57
  /// @return {Colour} Representation of colour for organisation
58
58
  /// @throw if `$organisation` is not a known organisation
@@ -52,7 +52,7 @@ $govuk-print-text-colour: #000000 !default;
52
52
 
53
53
  /// Secondary text colour
54
54
  ///
55
- /// Used for 'muted' text, help text, etc.
55
+ /// Used in for example 'muted' text and help text.
56
56
  ///
57
57
  /// @type Colour
58
58
  /// @access public
@@ -90,7 +90,7 @@ $govuk-error-colour: govuk-colour("red") !default;
90
90
 
91
91
  /// Border colour
92
92
  ///
93
- /// Used for borders, separators, rules, keylines etc.
93
+ /// Used in for example borders, separators, rules and keylines.
94
94
  ///
95
95
  /// @type Colour
96
96
  /// @access public
@@ -19,6 +19,39 @@ $govuk-use-legacy-palette: if((
19
19
  $govuk-compatibility-govukelements
20
20
  ), true, false) !default;
21
21
 
22
+ /// Modern colour palette
23
+ ///
24
+ /// This exists only because you cannot easily set a !default variable
25
+ /// conditionally (thanks to the way scope works in Sass) so we set
26
+ /// `$govuk-colour-palette` using the `if` function.
27
+ ///
28
+ /// @access private
29
+
30
+ $_govuk-colour-palette-modern: (
31
+ "red": #d4351c,
32
+ "yellow": #ffdd00,
33
+ "green": #00703c,
34
+ "blue": #1d70b8,
35
+ "dark-blue": #003078,
36
+ "light-blue": #5694ca,
37
+ "purple": #4c2c92,
38
+
39
+ "black": #0b0c0c,
40
+ "dark-grey": #505a5f,
41
+ "mid-grey": #b1b4b6,
42
+ "light-grey": #f3f2f1,
43
+ "white": #ffffff,
44
+
45
+ "light-purple": #6f72af,
46
+ "bright-purple": #912b88,
47
+ "pink": #d53880,
48
+ "light-pink": #f499be,
49
+ "orange": #f47738,
50
+ "brown": #b58840,
51
+ "light-green": #85994b,
52
+ "turquoise": #28a197
53
+ );
54
+
22
55
  /// Legacy colour palette
23
56
  ///
24
57
  /// This exists only because you cannot easily set a !default variable
@@ -52,39 +85,6 @@ $_govuk-colour-palette-legacy: (
52
85
  "white": #ffffff
53
86
  );
54
87
 
55
- /// Modern colour palette
56
- ///
57
- /// This exists only because you cannot easily set a !default variable
58
- /// conditionally (thanks to the way scope works in Sass) so we set
59
- /// `$govuk-colour-palette` using the `if` function.
60
- ///
61
- /// @access private
62
-
63
- $_govuk-colour-palette-modern: (
64
- "red": #d4351c,
65
- "yellow": #ffdd00,
66
- "green": #00703c,
67
- "blue": #1d70b8,
68
- "dark-blue": #003078,
69
- "light-blue": #5694ca,
70
- "purple": #4c2c92,
71
-
72
- "black": #0b0c0c,
73
- "dark-grey": #626a6e,
74
- "mid-grey": #b1b4b6,
75
- "light-grey": #f3f2f1,
76
- "white": #ffffff,
77
-
78
- "light-purple": #6f72af,
79
- "bright-purple": #912b88,
80
- "pink": #d53880,
81
- "light-pink": #f499be,
82
- "orange": #f47738,
83
- "brown": #b58840,
84
- "light-green": #85994b,
85
- "turquoise": #28a197
86
- );
87
-
88
88
  /// Colour palette
89
89
  ///
90
90
  /// @type Map
@@ -81,8 +81,11 @@ $govuk-border-width-form-element: 2px !default;
81
81
  ///
82
82
  /// @type Number
83
83
  /// @access public
84
+ /// @deprecated Use $govuk-border-width-form-element instead. There should be no
85
+ /// difference in thickness for inputs in the error state, in order to
86
+ /// maintain a distinct focus state.
84
87
 
85
- $govuk-border-width-form-element-error: 4px !default;
88
+ $govuk-border-width-form-element-error: 2px !default;
86
89
 
87
90
  /// Form group border width when in error state
88
91
  ///
@@ -1,74 +1,23 @@
1
1
  {
2
- "_args": [
3
- [
4
- {
5
- "raw": "govuk-frontend@^3.7.0",
6
- "scope": null,
7
- "escapedName": "govuk-frontend",
8
- "name": "govuk-frontend",
9
- "rawSpec": "^3.7.0",
10
- "spec": ">=3.7.0 <4.0.0",
11
- "type": "range"
12
- },
13
- "/var/lib/jenkins/workspace/ublishing_components_master-N4FWJIUY4CIFHKGZOAAEVVXODRY3YBORQOPIBBXWX72VUPSGJRRQ"
14
- ]
15
- ],
16
- "_from": "govuk-frontend@>=3.7.0 <4.0.0",
17
- "_hasShrinkwrap": false,
18
- "_id": "govuk-frontend@3.7.0",
19
- "_inCache": true,
20
- "_location": "/govuk-frontend",
21
- "_nodeVersion": "12.13.1",
22
- "_npmOperationalInternal": {
23
- "host": "s3://npm-registry-packages",
24
- "tmp": "tmp/govuk-frontend_3.7.0_1591023375568_0.08981992062114386"
25
- },
26
- "_npmUser": {
27
- "name": "govuk-patterns-and-tools",
28
- "email": "design-system-deploy+npm@digital.cabinet-office.gov.uk"
29
- },
30
- "_npmVersion": "6.12.1",
31
- "_phantomChildren": {},
32
- "_requested": {
33
- "raw": "govuk-frontend@^3.7.0",
34
- "scope": null,
35
- "escapedName": "govuk-frontend",
36
- "name": "govuk-frontend",
37
- "rawSpec": "^3.7.0",
38
- "spec": ">=3.7.0 <4.0.0",
39
- "type": "range"
2
+ "name": "govuk-frontend",
3
+ "description": "GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.",
4
+ "version": "3.8.1",
5
+ "main": "govuk/all.js",
6
+ "sass": "govuk/all.scss",
7
+ "engines": {
8
+ "node": ">= 4.2.0"
40
9
  },
41
- "_requiredBy": [
42
- "/"
43
- ],
44
- "_resolved": "https://registry.npmjs.org/govuk-frontend/-/govuk-frontend-3.7.0.tgz",
45
- "_shasum": "2eb2130c3c9f7c701c7ecdb300cc91106275a414",
46
- "_shrinkwrap": null,
47
- "_spec": "govuk-frontend@^3.7.0",
48
- "_where": "/var/lib/jenkins/workspace/ublishing_components_master-N4FWJIUY4CIFHKGZOAAEVVXODRY3YBORQOPIBBXWX72VUPSGJRRQ",
49
10
  "author": {
50
- "name": "GOV.UK Design System Team",
51
- "email": "design-system-developers@digital.cabinet-office.gov.uk",
52
- "url": "Government Digital Service"
11
+ "name": "GOV.UK Design System Team (Government Digital Service)",
12
+ "email": "design-system-developers@digital.cabinet-office.gov.uk"
13
+ },
14
+ "repository": {
15
+ "type": "git",
16
+ "url": "https://github.com/alphagov/govuk-frontend.git"
53
17
  },
54
18
  "bugs": {
55
19
  "url": "https://github.com/alphagov/govuk-frontend/issues"
56
20
  },
57
- "dependencies": {},
58
- "description": "GOV.UK Frontend contains the code you need to start building a user interface for government platforms and services.",
59
- "devDependencies": {},
60
- "directories": {},
61
- "dist": {
62
- "integrity": "sha512-G3bqoKGGF8YQ18UJH9tTARrwB8i7iPwN1xc8RXwWyx91q0p/Xl10uNywZLkzGWcJDzEz1vwmBTTL3SLDU/KxNg==",
63
- "shasum": "2eb2130c3c9f7c701c7ecdb300cc91106275a414",
64
- "tarball": "https://registry.npmjs.org/govuk-frontend/-/govuk-frontend-3.7.0.tgz",
65
- "fileCount": 277,
66
- "unpackedSize": 1031388,
67
- "npm-signature": "-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJe1RcQCRA9TVsSAnZWagAAVssP/Rgy/zroRGgis6A7IGKr\nLoXiduk2Zl2dSos0glFBxVxL2P/2Wn4VPjiHKAu/ldH6wLGhgg601IfBH+ZI\nKBGWayz3j8ZmZLltseD8wks6wIpvg28RemifYDKRFmgZI6i31OwdKLoLvYF5\nF8bf8vzlgOGVHg+TweEKW8hJ2RsjHNZ2sI27Hh/qIRNzcmuQ6Tu6Q1vRtphK\nxwc+KC+DYsHIis/k/h+9C6oo7Ja59U/z1n8EohzYTvZU4J6x64FjAGj6GLl2\nopibQSz84XHPHDo2ZZKlWuoDAYlUmyewnDRsEIwGXGYWvecwHnYwcBx8eU+n\nKxrPX1tDEDkuoBIyc1G14kr07CADbU3DahfD8dFHYd7e8zZYIn731GZN6VH5\n9LuJLROKiz4BucOMn9UPYfSccPLUwVV3iRAC2Uo6UQRsnueA6m0ATeGeTmZo\n1C11kuxdkPAp7CdphHxPkl2LZAjXBAGh6UrGf6FD/kChVf6uqV59FoqgHuHS\nkeUbE1u+RdInWfniHX62W0FTQZD8LbNY8DfDCHZlVALzb7C77O4E2puKlLsK\nkRhj8P50is161A0cKbSeUi56/v4jQdaIkfaWstQalWmi6K5+rt5TxZR09JQL\n7O73z3u14cOKvqiV1IPduNt8bOMKDtrKcioGU8lEUIKtVvPJGgB+GfUcNaf9\nPHrk\r\n=KkMF\r\n-----END PGP SIGNATURE-----\r\n"
68
- },
69
- "engines": {
70
- "node": ">= 4.2.0"
71
- },
72
21
  "homepage": "https://frontend.design-system.service.gov.uk/",
73
22
  "keywords": [
74
23
  "govuk",
@@ -76,21 +25,5 @@
76
25
  "design system",
77
26
  "template"
78
27
  ],
79
- "license": "MIT",
80
- "main": "govuk/all.js",
81
- "maintainers": [
82
- {
83
- "name": "govuk-patterns-and-tools",
84
- "email": "design-system-pipeline@digital.cabinet-office.gov.uk"
85
- }
86
- ],
87
- "name": "govuk-frontend",
88
- "optionalDependencies": {},
89
- "readme": "ERROR: No README data found!",
90
- "repository": {
91
- "type": "git",
92
- "url": "git+https://github.com/alphagov/govuk-frontend.git"
93
- },
94
- "sass": "govuk/all.scss",
95
- "version": "3.7.0"
28
+ "license": "MIT"
96
29
  }
@@ -1,85 +1,29 @@
1
1
  {
2
- "_args": [
3
- [
4
- {
5
- "raw": "jquery@1.12.4",
6
- "scope": null,
7
- "escapedName": "jquery",
8
- "name": "jquery",
9
- "rawSpec": "1.12.4",
10
- "spec": "1.12.4",
11
- "type": "version"
12
- },
13
- "/var/lib/jenkins/workspace/ublishing_components_master-N4FWJIUY4CIFHKGZOAAEVVXODRY3YBORQOPIBBXWX72VUPSGJRRQ"
14
- ]
15
- ],
16
- "_from": "jquery@1.12.4",
17
- "_id": "jquery@1.12.4",
18
- "_inCache": true,
19
- "_location": "/jquery",
20
- "_nodeVersion": "0.10.45",
21
- "_npmOperationalInternal": {
22
- "host": "packages-12-west.internal.npmjs.com",
23
- "tmp": "tmp/jquery-1.12.4.tgz_1463764744844_0.4810373710934073"
24
- },
25
- "_npmUser": {
26
- "name": "timmywil",
27
- "email": "timmywillisn@gmail.com"
28
- },
29
- "_npmVersion": "2.15.1",
30
- "_phantomChildren": {},
31
- "_requested": {
32
- "raw": "jquery@1.12.4",
33
- "scope": null,
34
- "escapedName": "jquery",
35
- "name": "jquery",
36
- "rawSpec": "1.12.4",
37
- "spec": "1.12.4",
38
- "type": "version"
39
- },
40
- "_requiredBy": [
41
- "/"
42
- ],
43
- "_resolved": "https://registry.npmjs.org/jquery/-/jquery-1.12.4.tgz",
44
- "_shasum": "01e1dfba290fe73deba77ceeacb0f9ba2fec9e0c",
45
- "_shrinkwrap": null,
46
- "_spec": "jquery@1.12.4",
47
- "_where": "/var/lib/jenkins/workspace/ublishing_components_master-N4FWJIUY4CIFHKGZOAAEVVXODRY3YBORQOPIBBXWX72VUPSGJRRQ",
2
+ "name": "jquery",
3
+ "title": "jQuery",
4
+ "description": "JavaScript library for DOM operations",
5
+ "version": "1.12.4",
6
+ "main": "dist/jquery.js",
7
+ "homepage": "http://jquery.com",
48
8
  "author": {
49
9
  "name": "jQuery Foundation and other contributors",
50
10
  "url": "https://github.com/jquery/jquery/blob/1.12-stable/AUTHORS.txt"
51
11
  },
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/jquery/jquery.git"
15
+ },
16
+ "keywords": [
17
+ "jquery",
18
+ "javascript",
19
+ "browser",
20
+ "library"
21
+ ],
52
22
  "bugs": {
53
23
  "url": "https://github.com/jquery/jquery/issues"
54
24
  },
55
- "commitplease": {
56
- "components": [
57
- "Docs",
58
- "Tests",
59
- "Build",
60
- "Release",
61
- "Core",
62
- "Ajax",
63
- "Attributes",
64
- "Callbacks",
65
- "CSS",
66
- "Data",
67
- "Deferred",
68
- "Deprecated",
69
- "Dimensions",
70
- "Effects",
71
- "Event",
72
- "Manipulation",
73
- "Offset",
74
- "Queue",
75
- "Selector",
76
- "Serialize",
77
- "Traversing",
78
- "Wrap"
79
- ]
80
- },
25
+ "license": "MIT",
81
26
  "dependencies": {},
82
- "description": "JavaScript library for DOM operations",
83
27
  "devDependencies": {
84
28
  "commitplease": "2.0.0",
85
29
  "core-js": "0.9.17",
@@ -98,8 +42,8 @@
98
42
  "jsdom": "5.6.1",
99
43
  "load-grunt-tasks": "1.0.0",
100
44
  "npm": "2.1.12",
101
- "qunit-assert-step": "1.0.3",
102
45
  "qunitjs": "1.17.1",
46
+ "qunit-assert-step": "1.0.3",
103
47
  "requirejs": "2.1.17",
104
48
  "sinon": "1.12.2",
105
49
  "sizzle": "2.2.1",
@@ -107,51 +51,35 @@
107
51
  "testswarm": "1.1.0",
108
52
  "win-spawn": "2.0.0"
109
53
  },
110
- "directories": {},
111
- "dist": {
112
- "shasum": "01e1dfba290fe73deba77ceeacb0f9ba2fec9e0c",
113
- "tarball": "https://registry.npmjs.org/jquery/-/jquery-1.12.4.tgz"
114
- },
115
- "gitHead": "5e89585e0121e72ff47de177c5ef604f3089a53d",
116
- "homepage": "http://jquery.com",
117
- "keywords": [
118
- "jquery",
119
- "javascript",
120
- "browser",
121
- "library"
122
- ],
123
- "license": "MIT",
124
- "main": "dist/jquery.js",
125
- "maintainers": [
126
- {
127
- "name": "dmethvin",
128
- "email": "dave.methvin@gmail.com"
129
- },
130
- {
131
- "name": "scott.gonzalez",
132
- "email": "scott.gonzalez@gmail.com"
133
- },
134
- {
135
- "name": "m_gol",
136
- "email": "m.goleb@gmail.com"
137
- },
138
- {
139
- "name": "timmywil",
140
- "email": "timmywillisn@gmail.com"
141
- }
142
- ],
143
- "name": "jquery",
144
- "optionalDependencies": {},
145
- "readme": "ERROR: No README data found!",
146
- "repository": {
147
- "type": "git",
148
- "url": "git+https://github.com/jquery/jquery.git"
149
- },
150
54
  "scripts": {
151
55
  "build": "npm install && grunt",
152
56
  "start": "grunt watch",
153
57
  "test": "grunt && grunt test"
154
58
  },
155
- "title": "jQuery",
156
- "version": "1.12.4"
59
+ "commitplease": {
60
+ "components": [
61
+ "Docs",
62
+ "Tests",
63
+ "Build",
64
+ "Release",
65
+ "Core",
66
+ "Ajax",
67
+ "Attributes",
68
+ "Callbacks",
69
+ "CSS",
70
+ "Data",
71
+ "Deferred",
72
+ "Deprecated",
73
+ "Dimensions",
74
+ "Effects",
75
+ "Event",
76
+ "Manipulation",
77
+ "Offset",
78
+ "Queue",
79
+ "Selector",
80
+ "Serialize",
81
+ "Traversing",
82
+ "Wrap"
83
+ ]
84
+ }
157
85
  }